127 lines
2.1 KiB
Plaintext
127 lines
2.1 KiB
Plaintext
.tab {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 99;
|
|
width: 100%;
|
|
display: flex;
|
|
padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
height: 90rpx;
|
|
background-color: #2b0a58;
|
|
font-weight: 600;
|
|
border-bottom: 2rpx solid #402663;
|
|
}
|
|
|
|
.tab.active {
|
|
background-color: #a92021;
|
|
border-bottom: 2rpx solid #bd3335;
|
|
}
|
|
|
|
.tab-item {
|
|
height: 90rpx;
|
|
flex: 2;
|
|
text-align: center;
|
|
line-height: 90rpx;
|
|
color: #efb480;
|
|
position: relative;
|
|
}
|
|
|
|
.tab-item::after {
|
|
position: absolute;
|
|
content: '';
|
|
left: calc(50% - 40rpx);
|
|
bottom: 0;
|
|
width: 80rpx;
|
|
height: 6rpx;
|
|
background-color: #efb480;
|
|
border-radius: 30rpx;
|
|
display: none;
|
|
}
|
|
|
|
.tab-item.active::after {
|
|
display: block;
|
|
}
|
|
|
|
.member-back {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
text-align: center;
|
|
}
|
|
|
|
.rights {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.member-cont {
|
|
padding: 140rpx 30rpx 30rpx;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: calc(70vh + 120rpx);
|
|
}
|
|
|
|
.member-title {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.member-error {
|
|
width: 40%;
|
|
margin-top: -30rpx;
|
|
}
|
|
|
|
.member-btn {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: calc(30vh + 80rpx);
|
|
left: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.member-btn-img {
|
|
width: 100%;
|
|
}
|
|
|
|
.member-btn-text {
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: 200;
|
|
color: #fff;
|
|
bottom: 42rpx;
|
|
color: #a21a1e;
|
|
left: 0;
|
|
font-size: 38rpx;
|
|
}
|
|
|
|
.member-btn-text.active {
|
|
color: #000;
|
|
}
|
|
|
|
.member-btn-tips {
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 100%;
|
|
z-index: 2;
|
|
color: #fff;
|
|
color: #f1c39a;
|
|
font-size: 26rpx;
|
|
bottom: -40rpx;
|
|
line-height: 34rpx;
|
|
}
|
|
|
|
.member-btn-tips image {
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
vertical-align: -4rpx;
|
|
display: inline-block;
|
|
margin-right: 10rpx;
|
|
} |