123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /* pages/mine/myorder/confirm/index.wxss */
- @color0: #292929; // Appears 4 times
- @color1: #f5f5f5; // Appears 3 times
- @color2: #3f3f3f; // Appears 2 times
- @white: #ffffff; // Appears 2 times
- page {
- background-color: @color1;
- .borderbottom {
- margin: 0 30rpx;
- height: 0;
- border-bottom: 1px solid #e1e1e1;
- }
- .card {
- background: @white;
- }
- .t-table {
- padding: 20rpx 0;
- }
- .t-cell {
- margin: 0 30rpx;
- height: 60rpx;
- display: flex;
- font-size: 28rpx;
- line-height: 36rpx;
- align-items: center;
- color: #333;
- &-title {
- margin-right: 20rpx;
- }
- &-value {
- text-align: right;
- flex: 1;
- }
- }
- .t-wrap {
- margin: 0 30rpx;
- display: flex;
- font-size: 28rpx;
- line-height: 36rpx;
- color: #333;
- }
- }
- .skuimage {
- width: 320rpx;
- height: 216rpx;
- float: left;
- }
- .skudetail {
- display: flex;
- flex: 1;
- flex-direction: column;
- margin-left: 30rpx;
- row-gap: 16rpx;
- color: #333;
- }
- .skutitle {
- font-weight: bold;
- font-size: 30rpx;
- }
- .skuspecs {
- flex: 1;
- color: #777;
- font-size: 28rpx;
- }
- .skuprice {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .boldprice {
- font-weight: bold;
- font-size: 34rpx;
- }
- .buybar {
- height: 50rpx;
- .fixbar {
- border-top: 1px solid #e1e1e1;
- position: fixed;
- z-index: 99;
- padding-bottom: calc(env(safe-area-inset-bottom));
- left: 0;
- right: 0;
- bottom: 0;
- background: @white;
- .btn-list {
- height: 120rpx;
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- justify-content: flex-end;
- }
- }
- }
|