segment.less 1.11 KB
//ๅˆ†้š”ๆ 
.m-segment{
	overflow: hidden;
	li{
		width: 33.3%;
		line-height: 1;
		text-align: center;
		float: left;
		background-color: #FFF;
		// border: 1px solid #e2e2e2;
		// border-right: 1px solid #e2e2e2;
		box-sizing: border-box;
		position: relative;
		&:after{
			position: absolute;
			content: '';
			border-right: 1px solid #e2e2e2;
			display: block;
			height: 200%;
			width: 0;
			top: 0;
			right: -1px;
			z-index: 1;
			-webkit-transform: scale(0.5);
			transform: scale(0.5);
			-webkit-transform-origin: left top;
			transform-origin: left top;
		}
		.text{
			display: block;
			color: #333;
			font-size: 15px;
			padding: 7px 0;
		}
		.subtext{
			line-height: 1;
			padding-top: 5px;
		}

		&:first-child{
			border-top-left-radius: 3px;
			border-bottom-left-radius: 3px;
		}

		&:last-child{
			border-top-right-radius: 3px;
			border-bottom-right-radius: 3px;
			&:after{
				display: none;
			}
		}
	}
	.on{
		color: #FFF;
		background-color: #69b8dc;
		// border-right-color: #69b8dc;
		&:after{
			border-color: #69b8dc;
		}
		.text{
			color: #FFF;
			.font-gray{
				color: #FFF !important;
			}
		}
	}
}