* {
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth; }

ul,
li {
  list-style: none; }

a {
  text-decoration: none;
  cursor: pointer; }

img {
  display: block; }

em {
  font-style: normal; }

i {
  font-style: normal; }

body {
  min-width: 1400px;
  font-family: Microsoft YaHei;
  background: url(../img/body-top.png) left 60px no-repeat, url(../img/body-bottom.png) left bottom no-repeat;
  background-size: 100% auto; }

@keyframes spread {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: 0; } }
.container {
  width: 1200px;
  margin: 0 auto; }

.down-btn {
  position: relative;
  width: 300px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  font-weight: bold;
  font-size: 28px;
  color: #ffffff;
  transition: 0.25s;
  z-index: 99;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(90deg, #005AC9 0%, #0046C9 100%); }
  .down-btn:hover {
    background: linear-gradient(90deg, #0040C9 0%, #021E8E 100%); }
  .down-btn.small-btn {
    width: 220px;
    height: 40px;
    border-radius: 10px;
    font-size: 20px; }
  .down-btn img {
    width: 30px;
    height: 30px; }
  .down-btn .round-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.2);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin-left: -140px;
    margin-top: -140px;
    animation: spread 1.5s infinite both; }

.advantage-list {
  width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 20px; }
  .advantage-list .advantage-item {
    display: flex;
    align-items: center;
    padding: 30px 10px 40px 20px;
    column-gap: 17px;
    width: 390px;
    height: 200px;
    background: linear-gradient(180deg, #DFEBFF 30.04%, #F4F8FF 100%);
    border-radius: 4px;
    box-sizing: border-box;
    transition: 0.25s; }
    .advantage-list .advantage-item:hover {
      transform: scale(1.02) translateY(-3px); }
    .advantage-list .advantage-item img {
      width: 70px;
      height: 70px; }
    .advantage-list .advantage-item .inner-box h4 {
      margin-bottom: 10px;
      font-weight: bold;
      font-size: 20px;
      color: #1a1a1a; }
    .advantage-list .advantage-item .inner-box p {
      margin-bottom: 14px;
      font-weight: 400;
      font-size: 16px;
      color: #1a1a1a;
      line-height: 24px; }
    .advantage-list .advantage-item .inner-box a {
      color: #001968;
      font-size: 16px;
      font-weight: bold; }

.side-swiper-wrap {
  padding-top: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 34px;
  margin-bottom: 115px; }
  .side-swiper-wrap #translateSwiper {
    width: 692px;
    overflow: hidden; }
  .side-swiper-wrap .tabs-wrap {
    position: relative;
    top: 12px;
    padding-left: 34px; }
    .side-swiper-wrap .tabs-wrap .line {
      position: absolute;
      left: 0;
      top: 3px;
      width: 3px;
      height: 330px;
      background: #ebecf0; }
    .side-swiper-wrap .tabs-wrap .tab-item {
      cursor: pointer; }
      .side-swiper-wrap .tabs-wrap .tab-item.active h3,
      .side-swiper-wrap .tabs-wrap .tab-item.active p {
        color: black; }
    .side-swiper-wrap .tabs-wrap .active-line {
      width: 3px;
      height: 60px;
      position: absolute;
      left: 0;
      top: 3px;
      background: #0059fa;
      transition: 0.25s; }
      .side-swiper-wrap .tabs-wrap .active-line.active-0 {
        top: 0; }
      .side-swiper-wrap .tabs-wrap .active-line.active-1 {
        top: 94px; }
      .side-swiper-wrap .tabs-wrap .active-line.active-2 {
        top: 188px; }
      .side-swiper-wrap .tabs-wrap .active-line.active-3 {
        top: 282px; }
    .side-swiper-wrap .tabs-wrap .page {
      position: absolute;
      left: -7px;
      top: -23px;
      font-weight: 400;
      font-size: 15px;
      color: #7f7e81; }
    .side-swiper-wrap .tabs-wrap h3 {
      font-size: 20px;
      font-weight: bold;
      color: #757575;
      line-height: 32px; }
    .side-swiper-wrap .tabs-wrap p {
      font-weight: 400;
      font-size: 16px;
      color: #757575;
      line-height: 32px; }
    .side-swiper-wrap .tabs-wrap .small-btn {
      margin-top: 35px;
      margin-left: 27px;
      background-color: #0078d4; }
      .side-swiper-wrap .tabs-wrap .small-btn:hover {
        background-color: #025ea4; }
  .side-swiper-wrap .side-swiper img {
    max-width: 692px; }

header {
  position: sticky;
  top: 0;
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 95px;
  background: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 9999; }
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  header .left-part {
    display: flex;
    align-items: center;
    column-gap: 10px; }
    header .left-part img {
      width: 40px;
      height: 40px; }
    header .left-part span {
      font-weight: 400;
      font-size: 24px;
      color: #18285d; }
  header nav {
    display: flex;
    align-items: center;
    column-gap: 45px; }
    header nav a {
      position: relative;
      padding: 0 6px;
      font-weight: 400;
      font-size: 24px;
      color: #1e1e1e; }
      header nav a.active {
        font-weight: bold; }
        header nav a.active::after {
          opacity: 1; }
      header nav a:hover {
        color: #0078d4; }
      header nav a::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: -12px;
        width: 100%;
        height: 2px;
        background: #0078d4;
        opacity: 0; }

.win-header {
  margin-bottom: 0; }

.top-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  column-gap: 27px;
  margin-bottom: 144px; }
  .top-box.active {
    display: flex; }
  .top-box > img {
    width: 604px; }
  .top-box .right-area h1 {
    position: relative;
    font-weight: bold;
    width: fit-content;
    font-size: 50px;
    color: #1e1e1e;
    line-height: 66px; }
    .top-box .right-area h1 em {
      font-style: normal;
      color: #0058cd; }
    .top-box .right-area h1 i {
      position: absolute;
      width: 246px;
      height: 40px;
      padding-left: 23px;
      line-height: 40px;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
      border-top-left-radius: 30px;
      font-size: 20px;
      color: #fff;
      right: 50px;
      top: -36px;
      background: linear-gradient(180deg, #30E7FB -42.5%, #0062EA 100%);
      box-sizing: border-box; }
  .top-box .right-area h2 {
    margin-bottom: 8px;
    font-size: 50px;
    color: #1e1e1e; }
  .top-box .right-area .check-list {
    margin-bottom: 25px; }
    .top-box .right-area .check-list li {
      display: flex;
      align-items: center;
      column-gap: 10px;
      font-weight: 400;
      font-size: 20px;
      color: #1e1e1e;
      line-height: 26px; }
      .top-box .right-area .check-list li img {
        width: 20px;
        height: 20px; }
      .top-box .right-area .check-list li:not(:last-child) {
        margin-bottom: 14px; }
  .top-box .right-area .support-sys {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 30px;
    color: #1E1E1E;
    font-weight: 400;
    font-size: 20px; }
    .top-box .right-area .support-sys a {
      display: block;
      min-width: 50px;
      padding: 0 8px;
      height: 36px;
      background-color: #fff;
      color: #1E1E1E;
      font-weight: 400;
      font-size: 20px;
      line-height: 36px;
      text-align: center;
      transition: 0.25s; }
      .top-box .right-area .support-sys a:hover {
        background-color: #0078d4;
        color: #fff; }

.d-box h2 {
  margin-bottom: 23px;
  font-weight: bold;
  font-size: 50px;
  line-height: 66px;
  color: #1e1e1e;
  text-align: center; }
  .d-box h2 + img {
    width: 563px;
    margin: 0 auto; }
  .d-box h2 + p {
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 20px;
    text-align: center; }
  .d-box h2 em {
    color: #0058cd; }

.win-top-box {
  margin-bottom: 44px;
  padding: 130px 0 134px;
  background: url(../img/new-top-bg.png) no-repeat;
  background-size: 100% 100%;
  column-gap: 123px; }
  .win-top-box .get-sys-wrap .get-btn:hover {
    background-color: #1E1E1E; }
  .win-top-box .right-area h1 {
    margin-bottom: 30px; }
  .win-top-box .right-area .check-list {
    margin-bottom: 55px; }
  .win-top-box .get-sys-wrap .get-more-btn {
    color: #001968; }

.bottom-title {
  text-align: center;
  margin-bottom: 13px;
  font-weight: bold;
  font-size: 36px;
  color: #18285e;
  line-height: 38px; }

.bottom-tip {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 20px;
  color: #18285e; }

.tags {
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 23px; }
  .tags .tag-item {
    display: flex;
    align-items: center;
    column-gap: 14px;
    width: 200px;
    height: 48px;
    padding-left: 19px;
    background: white;
    border-radius: 10px;
    font-weight: 400;
    font-size: 20px;
    color: #18285e;
    box-sizing: border-box; }
    .tags .tag-item img {
      width: 32px;
      height: 32px; }

.tags + a {
  margin: 0 auto 60px; }

footer {
  margin-bottom: 24px;
  text-align: center;
  color: #959595;
  font-size: 16px;
  line-height: 32px; }

.win-top-box .right-area h1 i {
  width: 183px;
  right: 0;
  padding-left: 0;
  text-align: center; }

.top-tab-area {
  width: 460px;
  margin-bottom: 50px;
  background: #fff; }
  .top-tab-area .tab-list {
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); }
    .top-tab-area .tab-list > li {
      width: 50%;
      height: 36px;
      line-height: 36px;
      font-size: 16px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      background-color: #fff;
      color: black; }
      .top-tab-area .tab-list > li.active {
        background-color: #1e1e1e;
        color: #fff; }
  .top-tab-area .panel-item {
    display: none;
    height: 58px;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
    color: black;
    padding: 11px; }
    .top-tab-area .panel-item.active {
      display: block; }

.get-sys-wrap {
  display: flex;
  align-items: flex-end;
  column-gap: 20px; }
  .get-sys-wrap .get-btn {
    width: 300px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    border-radius: 10px;
    background-color: #001968;
    color: #fff; }
  .get-sys-wrap .get-more-btn {
    font-size: 20px;
    line-height: 32px;
    font-weight: bold;
    color: #005AC9; }
    .get-sys-wrap .get-more-btn:hover {
      text-decoration: underline; }

.bottom-down-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 58px;
  column-gap: 10px; }
  .bottom-down-wrap .get-more-btn {
    font-size: 20px;
    font-weight: bold;
    color: #005AC9; }
    .bottom-down-wrap .get-more-btn:hover {
      text-decoration: underline; }

/*# sourceMappingURL=style.css.map */
