123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- .top {
- display: flex;
- flex-direction: column;
- justify-items: center;
- text-align: center;
- margin-bottom: 120rpx;
- }
- .address {
- padding: 40rpx 30rpx 30rpx 30rpx;
- border-bottom: 5px solid #FBFBFB;
- }
- .tips {
- color: #ccc;
- font-size: 30rpx;
- }
- .nxh__button {
- background: #fff;
- border:1rpx solid #539804;
- color: #539804;
- margin-top: 6rpx;
- font-size: 30rpx;
- width: 300rpx;
- }
- .order {
- padding: 40rpx 50rpx 30rpx 50rpx;
- border-bottom: 1px solid #FBFBFB;
- }
- .order .title {
- display: flex;
- justify-content: left;
- font-size: 35rpx;
- margin-bottom: 25rpx;
- }
- .order .oper {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .order .price {
- color: #666666;
- font-size: 35rpx;
- }
- .order .edit-num {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .edit-num .num {
- margin: 0 15rpx 0 15rpx;
- font-size: 30rpx;
- }
- .edit-num .sub, .edit-num .add {
- width: 45rpx;
- height: 45rpx;
- }
- .bottom {
- width: 750rpx;
- height: 119rpx;
- position: fixed;
- bottom: 0;
- display: flex;
- flex-direction: row;
- }
- .bottom .left {
- background: #434343;
- color: #fff;
- display: flex;
- flex-grow: 1;
- align-items: center;
- padding-left: 50rpx;
- font-size: 35rpx;
- }
- .bottom .right {
- background: #539804;
- color: #fff;
- width: 250rpx;
- display: flex;
- font-size: 35rpx;
- align-items: center;
- justify-content: center;
- }
|