  p {
    margin-bottom: 0;
  }

  /* header */
  .banner-box {
    overflow: hidden;
    /* background: url(/static/index/pageAbout/home-banner-img.png) no-repeat center 23px; */
    background-size: contain;
    height: 100%;
    width: 100%;
  }

  .header {
    position: relative;
    background: url(/static/index/pageAbout/home-tt.webp) no-repeat;
    background-size: cover;
  }

  .header .bg-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .dot-bg {
    position: absolute;
    animation: float 5s ease-in-out infinite;
  }

  .dot-2 {
    top: 0%;
    left: 0;
  }

  .dot-1 {
    top: 30%;
    right: 0;
  }

  .banner-round {
    position: absolute;
    left: -130px;
    bottom: -30px;
    width: 280px;
    height: 280px;
    background: linear-gradient(180deg, rgba(104, 126, 255, 0.2) 0%, rgba(104, 126, 255, 0) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scale 5s ease-in-out infinite;
  }

  .banner-round-chlid {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 210px;
    background: linear-gradient(180deg, rgba(104, 126, 255, 0.2) 0%, rgba(104, 126, 255, 0) 100%);
    border-radius: 50%;
  }

  @keyframes float {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-15px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  @keyframes scale {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.2);
    }

    100% {
      transform: scale(1);
    }
  }

  .headerSearch {
    margin: 3% 0;
    padding: 12% 0;
    /* background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px; */
  }

  .headerSearch h1 {
    font-size: 45px;
    margin-bottom: 45px;
    text-align: center;
    color: #fff;
    font-weight: 600;
  }

  .headerSearchGroup {
    max-width: 820px;
    margin: 0 auto;
  }

  .headerSearchSelect {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding: 0 20px 0 10px;
    line-height: 50px;
    font-size: 18px;
    font-weight: 500;
    color: #646464;
    background: #e1ebf4;
    text-align: center;
    position: relative;
    width: 100px;
  }

  .headerSearchSelect:after {
    position: absolute;
    right: 10px;
    top: 22px;
  }

  .headerSearchInput:focus {
    box-shadow: none;
    border-left: none;
    border-right: none;
  }

  .headerSearchInput {
    min-height: 50px;
    font-size: 15px;
  }

  .headerSearchBtn {
    background: #f9ca63;
    color: #fff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-right: 25px;
    font-weight: 500;
  }

  .headerSearchBtn:hover {
    color: #fff;
  }

  .headerSearchBtn i {
    vertical-align: text-bottom;
  }

  .btn-disabled {
    background-color: #b97f00;
  }

  @media (max-width: 576px) {
    .headerSearchBtn {
      line-height: 30px;
    }
  }

  /* header */
  /* card */
  .serviceSection,
  .featuresSection {
    padding: 40px 0;
    overflow: hidden;
  }

  .serviceSection {
    background: url(/static/index/pageAbout/list-bg00.webp) no-repeat center 0;
    background-size: cover;
    background-attachment: fixed;
  }

  .serviceSection h2 {
    font-size: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #323232;
    text-align: center;
  }

  .serviceSection .tipsP {
    text-align: center;
  }

  .serviceCard {
    padding-top: 15px;
    margin: 10px 0;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 13px 0 rgba(156, 183, 207, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
  }

  .card-content:hover {
    color: #023e99;
    transform: translateY(-4px);
  }

  /* .serviceCard:hover {
        box-shadow: 0 0 6px rgb(0 0 0 / 30%);
      } */
  .serviceCard .cardIcon {
    width: 84px;
    height: 84px;
    color: #007eff;
    border: 8px solid #ebebeb;
    border-radius: 50%;
    margin: 0 auto;
  }

  .serviceCard .cardIcon .iconfont {
    display: inline-block;
    font-size: 38px;
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }

  .serviceCard .cardInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .serviceCard .cardInfo h4 {
    font-size: 16px;
    font-weight: 700;
    color: #007eff;
    padding: 0 20px 15px;
    margin: 15px 0;
    position: relative;
  }

  .serviceCard .cardInfo h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    height: 2px;
    background: #ebebeb;
  }

  .serviceCard .cardInfo .btn {
    margin: 24px auto 20px;
  }

  /* --------------------------- */
  .featuresSection {
    text-align: center;
    background: url(/static/index/pageAbout/vector-shape2.png) no-repeat right top;
    background-size: 8%;
  }

  .featuresSection>div {
    background: url(/static/index/pageAbout/grey-shape.png) no-repeat 6% center;
    background-size: 60%;
  }

  .featuresSection h2 {
    font-size: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #323232;
  }

  .featuresSection .contetnt-choose01 {
    margin-bottom: 30px;
  }

  .featuresSection .contetnt-choose01 .top-card {
    background-color: #dcebfe;
  }

  .featuresSection .contetnt-choose02 .top-card {
    background-color: #fff9eb;
  }

  .featuresSection .contetnt-choose03 .top-card {
    background-color: #e6fdf7;
  }

  .featuresSection .top-card {
    padding: 28px 0;
  }

  .featuresSection .iconfont {
    font-size: 60px;
    color: #007eff;
  }

  .featuresSection .card-top-title {
    font-size: 22px;
    font-weight: 700;
  }

  .featuresSection .bottom-card {
    padding: 15px;
    background-color: #fff;
  }

  .featuresSection .card-bottom-title {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
  }

  .featuresSection .card-bottom-text {
    color: #777777;
  }

  .featuresSection .text-content p {
    font-size: 20px;
    color: #545454;
  }

  .featuresSection .to-about {
    margin-top: 20px;
    font-size: 18px;
  }

  .features2Section .left-bg {
    background: url(/static/index/pageAbout/advance-career-img.webp) no-repeat center;
    height: 100%;
    background-size: 80%;
  }

  .features2Section .features2Header {
    background: #eeeefc;
    padding: 15px;
  }

  .features2Section .iconfont {
    font-size: 30px;
  }

  .features2Section .num-score2 .iconfont {
    margin-right: 13px;
  }

  .features2Section .num-score3 .iconfont {
    margin-right: 8px;
  }

  .features2Section .score-item {
    margin-bottom: 15px;
  }

  .features2Section .score-tips {
    font-size: 24px;
    border-bottom: 3px solid #2196f3;
    width: max-content;
    padding: 5px;
  }

  .features2Section .num-score {
    font-size: 35px;
  }

  .features2Section .features2Desc {
    color: #777777;
  }

  .features2Section .score-item:hover {
    box-shadow: 0 0 13px 0 rgba(156, 183, 207, 0.3);
  }

  .subscriptionSection {
    text-align: center;
    padding: 85px 0;
    background: #e7edf3;
  }

  .subscriptionSection h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .subscriptionSection p {
    margin-bottom: 20px;
  }

  .subscriptionSection .subscriptionBtnGroup {
    padding: 15px 0;
  }

  .subscriptionSection .subscriptionBtnGroup .btn {
    width: 240px;
    margin: 0 10px;
    margin-bottom: 15px;
    line-height: 32px;
    font-weight: 700;
    font-size: 16px;
  }

  .subscriptionSection .subscriptionBtnGroup .btn.btn-light {
    color: #8f99a9;
  }

  @media (max-width: 768px) {
    .headerSearch {
      padding: 12% 2%;
    }

    .headerSearch h1 {
      font-size: 36px;
    }

    .featuresSection {
      background-size: 20%;
    }

    .featuresSection>div {
      background-size: 90%;
    }

    .featuresSection .choose-box {
      flex-direction: column-reverse;
    }

    .featuresSection .choose-content-box {
      margin-bottom: 25px;
    }
  }