123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .box {
- position: relative;
- padding: 10rpx 20rpx;
- height: 100%;
- box-sizing: border-box;
- overflow: hidden;
- .head {
- .title {
- font-size: 30rpx;
- font-weight: bold;
- line-height: 46rpx;
- text-align: center;
- }
- .rep {
- display: flex;
- justify-content: space-between;
- margin-top: 8rpx;
- padding-bottom: 8rpx;
- border-bottom: 1rpx solid #ddd;
- .rep-left,
- .rep-right {
- display: flex;
- align-items: center;
- height: 16px;
- font-size: 24rpx;
- color: #666;
- }
- }
- padding-bottom: 8rpx;
- box-sizing: border-box;
- }
- .bottom {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-top: 1px solid #ddd;
- padding: 20rpx;
- box-sizing: border-box;
- background-color: #fff;
- .count {
- font-size: 28rpx;
- color: #666;
- flex: 1;
- }
- .button-box {
- display: flex;
- justify-content: flex-end;
- flex: 1;
- .button {
- height: 50rpx;
- }
- }
- }
- }
|