@charset "UTF-8";

/* 模糊展开 */
@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    filter: blur(0);
    opacity: 1;
  }
}

img {
  max-width: 100%;
}

* {
  font-family: Noto Sans SC;
  margin: 0;
  padding: 0;
}

/* 引入字体 */
@font-face {
  font-family: "Noto Sans SC";
  src: url(../font/SourceHanSansSC-Regular.subset.otf);
}

a {
  text-decoration: none;
  color: #101010;
}

body {
  width: 100%;
}

.header {
  width: 100%;
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  height: 5.2083vw;
  /* min-height: 100px; */
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  padding-left: 12.5vw;
  width: 7.8125vw;
  min-width: 100px;
}

.header-logo img {
  width: 100%;
}

.header-menu {
  padding-right: 2.0833vw;
  width: 50.2604vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-menu-list {
  width: 39.8438vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hedaer-menu-item {
  display: block;
  color: #333333;
  position: relative;
  font-size: 1.0417vw;
}

.hedaer-menu-item:hover {
  cursor: pointer;
  color: #105a98;
}

/* 
.hedaer-menu-item::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #105A98;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform .3s ease;
}

.hedaer-menu-item:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
} */

.hedaer-menu-item-active {
  color: #105a98;
}

.pheader-menu {
  display: none;
}

.header-language {
  cursor: pointer;
  font-size: 1.0417vw;
  color: #105a98;
  position: relative;
  text-align: center;
}

.language-select {
  overflow: hidden;
  padding: 10px 0;
  background: #666666;
  position: absolute;
  left: 30%;
  top: -100vh;
  width: 80px;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transform: translate(-50%, -1.042vw);
}

.header-language:hover .language-select {
  top: 100%;
  transform: translate(-50%, 0);
  opacity: 1;
  transition: transform ease 0.4s;
}

.language-select a {
  color: #ffffff;
  width: 100%;
  padding-bottom: 10px;
  transition: all ease 1s;
}

.language-select a:hover {
  color: #105a98;
  transition: all ease 1s;
}

.index1 {
  height: 100%;
  margin-top: 5.2083vw;
  color: #101010;
  position: relative;
}

.index1 .banner-text {
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 11.0938vw;
  font-size: 2.6042vw;
  font-weight: bold;
  box-sizing: border-box;
  text-align: center;
}

.index1 .swiper-slide img {
  width: 100%;
  /* height: calc(100vh - 5.2083vw);
  object-fit: cover; */
}

.index1 .banner-more {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  font-size: 1.25vw;
  transition: all ease 0.5s;
  cursor: pointer;
}

.index1 .goicon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25vw;
  line-height: 1.6667vw;
}

.index1 .banner-more:hover {
  color: #105a98;
  transition: all ease 0.5s;
}

.index1 .banner-more:hover .goicon {
  animation: gogo 0.8s;
  animation-iteration-count: infinite;
}

@keyframes gogo {
  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0);
  }
}

.index2 {
  padding: 3.125vw 12.5vw;
}

.index2 .index2-title {
  font-weight: bold;
  font-size: 1.6667vw;
  padding-bottom: 16px;
}

.index2 .index2-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: unset;
  flex-wrap: wrap;
}

.index2 #index2-item {
  width: 31.25vw;
  position: relative;
}

.index2 .index2-img-box {
  font-size: 0;
  cursor: pointer;
  overflow: hidden;
}

.index2 .index2-img-box img {
  width: 100%;
  transition: all ease 1s;
}

.index2 .index2-img-box:hover img {
  transition: all ease 1s;
  transform: scale(1.1);
}

.index2 #index2-item:nth-child(2n + 1)::after {
  content: "";
  position: absolute;
  top: 2.8646vw;
  right: -6.25vw;
  height: 15.75vw;
  width: 1px;
  background: #bbbbbb;
}

.index2 #index2-item:last-child:nth-child(2n-1)::after {
  display: none;
}

.index2 .index2-item-title {
  padding: 1.8229vw 0 2.2917vw 0;
  font-size: 1.4583vw;
}

.index2 .index2-more-box {
  padding-top: 16px;
  display: flex;
}

.index2 .more-btn {
  cursor: pointer;
  position: relative;
  margin: auto;
  width: 12.5vw;
  height: 3.125vw;
  background: #105a98;
  color: white;
  text-align: center;
  line-height: 3.125vw;
  font-size: 1.4583vw;
  border-radius: 10px;
  transition: all ease 0.5s;
  box-sizing: border-box;
  border: solid 1px #ffffff;
}

.index2 .btn-5:hover {
  transition: all ease 0.5s;
  color: #105a98;
  border: solid 1px #105a98;
  background: transparent;
}

.footer {
  padding: 2.8125vw 12.5521vw 2.3438vw 12.1875vw;
  background: #105a98;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.code-box {
  width: 12.5vw;
  min-width: 100px;
}

.footer .footer-left {
  display: flex;
}

.footer .footer-logo {
  margin-right: 3.0208vw;
  width: 7.8125vw;
  min-width: 100px;
}

.footer .footer-menu {
  display: flex;
  position: relative;
}

.footer .footer-menu::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 200%;
  opacity: 0.1;
  background: #ffffff;
  transform: translateY(-30%);
}

.footer .footer-menu-sm {
  display: none;
}

.footer .menu-item {
  font-weight: 500;
  color: #ffffff;
  font-size: 1.0417vw;
}

.footer .menu-col {
  margin-right: 3.0208vw;
  display: flex;
  flex-direction: column;
}

.footer .menu-item-title {
  padding-bottom: 8px !important;
}

.footer .menu-item {
  padding-bottom: 4px;
  cursor: pointer;
  transition: all ease 0.5s;
}

.footer .menu-item:hover {
  transition: all ease 0.5s;
  color: #a8a7a7;
}

.footer .footer-right {
  position: relative;
}

.footer .code-title {
  padding-top: 0.2604vw;
  font-size: 0.625vw;
  text-align: center;
  color: #ffffff;
}

.page-banner {
  margin-top: 100px;
  width: 100%;
}

.page-banner img {
  width: 100%;
}

.nopass {
  color: red !important;
  border: solid 1px red !important;
}

.about {
  line-height: 1.5;
  color: #101010;
  padding: 2.0833vw 12.5vw;
}

.about .content-row {
  padding-bottom: 1.9792vw;
}

.about .row-title {
  font-weight: bold;
  padding-bottom: 14px;
  font-size: 1.875vw;
}

.about .row-content {
  font-size: 1.1583vw;
}

.about .row-list-item {
  display: flex;
  padding-bottom: 2.8646vw;
}

.about .abt-list-left-box {
  flex-shrink: 0;
  width: 6.25vw;
  display: flex;
  justify-content: center;
}

.about .abt-img-box {
  width: 100%;
}

.about .abt-list-right-box {
  padding-left: 4.1667vw;
}

.about .abt-list-right-box-title {
  font-size: 1.4583vw;
  font-weight: bold;
  padding-bottom: 0.5208vw;
}

.about .abt-list-right-box-content {
  font-size: 1.1542vw;
}

.serve-page {
  padding: 2.0833vw 12.5vw;
}

.serve-page .sv-content-title {
  font-size: 1.875vw;
  font-weight: bold;
  padding-bottom: 1.3542vw;
}

.serve-page .sv-content-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.serve-page .sv-content-item {
  width: 50%;
  position: relative;
  box-sizing: border-box;
  padding-left: 6.25vw;
  padding-bottom: 5.4688vw;
}

.serve-page .sv-content-item:nth-child(2n) {
  padding-left: 10.3125vw !important;
}

.serve-page .sv-content-item:nth-child(2n + 1)::after {
  content: "";
  position: absolute;
  top: 2.8646vw;
  right: 0;
  height: 10.4167vw;
  width: 1px;
  background: gray;
}

.serve-page .index2-item:last-child:nth-child(2n-1)::after {
  display: none;
}

.serve-page .sv-content-item-title {
  font-size: 1.4583vw;
  font-weight: bold;
  padding-bottom: 0.7292vw;
}

.serve-page .sv-content-item a {
  color: #101010;
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 1.1583vw;
  position: relative;
  padding-left: 30px;
  line-height: 2.6042vw;
}

.serve-page .sv-content-item a:hover {
  color: #105a98;
}

.serve-page .sv-content-item a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  left: 0;
  top: calc(50% - 2px);
  background: #101010;
}

.serve_detail {
  padding: 2.0833vw 12.5vw;
  color: #101010;
}

.serve_detail p {
  font-size: 1.1583vw;
}

.serve_detail h3 {
  font-size: 1.4583vw;
}

.serve_detail .svdt-title {
  font-weight: bold;
  font-size: 1.875vw;
}

.see-page {
  line-height: 1.5;
  padding: 2.0833vw 12.5vw 0;
  display: flex;
}

.see-page .see-left-menu {
  display: flex;
  flex-direction: column;
}

.see-page .see-menu-item {
  cursor: pointer;
  padding-bottom: 14px;
  color: #666666;
  font-size: 1.4583vw;
}

.see-page .see-menu-item:hover {
  color: #101010;
}

.see-page .see-menu-active {
  color: #101010;
  font-weight: bold;
}

.see-page .see-content {
  padding-left: 5vw;
}

.see-page .see-content-item {
  color: #101010;
  display: flex;
  padding-bottom: 2.0833vw;
}

.see-page .see-content-item-img {
  width: 28.125vw;
  margin-right: 2.6042vw;
}

.see-page .see-img-box {
  font-size: 0;
  overflow: hidden;
  width: 100%;
}

.see-page .see-img-box img {
  transition: all ease 1s;
  width: 100%;
}

.see-page .see-img-box:hover img {
  transform: scale(1.1);
}

.see-page .see-item-content-box {
  width: 28.6458vw;
}

.see-page .see-content-item-title {
  font-size: 1.4583vw;
  font-weight: bold;
  padding-bottom: 12px;
}

.see-page .see-content-item-content {
  font-size: 1.1583vw;
}

.pagin-box {
  padding: 1.875vw 0 1.875vw 0;
  display: flex;
}

.pagin-box .see-pagin {
  margin: auto;
  width: 232px;
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pagin-box .prev-button,
.pagin-box .next-button {
  width: 65px;
  border: #e8e8e8 solid 1px;
  border-radius: 2px;
  height: 100%;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
}

.pagin-box .disable-button {
  border: #f6f6f6 solid 1px;
  color: #b3b9bc;
  cursor: not-allowed;
  cursor: not-allowed;
}

.pagin-box .now-page {
  color: #105a98;
}

.see-detail-page {
  padding: 2.0833vw 20vw;
  line-height: 1.5;
}

.see-detail-page .see-detail-content p {
  font-size: 1.1583vw;
}

.see-detail-page .see-detail-content h2 {
  font-size: 1.25vw;
}

/* .see-detail-page .see-detail-content h3{
  font-size: ;
} */
.see-detail-page .see-detail-content-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.875vw;
  padding-bottom: 2.0833vw;
}

.see-detail-page .see-detail-dowlond {
  padding: 1.8229vw 0;
}

.see-detail-page .dowlond-item {
  text-align: center;
  font-size: 1.4583vw;
  color: #666666;
  line-height: 150%;
}

.see-detail-page .dowlond-button {
  cursor: pointer;
  color: #105a98;
}

.see-detail-page .dowlond-box {
  z-index: 20;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
}

.see-detail-page .dowlond-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.see-detail-page .dowlond-content {
  transform: translateY(5%);
  z-index: 20;
  margin: auto;
  background: #ffffff;
  padding: 20px;
  width: 62.5vw;
  border-radius: 10px;
}

.see-detail-page .form-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 30px 0;
}

.see-detail-page .form-title-left {
  font-size: 1.4583vw;
  color: #101010;
  font-weight: bold;
}

.see-detail-page .form-title-right {
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  transition: all ease 1s;
}

.see-detail-page .form-title-right:hover {
  transform: rotate(90deg);
  transition: all ease 1s;
}

.see-detail-page .form-title-right span {
  top: 50%;
  position: absolute;
  margin: auto;
  width: 20px;
  height: 1px;
  border: 1px solid #101010;
}

.see-detail-page .form-title-right span:nth-child(1) {
  transform: rotate(-45deg);
}

.see-detail-page .form-title-right span:nth-child(2) {
  transform: rotate(45deg);
}

.see-detail-page .form-row {
  font-size: 1.1583vw;
  padding: 0.625vw 2.6042vw 0.625vw 2.6042vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
}

.see-detail-page .contact-disable {
  display: none;
  font-size: 16px;
  color: red;
}

.see-detail-page .row-lable,
.see-detail-page .row-box {
  width: 48%;
}

.see-detail-page .input-box {
  box-sizing: border-box;
  border: solid 1px #bbbbbb;
  border-radius: 2px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
}

.see-detail-page .select-box {
  width: 25px;
  height: 25px;
}

.see-detail-page .row-box textarea {
  width: 100%;
  border: solid 1px #bbbbbb;
  padding: 5px;
}

.see-detail-page .form-input {
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.see-detail-page .form-input-button {
  border: solid 1px #ffffff;
  box-sizing: border-box;
  cursor: pointer;
  width: 12.5vw;
  height: 3.125vw;
  font-size: 1.4583vw;
  text-align: center;
  line-height: 3.125vw;
  border-radius: 10px;
  background: #105a98;
  color: #ffffff;
  position: relative;
  transition: all ease 0.5s;
}

.see-detail-page .form-input-button:hover {
  background: transparent;
  transition: all ease 0.5s;
  color: #105a98;
  border: solid 1px #105a98;
}

.see-detail-page .button-disable {
  background: #666666;
  cursor: not-allowed;
}

.recommend {
  padding: 0 12.5vw 2.0833vw;
}

.recommend .recommend-title {
  font-size: 1.875vw;
  font-weight: bold;
  padding-bottom: 14px;
}

.recommend .index2-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: unset;
  flex-wrap: wrap;
}

.recommend #index2-item {
  width: 31.25vw;
  position: relative;
}

.recommend .index2-img-box {
  font-size: 0;
  cursor: pointer;
  overflow: hidden;
}

.recommend .index2-img-box img {
  width: 100%;
  transition: all ease 1s;
}

.recommend .index2-img-box:hover img {
  transition: all ease 1s;
  transform: scale(1.1);
}

.recommend #index2-item:nth-child(2n + 1)::after {
  content: "";
  position: absolute;
  top: 2.8646vw;
  right: -6.25vw;
  height: 13.75vw;
  width: 1px;
  background: #bbbbbb;
}

.recommend #index2-item:last-child:nth-child(2n-1)::after {
  display: none;
}

.recommend .index2-item-title {
  padding: 1.8229vw 0 2.2917vw 0;
  font-size: 1.4583vw;
}

.team-page {
  padding: 2.0833vw 12.5vw;
  line-height: 1.5;
  color: #101010;
}

.team-page .team-row {
  display: flex;
  margin-bottom: 2.0313vw;
}

.team-page .team-row-img {
  flex-shrink: 0;
  width: 8vw;
}

.team-page .team-row-img img {
  width: 100%;
}

.team-page .team-row-content {
  padding-left: 6.25vw;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.team-page .tr-title {
  line-height: 1;
  width: 100%;
  font-weight: bold;
  font-size: 1.4583vw;
  padding-bottom: 2.0833vw;
}

.team-page .tr-content {
  line-height: 1.5;
  font-size: 1.1583vw;
}
.page-box {
  display: flex;
  padding: 2.0833vw 12.5vw 0;
}

.page-left {
  margin-right: 5vw;
  /* width: 15vw; */
  flex-shrink: 0;
  padding: 2.0833vw 0;
  display: flex;
  justify-content: center;
}

.page-left .menu-item {
  text-align: center;
  padding-bottom: 14px;
  color: #666666;
  font-size: 1.4583vw;
}

.page-left .menu .menu-item-active {
  font-weight: bold;
  color: #101010;
}

.page-left .menu .menu-item-active {
  font-weight: bold;
}

.develop-page {
  padding: 2.0833vw 0 2.0833vw 0 ;
}

.develop-page .develop-title {
  font-size: 1.875vw;
  font-weight: bold;
  padding-bottom: 2.6042vw;
}

.develop-page .develop-row {
  display: flex;
  margin-bottom: 2.0313vw;
}

.develop-page .develop-row-img {
  flex-shrink: 0;
  width: 8vw;
}

.develop-page .develop-row-img img {
  width: 100%;
}

.develop-page .develop-row-content {
  padding-left: 6.25vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: unset;
}

.develop-page .tr-title {
  line-height: 1;
  width: 100%;
  font-weight: bold;
  font-size: 1.4583vw;
  padding-bottom: 0.2604vw;
}

.develop-page .tr-content {
  line-height: 1.5;
  font-size: 1.1583vw;
}

.develop-page .see-more {
  font-size: 1.0583vw;
  color: #666666;
  text-align: start;
  line-height: 1.5;
  transition: all ease 0.5s;
  cursor: pointer;
  padding-top: 10px;
}

.develop-page .see-more:hover {
  color: #105a98;
  transition: all ease 0.5s;
}

.develop_detail {
  padding: 2.0833vw 12.5vw;
  color: #101010;
}

.develop_detail .svdt-title {
  font-weight: bold;
  font-size: 1.875vw;
}

.practice-expreice {
  padding: 2.0833vw 0 0 0;
  line-height: 1.5;
}

.practice-expreice .develop-title {
  font-size: 1.875vw;
  font-weight: bold;
  padding-bottom: 2.6042vw;
}

.practice-expreice .practice-row p {
  font-size: 1.1583vw;
  line-height: 1.5;
}

.practice-expreice .practice-tip {
  width: 100%;
  text-align: right;
  font-size: 1.1583vw;
  line-height: 2;
}

.practice-expreice .practice-row {
  padding-bottom: 2.6042vw;
}

.contact-page {
  color: #101010;
  padding: 2.0833vw 12.5vw;
  line-height: 1.5;
}

.contact-page .ct-tt-it {
  padding-bottom: 2.0833vw;
}
.contact-page .ct-tt-it p{
  padding-bottom: 0.7292vw;
}
.contact-page .tt-it-title {
  font-size: 1.875vw;
  font-weight: bold;
  padding-bottom: 0.7292vw;
}

.contact-page .tt-it-row {
  font-size: 1.1583vw;
  padding-bottom: 0.7292vw;
}

.contact-page .tt-it-row p {
  /* padding-left: 20px; */
  position: relative;
}

/* .contact-page .tt-it-row p::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 0.4167vw;
  height: 0.4167vw;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #101010;
} */

.contact-page .form-row {
  padding-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-page .row-lable {
  width: 12.5vw;
  margin-right: 3.125vw;
  flex-shrink: 0;
}

.contact-page .contact-form {
  padding-top: 13px;
}

.contact-page .input-box {
  border: solid 1px #bbbbbb;
  border-radius: 2px;
  padding: 0 10px;
  width: 37.5vw;
  height: 2.8646vw;
  box-sizing: border-box;
}

.contact-page .select-box {
  border: solid 1px #bbbbbb;
  border-radius: 2px;
  width: 37.5vw;
  height: 2.8646vw;
}

.contact-page .textarea-box {
  border: solid 1px #bbbbbb;
  border-radius: 2px;
  width: 37.5vw;
  padding: 0 10px;
  height: 2.8646vw;
}

.contact-page .form-input-button {
  border: solid 1px #ffffff;
  box-sizing: border-box;
  cursor: pointer;
  width: 12.5vw;
  height: 3.125vw;
  line-height: 3.125vw;
  border-radius: 10px;
  background: #105a98;
  color: #ffffff;
  text-align: center;
  font-size: 1.4583vw;
  position: relative;
  transition: all ease 0.5s;
}

.contact-page .form-input-button:hover {
  background: transparent;
  transition: all ease 0.5s;
  color: #105a98;
  border: solid 1px #105a98;
}

.contact-page .form-input {
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none !important;
}

/*new*/
.header-menu-item-box {
  position: relative;
}

.child-nav {
  display: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5208vw 1.0417vw 1.0417vw;
  width: 24vw;
  position: absolute;
  left: 0;
  top: 60px;
}

.child-box {
  display: flex;
  flex-wrap: wrap;
}

.child-nav a {
  display: block;
  color: #666666;
  /* margin-left: 1.0417vw;
  margin-right: 1.0417vw; */
  text-align: center;
  padding: 0.5208vw 1.0417vw 0;
  font-size: 0.8333vw;
}

.child-nav-title {
  padding: 10px 0;
  font-size: 1.0417vw;
}

.child-nav-t {
  display: none;
  padding: 0.5208vw 1.0417vw 1.0417vw;
  width: 6.25vw;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  top: 60px;
}

.nav-active {
  color: #105a98;
}

.nav-active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #105a98;
}

.indexswiper {
  overflow: hidden;
}

.swiper-pagination {
  transform: translateX(-50%) !important;
  left: 50%;
  bottom: 4.1667vw;
}

.swiper-pagination-bullet {
  margin-right: 10px;
  background: #ffffff !important;
  width: 5.2083vw !important;
  height: 1.0417vw !important;
  border-radius: 10px !important;
  border: solid 1px #666666;
}

.swiper-pagination-bullet-active {
  background: #105a98 !important;
}

.maxsix {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

#resume {
  line-height: 2.9688vw;
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1250px) {
  .footer .code-box {
    /* max-width: 100px; */
  }

  .footer .footer-menu::after {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 6vw 2vw 2vw 6vw;
  }

  .footer .menu-item {
    min-width: 60px;
  }

  .see-detail-page .see-detail-dowlond {
    padding: 20px 0;
  }

  .see-detail-page .dowlond-item {
    font-size: 16px;
  }

  .see-detail-page .dowlond-item {
    font-size: 16px;
  }

  .see-detail-page .dowlond-content {
    width: 80%;
  }

  .see-detail-page .form-title-left {
    font-size: 20px;
  }

  .see-detail-page .form-row {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .see-detail-page .row-lable {
    width: 100%;
  }

  .see-detail-page .row-box {
    width: 100%;
  }

  .see-detail-page .form-input-button {
    width: 150px;
    height: 40px;
  }

  .see-detail-page .dowlond-box {
    background: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 991px) {
  .index1 .swiper-slide img {
    width: 100%;
    height: unset;
    object-fit: unset;
  }
}

@media screen and (max-width: 768px) {
  .page-box{
    flex-wrap: wrap;
    padding: 0;
  }
  .page-left{
    width: 100%;
  }
  .page-left .menu{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .page-left .menu .menu-item{
    font-size: 18px;
    padding: 0 20px;
  }
  .footer .code-title {
    font-size: 12px;
  }

  .index1 .swiper-slide img {
    width: 100%;
    /* height: calc(100vh - 50px); */
  }

  .recommend #index2-item::after {
    display: none;
  }

  .recommend #index2-item {
    width: 48%;
  }

  /* .footer .menu-col:nth-child(3) {
    order: -2;
  }

  .footer .menu-col:nth-child(6) {
    order: -1;
  } */

  .form-input-button span {
    font-size: 16px;
  }

  .contact-page .form-input-button {
    font-size: 16px;
  }

  .page-banner {
    margin-top: 50px;
  }

  #resume {
    height: 40px;
    line-height: 40px;
  }

  .header {
    height: 50px;
    min-height: 50px;
  }

  .header-logo img {
    width: 80px;
  }

  .header-menu {
    width: 100px;
    justify-content: space-around;
    margin-right: 20px;
  }

  .header-language {
    font-size: 16px;
  }

  .header-menu-list {
    display: none;
    transform: translateX(-100%);
  }

  .plist-show {
    display: flex;
    position: fixed;
    left: 0;
    top: 50px;
    height: calc(100% - 50px);
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    animation: navshow 0.5s;
    animation-fill-mode: forwards;
  }

  @keyframes navshow {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .hedaer-menu-item {
    font-size: 24px;
    padding: 10px 0;
  }

  .pheader-menu {
    display: block;
    cursor: pointer;
    width: 20px;
    position: relative;
    height: 20px;
  }

  .pheader-menu span {
    position: absolute;
    width: 100%;
    height: 2px;
    margin: auto;
    background: #101010;
    transition: all ease 1s;
  }

  .pheader-menu span:nth-child(1) {
    transition: all ease 1s;
    top: 50%;
    transform: translateY(-4px);
  }

  .pheader-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(4px);
  }

  .pheader-menu-close span:nth-child(1) {
    transition: all ease 1s;
    transform: translate(-50%);
    transform: rotate(-45deg);
    top: 50%;
  }

  .pheader-menu-close span:nth-child(2) {
    transform: translate(-50%);
    transform: rotate(45deg);
    top: 50%;
  }

  .index1 {
    margin-top: 50px;
  }

  .index1 .banner-text {
    top: 20%;
    font-size: 24px;
    font-weight: bold;
  }

  .index1 .goicon {
    font-size: 20px;
  }

  .index1 .banner-more {
    font-size: 20px;
  }

  .swiper-pagination-bullet {
    width: 40px !important;
    height: 10px !important;
  }

  .index2 .index2-title {
    font-size: 24px;
  }

  .index2 .index2-item {
    width: 100%;
    padding-bottom: 15px;
  }

  .index2 .index2-item::after {
    display: none;
  }

  .index2 .index2-item-title {
    font-size: 20px;
  }

  .index2 .more-btn {
    width: 150px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .about .row-title {
    font-size: 24px;
  }

  .about .row-content {
    font-size: 16px;
  }

  .about .abt-list-left-box {
    width: 80px;
  }

  .about .abt-list-right-box-title {
    font-size: 20px;
  }

  .about .abt-list-right-box-content {
    font-size: 16px;
  }

  .serve-page .sv-content-title {
    font-size: 24px;
    padding-bottom: 20px;
  }

  .serve-page .sv-content-item {
    width: 100%;
    padding-left: 0;
  }

  .serve-page .sv-content-item::after {
    display: none;
  }

  .serve-page .sv-content-item:nth-child(2n) {
    padding-left: 0 !important;
  }

  .serve-page .sv-content-item-title {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .serve-page .sv-content-item a::after {
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }

  .serve-page .sv-content-item a {
    font-size: 20px;
    line-height: 1.5;
  }

  .serve_detail {
    padding: 30px 12.5vw;
    color: #101010;
  }

  .serve_detail .svdt-title {
    font-weight: bold;
    font-size: 24px;
  }

  .serve_detail p {
    font-size: 16px !important;
    padding: 0 !important;
  }

  .see-page {
    flex-wrap: wrap;
  }

  .see-page .see-left-menu {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }

  .see-page .see-menu-item {
    font-size: 16px;
    margin-right: 10px;
  }

  .see-page .see-content {
    padding-left: 0;
  }

  .see-page .see-content-item {
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  .see-page .see-content-item-img {
    width: 100%;
    margin-right: 0;
  }

  .see-page .see-item-content-box {
    width: 100%;
  }

  .see-page .see-content-item-title {
    font-size: 20px;
    padding: 10px 0;
  }

  .see-page .see-content-item-content {
    font-size: 16px;
  }

  .pagin-box {
    padding: 30px 0 !important;
  }

  .team-page {
    padding: 10px 30px;
  }

  .team-page .team-row-img {
    flex-shrink: 0;
    width: 160px;
  }

  .team-page .team-row {
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 30px;
  }

  .team-page .team-row-content {
    padding-left: 0;
    width: 100%;
  }

  .team-page .tr-title {
    font-size: 24px;
  }

  .team-page .tr-content {
    font-size: 16px;
  }

  .develop-page {
    padding: 10px 30px;
  }

  .develop-page .develop-title {
    font-size: 24px;
    padding-bottom: 20px;
  }

  .develop-page .develop-row-img {
    width: 160px;
  }

  .develop-page .develop-row {
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 30px;
  }

  .develop-page .develop-row-content {
    width: 100%;
    padding-left: 0;
  }

  .develop-page .tr-title {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .develop-page .tr-content {
    font-size: 16px;
  }

  .develop-page .see-more {
    font-size: 16px;
  }

  .develop_detail {
    padding: 30px 12.5vw;
    color: #101010;
  }

  .develop_detail .svdt-title {
    font-weight: bold;
    font-size: 24px;
  }

  .develop_detail p {
    font-size: 16px !important;
    padding: 0 !important;
  }

  .practice-expreice {
    padding: 10px 30px;
  }

  .practice-expreice .develop-title {
    font-size: 24px;
    padding-bottom: 20px;
  }

  .practice-expreice .practice-row p {
    font-size: 16px;
  }

  .practice-expreice .practice-tip {
    font-size: 16px;
  }

  .contact-page {
    padding: 10px 30px;
  }

  .contact-page .tt-it-title {
    font-size: 24px;
    padding-bottom: 10px;
  }

  .contact-page .tt-it-row {
    font-size: 16px;
  }

  .contact-page .contact-form {
    width: 100%;
  }

  .contact-page .form-row {
    width: 100%;
    justify-content: space-between;
  }

  .contact-page .row-lable {
    width: 80px;
  }

  .contact-page .row-box {
    width: 70%;
  }

  .contact-page .input-box {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    height: 30px;
  }

  .contact-page .textarea-box {
    height: 30px;
    box-sizing: border-box;
    width: 100%;
  }

  .contact-page .form-input-button {
    width: 150px;
    height: 40px;
    line-height: 40px;
  }

  .see-detail-page {
    padding: 10px 30px;
  }

  .see-detail-page .see-detail-content-title {
    font-size: 20px;
  }

  .see-detail-page .see-detail-content h2 {
    font-size: 18px;
  }

  .see-detail-page .see-detail-content p {
    font-size: 16px;
  }

  .recommend {
    padding: 10px 30px;
  }

  .recommend .recommend-title {
    font-size: 24px;
  }

  .recommend .index2-item::after {
    display: none;
  }

  .recommend .index2-item {
    width: 100%;
  }

  .recommend .index2-item-title {
    font-size: 16px;
  }

  .index2 #index2-item::after {
    display: none;
  }

  .index2 #index2-item {
    width: 100%;
  }

  .footer {
    flex-wrap: wrap;
  }

  .footer .footer-left {
    flex-wrap: wrap;
  }

  .footer .footer-menu {
    width: 100%;
    padding: 10px 0;
    flex-wrap: wrap;
    display: none;
  }

  .footer .footer-menu-sm {
    position: relative;
    width: 100%;
    padding: 10px 0;
    flex-wrap: wrap;
    display: flex;
  }

  .footer .menu-item {
    font-size: 14px;
  }

  .footer .menu-item-title {
    font-size: 16px;
  }

  .footer .menu-col {
    padding: 10px 0;
    margin-right: 0;
    width: 25%;
  }

  .nav-active::after {
    display: none;
  }

  .header-menu-item-box {
    text-align: center;
  }

  .child-nav,
  .child-nav-t {
    padding: 0;
    width: 100%;
    top: unset !important;
    left: unset !important;
    position: relative !important;
  }

  .child-nav-title {
    text-align: center;
  }

  .child-box {
    width: 50%;
    margin: auto;
    background: #ffffff;
    justify-content: center;
  }

  .child-nav-title {
    font-size: 18px !important;
  }

  .child-box a {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px !important;
  }

  .hedaer-menu-item::before {
    display: none;
  }
}
