Account.scss 2.56 KB
.Account {
  .Account-Card-warp {
    padding: 40px 32px;
    border-bottom: 1px solid #eee;
    .Account-Card {
      position: relative;
      height: 360px;
      .Account-Card-money {
        padding: 60px 80px 36px;
        color: #fff;
        display: flex;
        .Account-Card-label {
          font-size: 24px;
          margin-bottom: 16px;
        }
        .Account-Card-num {
          font-size: 44px;
        }
        .Account-Card-Aimi {
          width: 248px;
        }
        .Account-Card-credit {
          position: relative;
          padding-left: 66px;
          &::after {
            content: ' ';
            position: absolute;
            top: 46px;
            left: 0;
            height: 40px;
            border-right: 1px solid #b5bffa;
          }
        }
      }
      .Account-line {
        border-bottom: 1px solid #b5bffa;
        margin: 0 40px;
      }
      .Account-Card-Bean {
        padding: 30px 40px 0;
        display: flex;
        flex-flow: wrap;
        font-size: 24px;
        color: #fff;
        .Account-Card-BeanItem {
          width: 40%;
          display: flex;
          align-items: center;
          margin: 0 5% 16px;
          .Account-Card-BeanIcon {
            width: 24px;
            height: 24px;
            margin-right: 16px;
          }
          .Account-Card-BeanCount {
            width: 105px;
            font-size: 28px;
          }
        }
      }
    }
  }
  .Account-Money {
    padding: 60px 32px 20px;
    display: flex;
    // justify-content: space-between;
    flex-wrap: wrap;
    .Account-Money-Item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-sizing: border-box;
      width: 218px;
      height: 160px;
      text-align: center;
      border: 4px solid #e6ebfd;
      border-radius: 24px;
      margin-bottom: 20px;
      margin-right: 15px;
      font-size: 32px;
      &:nth-child(3n + 3) {
        margin-right: 0;
      }
      &.selected {
        background-color: #6180f4;
        border-color: #6180f4;
        color: #fff;
      }
      .giveText {
        font-size: 24px;
      }
    }
  }
  .Account-Payway {
    padding: 0 32px;
    .Account-Payway-Item {
      display: flex;
      align-items: center;
      .Account-Payway-Item-icon {
        width: 56px;
        height: 56px;
        margin-right: 20px;
      }
      .Account-Payway-Item-name {
        flex: 1;
      }
      .Account-Payway-Item-state {
        width: 40px;
        height: 40px;
        margin-right: 18px;
      }
    }
  }
  .Account-Paybtn {
    margin: 60px 32px 40px;
  }
}