1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @import "./add.skeleton.wxss";
- page {
- background-color: #fff;
- }
- .groud {
- width: 100%;
- padding: 30rpx;
- border-bottom: 1px solid #DDDDDD;
- .label {
- height: 60rpx;
- font-size: 32rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .content {
- display: flex;
- flex-wrap: wrap;
- width: 100%;
- .but {
- min-width: 188rpx;
- height: 72rpx;
- background: #F5F5F5;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- box-sizing: border-box;
- margin-right: 20rpx;
- margin-top: 20rpx;
- padding: 0 30rpx;
- }
- .active {
- border: 1px solid #3874F6;
- color: #3874F6;
- font-weight: bold;
- background-color: #F5F5F5;
- }
- }
- .time {
- .partition {
- margin-right: 20rpx;
- display: flex;
- align-items: center;
- }
- .tbox {
- width: 220rpx;
- height: 72rpx;
- text-align: center;
- line-height: 72rpx;
- background: #F5F5F5;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- box-sizing: border-box;
- margin-right: 20rpx;
- margin-top: 20rpx;
- }
- }
- }
- .footer {
- display: flex;
- justify-content: center;
- position: fixed;
- bottom: 0;
- width: 100vw;
- min-height: 130rpx;
- background-color: #fff;
- box-shadow: rgba(0, 0, 0, 0.15) 0px 5rpx 15rpx 0px;
- .but {
- width: 690rpx;
- height: 90rpx;
- background: #FA8C16;
- border-radius: 16rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #FFFFFF;
- margin-top: 10rpx;
- }
- }
|