108 lines
2.2 KiB
Plaintext
108 lines
2.2 KiB
Plaintext
/* packageE/others/mycomponent/skin-circle.wxss */
|
|
#skin_circle {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* #skin_circle .skin_circle-main {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
text-align: center;
|
|
position: relative;
|
|
} */
|
|
|
|
.skin_circle-main {
|
|
display: flex;
|
|
position: relative;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.skin_circle-main .skin-circle-main-text {
|
|
width: 33%;
|
|
font-size: 24rpx;
|
|
color: #666;
|
|
margin-bottom: 16rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.skin_circle-main .skin-circle-main-child {
|
|
height: 16rpx;
|
|
width: 32%;
|
|
background-image: linear-gradient(90deg, #ff95a5 0%, #fe5a73 100%);
|
|
margin-bottom: 16rpx;
|
|
margin-top: 64rpx;
|
|
border-radius: 7rpx;
|
|
}
|
|
|
|
.skin_circle-main .skin-circle-main-child2 {
|
|
height: 16rpx;
|
|
width: 100%;
|
|
background-image: linear-gradient(90deg, #ff95a5 0%, #fe5a73 100%);
|
|
margin-bottom: 16rpx;
|
|
margin-top: 64rpx;
|
|
border-radius: 7rpx;
|
|
}
|
|
|
|
.skin_circle-main .skin-circle-main-child:nth-child(1) {
|
|
border-radius: 8rpx 0rpx 0rpx 8rpx;
|
|
}
|
|
|
|
.skin_circle-main .skin-circle-main-child:nth-child(3) {
|
|
border-radius: 0rpx 8rpx 8rpx 0rpx;
|
|
}
|
|
|
|
.skin_circle-main .round-box {
|
|
bottom: 12rpx;
|
|
position: absolute;
|
|
}
|
|
|
|
.skin_circle-main .round-box .round {
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
background: #fe5a73;
|
|
border: 2rpx solid #fff;
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #fe5a73;
|
|
}
|
|
|
|
.skin_circle-main .round-box .board {
|
|
height: 36rpx;
|
|
border-radius: 8rpx;
|
|
position: relative;
|
|
background-color: #fe5a73;
|
|
color: #fff;
|
|
font-size: 24rpx;
|
|
margin-left: -15rpx;
|
|
margin-bottom: 20rpx;
|
|
padding: 0 10rpx;
|
|
}
|
|
|
|
.skin_circle-main .round-box .board .em {
|
|
display: block;
|
|
border-width: 8rpx;
|
|
position: absolute;
|
|
bottom: -23rpx;
|
|
left: 20rpx;
|
|
border-style: solid dashed dashed;
|
|
border-color: #fe5a73 transparent transparent;
|
|
font-size: 0;
|
|
line-height: 0;
|
|
}
|
|
|
|
.skin-circle-main-child {
|
|
height: 16rpx;
|
|
width: 32%;
|
|
background-image: linear-gradient(90deg, #fe5a73 0%, #ff95a5 100%);
|
|
margin-bottom: 16rpx;
|
|
margin-top: 64rpx;
|
|
}
|
|
|
|
.skin-circle-main-child:nth-child(1) {
|
|
border-radius: 8rpx 0 0 8rpx;
|
|
}
|
|
|
|
.skin-circle-main-child:nth-child(3) {
|
|
border-radius: 0 8rpx 8rpx 0;
|
|
}
|