| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .types {
- background-color: #fff;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- display: flex;
- .title {
- width: 200rpx;
- font-size: 28rpx;
- color: #666;
- flex-shrink: 0;
- }
- .tags {
- display: flex;
- flex-wrap: wrap;
- .tag {
- padding: 8rpx 15rpx;
- border-radius: 16rpx;
- border: 1rpx solid #ddd;
- font-size: 26rpx;
- margin-right: 15rpx;
- margin-bottom: 15rpx;
- color: #999;
- }
- .active {
- color: var(--assist);
- border-color: var(--assist);
- }
- }
- }
- .picker {
- width: 100vw;
- font-size: 26rpx;
- color: #666;
- }
- .footer {
- display: flex;
- justify-content: space-between;
- padding: 0 30rpx;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- box-sizing: border-box;
- z-index: 9999;
- padding-top: 10rpx;
- .but {
- min-width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
|