| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- page {
- background-color: #f1f2f3;
- }
- .panel{
- padding:10px;
- background-color: #fff;
-
- }
- .mt-10{
- margin-bottom: 10px;
- }
- .small {
- font-size: 26rpx;
- color: #333;
- line-height: 25px;
- }
- .mr-5{
- margin-right: 5px;
- }
- .mt-5{
- margin-bottom: 5px;
- }
- .flex-around{
- justify-content: space-around;
- }
- .stuta {
- margin-top: 20rpx;
- display: flex;
- .tag {
- border-radius: 8rpx;
- padding: 8rpx 12rpx;
- font-size: 22rpx;
- color: #fff;
- margin-right: 10rpx;
- }
- }
- .required-star {
- color: #e34d59;
- }
- .custom-tab-header {
- display: flex;
- border-bottom: 1px solid #e7e7e7;
- margin-bottom: 10px;
- }
- .custom-tab-item {
- flex: 1;
- text-align: center;
- padding: 12px 0;
- font-size: 28rpx;
- color: #666;
- position: relative;
- cursor: pointer;
- font-weight: bold;
- }
- .custom-tab-item.active {
- color: #0052D9;
- font-weight: bold;
- }
- .custom-tab-item.active::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 40rpx;
- height: 4rpx;
- background-color: #0052D9;
- border-radius: 2rpx;
- }
- .custom-tab-content {
- min-height: 200rpx;
- }
|