35 lines
631 B
Plaintext
35 lines
631 B
Plaintext
/* pages/score/index.wxss */
|
|
.tab-item::before{
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -12rpx;
|
|
left:50%;
|
|
transform: translateX(-50%);
|
|
width: 0;
|
|
height: 6rpx;
|
|
border-radius: 100rpx;
|
|
background-color: var(--circle-text-color);
|
|
}
|
|
.tab-item-cur{
|
|
color: var(--circle-text-color);
|
|
}
|
|
.tab-item-cur::before{
|
|
width: 50rpx;
|
|
}
|
|
|
|
.link-detail{
|
|
color: var(--circle-text-color);
|
|
/* background-color: ; */
|
|
}
|
|
|
|
.link-detail::after{
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
background-color: var(--circle-text-color);
|
|
opacity: 0.1;
|
|
}
|