日照项目的居民端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

53 lines
1.1 KiB

//引入全局配置
@import "c/conf";
@import "c/mx";
@import "c/f";
@import "a/c";
.u-radio {
display: flex;
justify-content: center;
padding: 20rpx;
.radio-item {
margin: 0 60rpx;
font-size: 26rpx;
font-family: Source Han Serif SC;
font-weight: 500;
color: rgba(51, 51, 51, 1);
line-height: 48rpx;
.ico {
position: relative;
display: inline-block;
top: 4rpx;
margin-right: 10rpx;
width: 20rpx;
height: 20rpx;
border: 2rpx solid rgba(153, 153, 153, 1);
border-radius: 50%;
transition: all $ad1 ease-in-out;
&::after {
@include hub;
content: "";
display: block;
width: 6rpx;
height: 6rpx;
background: rgba(230, 0, 0, 1);
border-radius: 50%;
opacity: 1;
transform: scale(0);
transition: all $ad1 ease-in-out;
}
&.z-on {
border-color: rgba(230, 0, 0, 1);
&::after {
opacity: 1;
transform: scale(1);
}
}
}
}
}