12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .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;
- }
- .button-box {
- display: flex;
- .button {
- height: 50rpx;
- }
- }
- }
- }
|