.rate-detail {
  padding: 110px 0 500px;
  position: relative;
}
.rate-detail .triangle-right {
  width: var(--triangle-right);
  right: 0;
  bottom: -1px;
  position: absolute;
}
.rate-detail .content {
  max-width: var(--page-width);
  padding: 0 var(--page-padding);
  margin: auto;
}
.rate-detail .content p {
  font-size: 18px;
  color: #707070;
  text-align: center;
}
.rate-detail .content .rate-table {
  margin: 60px 0;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 4px 4px 6px #c1b3dd;
}
.rate-detail .content .rate-table tr:nth-child(1) {
  background: linear-gradient(20deg, #ffffff, #ece7f8, #e1d9f4);
  color: #662d91;
}
.rate-detail .content .rate-table tr:nth-child(1) td {
  width: 25%;
  padding: 32px 0;
  text-align: center;
}
.rate-detail .content .rate-table tr:nth-child(2) {
  color: #707070;
}
.rate-detail .content .rate-table tr:nth-child(2) td {
  width: 25%;
  padding: 18px 0;
  text-align: center;
}
.rate-detail .content .rate-table-mobile {
  display: none;
}
.rate-detail .logo-lg {
  position: absolute;
  right: 0;
  bottom: 200px;
  width: 520px;
}

@media (max-width: 1200px) {
  .rate-detail {
    padding: 44px 0 120px;
  }
  .rate-detail .content p, .rate-detail .content span {
    font-size: 16px;
    text-align: justify !important;
  }
  .rate-detail .content .rate-table {
    display: none;
  }
  .rate-detail .content .rate-table-mobile {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 4px 4px 6px #c1b3dd;
    margin: 40px 0;
  }
  .rate-detail .content .rate-table-mobile .col {
    padding: 20px 30px;
    color: #707070;
  }
  .rate-detail .content .rate-table-mobile .col div {
    padding: 4px 0;
  }
  .rate-detail .content .rate-table-mobile .col:first-child {
    padding-right: 0;
    background: linear-gradient(300deg, #ffffff, #ece7f8, #e1d9f4);
    color: #662d91;
  }
  .rate-detail .logo-lg {
    width: 220px;
    bottom: 0;
  }
  .rate-detail .triangle-right {
    width: var(--triangle-right-m);
  }
}