| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- .order-detail {
- position: relative;
- padding: 14px 14px 0;
- overflow: hidden;
- .tips {
- margin-bottom: 120px;
- background-color: white;
- border-radius: 8px;
- padding: var(--van-cell-vertical-padding) var(--van-cell-horizontal-padding);
- h3 {
- display: flex;
- font-size: 14px;
- font-weight: 500;
- color: #333333;
- line-height: 1;
- }
- p {
- padding-top: 9px;
- font-size: 12px;
- color: #7a7a7a;
- line-height: 23px;
- }
- :global {
- .van-icon {
- margin-right: 6px;
- }
- }
- }
- :global {
- .van-popup--bottom.van-popup--round {
- border-radius: 10px 10px 0 0;
- }
- }
- .paymentInfo {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- }
- .protocol {
- padding: 0 14px;
- background-color: #f6f8f9;
- }
- .protocolTenant {
- background-color: #fff;
- border-radius: 18px 18px 0px 0px;
- &>div {
- padding-bottom: 0;
- }
- }
- .btnGroup {
- // position: fixed;
- // bottom: 0;
- // left: 0;
- // right: 0;
- background-color: #fff;
- display: flex;
- align-items: center;
- padding: 12px 16px;
- justify-content: space-between;
- :global {
- .van-button {
- padding: 0 18px;
- flex-shrink: 0;
- }
- }
- .priceSection {
- // display: flex;
- // align-items: center;
- font-size: 14px;
- font-weight: 500;
- color: #999999;
- line-height: 20px;
- .goodsNum {
- font-size: 12px;
- color: #777777;
- padding-right: 6px;
- font-weight: 400;
- }
- .price {
- display: inline-block;
- font-size: 28px;
- font-weight: bold;
- color: #ff3535;
- font-family: DINAlternate-Bold, DINAlternate;
- .priceUnit {
- font-size: 14px;
- }
- }
- }
- }
- .btnTenant {
- background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
- font-size: 16px;
- font-weight: 500;
- color: #FFFFFF;
- border: none;
- padding: 0 42px !important;
- }
- }
- .qrcodePopup {
- width: 90%;
- overflow: initial;
- }
- // 弹窗样式
- .dialogContainer {
- width: 287px;
- box-sizing: border-box;
- background: #FFFFFF;
- border-radius: 12px;
- padding: 16px 24px 22px;
- text-align: center;
- .dialogTitle {
- font-weight: 500;
- font-size: 18px;
- color: #333333;
- line-height: 25px;
- }
- .dialogContent {
- padding: 16px 0 21px;
- font-size: 15px;
- color: #777777;
- line-height: 26px;
- }
- .dialogBtnGroup {
- padding: 0 16px;
- }
- .dialogBtn {
- font-weight: 500;
- font-size: 16px;
- color: #FFFFFF;
- line-height: 22px;
- }
- }
|