| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .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) ;
- }
- }
- }
- .radio-box {
- display: flex;
- padding-left: 20rpx;
- padding-top: 10rpx;
- height: 60rpx;
- background-color: #fff;
- .radio {
- font-size: 26rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- }
- }
- .footer {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- position: fixed;
- width: 750rpx;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- .but {
- width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- margin-right: 30rpx;
- }
- }
|