@charset "UTF-8";
/* 自定义字体 */
@font-face {
  font-family: "number-font";
  src: url("/assets/font/impact.ttf");
}

@font-face {
  font-family: "title-font";
  src: url("/assets/font/w05.ttf");
}

.banner-container {
  width: 100%;
  height: 712px;
  overflow: hidden;
  position: relative;
}

.banner-container .banner-list {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.banner-container .banner-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.banner-container .banner-item img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.banner-container .banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.banner-container .banner-btn .iconfont {
  font-size: 20px !important;
}

.banner-container .banner-btn.prev-btn {
  left: 20px;
}

.banner-container .banner-btn.next-btn {
  right: 20px;
}

.banner-container .banner-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.banner-container .indicator-item {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.banner-container .indicator-item.active {
  background: #046EFF;
}

.service-container {
  width: 100%;
  height: 880px;
  background-color: #fff;
}

.service-container .service-box {
  max-width: 1400px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.service-container .service-box .service-item {
  width: 300px;
  height: 100%;
  border-radius: 40px;
  transition: all 0.3s;
  position: relative;
  padding: 50px 35px 0 35px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-right: 20px;
}

.service-container .service-box .service-item:nth-last-child {
  margin: 0;
}

.service-container .service-box .service-item.item-left {
  background: linear-gradient(0deg, #a0d3ff 0%, #2ca4fe 100%);
}

.service-container .service-box .service-item.item-middle {
  background: linear-gradient(0deg, #003eff 0%, #00b8ff 100%);
}

.service-container .service-box .service-item.item-right {
  background: linear-gradient(0deg, #5b5d7a 0%, #232654 100%);
}

.service-container .service-box .service-item.item-right .service-bg-icon {
  bottom: -30px;
}

.service-container .service-box .service-item .service-bg-icon {
  width: 300px;
  height: 300px;
  position: absolute;
  right: -60px;
  bottom: -50px;
  opacity: 0.2;
}

.service-container .service-box .service-item .default-box {
  width: 220px;
  height: 100%;
}

.service-container .service-box .service-item .default-box .default-title-box {
  width: 100%;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.service-container .service-box .service-item .default-box .default-title-box .default-title, .service-container .service-box .service-item .default-box .default-title-box .service-arrow {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  transition: all 0.2s;
}

.service-container .service-box .service-item .default-box .default-desc {
  margin-top: 50px;
}

.service-container .service-box .service-item .default-box .default-desc p {
  max-height: 420px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
  transition: all 0.2s;
  white-space: pre-wrap;
}

.service-container .service-box .service-item .default-box .default-desc .common-btn {
  margin-top: 120px;
  opacity: 0;
  transition: all 0.2s;
}

.service-container .service-box .service-item .show-box {
  display: none;
  width: calc(100% - 220px);
  height: 100%;
  padding-left: 80px;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
  align-content: start;
  overflow-y: auto;
}

.service-container .service-box .service-item .show-box .show-item {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.service-container .service-box .service-item .show-box .show-item .top {
  width: 100%;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.service-container .service-box .service-item .show-box .show-item .top .icon-box {
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.service-container .service-box .service-item .show-box .show-item .top .icon-box .iconfont {
  font-size: 25px !important;
  color: #046EFF;
}

.service-container .service-box .service-item .show-box .show-item .top .icon-box img {
  width: 25px;
  height: 25px;
  object-fit: co;
}

.service-container .service-box .service-item .show-box .show-item .top .show-title {
  width: calc(100% - 70px);
  height: 36px;
  text-align: left;
  line-height: 36px;
  padding: 0 10px;
  color: #242755;
  font-weight: bold;
  font-size: 18px;
}

.service-container .service-box .service-item .show-box .show-item .top .more-box {
  font-size: 16px;
  color: #0060FF;
  opacity: 0;
  transition: all 0.2s;
}

.service-container .service-box .service-item .show-box .show-item .bottom {
  width: 100%;
  padding-left: 35px;
  font-size: 16px;
  color: #6F7F9E;
  line-height: 30px;
}

.service-container .service-box .service-item .show-box .show-item:hover {
  background-color: white;
}

.service-container .service-box .service-item .show-box .show-item:hover .more-box {
  opacity: 1 !important;
}

.service-container .service-box .service-item p::-webkit-scrollbar, .service-container .service-box .service-item .show-box::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

.service-container .service-box .service-item p::-webkit-scrollbar-thumb, .service-container .service-box .service-item .show-box::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #838783;
}

.service-container .service-box .service-item p::-webkit-scrollbar-track, .service-container .service-box .service-item .show-box::-webkit-scrollbar-track {
  border-radius: 0px;
  background: transparent;
}

.service-container .service-box .service-item.active {
  width: 770px;
  padding: 50px 70px 60px 70px;
  background: linear-gradient(90deg, #f0f3fb 0%, #d1d9ec 100%);
}

.service-container .service-box .service-item.active .default-title {
  color: #232754 !important;
}

.service-container .service-box .service-item.active .service-arrow {
  opacity: 0 !important;
}

.service-container .service-box .service-item.active .default-desc p {
  max-height: 294px !important;
  overflow-y: auto;
  color: #242755 !important;
}

.service-container .service-box .service-item.active .default-desc .common-btn {
  margin-top: 50px;
  opacity: 1 !important;
}

.service-container .service-box .service-item.active .show-box {
  display: grid !important;
}

.feature-container {
  width: 100%;
  height: 907px;
  background: url("/assets/images/feature/bg.png") no-repeat;
}

.feature-container .title-box {
  height: 150px;
  padding-bottom: 40px;
  align-items: flex-end;
}

.feature-container .feature-box {
  width: 100%;
  height: calc(100% - 150px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-chart {
  width: 850px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-chart .feature-title {
  width: 300px;
  height: 0;
  margin-right: 45px;
  border-width: 0 250px 100px;
  border-style: solid;
  border-color: transparent transparent #1677ff;
  position: relative;
}

.feature-container .feature-box .feature-chart .feature-title span {
  position: absolute;
  left: 50%;
  top: 45px;
  transform: translateX(-40%);
  display: inline-block;
  width: 120px;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}

.feature-container .feature-box .feature-chart .feature-data-box {
  width: 100%;
  height: calc(100% - 100px);
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data {
  width: 100%;
  height: calc(100% - 219px);
  padding-right: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .left-section {
  display: grid;
  grid-template-columns: repeat(1, 200px);
  grid-template-rows: 185px 230px 145px;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .left-section .item:nth-child(odd) {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .left-section .border {
  background-color: #E6EFFC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .left-section .border .data-img {
  width: 140px;
  height: 100px;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .middle-section {
  width: 50px;
  height: 100%;
  padding-top: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .right-section {
  display: grid;
  grid-template-columns: repeat(1, 300px);
  grid-template-rows: 140px 45px 140px 100px 140px;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .right-section .item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .right-section .item.border {
  padding: 25px;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .right-section .item.border:last-child {
  padding-left: 20px;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .right-section .item.border:last-child .data-info {
  padding-left: 0;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .right-section .item.border .data-info {
  flex: 1;
  padding-left: 10px;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .right-section .item.border .data-info .data-desc {
  line-height: 30px;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .border {
  border: 2px dashed #046EFF;
  border-radius: 20px;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .border .data-title {
  color: #232754;
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.feature-container .feature-box .feature-chart .feature-data-box .feature-data .border .data-desc {
  color: #6f7f9e;
  font-size: 16px;
}

.feature-container .feature-box .feature-content {
  width: 450px;
  height: 100%;
  margin-left: 45px;
  padding-top: 55px;
}

.feature-container .feature-box .feature-content .feature-item {
  padding: 25px 30px;
  border: 2px dashed #046EFF;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.feature-container .feature-box .feature-content .feature-item:nth-child(2) {
  margin: 45px 0;
}

.feature-container .feature-box .feature-content .feature-item .index {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #005fff, #00aeff);
  margin-top: 10px;
}

.feature-container .feature-box .feature-content .feature-item .content {
  width: calc(100% - 10px);
  padding-left: 15px;
  color: #2e3e59;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 28px;
}

.business-container {
  width: 100%;
  height: 896px;
  background-color: #fff;
}

.business-container .business-box {
  width: 100%;
  height: calc(100% - 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.business-container .business-box .tab-box {
  width: 100%;
  height: 110px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(267px, max-content));
  grid-template-rows: repeat(1, 80px);
  column-gap: 40px;
  justify-content: center;
  align-items: start;
  border-bottom: 1px solid #DEE2EC;
}

.business-container .business-box .tab-box .tab-item {
  width: 267px;
  background-color: #FFFFFF;
  border: 1px solid #DFE3ED;
  text-align: center;
  line-height: 80px;
  font-size: 20px;
  color: #232754;
  border-radius: 10px;
  cursor: pointer;
}

.business-container .business-box .tab-box .tab-item.active {
  border-color: transparent;
  position: relative;
  color: transparent;
  background: url("/assets/images/business-bg.png") no-repeat;
}

.business-container .business-box .tab-box .tab-item.active::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-weight: bold;
  background: linear-gradient(to right, #232222 0%, #0061ff 47%, #0061ff 53%, #232222 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.business-container .business-box .business {
  width: 100%;
  height: calc(100% - 110px);
  padding: 50px 0 90px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.business-container .business-box .business .thumb {
  width: 633px;
  height: 438px;
  object-fit: cover;
}

.business-container .business-box .business .info-box {
  width: 450px;
  height: 438px;
  margin-left: 100px;
  padding: 68px 0 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.business-container .business-box .business .info-box .title {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  color: #232754;
  text-align: left;
}

.business-container .business-box .business .info-box .line {
  width: 36px;
  height: 6px;
  border-radius: 3px;
  margin: 15px 0 25px 0;
  background: linear-gradient(0deg, #ffc957 0%, #fd9243 99.24%);
}

.business-container .business-box .business .info-box .desc {
  height: 160px;
  color: #6F7F9E;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: left;
  line-height: 20px;
  white-space: pre-wrap;
}

.case-container {
  width: 100%;
  height: 880px;
  background: url("/assets/images/case.png") no-repeat;
  background-size: auto 100%;
}

.case-container .case-box {
  width: 1545px;
  height: 700px;
  margin: 0 auto;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.case-container .case-box .case-item {
  width: 330px;
  height: 515px;
  background-color: #FFFFFF;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.case-container .case-box .case-item .number {
  color: #EDF1F6;
  font-size: 100px;
  font-weight: bold;
  opacity: 0.8;
}

.case-container .case-box .case-item .name, .case-container .case-box .case-item .desc {
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: #6F7F9E;
  font-weight: bold;
}

.case-container .case-box .case-item .name {
  margin-top: 25px;
}

.case-container .case-box .case-item .brief {
  color: #6F7F9E;
  padding: 0 50px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 30px 0 20px 0;
  white-space: pre-wrap;
}

.case-container .case-box .case-item .more {
  font-size: 16px;
  color: #6F7F9E;
  text-align: center;
  letter-spacing: 1px;
}

.case-container .case-box .case-middle {
  width: 885px;
  background-color: #0061FF;
  position: relative;
  padding: 100px 70px 66px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.case-container .case-box .case-middle .case-img {
  width: 350px;
  height: 500px;
  position: absolute;
  top: -50px;
  left: 70px;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.case-container .case-box .case-middle .case-img img {
  width: 330px;
  height: 480px;
  object-fit: cover;
}

.case-container .case-box .case-middle .middle {
  width: 350px;
  height: 100%;
  position: relative;
}

.case-container .case-box .case-middle .middle .number {
  position: absolute;
  left: 0;
  top: 10px;
  opacity: 0.2;
}

.case-container .case-box .case-middle .middle .name, .case-container .case-box .case-middle .middle .desc {
  color: #fff;
  text-align: left;
  margin-top: 0;
}

.case-container .case-box .case-middle .middle .desc {
  margin-bottom: 20px;
}

.case-container .case-box .case-middle .middle .detail {
  height: 189px;
  padding: 0;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  text-align: left;
  white-space: pre-wrap;
  margin-bottom: 25px;
}

.case-container .case-box .case-middle .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  display: none;
}

.case-container .case-box .case-middle .arrow img {
  width: 28px;
  height: 28px;
}

.case-container .case-box .case-middle .arrow.arrow-left {
  left: -28px;
}

.case-container .case-box .case-middle .arrow.arrow-left img {
  transform: rotate(180deg);
}

.case-container .case-box .case-middle .arrow.arrow-right {
  right: -28px;
}

.news-container {
  width: 100%;
  height: 827px;
  background-image: url("/assets/images/news.png");
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.news-container .news-content {
  width: 1200px;
  height: calc(100% - 376px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.news-container .news-content .about-box {
  width: 558px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-container .news-content .about-box .about-item {
  height: 200px;
  background-color: #fff;
  position: relative;
  padding: 30px 60px 0 30px;
}

.news-container .news-content .about-box .about-item:last-child {
  grid-column: 1 / -1;
}

.news-container .news-content .about-box .about-item .en-title {
  color: #0061FF;
  font-size: 24px;
  font-family: title-font;
  margin-top: 10px;
}

.news-container .news-content .about-box .about-item .zn-title {
  color: #232754;
  margin: 20px 0;
  font-size: 18px;
  font-weight: bold;
}

.news-container .news-content .about-box .about-item .desc {
  font-size: 16px;
  color: #6F7F9E;
}

.news-container .news-content .about-box .about-item .no {
  color: rgba(0, 97, 255, 0.1);
  font-family: number-font;
  font-size: 100px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 15px;
}

.news-container .news-content .news-box {
  width: calc(100% - 628px);
  height: 420px;
}

.news-container .news-content .news-box .news-item {
  width: 100%;
  height: 150px;
  padding: 30px 0;
  cursor: pointer;
  border-bottom: 1px solid #DEE2EC;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.news-container .news-content .news-box .news-item:first-child {
  height: 120px;
  padding: 0 0 30px 0;
}

.news-container .news-content .news-box .news-item .date-box {
  width: 90px;
  height: 100%;
  background-color: #0061FF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.news-container .news-content .news-box .news-item .date-box .day {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.news-container .news-content .news-box .news-item .date-box .yearmonth {
  font-size: 16px;
  color: #fff;
}

.news-container .news-content .news-box .news-item .content-box {
  width: calc(100% - 90px);
  height: 100%;
  padding: 5px 0 0 30px;
}

.news-container .news-content .news-box .news-item .content-box .new-title {
  width: 100%;
  height: 20px;
  text-align: left;
  line-height: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #232754;
}

.news-container .news-content .news-box .news-item .content-box .new-content {
  width: 100%;
  height: 40px;
  margin-top: 20px;
  color: #6F7F9E;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
}

.news-container .common-btn-box {
  width: 100%;
  height: 188px;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.cooperation-container {
  width: 100%;
  min-height: 700px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.cooperation-container .coop-list {
  display: grid;
  grid-template-columns: repeat(5, 228px);
  column-gap: 15px;
  row-gap: 20px;
}

.cooperation-container .coop-list img {
  width: 228px;
  height: 88px;
  object-fit: cover;
}
