@charset "UTF-8";

/*
Theme Name: 海得科技英文主题
Description: 
Author: fei
Version: 1.0
2025-08-25
*/

@font-face {
  font-family: "esk-Lt";
  src: url("./assets/fonts/ESKlarheitGrotesk-Lt.otf") format("opentype"),
    /* IE9 Compat Modes */
    url("./assets/fonts/ESKlarheitGrotesk-Lt.woff2") format("woff2"),
    /* Super Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Lt.woff") format("woff"),
    /* Pretty Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Lt.ttf") format("truetype");
    /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "esk-Md";
  src: url("./assets/fonts/ESKlarheitGrotesk-Md.otf") format("opentype"),
    /* IE9 Compat Modes */
    url("./assets/fonts/ESKlarheitGrotesk-Md.woff2") format("woff2"),
    /* Super Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Md.woff") format("woff"),
    /* Pretty Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Md.ttf") format("truetype"),
    /* Safari, Android, iOS */
    url("./assets/fonts/HarmonyOS_SansSC_Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HMOS-Md";
  src: url("./assets/fonts/HarmonyOS_SansSC_Medium.otf") format("opentype"), url("./assets/fonts/HarmonyOS_SansSC_Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "esk-Xlt";
  src: url("./assets/fonts/ESKlarheitGrotesk-Xlt.otf") format("opentype"),
    /* IE9 Compat Modes */
    url("./assets/fonts/ESKlarheitGrotesk-Xlt.woff2") format("woff2"),
    /* Super Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Xlt.woff") format("woff"),
    /* Pretty Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Xlt.ttf") format("truetype");
    /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "esk-Rg";
  src: url("./assets/fonts/ESKlarheitGrotesk-Rg.otf") format("opentype"),
    /* IE9 Compat Modes */
    url("./assets/fonts/ESKlarheitGrotesk-Rg.woff2") format("woff2"),
    /* Super Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Rg.woff") format("woff"),
    /* Pretty Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Rg.ttf") format("truetype");
    /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "esk-Xbd";
  src: url("./assets/fonts/ESKlarheitGrotesk-Xbd.otf") format("opentype"),
    /* IE9 Compat Modes */
    url("./assets/fonts/ESKlarheitGrotesk-Xbd.woff2") format("woff2"),
    /* Super Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Xbd.woff") format("woff"),
    /* Pretty Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Xbd.ttf") format("truetype");
    /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "esk-Bd";
  src: url("./assets/fonts/ESKlarheitGrotesk-Bd.otf") format("opentype"),
    /* IE9 Compat Modes */
    url("./assets/fonts/ESKlarheitGrotesk-Bd.woff2") format("woff2"),
    /* Super Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Bd.woff") format("woff"),
    /* Pretty Modern Browsers */
    url("./assets/fonts/ESKlarheitGrotesk-Bd.ttf") format("truetype");
    /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}

/* 全局样式开始 */

* {
  padding: 0;
  margin: 0;
  color: inherit;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  font-size: 14px;
  overflow-y: scroll;
  overflow-x: hidden;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 8px;
  background: white;
  position: absolute;
  left: 0;
}

body::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

img {
  display: block;
  width: 100%;
}

/* 默认容器宽度 */
.con {
  width: 100%;
  max-width: 1920px;
  /* 保持最大宽度为 1920px */
  box-sizing: border-box;
  margin: 0 auto;
  /* 水平居中 */
}

.con-news {
  width: 100%;
  max-width: 2560px;
  box-sizing: border-box;
  margin: 0 auto;
  /* 水平居中 */
}

/* 针对 1920px 以上的分辨率的媒体查询 */
@media screen and (min-width: 1920px) {
  body {
    background-color: #050227;
  }

  .con {
    width: 1920px;
    /* 固定宽度为 1920px */
    margin: 0 auto;
    /* 水平居中 */
  }

  .con-news {
    width: 2560px;
    /* 固定宽度为 1920px */
    margin: 0 auto;
    /* 水平居中 */
  }

  footer {
    width: 1920px;
    /* 固定宽度为 1920px */
    margin: 0 auto;
    /* 水平居中 */
  }
}

/* 全局样式结束 */

/* 顶部样式开始 */
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  transition: all 0.3s;
  height: 75px;
}

.header-active {
  background: rgba(0, 5, 40, 0.92);
}

.hd-out {}

/* 针对 1920px 以上的分辨率的媒体查询 */
@media screen and (min-width: 1920px) {
  .hd-out {
    width: 1920px;
    /* 固定宽度为 1920px */
    margin: 0 auto;
    /* 水平居中 */
  }
}

.hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  /* 保持原有的高度 */
  padding: 0 40px;
  /* background: yellow; */
}

.hd-left {
  width: 230px;
  /* 保持原有的宽度 */
  position: relative;
  display: block;
  padding-left: 4%;
}

.hd-md {
  width: 40%;
  height: 100%;
  font-size: 14px;
  font-family: "esk-Lt", "HMOS-Lt", sans-serif;
  color: #fff;
  margin-right: 20%;
}

.hd-nav {
  width: 100%;
  height: 100%;
}

.hdnav-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

/* .hdnav-box > li:hover {
    color: #005DD9;
} */

.hdnav-box>li .menu-item {
  color: white;
}

.checked {
  color: #005dd9 !important;
}

.checked>a::after {
  background-image: url("./assets/images/top/箭头蓝色加粗@2x.png") !important;
  margin-left: 9.16px !important;
}

/* 层级1 */
.hdnav-box>li {
  position: relative;
  transform: translate(0, calc(47.23px - 42.78px));
}

.hdnav-box>li:nth-last-of-type(n+2) {
  flex-grow: 1;
}

.hdnav-box>li:nth-child(3)>a {
  pointer-events: none;
}

.hdnav-box>li>a {
  line-height: 60px;
  /* 保持原有的行高 */
  display: block;
  font-family: "esk-Lt", "HMOS-Lt", sans-serif;
}

/* 层级2 */
.hdnav-box>li>.sub-menu {
  position: absolute;
  width: 100%;
  /* 保持原有的宽度 */
  /* 保持原有的右边距 */
  display: none;
}

.hdnav-box>li>.sub-menu>li {
  padding-bottom: 24px;
  /* 保持原有的底部内边距 */
}

.hdnav-box>li>.sub-menu>.menu-item-has-children>a::after {
  background-image: url("./assets/images/top/箭头白色@2x.png");
  background-size: cover;
  display: inline-block;
  content: "";
  width: 5px;
  /* 保持原有的宽度 */
  height: 10px;
  /* 保持原有的高度 */
  margin-left: 8.5px;
  /* 保持原有的左边距 */
}

/* 层级3 */
.hdnav-box>li>.sub-menu>li>.sub-menu {
  display: none;
  position: absolute;
  width: 100%;
  /* 保持原有的宽度 */
  top: 0;
  left: 100%;
  /* 保持原有的左边距 */
}

.hdnav-box>li>.sub-menu>li>.sub-menu>li {
  padding-bottom: 24px;
  /* 保持原有的底部内边距 */
}

.hdnav-box>li>.sub-menu>li>.sub-menu>li>a::after {
  background-image: url("./assets/images/top/箭头白色@2x.png");
  background-size: cover;
  display: inline-block;
  content: "";
  width: 5px;
  /* 保持原有的宽度 */
  height: 10px;
  /* 保持原有的高度 */
  margin-left: 8.5px;
  /* 保持原有的左边距 */
}

.hdnav-box>li>.sub-menu>li>.sub-menu>li:last-child {
  padding-bottom: 0px;
  /* 保持原有的底部内边距 */
}

/* .hdnav-box>li>.sub-menu>li>.sub-menu>li:hover .sub-menu {
    display: none;
} */

/* 层级4 */
.hdnav-box>li>.sub-menu>li>.sub-menu>li>.sub-menu {
  display: none;
  position: absolute;
  width: 100%;
  /* 保持原有的宽度 */
  /* 保持原有的左边距 */
  top: 0;
  left: 100%;
}

.sub-menu li:last-child {
  /* background: red; */
  /* height: 150px; */
}

.hdnav-box>li>.sub-menu>li>.sub-menu>li>.sub-menu>li {
  padding-bottom: 24px;
  /* 保持原有的底部内边距 */
  display: none;
}

.hdnav-box>li>.sub-menu>li>.sub-menu>li>.sub-menu>li:last-child {
  padding-bottom: 0px;
  /* 保持原有的底部内边距 */
}

.current-menu-item>a {
  color: #005dd8;
}

.current-menu-item-active>a {
  color: #005dd8;
}

.hd-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 120px;
  /* 保持原有的宽度 */
  position: relative;
  padding-right: calc(1.28rem - 40px);
  opacity: 0;
  pointer-events: none;
}

.hd-right>a {
  display: block;
  width: 24px;
  /* 保持原有的宽度 */
  height: 24px;
  /* 保持原有的高度 */
  align-self: flex-start;
}

.hd-search {
  width: 24px;
  /* 保持原有的宽度 */
  height: 24px;
  /* 保持原有的高度 */
  position: relative;
}

.hd-search-img {
  width: 24px;
  /* 保持原有的宽度 */
  height: 24px;
  /* 保持原有的高度 */
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.hd-search-img img {
  position: absolute;
  top: 0;
  left: 0;
}

.hd-search-img-mr {
  /* opacity: 1;
    transition: all 0.3s; */
  display: block;
}

.hd-search-img-ac {
  /* opacity: 1;
    transition: all 0.3s; */
  display: none;
}

/* .hd-search-active .hd-search-img-mr {
    opacity: 0;
}
.hd-search-active .hd-search-img-ac {
    opacity: 1;
} */

.hd-search-input {
  position: absolute;
  right: 32px;
  /* 保持原有的右边距 */
  width: 130px !important;
  /* 保持原有的宽度 */
  height: 24px;
  /* 保持原有的高度 */
  border: 1px solid #005dd8;
  box-sizing: border-box;
  /* opacity: 0;
    transition: 0.2s; */
  display: none;
}

/* .hd-search-active .hd-search-input {
    opacity: 1;
} */

.hd-search-input input {
  background: transparent !important;
  outline: none;
  border: none;
  width: 100% !important;
  /* 保持原有的宽度 */
  height: 100%;
  /* 保持原有的高度 */
  box-sizing: border-box;
  padding: 0 10px;
  color: white;
}

.hd-search-input input:focus {
  background: transparent !important;
}

.hd-search-input input:active {
  background: transparent !important;
}

.hd-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 260px;
  /* 保持原有的高度 */
  background: rgba(0, 5, 40, 0.92);
  opacity: 0.9;
  display: none;
}

/* 针对 1920px 以上的分辨率的媒体查询 */
@media screen and (min-width: 1920px) {
  .hd-bg {
    position: absolute;
    top: 0;
    height: 260px;
    /* 保持原有的高度 */
    background: rgba(0, 5, 40);
    opacity: 0.95;
    display: none;
    width: 1920px;
    /* 固定宽度为 1920px */
    margin: 0 auto;
    /* 水平居中 */
  }
}

/* #menu-item-17>a.disabled {
    pointer-events: none;
    cursor: default;
} */

/* 顶部样式结束 */

/* ft样式开始 */
.ft-out {
  background: #050227;
  padding: 70px 3%;
  color: white;
  position: relative;
}

.ft {
  display: flex;
  justify-content: space-between;
  height: 220px;
  position: relative;
}

.ft-left {
  width: 20%;
  box-sizing: border-box;
  border-right: 1px solid #b0b1bb;
  padding-left: 3.3%;
}

.ft-left-part1 {
  font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.ft-left-part2 {
  margin-top: 33px;
  font-size: 14px;
  line-height: 24px;
}

.ft-left-part2 p {
  width: 73.87%;
}

.ft-right {
  width: 80%;
  box-sizing: border-box;
  padding-left: 60px;
}

.ft-right .ft-nav {
  width: 100% !important;
}

.ft-right .ftnav-box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.ftnav-box>li {
  width: 14%;
}

.ftnav-box> :first-child {
  width: 28%;
}

.ftnav-box> :nth-child(2) {
  width: 20%;
}

.ftnav-box>li>a {
  font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  font-size: 14px;
  display: block;
  margin-bottom: 18px;
}

.ftnav-box .sub-menu {
  font-family: "esk-Lt", "HMOS-Lt", sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.ftnav-box .sub-menu li {
  margin-bottom: 6px;
}

.ftnav-box a:hover {
  color: #005dd8;
}

.ft-bt {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  height: 32px;
  padding-left: 3.3%;
}

.ft-bt-email {
  width: 283px;
  background: white;
  box-sizing: border-box;
  padding-left: 15px;
  height: 100%;
}

.ft-bt-email .wpcf7 {
  width: 100%;
  height: 100%;
}

.ft-bt-email .screen-reader-response {
  display: none !important;
}

.ft-bt-email .wpcf7-form {
  height: 100%;
  width: 100%;
}

.ft-bt-email .wpcf7-form p {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
}

.ft-bt-email .wpcf7-form p span input {
  width: 80%;
  height: 100%;
  outline: none;
  border: none;
  color: #40405a;
}

.ft-bt-email .wpcf7-form p .wpcf7-submit {
  height: 100%;
  width: 40px;
  outline: none;
  border: none;
  display: block;
  background: #005dd8;
}

.ft-bt-email .wpcf7-form p .wpcf7-spinner {
  display: none;
}

.ft-bt-email-link {
  display: flex;
  justify-content: space-between;
  height: 32px;
  width: 160px;
  padding-right: 12%;
}

.ft-bt-email-link a {
  display: block;
  height: 32px;
  width: 32px;
}

.ft-bb {
  display: flex;
  justify-content: space-evenly;
  color: #000528;
  font-family: "esk-Lt", "HMOS-Lt", sans-serif;
}

.ft-bb p {
  width: unset;
  margin: 0;
  font-size: 12px;
  line-height: 36px;
}

/* ft样式结束 */

/* 首页轮播图开始 */
.sc1-out {
  position: relative;
}

.sc1-out .swiper-slide {
  background: white !important;
}

.sc1-item {
  background: white !important;
}

.sc1-item-wz {
  position: absolute;
  /* right: 0; */
  top: 100px;
  /*left: 0;*/
  right: calc(1.28rem - 8px);
  margin: auto;
}

.sc1-item-wz-1 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: white;
  text-align: right;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.sc1-item-wz-1 p {
  width: 42%;
  line-height: 1.3;
}
/*
.sc1-out .swiper-slide:first-of-type .sc1-item-wz-1 p {
  color: #000528;
}
 */
.sc1-item-wz-2 {
  color: #005dd8;
  font-size: 30px;
  text-align: right;
  font-weight: bold;
  line-height: 40px;
  margin-top: 5px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.sc1-item-wz-2 p {
  width: 30%;
}

.sc1-out .pagination {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  /* top:76.5vh; */
  /*left: 0;*/
  /*right: 0;*/
  margin: auto;
  z-index: 998;
  right: calc(1.28rem - 4px);
}

.sc1-out .swiper-pagination {
  display: flex;
  justify-content: space-between;
  position: relative !important;
  top: 0;
}

.sc1-out .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: .96rem;
}

.sc1-out .swiper-pagination-bullet {
  height: .24rem;
  width: 24px;
  background: #000;
  border-radius: 0;
  opacity: 1;
}

.sc1-out .swiper-pagination-bullet-active {
  background: #005dd8;
  color: red;
}

.sc1-item-pimg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56%;
}

/* 首页轮播图结束 */

/* sc3开始 */
.sc3-out {
  color: white;
  position: relative;
}

.sc3 {
  /* height: 200px; */
}

.sc3 .swiper-slide {
  background: url("./assets/images/3屏-底图.png") no-repeat center center;
  background-size: cover;
}

.sc3-item {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 106px 0 436px;
}

.sc3-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  position: absolute;
  top: 106px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  z-index: 998;
  padding-left: calc(1.28rem - 2px);
}

.sc3-name p {
  text-align: right;
  width: fit-content;
}

.sc3-item-left {
  width: 50%;
  padding-left: 1.28rem;
}

.sc3-item-left-part1 {
  display: flex;
  align-items: center;
  width: 47.5%;
  margin-top: 244px;
}

.sc3-item-left-part1-img {
  width: 147px;
}

.sc3-item-left-part1-xl {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 40px;
  margin-left: 10px;
}

.sc3-item-left-part2 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 40px;
  width: 59.0625%;
  margin-top: 25px;
}

.sc3-item-left-part3 {
  margin-top: 20px;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.025em;
  width: 90%;
}

.sc3-item-bt-email {
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 200;
  font-weight: lighter;
  width: 92%;
  line-height: 30px;
}

.sc3-item-right {
  width: 50%;
  padding-right: 1.28rem;
}

.sc3-item-right-img {
  opacity: 0;
  transform: translateX(-10%);
}

.sc3-item-right-img-active {
  opacity: 1;
  transform: translateX(0%);
}

.sc3sp-out {
  position: absolute !important;
  bottom: 35%;
  width: 100%;
  padding-left: calc(1.28rem - 4px);
}

.sc3sp {
  position: relative;
}

.sc3sp-out .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 96px;
  display: flex;
  justify-content: space-between;
  height: 24px;
}

.sc3sp-out .swiper-pagination-bullet {
  height: 24px;
  width: 24px;
  background: #fff;
  border-radius: 0;
  opacity: 1;
}

.sc3sp-out .swiper-pagination-bullet-active {
  background: #005dd8 !important;
}

/* sc3结束 */

/* sc4开始 */
.sc4-out {
  position: absolute;
  display: flex;
  justify-content: space-between;

  width: 1920px;
  margin: 0 auto;

  left: 0;
  right: 0;
  z-index: 990;
  transform: translateY(-68%);
}

@media screen and (max-width: 1920px) {
  .sc4-out {
    width: 100%;
  }
}

.sc4 {
  width: 1000px;
  height: 500px;
  display: flex;
  justify-content: space-between;
  position: relative;
  left: 1.28rem;
}

.sc4-left {
  width: 50%;
}

.sc4-right {
  width: 50%;
}

.sc4-other {
  position: relative;
  overflow: hidden;
  height: 500px;
  width: 100%;
}

.sc4-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.sc4-name .sc4-name-1 p {
  position: relative;
  right: -13.5%;
  width: 400px;
}

.sc4-name .sc4-name-2 p {
  position: relative;
  right: 22.5%;
  width: 400px;
}

.sc4-name p {
  position: relative;
  right: 1.28rem;
  /*width: 400px;*/
}

.sc4-out .swiper-button-prev {
  height: 90px;
  width: 90px;
  top: var(--swiper-navigation-top-offset, 80%);
}

.sc4-out .swiper-button-next {
  height: 90px;
  width: 90px;
  top: var(--swiper-navigation-top-offset, 80%);
}

.sc4-out .swiper-button-prev:after {
  display: none;
}

.sc4-out .swiper-button-next:after {
  display: none;
}

.sc4-out .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 96px;
  display: flex;
  justify-content: space-between;
  position: absolute !important;
  height: 24px;
  z-index: 998;
  bottom: 0 !important;
  left: 135px;
}

.sc4-out .swiper-pagination-bullet {
  height: 24px;
  width: 24px;
  background: black;
  border-radius: 0;
  opacity: 1;
}

.sc4-out .swiper-pagination-bullet-active {
  background: #005dd8 !important;
}

.sc4-space {
  height: 250px;
  background-color: white;
}

/* sc4结束 */

/* sc5开始 */

.sc5-out {
  height: 500px;
  width: 500px;
  background: #005dd8;
}

.sc5-out .swiper {
  width: 100%;
  height: 100%;
}

.sc5-item-con {
  width: 413px;
  margin: 63px auto 0;
  font-size: 40px;
  color: white;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  line-height: 50px;
  padding-left: 5%;
}

.sc5-item-a {
  width: 89px;
  display: block;
  margin-top: 40px;
}

.sc5-out .swiper-slide p {
  transform: translateX(-200px);
  opacity: 0;
  transition: all 2s;
}

.sc5-out .swiper-slide a {
  transform: translateX(-200px);
  opacity: 0;
  transition: all 2s;
}

.sc5-out .ani-slide a {
  transform: translateX(0);
  opacity: 1;
}

.sc5-out .ani-slide p {
  transform: translateX(0);
  opacity: 1;
}

/* sc5结束 */
/* ---------------------- */

/* sc6开始 */
.sc6-out {
  height: 500px;
  width: 500px;
}

.sc6-out .swiper {
  width: 100%;
  height: 100%;
}

.sc6-out .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc6-out .swiper-slide:nth-child(1) {
  background: red;
}

.sc6-out .swiper-slide:nth-child(2) {
  background: black;
}

.sc6-out .swiper-slide:nth-child(3) {
  background: gray;
}

.sc6-out .swiper-slide:nth-child(4) {
  background: greenyellow;
}

.sc6-out .swiper-slide:nth-child(5) {
  background: pink;
}

/* sc6结束 */

/* sc7开始 */
.sc7-out {
  background: #f6f6f6;
  padding: 260px 0 100px;
}

.sc7-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-left: calc(1.28rem - 8px);
}

.sc7-name p {
  text-align: right;
  width: fit-content;
}

.sc7 {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 1.28rem;
  padding-right: 1.28rem;
}

.sc7-1 {
  width: 72.1154%;
}

.sc7-1-con {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #000528;
  font-size: 40px;
  line-height: 50px;
  margin-top: 30px;
  height: 200px;
  background: #f6f6f6;
}

.sc7-1-con p {
  width: 75%;
}

.sc7-2 {
  width: 27.88%;
  height: 800px;
}

.sc7-2 .swiper-slide {
  width: 53.01% !important;
  height: 100%;
  opacity: 0.4;
}

.sc7-2 .swiper-slide {
  width: 100%;
}

.sc7-2 .swiper-slide img {
  width: 246px !important;
}

.sc7-2 .swiper-slide-thumb-active {
  opacity: 1 !important;
  transition: all 0.3s;
}

.sc7-11 {
  padding-left: calc(1.28rem - 4px);
}

.sc7-out .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 96px;
  display: flex;
  justify-content: space-between;
  height: 24px;
  position: relative;
  opacity: 1;
  margin-top: 60px;
}

.sc7-out .swiper-pagination-bullet {
  height: 24px;
  width: 24px;
  background: #000;
  border-radius: 0;
  opacity: 1;
}

.sc7-out .swiper-pagination-bullet-active {
  background: #005dd8;
  color: red;
}

/* sc7结束 */

/* sc8开始 */
/*.sc8-out {
    height: 748px;
    background: url('./assets/images/首页6屏-底图.jpg') no-repeat center;
    background-size: cover;
    box-sizing: border-box;
    border-top: 1px solid #F6F6F6;
}*/

/* sc8开始 */

/* sc8开始 */
.sc8-out {
  height: 748px;
  /* 保持原有的高度 */
  /* background-image: url("./assets/images/首页6屏-底图.jpg"); */
  background-image: url("./assets/images/加入海得-3840x1500.webp");
  background-size: cover;
  box-sizing: border-box;
  /* border-top: 1px solid #f6f6f6; */
  width: 100%;
  /* 确保宽度占满整个屏幕 */
  overflow: hidden;
}

.sc8 {
  text-align: right;
}

.sc8-part-1 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: white;
  margin-top: 107px;
  padding-right: calc(1.28rem - 4px);
}

.sc8-part-1 p {
  text-align: right;
}

.sc8-part-2 {
  margin-top: 60px;
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  padding-right: 1.28rem;
}

.sc8-part-2 p {
  font-size: 20px;
  color: white;
  text-align: right;
  width: 50.06%;
  float: right;
  line-height: 35px;
  letter-spacing: 0.025em;
}

/*  sc8结束*/

/* sc9开始 */
.sc9-out {
  position: relative;
  margin-bottom: -2px;
}

.sc9 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100%;*/
}

/* 针对 1920px 以上的分辨率的媒体查询 */
@media screen and (min-width: 1920px) {
  .sc9 {
    width: 1920px;
    /* 固定宽度为 1920px */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

.sc9-con {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-right: 4%;
}

.sc9-con div {
  text-align: right;
}

.sc9-part1 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 100px;
  padding-right: 7%;
}

.sc9-part2 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 7.3%;
}

.sc9-part3 {
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  margin-top: 0px;
  padding-right: 7%;
}

.sc9-cate3 {
  color: white;
}

.sc9-part4 {
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  font-size: 20px;
  color: white;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}

.sc9-part4 p {
  /* margin-right: 120px; */
  line-height: 30px;
}

.sc9-part5 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 28px;
  line-height: 42px;

  color: #fff;
  margin-top: 15px;
  padding-right: 7%;
}

.sc9-after {
  position: relative;
  top: 460px;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  padding-left: 6%;
}

.sc9-part6 {
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  font-size: 20px;
  color: #000528;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}

.sc9-part6 p {
  /* margin-right: 120px; */
  line-height: 30px;
}

.sc9-part7 p {
  font-size: 28px;
  line-height: 42px;
  color: #fff;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
}

.sc9-position {
  color: rgba(255, 255, 255, 0.662);
  margin-top: 80px;
  font-size: 16px;
  padding-left: 2.4%;
}

.sc9-position-after {
  color: rgba(12, 1, 1, 0.66);
  margin-top: 80px;
  font-size: 16px;
  padding-left: 6.2%;
}

.sc9-position-search {
  color: rgba(255, 255, 255, 0.662);
  margin-top: 80px;
  font-size: 16px;
  padding-left: 6.2%;
}

.sc9-position-faq {
  color: rgba(17, 9, 9, 0.66);
  margin-top: 80px;
  font-size: 16px;
  padding-left: 6.2%;
}

.sc9-position-product {
  color: rgba(255, 255, 255, 0.662);
  margin-top: 80px;
  font-size: 16px;
  padding-left: 6.2%;
}

/*.sc20-right-product-detail{*/
/*    width: 47.077%;*/
/*    margin-top: 160px;*/
/*    height: 900px; !* 设置固定高度 *!*/
/*    overflow: hidden; !* 隐藏超出部分 *!*/
/*    position: relative;*/
/*    padding-right: 250px;*/
/*}*/

.sc9-position>span:nth-child(1) {
  display: none;
}

.sc9-position>span:nth-child(2) {
  display: none;
}

.sc9-position>span:nth-child(3) {
  display: none;
}

.sc9-position>span:nth-child(4) {
  display: none;
}

.sc9-position>span:nth-child(5) a {
  pointer-events: none;
}

.sc9-position-product>span:nth-child(5) a {
  pointer-events: none;
}

.sc9-position>span:nth-child(9) a {
  pointer-events: none;
}

.sc9-position>span:last-child {
  color: #fff;
}

.sc9-cate3 .sc9-part1 {
  margin-top: 0;
}

.sc9-cate3 .sc9-part3 {
  color: white;
}

.faq .sc9-position {
  color: #000000c0;
}

.faq .sc9-position>span:last-child {
  color: #000;
}

.faq .sc9-cate3 .sc9-part3 {
  color: #000;
}

/* sc9结束 */

/* sc10开始 */

.sc10 {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  background-color: white;
}

.sc10-out-5 .sc10-wz {
  padding-right: 6.61%;
}

.sc10-wz {
  width: 49.01%;
  text-align: right;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 38px;
}

.sc10-tp {
  width: 41.66%;
}

.sc10-wz-1 {
  color: #005dd8;
  font-size: 75px;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  margin-top: 10px;
  margin-right: -3px;
}

.sc10-wz-2 {
  color: #000528;
  font-size: 30px;
  margin-top: 45px;
  font-family: "esk-Lt", "HMOS-Lt", sans-serif;
}

.sc10-wz-3 {
  font-size: 20px;
  color: #000528;
  margin-top: 15px;
  line-height: 35px;
  letter-spacing: 0.025em;
  text-align: justify;
  text-align-last: right;
  div {
    padding-right: 28px;
  }
}

.sc10-wz>div:last-child {
  padding-right: unset;
}

.sc10-wz-4 {
  font-size: 20px;
  color: #000528;
  margin-top: 22px;
  line-height: 35px;
  padding-left: 11%;
  letter-spacing: 0.025em;
}

.sc10-wz-4 p {
  padding-right: 28px;
}

.sc10-wz-more {
  width: 90px;
  height: 109px;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --------------- */
.sc10-out-1 .sc10-tp {
  position: relative;
}

.sc10-out-1 .sc10-tp .sc10-fk {
  width: 104px;
  height: 104px;
  background: #005dd8;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(100%, 100%);
}

.sc10-out-1 .sc10-wz {
  padding-right: 8%;
}

.sc10-out-2 .sc10-wz-3 div {
  line-height: 30px;
}

.sc10-out-2 .sc10-wz-3 div span {
  width: 16px;
  height: 16px;
  background: #005dd8;
  display: inline-block;
  margin-left: 5px;
}

.sc10-out-3 .sc10-tp {
  position: relative;
  margin-right: -2px;
}

.sc10-out-3 .sc10-tp .sc10-fk {
  width: 104px;
  height: 104px;
  background: #005dd8;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-100%, 100%);
}

.support-block {
  width: 16px;
  height: 16px;
  background: #005dd8;
  position: absolute;
  transform: translate(69%, 48%);
}

.sc10-out-3 .sc10-wz {
  padding-left: 6.61%;
}

.sc10-out-4 .sc10-wz {
  padding-right: 1.28rem;
}

.sc10-out-5 .sc10-wz-3 p:nth-child(1) {
  margin-bottom: 25px;
}

/* sc10结束 */

.contact-box {
  padding-bottom: 50px;
  background-color: white;
  padding-top: 30px;
}

/* sc2开始 */
.sc2-out {
  padding: 105px 0 0;
  background-color: rgb(243, 243, 243);
  /*margin:0 2% ;*/
}

.sc2-name {
  position: relative;
  right: 8%;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  /* justify-content: ; */
  flex-direction: column;
  align-items: flex-end;
}

.sc2-name p {
  text-align: right;
}

.sc2 {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  padding: 0 7% 0 6%;
}

.sc2-item {
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
  width: 23.3%;
}

.sc2-item-img {
  width: 200px;
}

.sc2-item-con {
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  font-size: 28px;
  color: #000528;
  margin-top: 20px;
  line-height: 42px;
}

/* sc2结束 */

/* sc11开始 */
.sc11-out {
  height: calc(100vw * 1040 / 1920);
  max-height: 1040px;
  padding-top: 7.3% ;
  box-sizing: border-box;
  background-image: url("./assets/images/support/3屏-底.png");
  background-size: cover;
  /* 使背景图片覆盖整个内容区域 */
  background-position: center;
  /* 使背景图片居中 */

}

.sc10-out .sc10-out-2 {
  padding: 104px 0;
}

.sc11-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: .75rem;
  color: #005dd8;
  display: flex;
  /* justify-content: ; */
  flex-direction: column;
  align-items: flex-start;
  padding-left: 6%;
}

.sc11-name p {
  text-align: right;
  width: fit-content;
}

.sc11 {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  padding: 0 7% 0 6%;
}

/*
105
28
40 50
530 530
 */
.sc11-item {
  width: 31.85%;
  .sc11-item-img {
    position: relative;
    div:nth-of-type(1) {
      position: absolute;
      top: calc(47 / 530 * 100%);
      right: calc(43.6 / 530 * 100%);
      font-size: 40px;
      line-height: 48px;
      text-align: right;
    }
    div:nth-of-type(2) {
      position: absolute;
      right: calc(43.6 / 530 * 100%);
      bottom: calc(38.5 / 530 * 100%);
      font-size: 28px;
      line-height: 1;
    }
  }
}

/* sc11结束 */

/* sc12开始 */
.sc12-bg {
  background: url("./assets/images/about3.png") no-repeat top center;
  background-size: 100% 100%;
  padding: 104px 0;
}

.sc12-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 38.66%;
  margin-bottom: 104px;
}

.sc12-name p {
  text-align: right;
}

.sc12 {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
}

.sc12-tp {
  width: 41.66%;
  position: relative;
  display: flex;
}

.sc12-tp .sc12-right-img {
  width: 84%;
  position: relative;
}

.sc12-fk {
  position: absolute;
  width: 19.04%;
  height: 19.04%;
  background: #005dd8;
  left: 0;
  bottom: 0;
  transform: translate(-100%, 100%);
}

.sc12-wz {
  width: 56.46%;
  text-align: right;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
}

.sc12-wz-1 {
  color: #fff;
  font-size: 60px;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
}

.sc12-wz-2 {
  font-family: "esk-Rg", "HMOS-Rg", sans-serif !important;
  color: #fff;
  font-size: 20px;
  line-height: 35px;
  margin-top: 45px;
  font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  letter-spacing: 0.025em;
}

.sc12-out-1 .sc12-wz {
  padding-right: 6.61%;
}

.sc12-out-1 .sc12-tp {
  justify-content: flex-end;
}

.sc12-out-2 .sc12-wz {
  width: 53.46%;
  padding-left: 6.61%;
}

.sc12-out-2 .sc12-tp {
  justify-content: flex-start;
}

/* sc12结束 */

/* sc13开始 */
.sc13-out {
  background: #f6f6f6;
  padding: 104px 0;
}

.sc13-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 7%;
}

.sc13-name p {
  text-align: right;
  width: 600px;
}

.sc13-des {
  color: #000528;
  padding-left: 6%;
}

.sc13-des dt {
  font-size: 28px;
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  line-height: 30px;
  width: 59.5%;
  margin-bottom: 15px;
}

.sc13-des dd {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.025em;
}

.sc13 {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-left: 6%;
  padding-right: 7%;
}

.sc13-left {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 59.5%;
}

.sc13-left-item {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  width: 47.47%;
  background: white;
  margin-top: 45px;
  cursor: pointer;
}

.sc13-checked {
  background-color: #005dd8;
}

.icon-check {
  display: none;
}

.sc13-left-item:nth-child(1) {
  margin-top: 0;
}

.sc13-left-item:nth-child(2) {
  margin-top: 0;
}

.sc13-left-item-img {
  width: 200px;
}

.sc13-left-item-title {
  color: #005dd8;
  font-size: 28px;
  text-align: center;
  margin-top: 10px;
}

.sc13-left-item-con {
  color: #000528;
  font-size: 20px;
  text-align: center;
  line-height: 35px;
  text-align: center;
  margin-top: 18px;
  letter-spacing: 0.025em;
}

.sc13-right {
  width: 37.62%;
  background: white;
}

.sc13-right-title {
  font-size: 60px;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  line-height: 64px;
  margin-top: 30px;
  color: #000528;
  box-sizing: border-box;
  padding: 0 40px;
}

.sc13-right-con {
  margin-top: 19px;
  font-size: 20px;
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  line-height: 30px;
  color: #000528;
  padding: 0 40px 40px;
}

.sc13-right-con span {
  color: #005dd8;
}

/* sc13结束 */

/* sc14开始 */
.sc14-out {
  background: url("./assets/images/contact1.png") no-repeat top center;
  background-size: cover;
  height: 800px;
  padding: 0 5%;
}

.sc14 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-left: 1%;
}

.sc14-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sc14-name p {
  text-align: right;
}

.sc14-des {
  margin-top: 35px;
  width: 54.47%;
}

.sc14-des dt {
  color: #000528;
  font-size: 28px;
  line-height: 42px;
  margin-bottom: 20px;
}

.sc14-des dd {
  font-size: 20px;
  color: #000528;
  line-height: 35px;
  letter-spacing: 0.025em;
}

.sc14-des dd:nth-child(2) {
  margin-bottom: 25px;
}

.sc14-contact {
  color: #005dd8;
  font-weight: bold;
  width: 325px;
  line-height: 30px;
  border: 1px solid #005ed8c0;
  text-align: center;
  font-size: 23px;
  height: 32px;
  margin-top: 70px;
}

/* sc14结束 */

/* sc15开始 */

sc15-out {
  padding: 0 5%;
}

.sc15-out {
  background-color: white;
}

.sc15-out-1 {
  padding: 80px 0 0;
}

.sc15-out-2 {
  padding: 50px 0 0;
}

.sc15-out-3 {
  padding: 50px 0 80px;
}

.sc15-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  /* justify-content: ; */
  flex-direction: column;
  align-items: flex-end;
  padding-right: 8%;
}

.sc15-name p {
  text-align: right;
}

.sc15-part-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 60px;
  color: #005dd8;
  line-height: 64pxs;
  padding-left: 6%;
}

.sc15 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0 5% 0 6%;
}

.sc15-item {
  background: #f6f6f6;
  width: 388px;
  height: 388px;
  margin-right: 2%;
  box-sizing: border-box;
  padding: 29px 25px 29px 29px;
  margin-top: 30px;
}

.sc15-item:nth-child(4n) {
  /* margin-right: 0; */
}

.sc15-item-scroll {
  /* overflow-y: scroll; */
  height: 300px;
  box-sizing: border-box;
  padding-right: 5px;
}

.sc15-item-scroll::-webkit-scrollbar {
  width: 16px;
  background: white;
  position: absolute;
  left: 0;
}

.sc15-item-scroll::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

.sc15-item-con-1 {
  font-size: 28px;
  color: #000528;
  line-height: 42px;
}

.sc15-item-con-2 {
  font-size: 20px;
  color: #000528;
  line-height: 30px;
  height: 300px;
  width: 330px;
}

/* sc15结束 */

/* sc16开始 */
.sc16-out {
  background: url("./assets/images/pro1.png") no-repeat top center;
  background-size: 101% 100%;
  padding: 107px 4%;
}

.sc16-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  /* justify-content: ; */
  flex-direction: column;
  align-items: flex-start;
  padding-left: 3%;
}

/* .sc16-name:nth-child(1){
     text-align: right;
} */
.sc16-name p {
  /* text-align: right; */
  width: 400px;
}

.sc16-item {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  margin-top: 80px;
  padding: 0 6% 0 2.2%;
}

.sc16-item-con {
  width: 48.92%;
}

.sc16-item-con-part1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  margin-bottom: 35.48px;
}

.sc16-item-con-part1 img {
  width: 148px;
  /* transform: translateX(-20%); */
  margin-right: 40.5px;
}

.sc16-item-con-part1 p {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 40px;
  line-height: 50px;
}

.sc16-item-con-part2 {
  font-size: 20px;
  line-height: 35px;
  color: white;
  padding-right: 11%;
  letter-spacing: 0.025em;
}

.sc16-item-img {
  width: 48.08%;
}

/* sc16结束 */

/* sc17开始 */
.sc17-out {
  position: relative;
  background: #f6f6f6;
  padding: 114px 1% 450px 6.9%;
}

.sc17-nav {
  display: none;
}

.sc17-list {
  position: relative;
}

.sc17-out .swiper-pagination {
  top: 0;
  left: 0;
  width: 100px;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sc17-out .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0px);
  display: block;
  width: auto;
  border-radius: 0;
  height: auto;
  color: #000528;
  font-size: 20px;
  line-height: 23px;
  opacity: 1;
  background: transparent;
  margin-right: 82px;
  border: none;
}

.sc17-out .swiper-pagination-bullet:focus {
  outline: none;
}

.sc17-out .swiper-pagination-bullet-active {
  color: #005dd8 !important;
}

.sc17.swiper {
  margin-top: 20px;
  padding-bottom: 70px;
}

.sc17-item-name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #005dd8;
}

.sc17-item-name img {
  width: 148px;
  margin-right: 20px;

  /* transform: translateX(-20%); */
}

.sc17-item-name p {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 40px;
  line-height: 50px;
}

.sc17-item-con {
  overflow-y: scroll;
  height: 800px;
  margin-left: -6.5%;
  width: 1920px;
}

/* 针对 1920px 以上的分辨率的媒体查询 */
@media screen and (min-width: 1920px) {
  .sc17-item-con {
    overflow-y: scroll;
    height: 800px;
    margin-left: -6.5%;
    width: 1920px;
  }
}

.sc17-item-con::-webkit-scrollbar {
  width: 16px;
  background: transparent;
  position: absolute;
  left: 0;
}

.sc17-item-con::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

.sc17-biao {
  width: 100%;
}

.sc17-hang {
  width: 100%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.sc17-tou .sc17-lie {
  width: 11.5%;
  font-weight: bold !important;
  background: transparent !important;
}

.sc17-lie {
  width: 11.5%;
  text-align: center;
  font-size: 20px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.sc17-lie:nth-of-type(1) {
  width: 6%;
  background: transparent;
  justify-content: flex-start;
}

.sc17-check {
  border: 1px solid #005dd8;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.sc17-lie:nth-of-type(1) img {
  width: 50px;
  height: 50px;
}

.sc17-check img {
  display: none;
}

.sc17-check span {
  display: none;
}

.sc17-check-active img {
  display: block;
}

.sc17-lie:nth-of-type(2) {
  background: transparent;
  justify-content: flex-start;
  width: 11%;
}

.sc17-lie:nth-of-type(5) {
  width: 12%;
}

.sc17-lie:nth-of-type(2) img {
  width: 140px;
}

.sc17-lie:nth-child(3):hover {
  color: #005dd8;
}

.sc17-ts {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  border: 1px solid #005dd8;
  cursor: pointer;
  color: #000528;
  transition: all 0.3s;
  margin-right: 14.5%;
}

.sc17-ts:hover {
  background: #005dd8;
  color: white;
}

.sc17-ts-img {
  width: 50px;
  height: 50px;
}

.sc17-ts-con {
  font-size: 28px;
  line-height: 50px;

  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  padding: 0 10px;
}

.nownum {
  width: 30px;
  text-align: center;
  display: inline-block;
}

.sc17-tc-dbg {
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 999;
}

.sc17-tc {
  width: 1600px;
  height: 900px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: none;
  background: white;
  z-index: 999;
}

.sc17-xbg {
  width: 100%;
  opacity: 1;
  background: white;
}

.sc17-tc-con {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sc17-tc-left {
  text-align: left;
  background: transparent;
  box-sizing: border-box;
  padding-left: 151px;
  /* width: 20.06%; */
  height: 78.56%;
  text-align: center;
}

.sc17-tc-left .tc-part1 {
  margin-top: 30px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 40px;
  line-height: 50px;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  text-align: left;
  color: #005dd8;
}

.sc17-tc-left .tc-part2 {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #000528;
  margin-top: 20px;
}

.sc17-tc-left .tc-part1-img {
  display: flex;
  justify-content: center;
}

.sc17-tc-left .tc-part1-img img {
  width: 219px;
}

.sc17-tc-left .tc-part1 div {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  color: #000528;
  font-size: 28px;
  line-height: 42px;
}

.sc17-tc-left .tc-part1 a {
  font-size: 16px;
  border: 1px solid #005dd8;
  color: #005dd8;
  text-align: center;
  font-weight: bold;
  width: 150px;
  margin-top: 10px;
}

.sc17-tc-left .tc-part2 div {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  margin-top: 30px;
  font-size: 20px;
  line-height: 30px;
}

.sc17-tc-right {
  width: 1060px;
  height: 78.56%;
  margin-left: 90px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.sc17-tc-right .sc17-tc-item {
  width: 28.09%;
  background: #f6f6f6;
}

.sc17-tc-right .tc-part1 {
  margin-top: 30px;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sc17-tc-right .tc-part1-img {
  display: flex;
  justify-content: center;
}

.sc17-tc-right .tc-part1-img img {
  width: 219px;
}

.sc17-tc-right .tc-part1 div {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  color: #000528;
  font-size: 28px;
  line-height: 42px;
}

.sc17-tc-right .tc-part1 a {
  font-size: 16px;
  border: 1px solid #005dd8;
  color: #005dd8;
  text-align: center;
  font-weight: bold;
  width: 150px;
  margin-top: 10px;
}

.sc17-tc-right .tc-part2 {
  margin-top: 20px;
}

.sc17-tc-right .tc-part2 div {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  margin-top: 30px;
  font-size: 20px;
  line-height: 30px;
}

.sc17-close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.sc17-tc-loading {
  position: absolute;
  width: 75%;
  height: 100%;
  top: 0;
  right: 0;
}

.sc17-tc-loading-wz {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc17-tc-loading-wz span {
  font-size: 25px;
  color: #005dd8;
  font-weight: bold;
}

/* sc17结束 */

/* sc18开始 */
.sc18-out {
  padding: 110px 5% 110px 6.2%;
  background-color: white;
}

.sc18-search {
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sc18-search-num {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 28px;
  line-height: 42px;
  color: #005dd8;
  margin-right: 150px;
}

.sc18-search-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sc18-search-form input {
  border: 1px solid #005dd8;
  box-sizing: border-box;
  outline: none;
  padding: 0 20px;
  list-style: none;
  height: 50px;
  width: 414px;
}

.sc18-search-form button {
  border: none;
  outline: none;
  height: 50px;
  width: 50px;
  cursor: pointer;
}

.sc18-item-name {
  font-size: 45px;
  color: #005dd8;
  margin-top: 70px;
  border-bottom: 1px solid #005dd8;
  margin-right: 140px;
  padding-bottom: 15px;
}

.sc18-item {
  padding-right: 13.2%;
}

/* 当屏幕宽度小于1920px时，应用不同的padding-right值 */
@media (max-width: 1919px) {
  .sc18-item {
    padding-right: 2.8%;
  }
}

.sc18-item-con {
  height: 600px;
  overflow-y: scroll;
}

.sc18-item-con::-webkit-scrollbar {
  width: 16px;
  background: white;
  position: absolute;
  left: 0;
}

.sc18-item-con::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

.sc18-item-con-scroll {
  box-sizing: border-box;
  padding-right: 120px;
}

.sc18-item-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 200px;
  box-sizing: border-box;
  border-bottom: 1px solid #0000004a;
}

.sc18-item-list-img {
  width: 100px;
}

.sc18-item-list-right h5 {
  font-size: 28px;
  color: #005dd8;
  font-weight: normal;
}

.sc18-item-list-right p {
  font-size: 20px;
  color: #000528;
  margin: 15px 0 20px;
}

.sc18-item-list-right span {
  font-size: 22px;
  color: #005dd8;
}

/* sc18结束 */

/* sc19开始 */
.sc19-out {
  padding: 110px 5% 110px 6.2%;
  background-color: white;
}

.sc19-search {
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sc19-search-num {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 28px;
  line-height: 42px;
  color: #005dd8;
  margin-right: 150px;
}

.sc19-search-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sc19-search-form input {
  /* border: 1px solid #005DD8;
    box-sizing: border-box;
    outline: none;
    padding: 0 20px;
    list-style: none;
    height: 50px;
    width: 414px; */
}

.sc19-search-title-box {
  border: 1px solid #005dd8;
  box-sizing: border-box;
  outline: none;
  padding: 0 20px;
  list-style: none;
  height: 50px;
  width: 414px;
  position: relative;
  cursor: pointer;
}

.sc19-search-title-box:hover .sc17-category-list {
  display: block;
}

.sc19-search-title-box-result {
  color: #afafaf;
  font-size: 28px;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  line-height: 50px;
}

.sc19-search-form:hover .sc19-category-list {
  display: block;
}

.sc19-category-list {
  position: absolute;
  top: 50px;
  left: 0;
  background: #f6f6f6;
  font-size: 26px;
  line-height: 32px;
  color: #000528;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  display: none;
  box-sizing: border-box;
  padding: 10px 0px 10px 20px;
  height: 220px;
}

.sc19-icon {
  width: 8px;
  height: 16px;
  display: inline;
}

.sc19-category-item:hover .sc19-subcategory-list {
  display: block;
}

.sc19-category-item {
  /* position: relative; */
  line-height: 50px;
  width: 390px;
  background: #f6f6f6;
}

.sc19-subcategory-list {
  position: absolute;
  top: 0;
  left: 100%;
  background: #f6f6f6;
  width: 375px;
  height: 220px;
  display: none;
  box-sizing: border-box;
  padding: 10px 0px 10px 20px;
}

.sc19-subcategory-item {
  /* position: relative; */
}

.sc19-subcategory-item:hover .sc19-post-list {
  display: block;
}

.sc19-post-list {
  position: absolute;
  top: 0;
  left: 100%;
  background: #f6f6f6;
  width: 250px;
  display: none;
  height: 220px;
  box-sizing: border-box;
  padding: 10px 0px 10px 20px;
}

.cunzhi:hover {
  color: #005dd8;
  font-weight: bold;
}

.cunzhi-active {
  color: #005dd8;
  font-weight: bold;
}

.sc19-search-form-submit {
  border: none;
  outline: none;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: inline-block;
}

.sc19-item-name {
  font-size: 45px;
  color: #005dd8;
  margin-top: 80px;
  border-bottom: 1px solid #005dd8;
  margin-right: 140px;
  padding-bottom: 15px;
}

.sc19-item-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 200px;
  box-sizing: border-box;
  border-bottom: 1px solid #0000004a;
}

.sc19-item-list-img {
  width: 100px;
  flex-shrink: 0;
}

.sc19-item-list-right h5 {
  font-size: 28px;
  color: #005dd8;
  font-weight: normal;
}

.sc19-item-list-right p {
  font-size: 20px;
  color: #000528;
  margin: 15px 0 20px;
}

.sc19-item-list-right span {
  font-size: 22px;
  color: #005dd8;
}

.sc19 {
  display: flex;
  justify-content: space-between;
  /* margin-top: 80px; */
  padding-right: 14.8%;
}

/* 当屏幕宽度小于1920px时，应用不同的padding-right值 */
@media (max-width: 1919px) {
  .sc19 {
    display: flex;
    justify-content: space-between;
    /* margin-top: 80px; */
    padding-right: 2.5%;
  }
}

.sc19-left {
  width: 12.01%;
}

.sc19-left-img {
  position: relative;
}

.sc19-left-img2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}

/* .sc19-left-item:hover .sc19-left-img2{
    opacity: 1;
} */

.sc19-left-item {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  width: 200px;
  height: 200px;
}

.sc19-back {
  /* width: 208px; */
  height: 53px;
  margin-top: 17px;
  margin-bottom: 59px;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 20px;
  color: #005dd8;
  display: flex;
  align-items: center;
  visibility: hidden;
}

.sc19-left-con {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  top: 0;
  left: 0;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #fff;
  box-sizing: border-box;
  padding: 13.5px 17px;
}

.sc19-left-con p {
  font-size: 28px;
  /* line-height: 42px; */
  text-align: right;
}

.sc19-left-con span {
  font-size: 40px;
  line-height: 50px;
}

.sc19-right {
  width: 82%;
}

.sc19-item-con {
  height: 160vh;
  overflow-y: scroll;
}

.sc19-item-con::-webkit-scrollbar {
  width: 16px;
  background: white;
  position: absolute;
  left: 0;
}

.sc19-item-con::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

.sc19-item-con-scroll {
  box-sizing: border-box;
  padding-right: 120px;
}

/* sc19结束 */

/* sc20开始 */
.sc20-out .sc9-position {
  position: absolute;
}

.sc20-out {
  background: url("./assets/images/proxq2.png") no-repeat center;
  background-size: cover;

  padding: 0 3% 0 4%;
  height: 1080px;
}

.sc20 {
  position: relative;
  display: flex;
  /*justify-content: space-between;*/
  height: 1080px;
}

.sc20-left {
  width: 45.55%;
  color: white;
  padding-left: 2.2%;
}

.sc20-left-part1 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 28px;
  line-height: 42px;
  margin-top: 147px;
}

.sc20-left-part1 p {
  width: 45%;
}

.sc20-left-part2 {
  /* transform: translateX(-6%); */
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sc20-left-part2 img {
  width: 166px;
}

.sc20-left-part2 p {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 48px;
  line-height: 56px;
  width: 256px;
  margin-left: 20px;
}

.sc20-left-part3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: lighter;
}

.sc20-left-part4 {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  font-size: 28px;
  line-height: 42px;
  margin: 25px 0;
}

.sc20-left-part5 {}

.sc20-left-part5>div {
  display: flex;
  justify-content: flex-start;
  font-weight: lighter;
}

.sc20-left-part5>div div:nth-child(1) {
  display: block;
  width: 16px;
  height: 16px;
  background: #005dd8;
  margin: 7px 20px 7px 0;
  flex-shrink: 0;
}

.sc20-left-part5>div div:nth-child(2) {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.025em;
}

.sc20-left-part6 {
  margin-top: 70px;
}

.sc20-left-part6 div {
  display: block;
  width: 222px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  color: white;
  border: 1px solid #005dd8;
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  text-align: center;
  cursor: pointer;
}

/*.sc20-right {
    width: 48.077%;
    margin-top: 100px;
    height: 900px;
}*/

.sc20-right {
  width: 800px;
  margin-top: 160px;
  height: 900px;
  /* 设置固定高度 */
  overflow: hidden;
  /* 隐藏超出部分 */
  position: relative;
  /*padding-right: 22%;*/
}

.master-div {
  height: 700px;
}

/*.sc20-right .swiper {*/
/*    height: 100%; !* 确保 Swiper 占据整个容器高度 *!*/
/*}*/

.sc20-right .swiper-slide {
  /* 确保每个滑块占据整个 Swiper 高度 */
  width: 143.1px;
  height: 143.1px;
}

.sc20-right .master-photo img {
  width: 100%;
  /* 图片宽度占满滑块 */
  height: 700px;
  object-fit: cover;
  /* 保持图片比例并填充滑块 */
}

.sc20-left-part3 {}

/* sc20结束 */

/* sc21开始 */
.sc21-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  /* justify-content: ; */
  flex-direction: column;
  align-items: flex-end;
}

.sc21-name p {
  text-align: right;
}

.sc21-out {
  padding: 120px 0;
  background-color: white;
}

.sc21 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin: auto;
}

.sc21-left {
  width: 57.69%;
}

.sc21-right {
  width: 45.73%;
  box-sizing: border-box;
  padding-right: 7%;
}

.sc21-right-con {
  font-size: 20px;
  line-height: 35px;
  text-align: right;
  color: #000528;
  margin-top: 70px;
  letter-spacing: 0.025em;
}

/* sc21结束 */

/* sc22开始 */

.sc22-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

.sc22-name p {
  /*text-align: right;*/
  width: 356px;
}

.sc22-out {
  padding-bottom: 120px;
  background-color: white;
}

.sc22 {
  display: flex;
  justify-content: space-between;
}

.sc22-left {
  width: 32%;
  margin-left: 6.5%;
}

.sc22-left-list {
  margin-top: 50px;
}

.sc22-left .swiper-slide {
  width: 100%;
  height: auto !important;
  margin-bottom: 45px;
}

.sc22sw-slide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sc22-left-list-img {
  width: 32px;
  height: 32px;
  position: relative;
}

.sc22-left-list-img img {
  position: absolute;
  top: 0;
  left: 0;
}

.sc22-left-list-img1 {
  display: block;
}

.sc22-left-list-img2 {
  display: none;
}

.sc22-left-list-des {
  font-size: 20px;
  line-height: 35px;
  color: #000528;
  width: 88%;
  margin-left: 20px;
  letter-spacing: 0.025em;
}

.sc22-left-list-des p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 定义文本的行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc22-left-a {
  width: 90px;
}

/* .sc22-left .swiper-slide {
    width: 53.01% !important;
    height: 100%;
    opacity: 0.4;
}

.sc22-left .swiper-slide {
    width: 100%;
}

.sc22-left .swiper-slide img {
    width: 246px !important;
}

.sc22-left .swiper-slide-thumb-active {
    opacity: 1 !important;
    transition: all 0.3s;
} */

.sc22-right {
  width: 57.3%;
  margin-right: 7%;
}

/* sc22结束 */

/* sc23开始 */
.sc23 {
  padding: 0 6.5%;
}

.sc23-out {
  padding: 107px 0;
  background: #f6f6f6;
}

.sc23-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  /* justify-content: ; */
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 60px;
  padding-right: 7%;
}

.sc23-name p {
  text-align: right;
}

/* sc23结束*/

/* sc24开始*/
.sc24-name {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  box-sizing: border-box;
  padding: 0 50px;
}

.sc24-name-left {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 28px;
  line-height: 42px;
}

.sc24-name-img {
  width: 32px;
  cursor: pointer;
  transition: all 0.5s;
  transform: rotate(0);
}

.sc24-name-img-active {
  transform: rotate(180deg);
}

.sc24 {
  display: none;
}

.sc24-tou {
  background: transparent !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin-top: 20px;
  height: 100px;
}

.sc24-tou .sc24-lie {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #000528 !important;
}

.sc24-hang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin-top: 20px;
  height: 100px;
}

.sc24-lie {
  width: 14.28%;
  font-size: 20px;
  line-height: 30px;
  color: #000528;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc24-lie:last-child {
  color: #005dd8;
}

/* sc24结束*/

/* sc25开始*/
.sc25-out {
  margin-top: 60px;
}

.sc25-name {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  box-sizing: border-box;
  padding: 0 50px;
}

.sc25-name-left {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 28px;
  line-height: 42px;
}

.sc25-name-img {
  width: 32px;
  cursor: pointer;
  transition: all 0.5s;
  transform: rotate(0);
}

.sc25-name-img-active {
  transform: rotate(180deg);
}

.sc25 {
  display: none;
}

.sc25-tou {
  background: transparent !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin-top: 20px;
  height: 100px;
}

.sc25-tou .sc25-lie {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #000528 !important;
}

.sc25-hang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin-top: 20px;
  height: 100px;
}

.sc25-lie {
  font-size: 20px;
  line-height: 30px;
  color: #000528;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc25-lie:nth-child(1) {
  width: 14.28%;
}

.sc25-lie:nth-child(2) {
  width: 50%;
}

.sc25-lie:nth-child(3) {
  width: 20%;
}

.sc25-lie:last-child {
  color: #005dd8;
}

/* sc25结束*/

/* sc26开始*/

.sc26-out {
  background: #f6f6f6;
  padding-bottom: 127px;
}

.sc26-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  margin-bottom: 60px;
  padding-left: 6%;
}

.sc26-name p {
  text-align: left;
}

.sc26 {
  display: flex;
  justify-content: space-between;
  /*padding-right: 3%;*/
  padding: 0 6.5% 0 6%;
}

.sc26-item {
  position: relative;
  width: 29.85%;
  cursor: pointer;
}

.sc26-item1 {
  color: white;
}

.sc26-item2 .sc26-item-con-part1 {
  color: #005dd8;
}

.sc26-item2 .sc26-item-con-part2 {
  color: #005dd8;
}

.sc26-item3 .sc26-item-con-part1 {
  color: #005dd8;
}

.sc26-item3 .sc26-item-con-part2 {
  color: #fff;
}

.sc26-item-con {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sc26-item-con-part1 {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  font-size: 20px;
  line-height: 24px;
  position: absolute;
  top: 32px;
  left: 32px;
  color: #005dd8;
  width: 120px;
}

.sc26-item-con-part2 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 40px;
  line-height: 50px;
  position: absolute;
  top: 32px;
  color: #fff;
  right: 32px;
  width: 300px;
  text-align: right;
}

.sc26-item-con-part3 {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  font-size: 28px;
  line-height: 38px;
  position: absolute;
  bottom: 10%;
  right: 32px;
  width: 200px;
  text-align: right;
  transform: translateY(50%);
}

/* sc26结束*/

/* sc27开始*/
.sc27-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  /* justify-content: ; */
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 60px;
  padding-right: 8%;
}

.sc27-name p {
  text-align: right;
}

.sc27-out {
  padding: 109px 0;
  background-color: white;
}

.sc27 {
  display: flex;
  justify-content: space-between;
  padding: 0 7% 0 6%;
}

.sc27-item {
  width: 14.42%;
  position: relative;
}

.sc27-item-img {
  position: relative;
}

.sc27-item-img2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}

.sc27-item:hover .sc27-item-img2 {
  opacity: 1;
}

.sc27-item-con {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.sc27-item-con-part1 {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #fff;
  font-size: 28px;
  line-height: 38px;
  text-align: right;
}

/* sc27结束*/

/* sc28开始 */
.sc28-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  margin-bottom: 60px;
  padding-left: 3%;
}

.sc28-name p {
  text-align: left;
}

.sc28-out {
  padding: 120px 3%;
  background: url("./assets/images/proxq15.png") no-repeat center;
  background-size: cover;
}

.sc28 {
  position: relative;
  box-sizing: border-box;
  padding: 0 5%;
  padding: 0px 8% 0px 5%;
}

.sc28-out .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc28-out .swiper-button-prev {
  height: 77px;
  width: 55px;
  /* top: var(--swiper-navigation-top-offset, 80%); */
  border-radius: none;
}

.sc28-out .swiper-button-next {
  height: 77px;
  width: 55px;
  /* top: var(--swiper-navigation-top-offset, 80%); */
  border-radius: none;
}

.sc28-out .swiper-button-prev:after {
  display: none;
}

.sc28-out .swiper-button-next:after {
  display: none;
}

.sc28-slide-img {
  width: 350px;
}

.sc28-slide-con {
  display: flex;
  justify-content: flex-start;
  width: 400px;
}

.sc28-slide-con-img {
  width: 118px;
  margin-right: 20px;
}

.sc28-slide-con-right {
  color: white;
  position: relative;
}

.sc28-slide-con-right-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 32px;
  line-height: 42px;
  /* width: 70%; */
}

.sc28-slide-con-right-des {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  position: absolute;
  font-size: 20px;
  line-height: 35px;
  width: 250px;
  letter-spacing: 0.025em;
}

.sc28-slide-a {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.sc28-slide-a div {
  width: 222px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #005dd8;
  text-align: center;
  color: white;
  cursor: pointer;
  position: relative;
}

.sc28-slide-a div span {
  position: relative;
  z-index: 12;
}

.sc28-slide-a div p {
  position: absolute;
  z-index: 10;
  height: 100%;
  width: 0;
  background: #005dd8;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.sc20-quote span {
  position: relative;
  z-index: 12;
}

.sc14-contact span {
  position: relative;
  z-index: 12;
}

.sc14-contact p {
  position: relative;
  z-index: 10;
  height: 32px;
  width: 0;
  background: #005dd8;
  top: -30px;
  left: 0;
  transition: all 0.3s;
}

.sc14-contact:hover p {
  width: 100% !important;
}

.sc14-contact:hover {
  color: #fff;
}

.sc20-quote p {
  position: relative;
  z-index: 10;
  height: 40px;
  width: 0;
  background: #005dd8;
  top: -40px;
  left: 0;
  transition: all 0.3s;
}

.sc20-quote:hover p {
  width: 100% !important;
}

.sc28-slide-a:hover p {
  width: 100% !important;
}

/* sc28结束 */

/* sc29开始 */
.sc29-dbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  display: none;
}

.sc29-out {
  width: 895px;
  height: 870px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* bottom: 0; */
  padding-bottom: 20px;
  /*margin: auto;*/
  z-index: 999;
  display: none;
}

/* 当屏幕宽度大于1920px时，确保居中 */
/*@media (min-width: 1921px) {*/
/*    .sc29-out {*/
/*        left: 18%;*/
/*    }*/
/*}*/
.all-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  overflow-y: scroll;
  display: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

.all-bg-sc30 {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  overflow-y: scroll;
  display: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

.sc29-xbg {
  width: 100%;
  height: 100%;
}

.sc29 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sc29-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #005dd8;
  font-size: 50px;
  line-height: 58px;
  text-align: right;
  margin-top: 40px;
  box-sizing: border-box;
  padding-right: 74px;
}

.sc29-con {
  width: 75.55%;
  position: absolute;
  top: 225px;
  left: 151px;
}

.sc29-part {
  margin-bottom: 28px;
}

.sc29-part-name {
  color: #000528;
  font-size: 16px;
  line-height: 22px;
}

.sc29-con .wpcf7 {
  width: 100%;
}

.sc29-con .wpcf7 form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sc29-part-input {
  background: white;
  height: 40px;
  box-sizing: border-box;
  padding: 0 19px;
  margin-top: 5px;
  width: 100%;
}

.sc29-part-input p {
  width: 100% !important;
  height: 100% !important;
}

.sc29-part-input span {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.sc29-part-input input {
  outline: none;
  border: none;
  width: 100% !important;
  height: 100% !important;
  font-size: 16px;
}

.sc29-part1 {
  width: 100%;
}

.sc29-part2 {
  width: 39.71%;
}

.sc29-part3 {
  width: 54.41%;
}

.sc29-part4 {
  width: 39.71%;
}

.sc29-part5 {
  width: 54.41%;
  position: relative;
}

.sc29-part5 .sc29-part-select {
  position: absolute;
  width: 100%;
  background: white;
  color: #000528;
  font-size: 16px;
  z-index: 998;
  display: none;
  box-sizing: border-box;
  padding-right: 8px;
}

.sc29-part5 .sc29-part-select-scroll {
  overflow-y: scroll;
  height: 300px;
  box-sizing: border-box;
}

.sc29-part5 .sc29-part-select-scroll::-webkit-scrollbar {
  width: 8px;
  background: white;
}

.sc29-part5 .sc29-part-select-scroll::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

.sc29-part5 .sc29-part-select-item {
  margin: 13px 0;
  padding: 0 19px;
  cursor: pointer;
}

.sc29-part-select-item-active {
  color: #005dd8;
  font-weight: bold;
}

.sc29-part5 .sc29-part-select-item:hover {
  color: #005dd8;
  font-weight: bold;
}

.sc29-part5 .sc29-part-xia {
  width: 11px;
  height: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.sc29-part5 .sc29-part-xia p {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc29-part-xia-active {
  transform: rotate(180deg);
}

.sc29-part5 .sc29-part-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.sc29-part5 p input {
  /* pointer-events: none; */
}

.sc29-part6 {
  width: 39.71%;
}

.sc29-part7 {
  width: 54.41%;
}

.sc29-part8 {
  width: 100%;
}

.sc29-part8 .sc29-part-input {
  height: 120px;
  padding: 18px;
}

.sc29-part8 textarea {
  outline: none;
  border: none;
  width: 100% !important;
  height: 100% !important;
  font-size: 16px;
}

.sc29-part9 {
  display: none;
}

.sc29-part10 {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.sc29-part10 p {
  width: 150px;
  line-height: 26px;
  height: 26px;
  text-align: center;
  position: relative;
  display: flex;
  align-self: center;
  box-sizing: border-box;
  border: 1px solid #005dd8;
  color: #005dd8;
  transition: all 0.3s;
  background: white;
}

.sc29-part10 .wpcf7-spinner {
  position: absolute;
}

.sc29-part10 p input {
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  font-size: 17px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: rgb(240, 240, 240);
}

.sc29-con .wpcf7 form .wpcf7-response-output {
  color: white;
  border: none;
  margin: 1.5em 0.5em 1em;
}

.sc29-close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 998;
}

.sc29-box {
  background: red;
  width: 120px;
  height: 60px;
}

/* .query{
    cursor: pointer;
} */

.sc29-part-xia-active {
  transform: rotate(180deg);
}

.sc29-part-select-item-active {
  color: #005dd8;
  font-weight: bold;
}

/* sc29结束 */

/* sc30开始 */
.sc30-dbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  display: none;
}

/* 
.sc30-quesiton{
    display: flex;
    justify-content: center;
    align-items: center;
} */

/*.sc30-out {*/
/*    width: 900px;*/
/*    height: 900px;*/
/*    position: absolute;*/
/*    left: calc(50% - 450px);*/
/*    right: 0;*/
/*    top: 30px;*/
/*    bottom: 0;*/
/*    padding-bottom: 20px;*/
/*    z-index: 99999;*/
/*    display: none;*/
/*}*/

/* 当屏幕宽度大于1920px时，确保居中 */
/*@media (min-width: 1921px) {*/
/*    .sc30-out {*/
/*        left: 18%;*/
/*    }*/
/*}*/

.sc30-out {
  /*width: 895px;*/
  /* 使用视口宽度单位，使宽度随窗口变化 */
  /*height: 870px;*/
  /* 使用视口高度单位，使高度随窗口变化 */
  position: fixed;
  /* 使用固定定位，使元素始终保持在视口中心 */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /*padding-bottom: 20px;*/
  z-index: 99999;
  display: none;
  background: white;
  /* 设置背景颜色 */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* 添加阴影效果 */
  overflow: auto;
  /* 当内容超出元素尺寸时，允许滚动 */
}

.quote {
  cursor: pointer;
}

.sc30-success {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-color: #ffffff;
  width: 800px;
  height: 400px;
  display: flex;
  justify-content: center;
  flex-direction: column;

  .close {
    width: 50px;
    height: 50px;
  }

  .img {
    width: 100%;
    height: 118px;
    display: flex;
    justify-content: space-between;
  }

  .text-box {
    height: 282px;
    width: 100%;
  }

  .text {
    margin-left: 115px;
    margin-top: 15.94px;
    color: #005dd8;
    width: 558px;
    height: 75px;
    font-size: 28px;
  }
}

.sc29-success {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-color: #ffffff;
  width: 800px;
  height: 264px;
  display: flex;
  display: none;
  justify-content: center;
  flex-direction: column;

  .close {
    width: 50px;
    height: 50px;
  }

  .img {
    width: 100%;
    height: 118px;
    display: flex;
    justify-content: space-between;
  }

  .text-box {
    height: 145.94px;
    width: 100%;
  }

  .text {
    margin-left: 115px;
    margin-top: 15.94px;
    color: #005dd8;
    width: 558px;
    height: 75px;
    font-size: 28px;
  }
}

.sc30-xbg {
  width: 100%;
  height: 100%;
}

.sc30 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sc30-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #005dd8;
  font-size: 50px;
  line-height: 58px;
  text-align: right;
  margin-top: 40px;
  box-sizing: border-box;
  padding-right: 74px;
}

.sc30-con {
  width: 75.55%;
  position: absolute;
  top: 225px;
  left: 151px;
}

.sc31-con-cpms {
  position: absolute;
  font-size: 16px;
  color: #005dd8;
  top: -26px;
}

.sc30-part {
  margin-bottom: 28px;
}

.sc30-part-name {
  color: #000528;
  font-size: 16px;
  line-height: 22px;
}

.sc30-con .wpcf7 {
  width: 100%;
}

.sc30-con .wpcf7 form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sc30-part-input {
  background: white;
  height: 40px;
  box-sizing: border-box;
  padding: 0 19px;
  margin-top: 5px;
  width: 100%;
}

.sc30-part-input p {
  width: 100% !important;
  height: 100% !important;
}

.sc30-part-input span {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.sc30-part-input input {
  outline: none;
  border: none;
  width: 100% !important;
  height: 100% !important;
  font-size: 16px;
  color: #000528;
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
}

.sc30-part-input input::placeholder {
  color: #000528;
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
}

.sc30-part1 {
  width: 100%;
  position: relative;
}

.sc30-part1 .sc30-part-select {
  position: absolute;
  width: 100%;
  background: white;
  color: #000528;
  font-size: 16px;
  z-index: 998;
  display: none;
}

.sc30-part1 .sc30-part-select-item {
  margin: 13px 0;
  padding: 0 19px;
  cursor: pointer;
}

.sc30-part1 .sc30-part-select-item:hover {
  color: #005dd8;
  font-weight: bold;
}

.sc30-part1 .sc30-part-xia {
  width: 11px;
  height: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.sc30-part1 .sc30-part-xia p {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc30-part-xia-active {
  transform: rotate(180deg);
}

.sc30-part-select-item-active {
  color: #005dd8;
  font-weight: bold;
}

.sc30-part1 .sc30-part-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.sc30-part1 p input {
  pointer-events: none;
}

.sc30-part2 {
  width: 39.71%;
}

.sc30-part3 {
  width: 54.41%;
}

.sc30-part4 {
  width: 39.71%;
}

.sc30-part5 {
  width: 54.41%;
  position: relative;
}

.sc30-part5 .sc30-part-select {
  position: absolute;
  width: 100%;
  background: white;
  color: #000528;
  font-size: 16px;
  z-index: 998;
  display: none;
  box-sizing: border-box;
  padding-right: 8px;
  height: 200px;
  overflow-y: scroll;
}

/* .pop-all {
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.sc30-part5 .sc30-part-select-scroll {
  overflow-y: scroll;
  height: 300px;
  box-sizing: border-box;
}

.sc30-part5 .sc30-part-select-scroll::-webkit-scrollbar {
  width: 8px;
  background: white;
}

.sc30-part5 .sc30-part-select-scroll::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

.sc30-part5 .sc30-part-select-item {
  margin: 13px 0;
  padding: 0 19px;
  cursor: pointer;
}

.sc30-part-select-item-active {
  color: #005dd8;
  font-weight: bold;
}

.sc30-part5 .sc30-part-select-item:hover {
  color: #005dd8;
  font-weight: bold;
}

.sc30-part5 .sc30-part-xia {
  width: 11px;
  height: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.sc30-part5 .sc30-part-xia p {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc30-part-xia-active {
  transform: rotate(180deg);
}

.sc30-part5 .sc30-part-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.sc30-part5 p input {
  /* pointer-events: none; */
}

.sc30-part6 {
  width: 39.71%;
}

.sc30-part7 {
  width: 54.41%;
}

.sc30-part8 {
  width: 100%;
}

.sc30-part8 .sc30-part-input {
  height: 120px;
  padding: 18px;
}

.sc30-part8 textarea {
  outline: none;
  border: none;
  width: 100% !important;
  height: 100% !important;
  font-size: 16px;
}

.sc30-part9 {
  display: none;
}

.sc30-part10 {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.sc30-part10 p {
  width: 150px;
  line-height: 26px;
  height: 26px;
  text-align: center;
  position: relative;
  display: flex;
  align-self: center;
  box-sizing: border-box;
  border: 1px solid #005dd8;
  color: #005dd8;
  transition: all 0.3s;
  background: white;
}

.sc30-part10 .wpcf7-spinner {
  position: absolute;
}

.sc30-part10 p input {
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  font-size: 17px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: rgb(240, 240, 240);
}

.sc30-con .wpcf7 form .wpcf7-response-output {
  color: white;
  border: none;
  margin: 1.5em 0.5em 1em;
}

.sc30-close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 998;
}

.sc30-box {
  background: red;
  width: 120px;
  height: 60px;
}

/* sc30结束 */

/* sc31开始 */
.sc31-dbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  display: none;
}

.sc31-out {
  width: 900px;
  height: 900px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 999;
  display: none;
}

.sc31-xbg {
  width: 100%;
  height: 100%;
}

.sc31 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sc31-name {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #005dd8;
  font-size: 50px;
  line-height: 58px;
  text-align: right;
  margin-top: 40px;
  box-sizing: border-box;
  padding-right: 74px;
}

.sc31-con {
  width: 75.55%;
  position: absolute;
  top: 225px;
  left: 151px;
}

.sc31-part {
  margin-bottom: 28px;
}

.sc31-part-name {
  color: #000528;
  font-size: 16px;
  line-height: 22px;
}

.sc31-con .wpcf7 {
  width: 100%;
}

.sc31-con .wpcf7 form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sc31-part-input {
  background: #f6f6f6;
  height: 40px;
  box-sizing: border-box;
  padding: 0 19px;
  margin-top: 5px;
  width: 100%;
}

.sc31-part-input p {
  width: 100% !important;
  height: 100% !important;
}

.sc31-part-input span {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.sc31-part-input input {
  outline: none;
  border: none;
  width: 100% !important;
  height: 100% !important;
  font-size: 16px;
  background: #f6f6f6;
}

.sc31-part-input input::placeholder {
  color: #000528;
}

.sc31-part1 {
  width: 39.71%;
  position: relative;
}

.sc31-part1 .sc31-part-select {
  position: absolute;
  width: 100%;
  background: #f6f6f6;
  color: #000528;
  font-size: 16px;
  z-index: 998;
  display: none;
}

.sc31-part1 .sc31-part-select-item {
  margin: 13px 0;
  padding: 0 19px;
  cursor: pointer;
}

.sc31-part1 .sc31-part-select-item:hover {
  color: #005dd8;
  font-weight: bold;
}

.sc31-part1 .sc31-part-xia {
  width: 11px;
  height: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.sc31-part1 .sc31-part-xia p {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc31-part-xia-active {
  transform: rotate(180deg);
}

.sc31-part-select-item-active {
  color: #005dd8;
  font-weight: bold;
}

.sc31-part1 .sc31-part-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.sc31-part1 p input {
  pointer-events: none;
  background: #f6f6f6;
}

.sc31-part1 .sc31-part-select {
  position: absolute;
  width: 100%;
  background: white;
  color: #000528;
  font-size: 16px;
  z-index: 998;
  display: none;
  box-sizing: border-box;
  padding-right: 8px;
}

.sc31-part1 .sc31-part-select-scroll {
  overflow-y: scroll;
  height: 300px;
  box-sizing: border-box;
}

.sc31-part1 .sc31-part-select-scroll::-webkit-scrollbar {
  width: 8px;
  background: white;
}

.sc31-part1 .sc31-part-select-scroll::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

.sc31-part-select-sort-name {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.sc31-part-select-sort-sub {
  box-sizing: border-box;
  padding-left: 10px;
}

.sc31-part-select-sub-name {
  font-family: "esk-Md", "HMOS-Md", sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.sc31-part-select-sort-sub-wz {
  box-sizing: border-box;
  padding-left: 10px;
}

.sc31-part2 {
  width: 39.71%;
}

.sc31-part3 {
  width: 54.41%;
}

.sc31-part4 {
  width: 39.71%;
}

.sc31-part5 {
  width: 54.41%;
  position: relative;
}

.sc31-part5 .sc31-part-select {
  position: absolute;
  width: 100%;
  background: #f6f6f6;
  color: #000528;
  font-size: 16px;
  z-index: 998;
  display: none;
  box-sizing: border-box;
  padding-right: 8px;
}

.sc31-part5 .sc31-part-select-scroll {
  overflow-y: scroll;
  height: 300px;
  box-sizing: border-box;
}

.sc31-part5 .sc31-part-select-scroll::-webkit-scrollbar {
  width: 8px;
  background: white;
}

.sc31-part5 .sc31-part-select-scroll::-webkit-scrollbar-thumb {
  background-color: #005dd8;
}

.sc31-part5 .sc31-part-select-item {
  margin: 13px 0;
  padding: 0 19px;
  cursor: pointer;
}

.sc31-part-select-item-active {
  color: #005dd8;
  font-weight: bold;
}

.sc31-part5 .sc31-part-select-item:hover {
  color: #005dd8;
  font-weight: bold;
}

.sc31-part5 .sc31-part-xia {
  width: 11px;
  height: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.sc31-part5 .sc31-part-xia p {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc31-part-xia-active {
  transform: rotate(180deg);
}

.sc31-part5 .sc31-part-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.sc31-part5 p input {
  /* pointer-events: none; */
}

.sc31-part5 p input::placeholder {
  color: #000528;
}

.sc31-part6 {
  width: 39.71%;
}

.sc31-part7 {
  width: 54.41%;
}

.sc31-part8 {
  width: 100%;
}

.sc31-part8 .sc31-part-input {
  height: 75px;
  padding: 18px;
}

.sc31-part8 textarea {
  outline: none;
  border: none;
  width: 100% !important;
  height: 100% !important;
  font-size: 16px;
  background: #f6f6f6;
}

.sc31-part9 {
  display: none;
}

.sc31-part10 {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.sc31-part10 p {
  width: 150px;
  line-height: 26px;
  height: 26px;
  text-align: center;
  position: relative;
  display: flex;
  align-self: center;
  box-sizing: border-box;
  border: 1px solid #005dd8;
  color: #005dd8;
  transition: all 0.3s;
  background: white;
}

.sc31-part10 .wpcf7-spinner {
  position: absolute;
}

.sc31-part10 p input {
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  font-size: 17px;
  cursor: pointer;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.sc31-part11 {
  width: 54.41%;
}

.sc31-part11 .sc31-part-input {
  height: 85px;
  width: 100%;
  padding: 0 !important;
  background: white;
}

.sc31-part11 .sc31-part-input>p {
  height: 100%;
  width: 100%;
}

.sc31-part11 .sc31-part-input>p>span {
  height: 100%;
  width: 100%;
  display: block;
}

.sc31-part11 .sc31-part-input>p>span>span {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sc31-part11 .wpcf7-list-item {
  float: left;
  height: auto !important;
  width: auto !important;
  margin-left: 0 !important;
  margin-right: 16px;
  margin-bottom: 8px;
}

.sc31-part11 .wpcf7-list-item input {
  height: 12px !important;
  width: 12px !important;
  margin-right: 5px;
  border: 1px solid #005dd8 !important;
  outline: none;
  display: inline-block !important;
}

.sc31-part11 .wpcf7-list-item span {
  color: #000528;
  font-size: 16px;
  font-family: "esk-Rg", "HMOS-Rg", sans-serif;
  display: inline-block !important;
  height: auto !important;
  width: auto !important;
}

.sc31-con .wpcf7 form .wpcf7-response-output {
  color: #000;
  border: none;
  margin: 1.5em 0.5em 1em;
}

.sc31-close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 998;
}

.sc31-box {
  background: red;
  width: 120px;
  height: 60px;
}

/* sc31结束 */

/* sc32开始 */
.sc32-out {
  padding: 107px 0;
  background-color: white;
}

.sc32 {
  padding-left: 6%;
  padding-right: 7%;
}

.sc32-item-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 200px;
  box-sizing: border-box;
  border-bottom: 1px solid #0000004a;
  padding-left: 6%;
}

.sc32-item-list-img {
  width: 100px;
}

.sc32-item-list-right h5 {
  font-size: 28px;
  color: #005dd8;
  font-weight: normal;
}

.sc32-item-list-right p {
  font-size: 20px;
  color: #000528;
  margin: 15px 0 20px;
}

.sc32-item-list-right span {
  font-size: 22px;
  color: #005dd8;
}

.sc32-hang.sc32-tou {
  color: #005dd8;
  font-size: 28px;
  line-height: 42px;
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
}

.sc32-tou a {
  display: none;
}

.sc32-hang {
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  line-height: 30px;
  color: #000528;
  box-sizing: border-box;
  padding: 0 60px;
}

.sc32-hang:nth-child(2n) {
  background: #f6f6f6;
}

.sc32-hang .sc32-lie:nth-child(1) {
  width: 40%;
}

.sc32-hang .sc32-lie:nth-child(2) {
  width: 20%;
}

.sc32-hang .sc32-lie:nth-child(3) {
  width: 20%;
}

.sc32-hang .sc32-lie:nth-child(4) {
  width: 20%;
}

.sc32-lie a {
  color: #005dd8;
}

/* sc32结束 */

/* sc33开始 */
.sc33 {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 70px;
  height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 998;
}

/* 针对 1920px 以上的分辨率的媒体查询 */
@media screen and (min-width: 1920px) {
  .sc33 {
    position: fixed;
    bottom: 0px;
    left: calc(50% + 960px - 70px);
    width: 70px;
    height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 998;
  }

  .detail {
    top: 4.22rem !important;
  }
}

.sc33-item {
  cursor: pointer;
}

.sc33-fx {
  position: relative;
}

.sc33-fx-con {
  position: absolute;
  top: 0;
  right: 71px;
  width: 0px;
  height: 70px;
  opacity: 0;
  transition: all 0.3s;
}

.sc33-fx:hover .sc33-fx-con {
  opacity: 1;
  width: 283px;
}

.sc33-four img {
  background-color: #000528;
}

.sc33-fx-con-in {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.sc33-fx:hover .sc33-fx-con {
  display: block;
  opacity: 1;
}

.sc33-fx-con a {
  width: 70px;
}

/* sc33结束 */

/* -------------------news开始--------------------------------- */

body .news-body {
  background-color: rgb(8, 4, 4);
}

.news-check {
  color: #005dd8;
}

.news-part1 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 100px;
  padding-right: 7%;
}

.news-con2 {
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  margin: 0 auto;
}

.news-con div {
  text-align: right;
}

.news-con {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: 75px;
  color: #005dd8;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-right: 4%;
}

.news {
  position: absolute;
  top: 117px;
  left: 0;
  width: 100%;
}

.news-list {
  padding-top: 100px;
  padding: 100px 127px 71px;
  background-color: white;
}

.news-cate {
  font-size: 28px;
  color: #0000;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.news-cate div {
  width: 312px;
  cursor: pointer;
}

.news-item {
  display: flex;
  margin-bottom: 50px;
}

.news-cover img {
  /* width: 320px; */
  width: 200px;
}

.news-desc {
  /* height: 320px; */
  width: 1278px;
  margin-left: 68px;
  font-size: 20px;
  margin-left: 68px;
  display: flex;
  flex-direction: column;
}

.news-title {
  color: #005dd8;
  font-size: 28px;
  max-height: 65px;
  overflow: hidden;
}

.news-detial {
  color: #000528;
  max-height: 125px;
  overflow: hidden;
  line-height: 26px;
  text-overflow: ellipsis;
}

.news-desc-top {
  /* height: 92px; */
  height: 0;
}

.news-date {
  color: #005dd8;
}

.news-desc-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: 228px; */
  height: 200px;
}

.phone-back {
  display: none;
}

.hd-out {
  display: none;
}

.phone-header {
  display: none;
}

div.phone-footer {
  display: none;
}

@media screen and (min-width: 750px) and (max-width: 975px) {
  .news-list {
    padding: 100px 77px 71px;
  }

  .news-cate {
    font-size: 26px;
  }

  .news-title {
    font-size: 26px;
  }

  .news-desc {
    height: initial;
    margin-left: 48px;
  }

  .news-desc-top {
    height: 0px;
  }

  .news-cover img {
    width: 220px;
  }

  .news-item {
    margin-bottom: 50px;
  }

  .relation-title {
    font-size: 45px;
  }

  .news-relation .swiper-slide-active img {
    height: 540px;
  }

  .news-relation .swiper-slide img {
    height: 400px;
  }

  .news-relation .swiper-slide-active img {
    height: 500px;
  }

  .news-relation .swiper-slide {
    width: 80vw;
    margin-top: 45px;
  }

  .relation-title {
    margin-left: 73px;
  }

  .relation-items {
    height: 690px;
  }

  .news-button-next {
    display: none;
  }

  .news-button-prev {
    display: none;
  }

  .news {
    top: 1.85rem;
  }
}

/*
    @media screen and (max-width:750px) {
        .back-title{
        }
        .news-desc-top {
            height: initial;
        }

        .news {
            top:2.3rem
        }

      
        .news-cate {
            font-size: 22px;
            margin-bottom: 30px;
        }

        .news-list {
            padding: 50px 27px 71px;
        }

        .news-cover img {
            width: 100%;
        }

        .news-cover {
            width: 88vw;
        }

        .news-item {
            flex-direction: column;
            margin-bottom: 61px;
        }

        .news-desc {
            margin-left: 0px;
            width: 88vw;
            margin-top: 20px;
            height: 262px;
        }
        .news-button-next{
            display: none;
        }
        .news-button-prev{
            display: none;
        }

        .news-desc-content {
            width: initial;
            
            height: 250px;
        }

        .news-relation{
            padding-top: 50px;
            height: 90vw;
        }

        .relation-title {
            margin-left: 23px;
            font-size: 30px;
            height: initial;
        }
        .relation-items .swiper-slide{
            width: 80vw;
        }

        .relation-items {
            height: initial;
        }

    }
 */
@media screen and (max-width: 650px) {
  .back-level1 .children {
    padding-left: 2.3rem;
  }

  .back-level1 .children-2 {
    padding-left: 2.1rem;
  }
}

@media screen and (min-width: 1025px) {
  .hd-out {
    display: block;
  }

  .news-relation {
    /* padding-top: 168px; */
    height: 9rem;
  }

  .news-relation .swiper-slide img {
    height: 4.5rem;
  }

  .news-relation .swiper-slide-active img {
    height: 5.4rem;
  }

  .news-relation .swiper-slide {
    /* pointer-events: none; */
  }

  .news-relation .swiper-slide-active::before {
    content: "";
    top: 1.8rem;
    left: -0.9rem;
    width: 90px;
    height: 90px;
    position: absolute;
    background-image: url("assets/images/news/arrows-left.png");
    pointer-events: auto;
  }

  .news-relation .swiper-slide-active::after {
    content: "";
    top: 1.8rem;
    left: 9.5rem;
    width: 90px;
    height: 90px;
    position: absolute;
    pointer-events: auto;
    background-image: url("assets/images/news/arrows-right.png");
  }

  .news-relation .swiper-slide {
    margin-top: 0.45rem;
    width: 9.6rem;
  }

  .relation-title {
    font-size: 75px;
    margin-left: 127px;
    height: 88px;
    font-family: "HMOS-Xlt", sans-serif;
  }

  .relation-items {
    height: 6.92rem;
  }

  .sc29-part10:hover p {
    color: white;
  }
  
  .sc29-part10:hover p input {
    background: #005dd8;
  }

  .sc30-part10:hover p {
    color: white;
  }

  .sc30-part10:hover p input {
    background: #005dd8;
  }

  .sc31-part10:hover p {
    color: white;
  }

  .sc31-part10:hover p input {
    background: #005dd8;
  }
}

/* .news-relation{
        padding-top: 1.68rem;
   }
     */

.news-part1 {
  font-size: 0.75rem;
}

.news-num {
  color: #005dd8;
  font-size: 20px;
  height: 23px;

  .arrows {
    width: 13px;
  }

  .current-page input {
    width: 60px;
    height: 27px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    text-align: center;
    outline: none;
    font-size: 20px;
  }

  .of {
    width: 28px;
  }

  .total-page {
    width: 50px;
  }
}

.news-relation {
  width: 100%;
  background-color: #f6f6f6;
  padding-top: 1.68rem;
}

.relation-items .swiper-wrapper {
  margin-top: 82px;
}

.news-relation .swiper-slide-active {
  margin-top: 0px;
}

.relation-title {
  color: #005dd8;
  width: 13rem;
}

.news-button-prev {
  position: relative;
  left: 3.7rem;
  top: -6.2rem;
  z-index: 999;
  width: 90px;
}

.news-button-next {
  position: relative;
  left: 14.2rem;
  top: -5rem;
  z-index: 999;
  width: 90px;
}

/* -------------------news结束--------------------------------- */

/* -------------------news-detail开始--------------------------------- */

.detail-part1 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: calc(15px + 0.6rem);
  color: #fff;
  padding-right: 7%;
}

.detail-con2 {
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  margin: 0 auto;
}

.detail-con {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #005dd8;
  width: 100%;
  margin-right: 4%;
}

.detail {
  position: absolute;
  top: 6.22rem;
  left: 0;
  width: 100%;
  padding-left: 1.28rem;
}

.detail-box {
  padding: 0.87rem 1.27rem 1.2rem;
  color: #005dd8;
  font-size: calc(12px + 0.08rem);
  background-color: white;
}

.detail-item {
  display: flex;
  justify-content: end;
}

.relation-item {
  display: flex;
  justify-content: end;
}

.detail-info {
  width: 12.78rem;
  margin-bottom: calc(10px + 0.6rem);
}

.detail-name {
  font-size: calc(14px + 0.6rem);
  margin-top: calc(10px + 0.1rem);
  margin-bottom: calc(10px + 0.15rem);
}

.detail-desc {
  color: #000528;
  width: 12.78rem;
  margin-bottom: calc(10px + 0.6rem);
}

.detail-desc h6 {
  font-size: calc(14px + 0.06rem);
  font-weight: unset !important;
}

.detail-desc h5 {
  font-size: calc(16px + 0.08rem);
  font-weight: unset !important;
}

.detail-desc h4 {
  font-size: calc(20px + 0.1rem);
  font-weight: unset !important;
}

/* .detail-down{
        display: flex;
        justify-content: space-between;
        align-items: end;
    } */
.detail-back {
  /* float: left;
        text-align: end; */
  cursor: pointer;
}

.detail-previous {
  width: 12.78rem;
  display: flex;
  justify-content: space-between;
}

.detail-previous div {
  width: 465px;
}

@media screen and (min-width: 750px) and (max-width: 975px) {}

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

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

@media screen and (max-width: 650px) {
  .detail {
    top: 5.22rem;
  }
}

@media screen and (min-width: 975px) {}

/* -------------------news-detail结束--------------------------------- */

/* -------------------coo开始--------------------------------- */

.detail-part1 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: calc(15px + 0.6rem);
  color: #fff;
  padding-right: 7%;
}

.detail-con2 {
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  margin: 0 auto;
}

.detail-con {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #005dd8;
  width: 100%;
  margin-right: 4%;
}

.detail {
  position: absolute;
  top: 6.22rem;
  left: 0;
  width: 100%;
  padding-left: 1.28rem;
}

.coo-box {
  /* padding: 0px 1.27rem 1.20rem; */
  color: #000528;
  font-size: calc(12px + 0.08rem);
  background-color: #f3f3f3;
  background-image: url("assets/images/cooperation/footer.png");
  background-position: bottom;
  background-repeat: no-repeat;
}

.coo-list {
  padding: 0px 1.27rem 1.2rem;
}

.coo-top {
  height: 3rem;
  padding: 0.72rem 1.27rem 0px;
  font-size: calc(15px + 0.6rem);
  background-image: url("./assets/images/cooperation/top.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

.coo-item {
  height: 6.72rem;
  display: flex;
  justify-content: space-between;
}

.coo-cover {
  width: 5.72rem;
  /* height: 6.72rem; */
}

.coo-cover img {
  width: 672px;
}

.coo-detail {
  text-align: right;
  padding-top: 0.65rem;
  display: flex;
  flex-direction: column;
  width: 9rem;
  align-items: flex-end;
  padding-left: 0.9rem;
  box-sizing: border-box;
}

.coo-right {
  padding-left: unset;
  padding-right: 0.9rem;
}

.coo-detail div {
  margin-left: 1rem;
}

.coo-right div {
  margin-left: unset;
  margin-right: 1rem;
}

.coo-title {
  font-size: calc(12px + 0.48rem);
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  /* width: 6.63rem; */
}

.coo-digest {
  margin-top: 0.62rem;
  /* width: 8rem; */
  font-size: calc(12px + 0.08rem);
}

.cover-right {
  /* margin-left: 0.9rem; */
  width: 6.72rem;
  height: 6.72rem;
}

.coo-more {
  width: 0.9rem;
  height: 1.09rem;
}

.detail-description {
  color: #000528;
}

.detail-description h6 {
  font-size: calc(14px + 0.06rem);
  font-weight: unset !important;
}

.detail-description h5 {
  font-size: calc(16px + 0.08rem);
  font-weight: unset !important;
}

.detail-description h4 {
  font-size: calc(20px + 0.1rem);
  font-weight: unset !important;
}

.detail-name {
  font-size: calc(24px + 0.4rem);
  margin-top: calc(10px + 0.1rem);
  margin-bottom: calc(10px + 0.15rem);
}

.detail-digest {
  color: #000528;
  font-size: calc(12px + 0.12rem);
  line-height: 1.4;
  margin-bottom: 0.7rem;
  text-align: justify;
}

.detail-desc {
  color: #000528;
  margin-bottom: calc(10px + 0.6rem);
}

.detail-down {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}

.detail-back {
  /* float: left;
    text-align: end; */
}

.detail-previous {
  width: 12.78rem;
  display: flex;
  justify-content: space-between;
}

.detail-previous div {
  width: 465px;
}

@media screen and (min-width: 750px) and (max-width: 975px) {}

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

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

@media screen and (max-width: 650px) {
  .detail {
    top: 5.22rem;
  }
}

@media screen and (min-width: 975px) {}

@media (min-width: 1920px) {
  .coo-top {
    font-size: calc(15px + 0.6 * 100px);
  }

  .coo-title {
    font-size: calc(12px + 0.48 * 100px);
  }

  .coo-digest {
    font-size: calc(12px + 0.08 * 100px);
  }

  .coo-more {
    width: calc(0.9 * 100px);
    height: calc(1.09 * 100px);
  }

  .detail-name {
    font-size: calc(24px + 0.4 * 100px);
    margin-top: calc(10px + 0.1 * 100px);
    margin-bottom: calc(10px + 0.15 * 100px);
  }

  .detail-desc h6 {
    font-size: calc(14px + 0.06 * 100px);
    font-weight: unset !important;
  }

  .detail-desc h5 {
    font-size: calc(16px + 0.08 * 100px);
    font-weight: unset !important;
  }

  .detail-desc h4 {
    font-size: calc(20px + 0.1 * 100px);
    font-weight: unset !important;
  }

  .detail-description h6 {
    font-size: calc(14px + 0.06 * 100px);
    line-height: 1.4;
    font-weight: unset !important;
    text-align: justify;
  }

  .detail-description h5 {
    font-size: calc(16px + 0.08 * 100px);
    line-height: 1.4;
    font-weight: unset !important;
  }

  .detail-description h4 {
    font-size: calc(20px + 0.1 * 100px);
    line-height: 1.4;
    font-weight: unset !important;
    letter-spacing: 1px;
  }
}

/* -------------------coo-detail结束--------------------------------- */
.ration-title {
  font-size: calc(25px + 0.4rem);
  width: 8.29rem;
  max-height: 2.89rem;
  overflow: hidden;
}

.ration-digest {
  font-size: calc(12px + 0.16rem);
  width: 7.55rem;
  margin-top: 0.25px;
  line-height: calc(8px + 0.32rem);
  max-height: 1.8rem;
  overflow: hidden;
}

.ration-part1 {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  font-size: calc(15px + 0.6rem);
  color: #fff;
  padding-right: 7%;
}

.ration-con2 {
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  margin: 0 auto;
}

.ration-con {
  font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
  color: #005dd8;
  width: 100%;
  margin-right: 4%;
}

.ration {
  position: absolute;
  top: 3.22rem;
  left: 0;
  width: 100%;
  padding-left: 1.28rem;
}

.arrows-prev {
  cursor: pointer;
}

.arrows-next {
  cursor: pointer;
}

/* 设置相关动效 */

/* 首页banner animate修改 */
@-webkit-keyframes sc1fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40%, 0, 0);
    transform: translate3d(-40%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes sc1fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40%, 0, 0);
    transform: translate3d(-40%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.sc1fadeInLeft {
  -webkit-animation-name: sc1fadeInLeft;
  animation-name: sc1fadeInLeft;
}

/*  */

@-webkit-keyframes sc2fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes sc2fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.sc2fadeInRight {
  -webkit-animation-name: sc2fadeInRight;
  animation-name: sc2fadeInRight;
}

/*  */

@-webkit-keyframes sc3fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes sc3fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.sc3fadeInLeft {
  -webkit-animation-name: sc3fadeInLeft;
  animation-name: sc3fadeInLeft;
}

/*  */

@-webkit-keyframes sc4fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes sc4fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.sc4fadeInLeft {
  -webkit-animation-name: sc4fadeInLeft;
  animation-name: sc4fadeInLeft;
}

/*  */

@-webkit-keyframes sc5fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes sc5fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.sc5fadeInLeft {
  -webkit-animation-name: sc5fadeInLeft;
  animation-name: sc5fadeInLeft;
}

@media screen and (max-width: 1024px) {
  .phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(100rem / var(--mobile-width));
    padding: 0 calc(var(--stand-margin) / var(--mobile-width)) 0 calc(50rem / var(--mobile-width));
    box-sizing: border-box;
  }

  .phone-logo img,
  .back-logo {
    width: calc(230rem / var(--mobile-width));
  }

  .phone-more img,
  .back-more {
    width: calc(34rem / var(--mobile-width));
  }

  header {
    top: initial;
    height: initial;
  }

  .phone-back {
    background-color: #000528;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: scroll;
    z-index: 999;
  }

  .back-header {
    /* height: 2.3rem; */
    height: calc(100rem / var(--mobile-width));
  }

  .back-desc {
    height: calc(100rem / var(--mobile-width));
    padding: 0 calc(var(--stand-margin) / var(--mobile-width)) 0 calc(50rem / var(--mobile-width));
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }

  .back-title {
    height: 100%;
    color: white;
  }

  .back-level1 {
    list-style: none;
  }

  .back-level1 li {
    justify-content: space-between;
    align-items: center;
    line-height: 70px;
    clear: both;
    /* height: 70px; */
    font-size: calc(10px + 0.5rem);
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(70rem / var(--mobile-width));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .back-level1>li {
    /* padding: 0 7.8125rem; */
  }

  .back-level1>li>a {
    padding-left: calc(var(--stand-margin) / var(--mobile-width));
  }

  .back-level1>li>ul>li>a {
    padding-left: calc(var(--stand-margin) / var(--mobile-width));
  }

  .back-level1>li>.sub-menu {
    background-color: #005dd8;
  }

  .back-level1>li>.sub-menu>li>.sub-menu {
    width: 100%;
    margin-left: calc(100rem / var(--mobile-width));
  }

  .back-level1>li>.sub-menu>li>.sub-menu>li>.sub-menu {
    width: 100%;
    margin-left: calc(50rem / var(--mobile-width));
  }

  .back-level1 li img {
    width: 32px;
    /* height: 16px; */
    width: calc(32rem / var(--mobile-width));
    padding-right: calc(var(--stand-margin) / var(--mobile-width));
    transition: all 0.5s;
  }

  .back-level1 li span {
    float: left;
  }

  .back-level1>li>.sub-menu>li {
    padding-left: unset;
  }

  .back-level1>li>.sub-menu {
    display: none;
    width: 100%;
  }

  .back-level1 .sub-menu .sub-menu {
    /*
    padding-left: 2rem;
    width: 24rem;
    margin-left: -3rem;
    padding-right: 3.3rem;
      */
    display: none;
  }

  .back-level1 .sub-menu .sub-menu .sub-menu {
    margin-left: 1.3rem;
  }

  .back-level1 .sub-menu li {
    padding-right: unset;
  }

  .back-level1 .children-2 {
    padding-left: 2rem;
    padding-right: 1.5rem;
    width: 137%;
    margin-left: -3rem;
    display: none;
  }

  .back-level1 .children-3 {
    padding-left: 4rem;
    width: 180%;
    margin-left: -3.5rem;
    display: none;
  }

  .title-check {
    background-color: #005dd8;
    height: 100%;
  }

  .title-check li {
    background-color: #005dd8;
    height: 100%;
  }

  .title-check ul {
    background-color: #005dd8;
    height: 100%;
  }

  .back-level1 .title-check:last-child {
    padding-right: 0px;
  }

  .back-level1 .title-check:last-child li {
    margin-left: -1rem;
    padding-left: 2.2rem;
  }

  /* 尾部 */
  .ft-out {
    display: none;
  }

  div.phone-footer {
    display: block;
    background-color: #000528;
    padding: 80px 1.5rem 2.5rem;
    font-size: calc(14px + 0.3rem);
    color: white;
    padding: calc(80rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width));
  }

  .phone-letter {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
    line-height: calc(32rem / var(--mobile-width));
  }

  .phone-detail {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    font-family: "esk-Lt", "HMOS-Lt", sans-serif;
    line-height: calc(37rem / var(--mobile-width));
    margin-top: calc(26rem / var(--mobile-width));
  }

  .ft-bt-email {
    margin-top: calc(48rem / var(--mobile-width));
    width: 100%;
    height: calc(72rem / var(--mobile-width));
  }

  .ft-bt-email .wpcf7-form p .wpcf7-submit {
    width: calc(72rem / var(--mobile-width));
    flex: 0 0 auto;
    -webkit-appearance: none;
    border-radius: 0;
  }

  .ft-bt-email .wpcf7-form p span input {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
  }

  .phone-box {
    margin-top: calc(80rem / var(--mobile-width));
  }

  ul.phone-footer>li {
    display: flex;
  }

  ul.phone-footer>li>a {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
    line-height: calc(32rem / var(--mobile-width));
    width: calc(204rem / var(--mobile-width));
    margin-bottom: calc(38rem / var(--mobile-width));
  }

  .phone-box li {
    list-style: none;
  }

  .phone-footer>li {
    margin-bottom: calc(42rem / var(--mobile-width));
  }

  .phone-box .sub-menu>li {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
    line-height: calc(32rem / var(--mobile-width));
    margin-bottom: calc(38rem / var(--mobile-width));
  }

  .ft-bt-email-link {
    width: calc(196rem / var(--mobile-width));
  }

  .ft-bt-email-link a {
    width: calc(44.8rem / var(--mobile-width));
  }

  .phone-product {
    /* clear: both;
    height: calc(50px + 5rem); */
    margin-bottom: 30px;
  }

  .phone-title {
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
    float: left;
    width: 185px;
    height: calc(50px + 4rem);
  }

  .phone-series {
    margin-left: 91px;
  }

  .phone-series div {
    margin-bottom: 30px;
  }

  .sc7-out .sc7-2 {
    display: none !important;
  }

  .sc9-position-product {
    display: none;
  }

  .sc9-con {
    margin-top: calc(100rem / var(--mobile-width));
  }

  .sc9-part1,
  .sc9-part2 {
    margin-right: calc(60rem / var(--mobile-width));
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
    color: var(--kv-color);
    text-align: right;
  }

  .sc9-part3 {
    margin: calc(9rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) 0 0;
    font-size: calc(22.4rem / var(--mobile-width));
    line-height: calc(31rem / var(--mobile-width));
    font-family: "esk-Rg", "HMOS-Rg", sans-serif;
    color: white;
    text-align: right;
    padding: unset;
  }

  .sc16-out {
    padding: calc(50rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) 0;
  }

  .sc16-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    padding: unset;
    margin-right: calc(361rem / var(--mobile-width));
    width: unset;
  }

  .sc16-name p {
    width: 100%;
  }

  .sc16-item {
    flex-wrap: wrap;
    margin: unset;
    padding: 0 0 calc(84rem / var(--mobile-width)) 0;
  }

  .sc16-item-img {
    order: 0;
    width: 100%;
  }

  .sc16-item-con {
    order: 1;
    width: 100%;
  }

  .sc16-item-con-part1 {
    flex-wrap: wrap;
    margin-bottom: 3.2552rem;
  }

  .sc16-item-con-part1 img {
    width: calc(150rem / var(--mobile-width));
    margin: 0 0 calc(45rem / var(--mobile-width)) 0;
  }

  .sc16-item-con-part1 p {
    font-size: calc(56rem / var(--mobile-width));
    line-height: calc(65rem / var(--mobile-width));
  }

  .sc16-item-con-part2 {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(42rem / var(--mobile-width));
    padding: unset;
  }

  .sc4-out {
    position: unset;
    transform: unset;
    padding: 0 calc(var(--stand-margin) / var(--mobile-width)) calc(100rem / var(--mobile-width));
    box-sizing: border-box;
    flex-wrap: wrap;
  }

  .sc4 {
    position: unset;
    width: 100%;
    height: unset;
    flex-wrap: wrap;
    order: 1;
  }

  .sc4-other {
    height: unset;
    order: 0;
    overflow: unset;
  }

  .sc4-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    margin: calc(50rem / var(--mobile-width)) 0 calc(25rem / var(--mobile-width));
  }

  .sc4-name p {
    right: 0;
  }

  .sc4-out .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: calc(960rem / var(--mobile-width));
    width: calc(96rem / var(--mobile-width));
    height: calc(24rem / var(--mobile-width));
    left: 50%;
    transform: translateX(-50%);
  }

  .sc4-out .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(24rem / var(--mobile-width));
    margin: 0 calc(4rem / var(--mobile-width));
  }

  .sc4-out .swiper-button-next,
  .sc4-out .swiper-button-prev {
    display: none;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
  }

  .sc5-out {
    width: 100%;
    height: calc(240rem / var(--mobile-width));
    order: 1;
  }

  .sc5-item {
    height: 100%;
  }

  .sc5-item-con {
    width: unset;
    height: 100%;
    margin: unset;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    font-size: calc(40rem / var(--mobile-width));
    line-height: calc(48rem / var(--mobile-width));
  }

  .sc5-out .swiper-slide p:not(:nth-last-of-type(1)) {
    width: 100%;
  }

  .sc5-item-a {
    margin: unset;
    width: calc(90rem / var(--mobile-width));
    padding-right: calc(28rem / var(--mobile-width));
  }

  .sc6-out {
    width: 100%;
    height: calc(480rem / var(--mobile-width));
    order: 0;
  }

  .sc4-space {
    height: unset;
  }

  .sc9-position {
    display: none;
  }

  .sc20-out {
    padding: calc(118rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) 0;
    height: unset;
  }

  .sc20 {
    flex-wrap: wrap;
    height: unset;
  }

  .sc20-left {
    order: 1;
  }

  .sc20-right {
    order: 0;
    padding: unset;
    margin: unset;
    height: unset;
  }

  .master-div {
    height: calc(595rem / var(--mobile-width));
  }

  .sc20-right .master-photo img {
    height: calc(595rem / var(--mobile-width));
  }

  .sc20-right .swiper-slide {
    height: unset;
  }

  .sc20-left {
    width: 100%;
    padding: unset;
  }

  .sc20-left-part1 {
    margin-top: calc(60rem / var(--mobile-width));
  }

  .sc20-left-part2 img {
    width: calc(172rem / var(--mobile-width));
  }

  .sc20-left-part2 p {
    font-size: calc(48rem / var(--mobile-width));
    line-height: calc(56rem / var(--mobile-width));
    width: unset;
    margin-left: calc(28rem / var(--mobile-width));
  }

  .sc20-left-part4 {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(42rem / var(--mobile-width));
    margin: calc(55rem / var(--mobile-width)) 0 calc(20rem / var(--mobile-width));
  }

  .sc20-left-part5>div {
    align-items: unset;
  }

  .sc20-left-part5>div div:nth-child(1) {
    width: calc(22.4rem / var(--mobile-width));
    height: calc(22.4rem / var(--mobile-width));
    margin: calc(9.8rem / var(--mobile-width)) calc(19.1rem / var(--mobile-width)) 0 0;
    flex: 0 0 auto;
  }

  .sc20-left-part5>div div:nth-child(2) {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(40rem / var(--mobile-width));
  }

  .sc20-left-part6 {
    margin: calc(70rem / var(--mobile-width)) 0 calc(100rem / var(--mobile-width));
  }

  .sc20-left-part6 div {
    width: calc(444rem / var(--mobile-width));
    height: calc(80rem / var(--mobile-width));
    margin: 0 auto;
    font-size: calc(40rem / var(--mobile-width));
    line-height: calc(80rem / var(--mobile-width));
    border-width: calc(2rem / var(--mobile-width));
  }

  .sc21-out {
    padding: calc(70rem / var(--mobile-width)) 0;
  }

  .sc21 {
    flex-wrap: wrap;
  }

  .sc21-left {
    width: 100%;
    height: 0;
    position: relative;
  }

  .sc21-left img {
    position: absolute;
    width: calc(618rem / var(--mobile-width));
    top: calc(156rem / var(--mobile-width));
  }

  .sc21-right {
    width: 100%;
    padding-right: calc(var(--stand-margin) / var(--mobile-width));
  }

  .sc21-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    margin-right: calc(2rem / var(--mobile-width));
  }

  .sc21-right-con {
    margin: calc(378rem / var(--mobile-width)) 0 0 calc(60rem / var(--mobile-width));
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(42rem / var(--mobile-width));
    text-align: unset;
  }

  .sc22-out {
    padding: unset;
  }

  .sc22 {
    flex-wrap: wrap;
    padding: 0 calc(var(--stand-margin) / var(--mobile-width));
  }

  .sc22-left {
    width: 100%;
    order: 1;
    margin: unset;
    position: relative;
  }

  .sc22-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    position: absolute;
    top: calc(648rem / var(--mobile-width) / (1280 / 720) * -1 - 160rem / var(--mobile-width));
  }

  .sc22-name p {
    width: unset;
  }

  .sc22-left-list {
    margin-top: calc(70rem / var(--mobile-width));
  }

  .sc22-left-list-img {
    width: calc(44.8rem / var(--mobile-width));
    height: calc(44.8rem / var(--mobile-width));
  }

  .sc22-left-list-des {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(37rem / var(--mobile-width));
  }

  .sc22-left .swiper-backface-hidden .swiper-slide {
    margin-bottom: calc(28rem / var(--mobile-width));
  }

  .sc22-left-a {
    width: calc(90rem / var(--mobile-width));
  }

  .sc22-right {
    width: 100%;
    order: 0;
    margin: calc(160rem / var(--mobile-width)) 0 0;
  }

  .sc22-right iframe {
    width: 100%;
    height: calc(648rem / var(--mobile-width) / (1280 / 720));
  }

  .sc29-out,
  .sc30-out {
    display: none;
  }

  .sc17-out {
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) 0;
  }

  .sc17.swiper {
    top: calc(120rem / var(--mobile-width));
    margin: calc(70rem / var(--mobile-width)) 0 calc(50rem / var(--mobile-width));
    padding-bottom: calc(195rem / var(--mobile-width));
  }

  .sc17-out .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: calc(70rem / var(--mobile-width));
  }

  .sc17-out .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    margin-right: calc(28rem / var(--mobile-width));
  }

  .sc17-item-name img {
    width: calc(150rem / var(--mobile-width));
  }

  .sc17-item-name p {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(40rem / var(--mobile-width));
  }

  .sc17-item-con {
    overflow: unset;
    margin: unset;
    width: unset;
    height: unset;
  }

  .sc17-hang div:nth-of-type(1),
  .sc17-hang.sc17-tou {
    display: none;
  }

  .sc17-hang {
    flex-direction: column;
    padding: unset;
  }

  .sc17-lie:nth-of-type(2) {
    justify-content: center;
    padding: unset;
  }

  .sc17-hang div:nth-of-type(3),
  .sc17-hang div:nth-of-type(5),
  .sc17-hang div:nth-of-type(7) {
    background-color: #f6f6f6;
  }

  .sc17-hang div:nth-of-type(3)::before {
    content: "产品名称";
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc17-hang div:nth-of-type(4)::before {
    content: "频率";
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc17-hang div:nth-of-type(5)::before {
    content: "相位噪声\A 1 GHz载波，10 kHz频偏";
    white-space: pre;
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc17-hang div:nth-of-type(6)::before {
    content: "DANL\A 1 GHz，前置放大器开";
    white-space: pre;
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc17-hang div:nth-of-type(7)::before {
    content: "分析带宽";
    white-space: pre;
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc17-hang div:nth-of-type(8)::before {
    content: "扫描速度";
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc17-lie {
    width: 100% !important;
    justify-content: space-between;
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(40rem / var(--mobile-width));
    padding: calc(12rem / var(--mobile-width)) calc(40rem / var(--mobile-width)) calc(12rem / var(--mobile-width)) 0;
    height: unset;
    box-sizing: border-box;
  }

  .sc17-lie a {
    color: var(--kv-color);
  }

  .sc17-ts {
    display: none;
  }

  .sc23-out {
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width));
  }

  .sc23-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    padding: unset;
    margin: unset;
  }

  .sc23 {
    padding: unset;
  }

  .sc24-out,
  .sc25-out {
    margin-top: calc(25rem / var(--mobile-width));
  }

  .sc24-name,
  .sc25-name {
    height: calc(100rem / var(--mobile-width));
    padding: 0 calc(37.5rem / var(--mobile-width)) 0 calc(25rem / var(--mobile-width));
  }

  .sc24-name-left,
  .sc25-name-left {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    font-family: "esk-Bd", "HMOS-Bd", sans-serif;
  }

  .sc24-name-img,
  .sc25-name-img {
    width: calc(32rem / var(--mobile-width));
  }

  .sc24-tou {
    display: none;
  }

  .sc24-hang {
    flex-direction: column;
    height: unset;
    margin-top: calc(28rem / var(--mobile-width));
  }

  .sc24-lie {
    width: 100%;
    justify-content: space-between;
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(40rem / var(--mobile-width));
    padding: calc(12rem / var(--mobile-width)) calc(40rem / var(--mobile-width)) calc(12rem / var(--mobile-width)) calc(20rem / var(--mobile-width));
    height: unset;
    box-sizing: border-box;
    text-align: center;
  }

  .sc24-hang div:nth-of-type(1)::before {
    content: "产品名称";
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc24-hang div:nth-of-type(2)::before {
    content: "频率";
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc24-hang div:nth-of-type(3)::before {
    content: "相位噪声\A 1 GHz载波，10 kHz频偏";
    white-space: pre;
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc24-hang div:nth-of-type(4)::before {
    content: "DANL\A 1 GHz，前置放大器开";
    white-space: pre;
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc24-hang div:nth-of-type(5)::before {
    content: "分析带宽";
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc24-hang div:nth-of-type(6)::before {
    content: "扫描速度";
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc24-hang div:nth-of-type(7)::before {
    content: "Starting at";
    width: 50%;
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
  }

  .sc25-tou {
    height: unset;
    margin: calc(20rem / var(--mobile-width)) 0;
  }

  .sc25-tou .sc25-lie {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(42rem / var(--mobile-width));
  }

  .sc25-hang {
    margin: unset;
    height: unset;
    padding: calc(20rem / var(--mobile-width)) 0;
  }

  .sc25-lie {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(42rem / var(--mobile-width));
  }

  .sc25-lie:nth-child(1) {
    width: 15%;
  }

  .sc25-lie:nth-child(2) {
    width: 55%;
    text-align: center;
  }

  .sc25-lie:nth-child(3) {
    width: 30%;
    text-align: center;
  }

  .sc26-out {
    padding: unset;
  }

  .sc26-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    padding: 0 calc(var(--stand-margin) / var(--mobile-width)) calc(25rem / var(--mobile-width));
    margin: unset;
  }

  .sc26 {
    flex-wrap: wrap;
    padding: 0 calc(var(--stand-margin) / var(--mobile-width));
  }

  .sc26-item {
    width: 100%;
    padding: unset;
    margin-bottom: calc(70rem / var(--mobile-width));
  }

  .sc26-item-con-part1 {
    font-size: calc(24rem / var(--mobile-width));
    line-height: calc(60rem / var(--mobile-width));
    top: calc(40rem / var(--mobile-width));
    right: calc(40rem / var(--mobile-width));
    width: unset;
  }

  .sc26-item-con-part2 {
    font-size: calc(50rem / var(--mobile-width));
    line-height: calc(60rem / var(--mobile-width));
    top: calc(54rem / var(--mobile-width));
    right: calc(56rem / var(--mobile-width));
  }

  .sc26-item-con-part3 {
    font-size: calc(34rem / var(--mobile-width));
    line-height: calc(50rem / var(--mobile-width));
    bottom: calc(38rem / var(--mobile-width));
    right: calc(60rem / var(--mobile-width));
    width: unset;
  }

  .sc27-out {
    padding: calc(100rem / var(--mobile-width)) 0 calc(40rem / var(--mobile-width));
  }

  .sc27-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(74rem / var(--mobile-width));
    padding: 0 calc(var(--stand-margin) / var(--mobile-width)) 0;
    margin-bottom: calc(25rem / var(--mobile-width));
  }

  .sc27 {
    padding: unset;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .sc27-item {
    width: calc((var(--mobile-width) * 100rem - var(--stand-margin) * 3) / 2 / var(--mobile-width));
    margin-bottom: calc(60rem / var(--mobile-width));
  }

  .sc27-item-con-part1 {
    font-size: calc(32rem / var(--mobile-width));
    line-height: calc(40rem / var(--mobile-width));
    top: calc(30rem / var(--mobile-width));
    right: calc(52rem / var(--mobile-width));
  }

  .sc28-out {
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) calc(100rem / var(--mobile-width));
  }

  .sc28-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    padding-left: calc(68rem / var(--mobile-width));
    margin-bottom: calc(48rem / var(--mobile-width));
  }

  .sc28 {
    padding: 0 calc(118rem / var(--mobile-width));
  }

  .sc28-slide-img {
    width: unset;
  }

  .sc28-slide-con {
    width: unset;
    align-items: center;
  }

  .sc28-out .swiper-button-prev,
  .sc28-out .swiper-button-next {
    width: calc(55rem / var(--mobile-width));
  }

  .sc28-slide-con-img {
    width: calc(160rem / var(--mobile-width));
    margin-right: calc(10rem / var(--mobile-width));
  }

  .sc28-slide-con-right-name {
    font-size: calc(40rem / var(--mobile-width));
    line-height: calc(48rem / var(--mobile-width));
  }

  .sc28-slide-con-right-des {
    width: unset;
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(37rem / var(--mobile-width));
    margin: calc(14rem / var(--mobile-width)) 0 0 calc(-170rem / var(--mobile-width));
  }

  .sc28-slide-a {
    margin-top: calc(140rem / var(--mobile-width));
  }

  .sc28-slide-a div {
    width: 100%;
  }

  .sc28 .swiper-button-prev {
    top: 50%;
    margin-top: unset;
    left: 0;
    transform: translate(0, -50%);
  }

  .sc28 .swiper-button-next {
    top: 50%;
    margin-top: unset;
    right: 0;
    transform: translate(0, -50%);
  }

  .news {
    top: 0;
  }

  .news-con {
    margin-top: calc(100rem / var(--mobile-width));
  }

  .news-part1 {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
  }

  .coo-box {
    background-image: unset;
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) 0;
  }

  .coo-top {
    height: unset;
    padding: unset;
    background-image: unset;
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    margin-bottom: calc(25rem / var(--mobile-width));
  }

  .coo-list {
    padding: unset;
  }

  .coo-item {
    height: unset;
    justify-content: unset;
    flex-wrap: wrap;
  }

  .coo-cover {
    width: 100%;
  }

  .coo-cover img {
    width: 100%;
  }

  .coo-detail {
    width: 100%;
    text-align: unset;
    padding: calc(45rem / var(--mobile-width)) 0 calc(80rem / var(--mobile-width)) 0;
  }

  .coo-detail div {
    margin: unset;
  }

  div.coo-title {
    font-size: calc(56rem / var(--mobile-width));
    line-height: calc(65rem / var(--mobile-width));
    margin-left: unset;
  }

  div.coo-digest {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    margin: calc(25rem / var(--mobile-width)) 0 0 0;
  }

  .coo-more {
    width: calc(90rem / var(--mobile-width));
    height: unset;
  }

  .coo-right {
    order: 1;
  }

  .cover-right {
    width: 100%;
    height: unset;
    order: 0;
  }

  .ration {
    position: unset;
    background-color: #ffffff;
    padding: 0 calc(var(--stand-margin) / var(--mobile-width)) calc(25rem / var(--mobile-width));
    width: unset;
  }

  .ration-con {
    margin: unset;
  }

  .ration-part1 {
    padding: unset;
  }

  .ration-title {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(65rem / var(--mobile-width));
    width: 100%;
    max-height: unset;
    padding: calc(25rem / var(--mobile-width)) 0;
  }

  .ration-digest {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(43rem / var(--mobile-width));
    color: #000528 !important;
    width: 100%;
    margin: unset;
    max-height: unset;
  }

  .detail-box {
    padding: 0 calc(var(--stand-margin) / var(--mobile-width)) calc(80rem / var(--mobile-width));
  }

  .relation-item {
    justify-content: unset;
  }

  .detail-left {
    display: none;
  }

  .detail-desc {
    margin: 0 0 calc(45rem / var(--mobile-width));
    width: 100%;
  }

  .detail-desc a {
    word-wrap: break-word;
  }

  .detail-down {
    flex-wrap: wrap;
  }

  .detail-back {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(37rem / var(--mobile-width));
    order: 3;
  }

  .detail-previous {
    width: 100%;
    flex-wrap: wrap;
  }

  .detail-previous div {
    width: unset;
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(37rem / var(--mobile-width));
    margin-bottom: calc(25rem / var(--mobile-width));
  }

  .detail-previous div.detail-up.noempty::before {
    content: "< : ";
  }

  .detail-previous div.detail-down.noempty::before {
    content: "> : ";
  }

  .grecaptcha-badge {
    display: none;
  }

  html:after {
    content: "mobile";
    display: none;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .current-menu-item-active>a,
  .back-title .current-menu-item>a {
    color: inherit;
  }

  .sc33 {
    width: calc(60rem / var(--mobile-width));
    height: 100%;
    justify-content: end;
    bottom: calc(184rem / var(--mobile-width));
  }

  .sc33-item {
    margin: calc(2rem / var(--mobile-width)) 0;
  }

  .sc33-fx:hover .sc33-fx-con {
    width: calc(366rem / var(--mobile-width));
  }

  .sc33-fx-con {
    right: calc(63rem / var(--mobile-width));
    height: calc(90rem / var(--mobile-width));
    a {
      width: calc(90rem / var(--mobile-width));
    }
  }

  .sc9-position-after {
    display: none;
  }

  .sc9-after {
    margin-top: calc(100rem / var(--mobile-width));
    position: unset;
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc((67rem / var(--mobile-width)));
    padding: 0 calc(var(--stand-margin) / var(--mobile-width));
  }

  .sc13-out {
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) calc(70rem / var(--mobile-width));
  }

  .sc13-name {
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc((67rem / var(--mobile-width)));
    padding: 0 0 calc(25rem / var(--mobile-width));
  }

  .sc13-des {
    padding: unset;
  }

  .sc13-des dt {
    font-size: calc(40rem / var(--mobile-width));
    line-height: calc(48rem / var(--mobile-width));
    width: 100%;
    margin-bottom: calc((25rem / var(--mobile-width)));
  }

  .sc13-des dd {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(37rem / var(--mobile-width));
    display: inline;
  }

  .sc13 {
    padding: unset;
    margin-top: calc(50rem / var(--mobile-width));
  }

  .sc13-left-item {
    width: 100%;
    min-height: calc((var(--mobile-width) * 100rem - var(--stand-margin) * 2) / var(--mobile-width));
    padding: calc(40rem / var(--mobile-width));
    margin: 0 0 calc(25rem / var(--mobile-width));
  }

  .sc13-left-item-img {
    width: calc(274rem / var(--mobile-width));
  }

  .sc13-left-item-title {
    font-size: calc(40rem / var(--mobile-width));
    line-height: calc(48rem / var(--mobile-width));
    margin-top: calc((15rem / var(--mobile-width)));
  }

  .sc13-left-item-con {
    margin-top: calc((25rem / var(--mobile-width)));
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(37rem / var(--mobile-width));
  }

  .sc13-left {
    width: 100%;
  }

  .sc13-right {
    display: none;
  }

  .news-list {
    padding: calc(50rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width));
  }

  .news-cate {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(32rem / var(--mobile-width));
    margin-bottom: calc((25rem / var(--mobile-width)));
    justify-content: space-between;
    align-items: center;
    div {
      width: 30%;
      text-align: center;
    }
  }

  .news-item {
    margin-bottom: calc(50rem / var(--mobile-width));
    flex-wrap: wrap;
    img {
      width: 100%;
    }
    .news-desc {
      width: 100%;
      height: unset;
      margin: unset;
      .news-desc-top {
        display: none;
      }
      .news-desc-content {
        height: unset;
        .news-title {
          font-size: calc(40rem / var(--mobile-width));
          margin-top: calc(25rem / var(--mobile-width));
        }
        .news-detial, .news-date {
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          line-height: calc(32rem / var(--mobile-width));
          max-height: unset;
          overflow: unset;
          margin-top: calc(25rem / var(--mobile-width));
        }
      }
    }
  }

  .news-num {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(38rem / var(--mobile-width));
    height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    .arrows-prev, .arrows-next {
      width: calc(70rem / var(--mobile-width));
      text-align: center;
    }
    .current-page input {
      font-size: calc(var(--stand-font-size) / var(--mobile-width));
      line-height: calc(38rem / var(--mobile-width));
      width: calc(70rem / var(--mobile-width));
      height: unset;
    }
    .of, .total-page {
      width: calc(70rem / var(--mobile-width));
      text-align: center;
    }
  }

  .news-relation {
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) calc(100rem / var(--mobile-width));
    font-size: calc(var(--big-font-size) / var(--mobile-width));
    line-height: calc(67rem / var(--mobile-width));
    font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
    box-sizing: border-box;
    .relation-title {
      width: unset;
    }
    .relation-items {
      .swiper-wrapper {
        margin-top: calc(25rem / var(--mobile-width));
      }
    }
  }

  .sc29-out {
    width: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width));
    height: unset;
    padding-bottom: unset;
    border-image-slice: 40% 0 40% 10% fill;
    border-image-repeat: stretch;
    border-image-width: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .4) 0 calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .4) calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .1);
    .sc29-close {
      width: calc(45rem / var(--mobile-width));
      height: calc(45rem / var(--mobile-width));
    }
    .sc29-xbg {
      display: none;
    }
    .sc29 {
      .sc29-name {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        margin-top: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 50 / 900);
        padding-right: calc(60rem / var(--mobile-width));
      }
    }
    .sc29-con {
      position: unset;
      width: 100%;
      padding-top: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) / 4);
      padding-right: calc(70rem / var(--mobile-width));
      padding-bottom: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 151 / 900);
      padding-left: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 151 / 900);
      box-sizing: border-box;
    }
  }

  .sc29-part8 .sc29-part-input {
    padding: calc(15rem / var(--mobile-width)) calc(25rem / var(--mobile-width)) 0;
    height: calc(120rem / var(--mobile-width));
  }

  .sc29-part8 textarea {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
  }

  .sc29-part, .sc30-part {
    margin-bottom: unset;
  }
  
  .sc29-part-name {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(32rem / var(--mobile-width));
  }

  .sc29-part-input {
    height: calc(48rem / var(--mobile-width));
    margin: calc(5rem / var(--mobile-width)) 0 calc(20rem / var(--mobile-width));
    padding: 0 calc(20rem / var(--mobile-width));
  }

  .sc29-part-input input {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
  }

  .sc29-part-input .wpcf7-not-valid-tip {
    font-size: calc(20rem / var(--mobile-width));
    line-height: calc(20rem / var(--mobile-width));
    position: absolute;
    right: calc(20rem / var(--mobile-width));
  }

  .sc29-con .wpcf7 form .wpcf7-response-output {
    margin: unset;
    padding: unset;
    position: absolute;
    right: calc(var(--stand-margin) / var(--mobile-width));
    bottom: calc((var(--mobile-width)* 100rem - 80rem) / var(--mobile-width)* 113 / 900);
    color: #dc3232;
    font-size: calc(20rem / var(--mobile-width));
    line-height: calc(20rem / var(--mobile-width));
    transform: translateY(50%);
  }

  .sc29-part2, .sc29-part3, .sc29-part4, .sc29-part5, .sc29-part6, .sc29-part7 {
    width: 100%;
  }

  .sc29-part10 p {
    width: 60%;
    height: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 70 / 900);
    line-height: unset;
    border-width: calc(2rem / var(--mobile-width));
  }

  .sc29-part10 p input {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
  }

  .sc29-success, .sc30-success {
    width: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width));
    height: unset;
    min-height: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width));
    display: block;
    display: none;
    .img {
      height: unset;
      div:nth-of-type(1) {
        img {
          width: calc(129rem * 1.906 / var(--mobile-width)) !important;
          height: calc(118rem * 1.906 / var(--mobile-width)) !important;
        }
      }
      .success-close, .close {
        width: calc(45rem / var(--mobile-width));
      }
    }
    .text-box {
      height: unset;
      min-height: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) - (118rem * 1.906 + 90rem) / var(--mobile-width));
      margin-top: calc(22rem * -2 / var(--mobile-width));
      padding: 0 calc(45rem / var(--mobile-width)) calc(90rem / var(--mobile-width)) calc((129rem * 1.906 - 23rem * 2) / var(--mobile-width));
      box-sizing: border-box;
      display: flex;
      align-items: center;
      .text {
        margin: unset;
        padding: unset;
        width: unset;
        height: unset;
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
      }
    }
  }

  .sc31-out {
    width: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width));
    height: unset;
    top: 50%;
    right: unset;
    bottom: unset;
    left: 50%;
    transform: translate(-50%, -50%);
    border-image-source: url(/wp-content/themes/enharogic/assets/images/tc3.svg);
    border-image-slice: 40% 0 40% 10% fill;
    border-image-repeat: stretch;
    border-image-width: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .4) 0 calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .4) calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .1);
    .sc31-close {
      width: calc(45rem / var(--mobile-width));
      height: calc(45rem / var(--mobile-width));
    }
    .sc31-xbg {
      display: none;
    }
    .sc31 {
      position: unset;
      .sc31-name {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        margin-top: calc((var(--mobile-width)* 100rem - 80rem) / var(--mobile-width)* 50 / 900);
        padding-right: calc(var(--stand-margin) / var(--mobile-width));
      }
    }
    .sc31-con {
      position: unset;
      width: 100%;
      padding-top: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 175 / 900 - (48rem* 2) / var(--mobile-width));
      padding-right: calc(var(--stand-margin) / var(--mobile-width));
      padding-bottom: calc((var(--mobile-width)* 100rem - 80rem) / var(--mobile-width)* 151 / 900);
      padding-left: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 151 / 900);
      box-sizing: border-box;
      .sc31-con-cpms {
        font-size: calc(20rem / var(--mobile-width));
        line-height: calc(20rem / var(--mobile-width));
        top: calc(140rem / var(--mobile-width));
      }
      .sc31-part {
        width: 100%;
        margin-bottom: unset;
        .sc31-part-name {
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          line-height: calc(32rem / var(--mobile-width));
        }
        .sc31-part-input {
          height: calc(48rem / var(--mobile-width));
          margin: calc(5rem / var(--mobile-width)) 0 calc(20rem / var(--mobile-width));
          padding: 0 calc(20rem / var(--mobile-width));
          input {
            font-size: calc(var(--stand-font-size) / var(--mobile-width));
          }
          .wpcf7-not-valid-tip {
            font-size: calc(20rem / var(--mobile-width));
            line-height: calc(20rem / var(--mobile-width));
            position: absolute;
            right: calc(20rem / var(--mobile-width));
          }
          input::-webkit-input-placeholder {
            font-family: esk-Xlt;
            color: #afafaf;
          }
        }
        .sc31-part-select {
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          padding-right: unset;
          top: calc(77rem / var(--mobile-width));
          .sc31-part-select-scroll {
            height: 100rem;
            .sc31-part-select-item {
              font-size: calc(var(--stand-font-size) / var(--mobile-width));
              line-height: calc(40rem / var(--mobile-width));
              margin: calc(10rem / var(--mobile-width)) 0;
            }
            .sc31-part-select-sort-name, .sc31-part-select-sort-sub, .sc31-part-select-sub-name, .sc31-part-select-wz-name {
              padding: 0 0 0 calc(20rem / var(--mobile-width));
            }
          }
        }
      }
      .wpcf7 form {
        .wpcf7-response-output {
          margin: unset;
          padding: unset;
          position: absolute;
          right: calc(var(--stand-margin) / var(--mobile-width));
          bottom: calc((var(--mobile-width)* 100rem - 80rem) / var(--mobile-width)* 113 / 900);
          color: #dc3232;
          font-size: calc(20rem / var(--mobile-width));
          line-height: calc(20rem / var(--mobile-width));
          transform: translateY(50%);
        }
      }
    }
  }

  .sc31-part8 .sc31-part-input {
    height: calc(76rem / var(--mobile-width)) !important;
  }

  .sc31-part10 p {
    width: 60%;
    height: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 70 / 900);
    line-height: unset;
    border-width: calc(2rem / var(--mobile-width));
  }

  .sc31-part10 p input {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
  }

  .sc30-part {
    margin-bottom: unset;
  }

  .sc9-con {
    .sc9-part1 {
      margin-top: unset;
    }
    .sc9-part5 {
      font-size: calc(22.4rem / var(--mobile-width));
      line-height: calc(31rem / var(--mobile-width));
      padding: unset;
      margin: calc(9rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width));
    }
  }

  .sc14-out {
    height: unset;
    background: unset;
    padding: calc(50rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) 0;
    .sc14 {
      padding: unset;
    }
    .sc14-name {
      font-size: calc(var(--big-font-size) / var(--mobile-width));
      line-height: calc(67rem / var(--mobile-width));
    }
    .sc14-des {
      margin-top: calc(25rem / var(--mobile-width));
      width: 100%;
      dt {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        margin-bottom: calc(25rem / var(--mobile-width))
      }
      dd {
        font-size: calc(var(--stand-font-size) / var(--mobile-width));
        line-height: calc(32rem / var(--mobile-width));
        margin-bottom: calc(25rem / var(--mobile-width));
      }
    }
    .sc14-contact {
      margin-top: calc(25rem / var(--mobile-width));
      font-size: calc(40rem / var(--mobile-width));
      line-height: calc(48rem / var(--mobile-width));
      width: 100%;
      height: unset;
      border-width: calc(2rem / var(--mobile-width));
      p {
        height: unset;
      }
    }
  }

  .contact-box {
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width));
    .sc15-out {
      padding: unset;
      .sc15-name {
        font-size: calc(var(--big-font-size) / var(--mobile-width));
        line-height: calc(67rem / var(--mobile-width));
      }
      .sc15-part-name {
        font-size: calc(var(--big-font-size) / var(--mobile-width));
        line-height: calc(67rem / var(--mobile-width));
        margin-top: calc(50rem / var(--mobile-width));
      }
      .sc15 {
        padding: unset;
        .sc15-item {
          width: 100%;
          height: unset;
          margin: 0 0 calc(25rem / var(--mobile-width));
          padding: calc(70rem / var(--mobile-width)) calc(50rem / var(--mobile-width));
          min-height: calc((var(--mobile-width) * 100rem - var(--stand-margin) * 2) / var(--mobile-width));
          .sc15-item-scroll {
            height: unset;
            padding: unset;
            .sc15-item-con-1 {
              font-size: calc(40rem / var(--mobile-width));
              line-height: calc(48rem / var(--mobile-width));
              margin-bottom: calc(40rem / var(--mobile-width));
            }
            .sc15-item-con-2 {
              font-size: calc(var(--stand-font-size) / var(--mobile-width));
              line-height: calc(46rem / var(--mobile-width));
              width: 100%;
              height: unset;
            }
          }
        }
      }
    }
  }

  .sc9-part7 {
    margin-top: calc(9rem / var(--mobile-width));
    p {
      font-size: calc(22.4rem / var(--mobile-width));
      line-height: calc(31rem / var(--mobile-width));
    }
  }

  .sc19-out {
    padding: unset;
    .sc19-search {
      height: unset;
      flex-wrap: wrap;
      padding: calc(50rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width));
      background-color: white;
      z-index: 1;
      transition: all .3s;
      .sc19-search-num {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        margin: 0 0 calc(25rem /var(--mobile-width));
      }
      .sc19-search-form {
        width: 100%;
        .sc19-search-title-box {
          width: 100%;
          height: calc(70rem / var(--mobile-width));
          padding: 0 calc(20rem / var(--mobile-width));
          border-width: calc(2rem / var(--mobile-width));
          border-right-width: 0;
          .sc19-search-title-box-result {
            font-size: calc(var(--stand-font-size) / var(--mobile-width));
            line-height: calc(40rem / var(--mobile-width));
            height: 100%;
            display: flex;
            align-items: center;
          }
          .sc19-category-list {
            font-size: calc(var(--stand-font-size) / var(--mobile-width));
            line-height: calc(40rem / var(--mobile-width));
            width: calc(100% + 70rem / var(--mobile-width));
            height: unset;
            padding: calc(10rem / var(--mobile-width)) calc(20rem / var(--mobile-width));
            top: calc(70rem / var(--mobile-width));
            z-index: 1;
            .sc19-category-item {
              width: unset;
              line-height: calc(40rem / var(--mobile-width));
              .sc19-subcategory-list {
                display: block;
                position: unset;
                width: 100%;
                height: unset;
                padding: 0 calc(40rem / var(--mobile-width));
                .sc19-post-list {
                  display: block;
                  position: unset;
                  width: unset;
                  height: unset;
                  padding: 0 calc(40rem / var(--mobile-width));
                  li {
                    padding: calc(10rem / var(--mobile-width)) 0;
                  }
                }
              }
            }
            .sc19-icon {
              display: none;
            }
            div {
              padding: calc(10rem / var(--mobile-width)) 0;
            }
          }
        }
        .sc19-search-form-submit {
          width: unset;
          height: unset;
          img {
            width: calc(70rem / var(--mobile-width));
            height: unset;
          }
        }
        .sc19-search-form-submit.open {
          img {
            transform: rotate(180deg);
          }
        }
      }
      .sc19-mobile-form {
        display: flex;
        width: 100%;
        margin-top: calc(25rem / var(--mobile-width));
        position: relative;
        div:nth-of-type(1) {
          width: 100%;
          height: calc(70rem / var(--mobile-width));
          border: calc(2rem / var(--mobile-width)) solid var(--kv-color);
          border-right-width: 0;
          box-sizing: border-box;
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          line-height: calc(40rem / var(--mobile-width));
          color: #afafaf;
          padding: 0 calc(20rem / var(--mobile-width));
          display: flex;
          align-items: center;
        }
        div:nth-of-type(2) img {
          width: calc(70rem / var(--mobile-width));
        }
        div:nth-of-type(2).open img {
          transform: rotate(180deg);
        }
        ul {
          position: absolute;
          top: calc(70rem / var(--mobile-width));
          width: 100%;
          padding: calc(10rem / var(--mobile-width)) calc(70rem / var(--mobile-width)) calc(10rem / var(--mobile-width)) calc(20rem / var(--mobile-width));
          color: #000528;
          background-color: #f6f6f6;
          display: none;
          .sc19-left-item {
            padding: calc(10rem / var(--mobile-width)) 0;
            font-size: calc(var(--stand-font-size) / var(--mobile-width));
            line-height: calc(40rem / var(--mobile-width));
            font-family: "esk-Xlt", "HMOS-Xlt", sans-serif;
            display: flex;
            justify-content: space-between;
            width: unset;
            height: unset;
            position: unset;
            margin: unset;
          }
        }
      }
    }
    .sc19 {
      padding: unset;
      .sc19-left {
        display: none;
      }
      .sc19-right {
        width: 100%;
        margin-bottom: calc(75rem / var(--mobile-width));
        .sc19-item-con {
          margin: 0 calc(var(--stand-margin) / var(--mobile-width));
          height: unset;
          overflow-y: unset;
          .sc19-item-con-scroll {
            padding-right: unset;
            .sc19-item-list {
              height: unset;
              padding-bottom: calc(25rem / var(--mobile-width));
              margin-bottom: calc(25rem / var(--mobile-width));
              .sc19-item-list-img {
                width: calc(100rem / var(--mobile-width));
                flex: 0 0 auto;
              }
              .sc19-item-list-right {
                h5 {
                  font-size: calc(40rem / var(--mobile-width));
                  line-height: calc(48rem / var(--mobile-width));
                }
                p, span {
                  font-size: calc(var(--stand-font-size) / var(--mobile-width));
                  line-height: calc(40rem / var(--mobile-width));
                  margin: unset;
                }
              }
            }
          }
        }
      }
    }
    .sc19-back {
      display: none;
    }
  }

  .sc19-search-form:hover .sc19-category-list {
    display: none;
  }

  .news-body {
    .detail {
      top: 0;
      padding: unset;
      .detail-con {
        padding: calc(100rem / var(--mobile-width)) 0 0 calc(var(--stand-margin) / var(--mobile-width));
        margin: unset;
        box-sizing: border-box;
        .detail-part1 {
          font-size: calc(var(--big-font-size) / var(--mobile-width));
          line-height: calc(67rem / var(--mobile-width));
          padding: unset;
        }
      }
    }
    .detail-box {
      .detail-info {
        width: 100%;
        margin: calc(50rem / var(--mobile-width)) 0;
        .detail-date, .detail-digest {
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          line-height: calc(32rem / var(--mobile-width));
          margin-bottom: calc(25rem / var(--mobile-width));
        }
        .detail-name {
          font-size: calc(40rem / var(--mobile-width));
          line-height: calc(48rem / var(--mobile-width));
          margin-bottom: calc(25rem / var(--mobile-width));
        }
        .detail-description a {
          word-wrap: break-word;
        }
      }
    }
  }

  .sc9-out {
    margin-bottom: unset;
  }

  .sc10 {
    flex-wrap: wrap;
    margin-bottom: calc(50rem / var(--mobile-width));
    .sc10-wz {
      width: 100%;
      padding: calc(25rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width));
      .sc10-wz-1 {
        font-size: calc(var(--big-font-size) / var(--mobile-width));
        line-height: calc(67rem / var(--mobile-width));
        margin: unset;
      }
      .sc10-wz-2 {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        margin-top: calc(25rem / var(--mobile-width));
        width: 100%;
        text-align: left;
      }
      .sc10-wz-3 {
        font-size: calc(var(--stand-font-size) / var(--mobile-width));
        line-height: calc(42rem / var(--mobile-width));
        margin: calc(25rem / var(--mobile-width)) 0;
        div, p {
          text-align: left;
          .support-block {
            display: none;
          }
        }
      }
      .sc10-wz-4 {
        font-size: calc(var(--stand-font-size) / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        margin-top: calc(25rem / var(--mobile-width));
        padding: unset;
        text-align: left;
        p {
          padding: unset;
          .support-block {
            display: none;
          }
        }
      }
      .sc10-wz-more {
        display: none;
      }
    }
    .sc10-tp {
      width: 100%;
      margin: unset;
      order: 1;
      padding: 0 calc(var(--stand-margin) / var(--mobile-width));
      .sc10-fk {
        width: calc(var(--stand-margin) / var(--mobile-width));
        height: calc(var(--stand-margin) / var(--mobile-width));
        transform: translate(0, 100%);
        display: none;
      }
    }
  }

  .sc10-out-5 .sc10-tp {
    order: 1;
  }

  .sc10-out-5 .sc10-wz-3 p:nth-child(1) {
    margin: unset;
  }

  .sc10-out-5 .sc10-wz-2 {
    display: none;
  }

  .sc12-bg {
    background: unset;
    background-color: rgba(0, 5, 40, 0.92);
    padding: calc(50rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) calc(70rem / var(--mobile-width));
    .sc12-name {
      width: 100%;
      font-size: calc(var(--big-font-size) / var(--mobile-width));
      line-height: calc(67rem / var(--mobile-width));
      margin: unset;
    }
  }

  .sc12 {
    flex-wrap: wrap;
    .sc12-tp {
      width: 100%;
      order: 1;
      .sc12-right-img {
        width: 100%;
        .sc12-fk {
          display: none;
        }
      }
    }
    .sc12-wz {
      width: 100%;
      padding: unset;
      .sc12-wz-1 {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        margin-top: calc(25rem / var(--mobile-width));
      }
      .sc12-wz-2 {
        font-size: calc(var(--stand-font-size) / var(--mobile-width));
        line-height: calc(40rem / var(--mobile-width));
        margin-top: calc(25rem / var(--mobile-width));
        text-align: left;
        margin-bottom: calc(25rem / var(--mobile-width));
      }
    }
  }

  .sc2-out {
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width));
    .sc2-name {
      font-size: calc(var(--big-font-size) / var(--mobile-width));
      line-height: calc(67rem / var(--mobile-width));
      right: unset;
      p {
        width: unset;
      }
    }
    .sc2 {
      margin-top: calc(50rem / var(--mobile-width));
      padding: unset;
      flex-wrap: wrap;
      .sc2-item {
        width: 100%;
        .sc2-item-img {
          width: calc(280rem / var(--mobile-width))
        }
        .sc2-item-con {
          margin: 0 0 calc(25rem / var(--mobile-width));
          font-size: calc(40rem / var(--mobile-width));
          line-height: calc(48rem / var(--mobile-width));
        }
      }
    }
  }

  .sc11-out {
    padding: calc(50rem / var(--mobile-width)) 0 calc(70rem / var(--mobile-width));
    background: none;
    height: unset;
    max-height: unset;
    .sc11-name {
      font-size: calc(var(--big-font-size) / var(--mobile-width));
      line-height: calc(67rem / var(--mobile-width));
      padding: unset;
      margin-left: calc(var(--stand-margin) / var(--mobile-width));
      display: block;
      width: 42%;
      p {
        width: unset;
      }
    }
    .sc11 {
      margin: 0 calc(var(--stand-margin) / var(--mobile-width));
      padding: unset;
      flex-wrap: wrap;
      width: unset;
      .sc11-item {
        width: 100%;
        margin-top: calc(25rem / var(--mobile-width));
      }
    }
  }

  .sc9-position-faq {
    display: none;
  }

  .sc18-out {
    padding: calc(50rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) calc(100rem / var(--mobile-width));
    .sc18-search {
      height: unset;
      flex-wrap: wrap;
      .sc18-search-num {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        width: 100%;
        margin: 0 0 calc(25rem / var(--mobile-width));
      }
      .sc18-search-form {
        width: 100%;
        input {
          width: 100%;
          height: calc(70rem / var(--mobile-width));
          padding: 0 calc(20rem / var(--mobile-width));
          border-width: calc(2rem / var(--mobile-width));
          border-right-width: 0;
        }
        button {
          width: unset;
          height: unset;
          img {
            width: calc(70rem / var(--mobile-width));
          }
        }
      }
    }
    .sc18 {
      .sc18-item-name {
        font-size: calc(var(--big-font-size) / var(--mobile-width));
        line-height: calc(67rem / var(--mobile-width));
        margin: calc(50rem / var(--mobile-width)) 0 0;
        border-bottom: calc(2rem / var(--mobile-width)) solid var(--kv-color);
        padding-bottom: calc(25rem / var(--mobile-width));
      }
      .sc18-item {
        padding: unset;
        .sc18-item-con {
          height: unset;
          overflow-y: unset;
          .sc18-item-con-scroll {
            padding: unset;
          }
        }
      }
      .sc18-item-list {
        height: unset;
        padding: calc(25rem / var(--mobile-width)) 0;
        .sc18-item-list-img {
          width: calc(100rem / var(--mobile-width));
          flex: 0 0 auto;
        }
        h5 {
          font-size: calc(40rem / var(--mobile-width));
          line-height: calc(48rem / var(--mobile-width));
        }
        p, span {
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          line-height: calc(40rem / var(--mobile-width));
          margin: calc(20rem / var(--mobile-width)) 0;
        }
      }
    }
  }

  .sc8-out {
    height: unset;
    background-image: url(./assets/images/phone/work-cn.jpg);
    border: unset;
    height: calc(100rem * 7 / 8);
    .sc8 {
      padding: 0 calc(var(--stand-margin) / var(--mobile-width));
      .sc8-part-1 {
        font-size: calc(var(--big-font-size) / var(--mobile-width));
        line-height: calc(67rem / var(--mobile-width));
        padding: calc(25rem / var(--mobile-width)) 0 calc(9rem / var(--mobile-width));
        margin: unset;
      }
      .sc8-part-2 {
        margin: unset;
        padding: unset;
        p {
          font-size: calc(22.4rem / var(--mobile-width));
          line-height: calc(31rem / var(--mobile-width));
          width: 51%;
          text-align: left;
          float: left;
          margin-top: calc(70rem / var(--mobile-width));
        }
      }
    }
  }

  .sc30-out {
    width: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width));
    height: unset;
    top: 50%;
    right: unset;
    bottom: unset;
    left: 50%;
    transform: translate(-50%, -50%);
    border-image-source: url(/wp-content/themes/enharogic/assets/images/tc2.svg);
    border-image-slice: 40% 0 40% 10% fill;
    border-image-repeat: stretch;
    border-image-width: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .4) 0 calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .4) calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * .1);
    .sc30-close {
      width: calc(45rem / var(--mobile-width));
      height: calc(45rem / var(--mobile-width));
    }
    .sc30-xbg {
      display: none;
    }
    .sc30 {
      position: unset;
      .sc30-name {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
        margin-top: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 50 / 900);
        padding-right: calc(var(--stand-margin) / var(--mobile-width));
      }
      .sc30-con {
        position: unset;
        width: 100%;
        padding-top: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 175 / 900 - (48rem * 2) / var(--mobile-width));
        padding-right: calc(var(--stand-margin) / var(--mobile-width));
        padding-bottom: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 151 / 900);
        padding-left: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 151 / 900);
        box-sizing: border-box;
        .sc31-con-cpms {
          font-size: calc(20rem / var(--mobile-width));
          line-height: calc(20rem / var(--mobile-width));
          top: calc(140rem / var(--mobile-width));
        }
        .sc30-part {
          width: 100%;
          margin-bottom: unset;
          .sc30-part-name {
            font-size: calc(var(--stand-font-size) / var(--mobile-width));
            line-height: calc(32rem / var(--mobile-width));
          }
          .sc30-part-input {
            height: calc(48rem / var(--mobile-width));
            margin: calc(5rem / var(--mobile-width)) 0 calc(20rem / var(--mobile-width));
            padding: 0 calc(20rem / var(--mobile-width));
            input {
              font-size: calc(var(--stand-font-size) / var(--mobile-width));
            }
            .wpcf7-not-valid-tip {
              font-size: calc(20rem / var(--mobile-width));
              line-height: calc(20rem / var(--mobile-width));
              position: absolute;
              right: calc(20rem / var(--mobile-width));
            }
            input::-webkit-input-placeholder {
              font-family: esk-Xlt;
              color: #afafaf;
            }
          }
          .sc30-part-select {
            font-size: calc(var(--stand-font-size) / var(--mobile-width));
            padding-right: unset;
            top: calc(77rem / var(--mobile-width));
            .sc30-part-select-scroll {
              .sc30-part-select-item {
                font-size: calc(var(--stand-font-size) / var(--mobile-width));
                line-height: calc(40rem / var(--mobile-width));
                margin: calc(10rem / var(--mobile-width)) 0;
                padding: 0 0 0 calc(20rem / var(--mobile-width));
              }
            }
          }
        }
        .wpcf7-response-output {
          margin: unset;
          padding: unset;
          position: absolute;
          right: calc(var(--stand-margin) / var(--mobile-width));
          bottom: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 113 / 900);;
          color: #dc3232;
          font-size: calc(20rem / var(--mobile-width));
          line-height: calc(20rem / var(--mobile-width));
          transform: translateY(50%)
        }
      }
    }
  }

  .sc30-part10 p {
    width: 60%;
    height: calc((var(--mobile-width) * 100rem - 80rem) / var(--mobile-width) * 70 / 900);
    line-height: unset;
    border-width: calc(2rem / var(--mobile-width));
  }

  .sc30-part10 p input {
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
  }

  .sc30-success {
    display: none;
  }

  .sc1-out {
    margin-bottom: calc(45rem / var(--mobile-width));
    .sc1-item-wz {
      top: calc(100rem / var(--mobile-width));
      right: calc(var(--stand-margin) / var(--mobile-width));
      .sc1-item-wz-1 {
        font-size: calc(var(--big-font-size) / var(--mobile-width));
        line-height: calc(67rem / var(--mobile-width));
        p {
          width: unset;
        }
      }
      .sc1-item-wz-2 {
        font-size: calc(22.4rem / var(--mobile-width));
        line-height: calc(31rem / var(--mobile-width));
        margin-top: calc(9rem / var(--mobile-width));
        p {
          width: unset;
        }
      }
    }
    .pagination {
      right: calc(100rem / var(--mobile-width));
      bottom: calc(20rem / var(--mobile-width));
      .swiper-pagination-bullets.swiper-pagination-horizontal {
        width: calc(96rem / var(--mobile-width));
        .swiper-pagination-bullet {
          height: calc(24rem / var(--mobile-width));
          margin: 0 calc(4rem / var(--mobile-width));
        }
      }
    }
  }

  .sc7-out {
    padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) calc(76rem / var(--mobile-width));
    .sc7-name {
      font-size: calc(var(--big-font-size) / var(--mobile-width));
      line-height: calc(67rem / var(--mobile-width));
      padding: unset;
      margin-bottom: calc(25rem / var(--mobile-width));
      div {
        width: 100%;
        p {
          width: 100%;
        }
      }
    }
    .sc7 {
      padding: unset;
      .sc7-1 {
        width: 100%;
        .sc7-1-con {
          margin-top: calc(25rem / var(--mobile-width));
          font-size: calc(40rem / var(--mobile-width));
          line-height: calc(48rem / var(--mobile-width));
          height: unset;
          p {
            width: 100%;
          }
        }
      }
    }
    .sc7-11 {
      padding: unset;
      .swiper-pagination-bullets.swiper-pagination-horizontal {
        width: calc(96rem / var(--mobile-width));
        height: calc(24rem / var(--mobile-width));
        margin-top: unset;
        bottom: calc(-26rem / var(--mobile-width));
        left: 50%;
        transform: translateX(-50%);
        .swiper-pagination-bullet {
          margin: 0 calc(4rem / var(--mobile-width));
          height: calc(24rem / var(--mobile-width));
          width: calc(24rem / var(--mobile-width));
        }
      }
    }
  }

  .sc3-out {
    .sc3-name {
      font-size: calc(var(--big-font-size) / var(--mobile-width));
      line-height: calc(67rem / var(--mobile-width));
      top: calc(70rem / var(--mobile-width));
      padding-left: calc(var(--stand-margin) / var(--mobile-width));
      width: unset;
      box-sizing: border-box;
      p {
        width: unset;
      }
    }
    .sc3-item {
      padding: calc(70rem / var(--mobile-width)) calc(var(--stand-margin) / var(--mobile-width)) 0;
      .sc3-item-left {
        padding-left: unset;
        .sc3-item-left-part1 {
          width: unset;
          margin-top: calc(159rem / var(--mobile-width));
          justify-content: space-between;
          .sc3-item-left-part1-img {
            width: calc(148rem / var(--mobile-width));
          }
          .sc3-item-left-part1-xl {
            font-size: calc(40rem / var(--mobile-width));
            line-height: calc(48rem / var(--mobile-width));
            margin: unset;
          }
        }
        .sc3-item-left-part2 {
          margin-top: unset;
          width: 50%;
          height: calc(((var(--mobile-width) * 100rem - var(--stand-margin) * 2) / 2 * 73 / 79 - 128rem / 1.1) / var(--mobile-width));
          font-size: calc(40rem / var(--mobile-width));
          line-height: calc(48rem / var(--mobile-width));
          display: flex;
          flex-wrap: wrap;
          align-content: end;
        }
        .sc3-item-left-part3 {
          margin-top: calc(25rem / var(--mobile-width));
          width: 200%;
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          line-height: calc(32rem / var(--mobile-width));
          margin-bottom: calc(100rem / var(--mobile-width));
        }
      }
      .sc3-item-right {
        width: 50%;
        margin-top: calc(159rem / var(--mobile-width));
      }
    }
    .sc3sp-out {
      padding: unset;
      bottom: 0;
      left: 50%;
      width: unset;
      .swiper-pagination-bullets.swiper-pagination-horizontal {
        width: calc(96rem / var(--mobile-width));
        height: calc(24rem / var(--mobile-width));
        bottom: calc(25rem / var(--mobile-width));
        transform: translateX(-50%);
        .swiper-pagination-bullet {
          width: calc(24rem / var(--mobile-width));
          height: calc(24rem / var(--mobile-width));
          margin: 0 calc(4rem / var(--mobile-width));
        }
      }
    }
  }

  .wpcf7-response-output {
    display: none !important;
  }

  .sc32-out {
    padding: calc(50rem / var(--mobile-width)) 0;
    .sc32-item-list {
      height: unset;
      padding: 0 calc(var(--stand-margin) / var(--mobile-width));
      .sc32-item-list-img {
        width: calc(100rem / var(--mobile-width));
        flex: 0 0 auto;
      }
      .sc32-item-list-right {
        margin-bottom: calc(20rem / var(--mobile-width));
        h5 {
          font-size: calc(40rem / var(--mobile-width));
          line-height: calc(48rem / var(--mobile-width));
          color: var(--kv-color);
        }
        p {
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          line-height: calc(40rem / var(--mobile-width));
          margin: calc(20rem / var(--mobile-width)) 0;
        }
        span {
          font-size: calc(var(--stand-font-size) / var(--mobile-width));
          line-height: calc(40rem / var(--mobile-width));
        }
      }
    }
    .sc32 {
      padding: unset;
      .sc32-hang {
        padding: unset;
        font-size: calc(var(--stand-font-size) / var(--mobile-width));
        line-height: calc(40rem / var(--mobile-width));
        padding: calc(20rem / var(--mobile-width)) calc(30rem / var(--mobile-width));
        height: unset;
        .sc32-lie:nth-child(1) {
          width: 30%;
        }
        .sc32-lie:nth-child(2) {
          word-wrap: break-word;
        }
        .sc32-lie:nth-child(3) {
          width: 25%;
          text-align: center;
        }
        .sc32-lie:nth-child(4) {
          width: 22%;
        }
      }
      .sc32-hang.sc32-tou {
        font-size: calc(40rem / var(--mobile-width));
        line-height: calc(48rem / var(--mobile-width));
      }
    }
  }

  .support-background {
    display: none;
  }

}

.ft-sns {
  position: absolute;
  top: 70px;
  right: 3%;
  a {
    display: block;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 6px;
  }
  .ft-qrcode {
    display: none;
    position: absolute;
    z-index: 999;
    top: -110px;
    img {
      width: 100px;
      padding-bottom: 10px;
      clip-path: polygon(0 0, 100px 0, 100px 100px, 10px 100px, 0 110px);
      background-color: white;
    }
  }
}

.ft-sns>a:nth-of-type(1):hover .ft-qrcode {
  display: block;
}

.ft-sns-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: calc(30rem / var(--mobile-width));
  a {
    font-family: "esk-Xbd", "HMOS-Xbd", sans-serif;
    font-size: calc(var(--stand-font-size) / var(--mobile-width));
    line-height: calc(32rem / var(--mobile-width));
  }
  .ft-qrcode {
    display: none;
    position: absolute;
    bottom: calc(32rem / var(--mobile-width));
    img {
      width: calc(300rem / var(--mobile-width));
      padding-bottom: calc(30rem / var(--mobile-width));
      clip-path: polygon(0 0, calc(300rem / var(--mobile-width)) 0, calc(300rem / var(--mobile-width)) calc(300rem / var(--mobile-width)), calc(30rem / var(--mobile-width)) calc(300rem / var(--mobile-width)), 0 calc(330rem / var(--mobile-width)));
      background-color: white;
    }
  }
  .ft-qrcode.show {
    display: block;
  }
}

:root {
  --kv-color: #005dd8;
  --mobile-width: 7.68;
  --tablet-width: 10.24;
  --desktop-width: 19.2;
  --stand-margin: 60rem;
  --stand-font-size: 28rem;
  --big-font-size: 60rem;
}

.no-warp {
  white-space: nowrap;
}

.ft-bb {
  flex-wrap: wrap;
}

@media screen and (min-width: 1025px) {
  .mobile {
    display: none;
  }

  .detail-previous div.detail-up.noempty::before {
    content: "Previous : ";
  }

  .detail-previous div.detail-down.noempty::before {
    content: "Next : ";
  }

  .sc29-out>img {
    display: none;
  }
  
}

.detail-previous div {
  display: block;
}