1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .paymentTitle {
- min-height: 136px;
- background: linear-gradient(180deg, #ffe4d4 0%, #ffffff 100%);
- .orderType {
- padding-top: 35px;
- display: flex;
- align-items: center;
- justify-content: center;
- .img {
- width: 36px;
- height: 36px;
- margin-right: 10px;
- }
- span {
- font-size: 22px;
- font-weight: 500;
- color: #1a1a1a;
- line-height: 30px;
- }
- }
- .orderPrice {
- padding-bottom: 22px;
- padding-top: 15px;
- color: #333333;
- font-size: 22px;
- text-align: center;
- span {
- font-size: 16px;
- line-height: 22px;
- }
- }
- }
- .cellGroup {
- margin: 10px 13px;
- :global {
- .van-cell {
- padding: 16px 17px;
- font-size: 16px;
- color: #333333;
- }
- .van-cell__value {
- flex: 0 auto;
- }
- }
- .buyDetail {
- display: flex;
- align-items: center;
- padding: 18px 0 0 18px;
- i {
- display: inline-block;
- margin-right: 6px;
- width: 4px;
- height: 14px;
- background: #ff8057;
- border-radius: 2px;
- }
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- line-height: 22px;
- }
- .buyImg {
- width: 58px;
- height: 58px;
- overflow: hidden;
- border-radius: 5px;
- margin-right: 9px;
- }
- }
|