78 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-03-13 16:25:19 +08:00
.page {
position: relative;
width: 100%;
height: 100%;
2024-02-21 17:43:11 +08:00
}
2024-03-13 16:25:19 +08:00
.next {
margin-left: 5%;
width: 90% !important;
position: fixed;
bottom: 4%;
2024-02-21 17:43:11 +08:00
}
2024-03-13 16:25:19 +08:00
2024-02-21 17:43:11 +08:00
.swiper-tab {
2024-03-13 16:25:19 +08:00
width: 100%;
background-color: white;
border-bottom: 2rpx solid #ccc;
text-align: center;
height: 88rpx;
line-height: 88rpx;
font-size: 28rpx;
2024-02-21 17:43:11 +08:00
}
swiper {
2024-03-13 16:25:19 +08:00
width: 100%;
height: 92%;
2024-02-21 17:43:11 +08:00
}
scroll-view {
2024-03-13 16:25:19 +08:00
width: 100%;
height: 100%;
background-color: #F3F3F3;
2024-02-21 17:43:11 +08:00
}
.swiper-tab-item {
2024-03-13 16:25:19 +08:00
display: inline-block;
width: 25%;
color: #4A4A4A;
2024-02-21 17:43:11 +08:00
}
.active {
2024-03-13 16:25:19 +08:00
color: #4C84FF;
border-bottom: 4rpx solid #4C84FF;
2024-02-21 17:43:11 +08:00
}
.contenBox {
2024-03-13 16:25:19 +08:00
background-color: white;
padding: 2% 4%;
margin-top: 20rpx;
position: relative;
2024-02-21 17:43:11 +08:00
}
.evaluate {
2024-03-13 16:25:19 +08:00
border: 1rpx solid #C11D24;
color: #C11D24;
width: 140rpx;
height: 64rpx;
text-align: center;
line-height: 64rpx;
border-radius: 8rpx;
position: absolute;
bottom: 6%;
right: 2%;
}
.itemView {
display: flex;
justify-content: flex-start;
align-items: center;
}
.itemView .content {
flex: 1;
text-overflow: ellipsis;
overflow: hidden;
word-break: break-all;
white-space: nowrap;
2024-02-21 17:43:11 +08:00
}