| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | 
.wrapper {    position: fixed;    top: 0;    left: 0;    display: flex;    align-items: center;    justify-content: center;    height: 100vh;    width: 100vw;    background-color: rgba(0, 0, 0, 0.6 );    z-index: 9999;  .pay-ment {    background: white;    display: flex;    flex-direction: column;    align-items: center;    justify-content: space-between;    min-height: 800rpx;    height: auto;    border-radius: 20rpx;    width: 600rpx;    padding: 20rpx;    z-index: 9999;    .title {      font-size: 38rpx;      font-weight: 700;      letter-spacing: 2rpx;    }      .payInfo {      align-items: center;      display: flex;      flex-direction: column;        .count-down {        display: flex;        align-items: center;        color: #acacac;        font-size: 24rpx;      }        .money {        display: flex;        align-items: baseline;          .text:nth-child(2) {          font-size: 70rpx;        }      }        .payee {        color: #acacac;        font-size: 24rpx;      }    }      .payment-content {      width: 100%;    }      .case {      padding: 10rpx 20rpx;      display: flex;      justify-content: space-between;      align-items: center;        .case_view {        display: flex;        align-items: center;      }        .txt {        letter-spacing: 2rpx;        padding: 0 20rpx;      }    }  }}.van-hairline--bottom {  position: absolute;  padding-top: 0 !important;}
 |