@charset "utf-8";
@font-face {
  font-family: "Roboto-Bold";
  src: url('../font/Roboto-Bold-3.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url('../font/Roboto-Regular-14.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Light";
  src: url('../font/Roboto-Light-10.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url('../font/Roboto-Medium-12.ttf');
  font-style: normal;
  font-display: swap;
}
.ones-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.twos-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
.picture {
  /*position: relative;*/
  overflow: hidden;
  /*z-index: 10;*/
}
.picture img {
  transition: all 1.8s ease-in-out;
}
.each-item:hover .picture img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  zoom: 1.1 \9;
}
/*flex 布局*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.flex-hc {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-zBetween {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-zEnd {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-zStart {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-ac {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-cStart {
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-cEnd {
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.flex-cBaseline {
  -webkit-box-align: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.flex-cStretch {
  -webkit-box-align: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.flex-zTopBottom {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-zBottomTop {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-zLeftRight {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-zRightLeft {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-shrink {
  -webkit-box-flex: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.flex-center {
  -webkit-align-content: center;
  align-content: center;
}
.flex-start {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.flex-between {
  -webkit-align-content: space-between;
  align-content: space-between;
}
.flex-container {
  -webkit-align-content: space-around;
  align-content: space-around;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_bd {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw / 19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Roboto-Regular", "Microsoft YaHei", "HarmonyOS_Sans_SC_Regular", "PingFang SC";
}
@media screen and (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media screen and (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}
body {
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  font-family: "Roboto-Regular", "Microsoft YaHei", "HarmonyOS_Sans_SC_Regular", "PingFang SC";
}
@media screen and (max-width: 1580px) {
  body {
    font-size: 0.7291666666666667vw;
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 991px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: .28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.overflow {
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.contain {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .contain {
    width: 90%;
  }
}
.bg-color {
  background-color: #fff;
}
.pt80 {
  padding-top: 4.1667vw;
}
@media screen and (max-width: 991px) {
  .pt80 {
    padding-top: 1rem;
  }
}
.pb80 {
  padding-bottom: 4.1667vw;
}
@media screen and (max-width: 991px) {
  .pb80 {
    padding-bottom: 1rem;
  }
}
.pt90 {
  padding-top: 4.6875vw;
}
@media screen and (max-width: 991px) {
  .pt90 {
    padding-top: 1rem;
  }
}
.pb90 {
  padding-bottom: 4.6875vw;
}
@media screen and (max-width: 991px) {
  .pb90 {
    padding-bottom: 1rem;
  }
}
.pt100 {
  padding-top: 5.208333333333333vw;
}
@media screen and (max-width: 991px) {
  .pt100 {
    padding-top: 1rem;
  }
}
.pb100 {
  padding-bottom: 5.208333333333333vw;
}
@media screen and (max-width: 991px) {
  .pb100 {
    padding-bottom: 1rem;
  }
}
.pt120 {
  padding-top: 6.25vw;
}
@media screen and (max-width: 991px) {
  .pt120 {
    padding-top: 1rem;
  }
}
.pb120 {
  padding-bottom: 6.25vw;
}
@media screen and (max-width: 991px) {
  .pb120 {
    padding-bottom: 1rem;
  }
}
.font12 {
  font-size: 0.625vw;
}
@media screen and (max-width: 991px) {
  .font12 {
    font-size: 12px;
  }
}
.font14 {
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .font14 {
    font-size: 14px;
  }
}
.font16 {
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .font16 {
    font-size: 14px;
  }
}
.font18 {
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .font18 {
    font-size: 16px;
  }
}
.font22 {
  font-size: 1.145833333333333vw;
}
@media screen and (max-width: 991px) {
  .font22 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .font22 {
    font-size: 0.28rem;
  }
}
.font24 {
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .font24 {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .font24 {
    font-size: 0.29rem;
  }
}
.font26 {
  font-size: 1.354166666666667vw;
}
@media screen and (max-width: 991px) {
  .font26 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 480px) {
  .font26 {
    font-size: 0.32rem;
  }
}
.font32 {
  font-size: 1.666666666666667vw;
}
@media screen and (max-width: 991px) {
  .font32 {
    font-size: .32rem;
  }
}
@media screen and (max-width: 480px) {
  .font32 {
    font-size: .36rem;
  }
}
.font36 {
  font-size: 1.875vw;
}
@media screen and (max-width: 991px) {
  .font36 {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .font36 {
    font-size: 0.4rem;
  }
}
.font46 {
  font-size: 2.395833333333333vw;
}
@media screen and (max-width: 991px) {
  .font46 {
    font-size: .46rem;
  }
}
@media screen and (max-width: 480px) {
  .font46 {
    font-size: .5rem;
  }
}
.font48 {
  font-size: 2.5vw;
}
@media screen and (max-width: 991px) {
  .font48 {
    font-size: .48rem;
  }
}
@media screen and (max-width: 480px) {
  .font48 {
    font-size: .54rem;
  }
}
.font68 {
  font-size: 3.541666666666667vw;
}
@media screen and (max-width: 991px) {
  .font68 {
    font-size: .6rem;
  }
}
@media screen and (max-width: 480px) {
  .font68 {
    font-size: .64rem;
  }
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-text1 * {
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-5.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-3.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-6.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-4.png) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#interval {
  height: 0.9rem;
}
@media screen and (min-width: 992px) {
  #interval {
    height: 4.167vw;
  }
}
@media screen and (max-width: 991px) {
  #interval {
    height: 60px;
  }
}
.public-btn {
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .24rem;
  min-width: 1.5rem;
  height: 0.42rem;
  border-radius: 0.21rem;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Roboto-Medium";
  font-size: 0.625vw;
  text-transform: uppercase;
  background: linear-gradient(to right, #43b9d4, #184a9e);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 991px) {
  .public-btn {
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .public-btn {
    padding: 0 1.25vw;
    min-width: 7.8125vw;
    height: 2.1875vw;
    border-radius: 1.09375vw;
  }
}
@media screen and (max-width: 991px) {
  .public-btn {
    padding: 0 .3rem;
    min-width: 2.4rem;
    height: 0.64rem;
    border-radius: 0.32rem;
  }
}
@media screen and (max-width: 480px) {
  .public-btn {
    height: 0.7rem;
    border-radius: 0.35rem;
  }
}
.public-btn:hover {
  color: #ffffff;
}
.public-btn:hover:before {
  background: #FFFFFF;
  left: 125%;
}
.public-btn:hover:after {
  background: #FFFFFF;
  left: 128%;
}
.public-btn:before {
  content: '';
  position: absolute;
  top: 50%;
  min-width: calc(480px);
  min-height: calc(480px);
  background-color: transparent;
  animation-name: wave-animation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 1s linear;
  opacity: .3;
  left: -35px;
  border-radius: 35%;
  animation-duration: 10s;
}
.public-btn:after {
  content: '';
  position: absolute;
  top: 50%;
  min-width: calc(480px);
  min-height: calc(480px);
  background-color: transparent;
  animation-name: wave-animation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 1s linear;
  left: -10px;
  opacity: .5;
  border-radius: 37%;
  animation-duration: 10s;
}
.public-btn:after:after {
  background: #FFFFFF;
  left: 128%;
}
.public-btn.nobg {
  color: #999999;
  background: none;
  transition: all 0.5s ease;
}
.public-btn.nobg:before,
.public-btn.nobg::after {
  opacity: 0;
}
.public-btn.nobg i img {
  transition: all 0.5s ease;
}
.public-btn.nobg:hover {
  color: #ffffff;
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
.public-btn.nobg:hover:before,
.public-btn.nobg:hover::after {
  opacity: 1;
}
.public-btn.nobg:hover i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.public-btn i {
  display: inline-flex;
  align-items: flex-start;
  margin-left: 0.1rem;
  min-height: 0.1rem;
}
@media screen and (min-width: 992px) {
  .public-btn i {
    margin-left: 0.5208333333333333vw;
    min-height: 0.5vw;
  }
}
@media screen and (max-width: 991px) {
  .public-btn i {
    margin-left: 10px;
    min-height: 10px;
  }
}
.public-btn i img {
  width: 0.04rem;
}
@media screen and (min-width: 992px) {
  .public-btn i img {
    width: 0.2083333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .public-btn i img {
    width: 4px;
  }
}
@keyframes wave-animation {
  0% {
    transform: translate(0, -50%) rotateZ(0deg);
  }
  50% {
    transform: translate(-2%, -50%) rotateZ(180deg);
  }
  100% {
    transform: translate(0, -50%) rotateZ(360deg);
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
}
.header .box .logo a {
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header .box .logo a {
    height: 60px;
  }
}
.header .box .logo a img {
  width: 0.91rem;
}
@media screen and (min-width: 992px) {
  .header .box .logo a img {
    width: 4.739583333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .logo a img {
    width: 1.25rem;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .nav {
    display: none;
  }
}
.header .box .headright .nav ul {
  padding: 0;
}
.header .box .headright .nav ul li {
  position: relative;
  padding: 0 0.28rem;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .header .box .headright .nav ul li {
    padding: 0 1.458333333333333vw;
  }
}
.header .box .headright .nav ul li.productcolumn {
  position: static;
}
.header .box .headright .nav ul li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.8rem;
  color: #FFFFFF;
  font-size: 0.9375vw;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .header .box .headright .nav ul li > a {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .header .box .headright .nav ul li > a {
    height: 4.167vw;
  }
}
.header .box .headright .nav ul li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 2px;
  background: #174696;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .header .box .headright .nav ul li > a::before {
    height: 0.104167vw;
  }
}
.header .box .headright .nav ul li:hover > a {
  color: #174696 !important;
}
.header .box .headright .nav ul li:hover > a::before {
  width: 100%;
}
.header .box .headright .nav ul li.on > a {
  color: #174696 !important;
}
.header .box .headright .nav ul li.on > a::before {
  width: 100%;
}
.header .box .headright .nav ul li .navcell {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0.12rem 0;
  min-width: 1.6rem;
  background: #ffffff;
  box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 992px) {
  .header .box .headright .nav ul li .navcell {
    padding: 0.625vw 0;
    min-width: 8.333vw;
  }
}
.header .box .headright .nav ul li .navcell a {
  display: block;
  text-align: center;
  color: #333333;
  font-size: 0.8333333333333333vw;
  line-height: 1.7;
  white-space: nowrap;
  padding: 0.05rem 0.25rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .header .box .headright .nav ul li .navcell a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .header .box .headright .nav ul li .navcell a {
    padding: 0.260416vw 1.3020833vw;
  }
}
.header .box .headright .nav ul li .navcell a:hover {
  color: #174696;
}
.header .box .headright .head_search {
  margin-left: 0.32rem;
  margin-right: 0.1rem;
}
@media screen and (min-width: 992px) {
  .header .box .headright .head_search {
    margin-left: 1.666666666666667vw;
    margin-right: 0.5208333333333333vw;
  }
}
.header .box .headright .head_search .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .header .box .headright .head_search .icon {
    width: 2.1875vw;
    height: 2.1875vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head_search .icon {
    width: 36px;
    height: 36px;
  }
}
.header .box .headright .head_search .icon img {
  width: 33.33333333333333%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head_search .icon img {
    width: 43.75%;
  }
}
.header .box .headright .head-nation {
  position: relative;
}
.header .box .headright .head-nation::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 35%;
  background: rgba(255, 255, 255, 0.3);
}
.header .box .headright .head-nation .title {
  display: flex;
  align-items: center;
  height: 0.5rem;
  padding-left: 0.2rem;
  padding-right: 0.36rem;
  border-radius: 0.3rem;
  background: url(../images/arrow-down1.png) center right 0.2rem no-repeat;
  background-size: 8px auto;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .header .box .headright .head-nation .title {
    height: 2.604167vw;
    padding-left: 1.04167vw;
    padding-right: 1.875vw;
    border-radius: 1.5625vw;
    background: url(../images/arrow-down1.png) center right 1.04167vw no-repeat;
    background-size: 0.41667vw auto;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .title {
    padding-left: 0.3rem;
    padding-right: 0.45rem;
    height: 32px;
  }
}
.header .box .headright .head-nation .title img {
  display: inline-block;
  margin-right: 0.06rem;
  width: 0.16rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .header .box .headright .head-nation .title img {
    width: 0.8333333333333333vw;
    margin-right: 0.3125vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .title img {
    width: 16px;
    margin-right: 6px;
  }
}
.header .box .headright .head-nation .title span {
  color: #FFFFFF;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .title span {
    font-size: 14px;
  }
}
.header .box .headright .head-nation .dropdown {
  position: absolute;
  left: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0.1rem);
  transform: translate(-50%, 0.1rem);
  top: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .header .box .headright .head-nation .dropdown {
    top: 100%;
    padding: 10px 0px;
    min-width: 90px;
  }
}
.header .box .headright .head-nation .dropdown ul {
  margin-top: 0.2rem;
  background: #FFFFFF;
  padding: 0.1rem 0px;
  text-align: left;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  .header .box .headright .head-nation .dropdown ul {
    margin-top: 1.04167vw;
    padding: 0.52083vw 0;
  }
}
.header .box .headright .head-nation .dropdown ul li {
  list-style: none;
}
.header .box .headright .head-nation .dropdown ul li a {
  display: block;
  font-size: 0.7291666666666667vw;
  color: #333333;
  line-height: 2.2;
  min-width: 0.9rem;
  text-align: center;
  padding: 0 0.2rem;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .dropdown ul li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .header .box .headright .head-nation .dropdown ul li a {
    min-width: 4.6875vw;
    padding: 0 1.04167vw;
  }
}
.header .box .headright .head-nation .dropdown ul li a:hover {
  color: #174696;
}
.header .box .headright .head-nation:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .search-form {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #f8f8f8;
  text-align: center;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 10px -13px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .header .search-form {
    padding-top: 1.04167vw;
    padding-bottom: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
.header .search-form.active {
  opacity: 1;
  visibility: visible;
}
.header .search-form .form-body {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  border: 1px solid #eee;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  border-radius: 0.6rem;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body {
    padding-left: 1.5625vw;
    padding-right: 1.5625vw;
    border-radius: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .search-form .form-body {
    width: 90%;
  }
}
.header .search-form .form-body input {
  width: 6rem;
  height: 0.54rem;
  font-size: 0.8333333333333333vw;
  color: #000000;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body input {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body input {
    width: 31.25vw;
    height: 2.8125vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body input {
    height: 0.64rem;
  }
}
@media screen and (max-width: 767px) {
  .header .search-form .form-body input {
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body input {
    height: 0.7rem;
  }
}
.header .search-form .form-body .icon {
  line-height: 1;
  margin-right: 0.2rem;
  flex-shrink: 0;
  width: 0.2rem;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body .icon {
    width: 1.04167vw;
    margin-right: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body .icon {
    width: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body .icon {
    width: 0.28rem;
  }
}
.header .search-form .form-body .icon img {
  max-width: 100%;
}
.header .search-form .form-body .close {
  width: 0.2rem;
  cursor: pointer;
  margin-left: 0.2rem;
  flex-shrink: 0;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body .close {
    width: 1.04167vw;
    margin-left: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body .close {
    width: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body .close {
    width: 0.28rem;
  }
}
.header .search-form .form-body .close img {
  max-width: 100%;
}
.header .phone-toggle {
  margin-left: 20px;
  user-select: none;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 991px) {
  .header .phone-toggle {
    display: block;
  }
}
.header .phone-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 5px;
  transition: all 0.45s ease;
}
.header .phone-toggle span:last-of-type {
  margin-bottom: 0;
}
.header.white {
  background: #FFFFFF;
}
.header.white::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.header.white .box .headright .nav ul li a {
  color: #333333;
}
.header.white .box .headright .head_search .icon img {
  -webkit-filter: none;
  filter: none;
}
.header.white .box .headright .head-nation::before {
  background: #333333;
}
.header.white .box .headright .head-nation .title {
  background: url(../images/arrow-down.png) center right 0.2rem no-repeat;
  background-size: 8px auto;
}
@media screen and (min-width: 992px) {
  .header.white .box .headright .head-nation .title {
    background: url(../images/arrow-down.png) center right 1.04167vw no-repeat;
    background-size: 0.41667vw auto;
  }
}
.header.white .box .headright .head-nation .title img {
  -webkit-filter: none;
  filter: none;
}
.header.white .box .headright .head-nation .title span {
  color: #333333;
}
.header.white .phone-toggle span {
  background-color: #333333;
}
.header.whitebg {
  background: #FFFFFF;
}
.header.whitebg::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.header.whitebg .box .headright .nav ul li a {
  color: #333333;
}
.header.whitebg .box .headright .head_search .icon img {
  -webkit-filter: none;
  filter: none;
}
.header.whitebg .box .headright .head-nation::before {
  background: #333333;
}
.header.whitebg .box .headright .head-nation .title {
  background: url(../images/arrow-down.png) center right 0.2rem no-repeat;
  background-size: 8px auto;
}
@media screen and (min-width: 992px) {
  .header.whitebg .box .headright .head-nation .title {
    background: url(../images/arrow-down.png) center right 1.04167vw no-repeat;
    background-size: 0.41667vw auto;
  }
}
.header.whitebg .box .headright .head-nation .title img {
  -webkit-filter: none;
  filter: none;
}
.header.whitebg .box .headright .head-nation .title span {
  color: #333333;
}
.header.whitebg .phone-toggle span {
  background-color: #333333;
}
.header.blacktext {
  background: #FFFFFF;
}
.header.blacktext::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.header.blacktext .box .headright .nav ul li a {
  color: #333333;
}
.header.blacktext .box .headright .head_search .icon img {
  -webkit-filter: none;
  filter: none;
}
.header.blacktext .box .headright .head-nation::before {
  background: #333333;
}
.header.blacktext .box .headright .head-nation .title {
  background: url(../images/arrow-down.png) center right 0.2rem no-repeat;
  background-size: 8px auto;
}
@media screen and (min-width: 992px) {
  .header.blacktext .box .headright .head-nation .title {
    background: url(../images/arrow-down.png) center right 1.04167vw no-repeat;
    background-size: 0.41667vw auto;
  }
}
.header.blacktext .box .headright .head-nation .title img {
  -webkit-filter: none;
  filter: none;
}
.header.blacktext .box .headright .head-nation .title span {
  color: #333333;
}
.header.blacktext .phone-toggle span {
  background-color: #000000;
}
.mbox .header {
  background: #ffffff;
}
.m-nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0px;
  z-index: 99;
  background-color: #FFFFFF;
  overflow-y: scroll;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.m-nav > ul {
  padding-top: 10px;
  padding-left: 5%;
  padding-right: 5%;
}
.m-nav > ul > li {
  position: relative;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  list-style: none;
  border-bottom: #e5e5e5 solid 1px;
}
.m-nav > ul > li a {
  display: block;
  line-height: 1.7;
  color: #000000;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle {
  position: relative;
  display: block;
  line-height: 1.7;
  color: #000000;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle a {
  display: inline-block;
  padding: 0;
}
.m-nav > ul > li .headtitle i {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 8px auto;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle.on {
  color: #174696;
}
.m-nav > ul > li .headtitle.on i {
  background: url(../images/icon11.png) center no-repeat;
  background-size: 8px auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.m-nav > ul > li ul {
  display: none;
  padding-left: 20px;
  border-top: #e5e5e5 solid 1px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.m-nav > ul > li ul li {
  list-style: none;
}
.m-nav > ul > li ul li a {
  display: block;
  font-size: 16px;
  padding: 7px 0px;
}
.m-nav > ul > li ul li:hover > a {
  color: #174696;
}
.m-nav > ul > li ul li ul li ul li a {
  font-size: 14px;
}
.m-nav > ul > li:hover > a {
  color: #174696;
}
.mbox .header .box .logo a img.ic1 {
  display: none;
}
.mbox .header .box .logo a img.ic2 {
  display: inline-block;
}
.mbox .header .box .headright .btns {
  background: #333333;
}
.mbox .m-nav {
  height: calc(100vh - 60px);
}
.mbox .phone-toggle span {
  background-color: #000000;
}
.mbox .phone-toggle span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.mbox .phone-toggle span:nth-child(2) {
  display: none;
}
.mbox .phone-toggle span:nth-child(3) {
  transform: rotate(45deg);
}
@media screen and (min-width: 992px) {
  .phone-toggle {
    display: none !important;
  }
}
.sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 12;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sidebar ul {
  padding-left: 0;
}
.sidebar ul li {
  position: relative;
  text-align: center;
  cursor: pointer;
  margin-bottom: 1px;
  list-style: none;
}
.sidebar ul li a {
  display: block;
}
.sidebar ul li a .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(53, 45, 112, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 13px rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .sidebar ul li a .img {
    width: 4.167vw;
    height: 4.167vw;
  }
}
.sidebar ul li a .img img {
  display: block;
  margin: auto;
  width: 42.5%;
}
.sidebar ul li:hover a .img {
  background: #352d70;
  backdrop-filter: blur(0px);
  box-shadow: 0 0 10px rgba(53, 45, 112, 0.08);
}
.footer {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: #252525;
}
@media screen and (min-width: 992px) {
  .footer {
    padding-top: 3.90625vw;
    padding-bottom: 3.90625vw;
  }
}
.footer .footer-logo {
  text-align: center;
}
.footer .footer-logo a img {
  width: 1.25rem;
}
@media screen and (min-width: 992px) {
  .footer .footer-logo a img {
    width: 6.510416666666667vw;
  }
}
.footer .box {
  margin-top: 0.42rem;
  padding-top: 0.96rem;
  border-top: rgba(255, 255, 255, 0.1) solid 1px;
}
@media screen and (min-width: 992px) {
  .footer .box {
    margin-top: 2.1875vw;
    padding-top: 5vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .box {
    flex-wrap: wrap;
  }
}
.footer .box .title {
  font-family: "Roboto-Bold";
  color: #ffffff;
  font-size: 0.9375vw;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 991px) {
  .footer .box .title {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .footer .box .title {
    padding-bottom: 1.04167vw;
  }
}
.footer .box .text {
  font-family: "Roboto-Regular";
  font-size: 0.7291666666666667vw;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
  .footer .box .text {
    font-size: 14px;
  }
}
.footer .box .text a {
  color: rgba(255, 255, 255, 0.5);
}
.footer .box .item .text {
  padding-left: 0;
}
.footer .box .item .text li {
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 992px) {
  .footer .box .item .text li {
    margin-bottom: 0.5208333333333333vw;
  }
}
.footer .box .item .text .layui-form {
  margin-top: 0.1rem;
}
@media screen and (min-width: 992px) {
  .footer .box .item .text .layui-form {
    margin-top: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .item .text .layui-form {
    margin-top: 10px;
  }
}
.footer .box .item .text .layui-form .layui-item {
  border-radius: 0.06rem;
}
@media screen and (min-width: 992px) {
  .footer .box .item .text .layui-form .layui-item {
    border-radius: 0.3125vw;
  }
}
.footer .box .item .text .layui-form .layui-item .layui-input {
  flex: 1;
  overflow: hidden;
  height: 0.36rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(0, 0, 0, 0.85);
  border-radius: 1px;
  box-sizing: border-box;
  background: none;
  border-radius: 0.06rem 0 0 0.06rem;
  font-family: "Roboto-Regular";
  color: #FFFFFF;
}
@media screen and (min-width: 992px) {
  .footer .box .item .text .layui-form .layui-item .layui-input {
    height: 1.875vw;
    border-radius: 0.3125vw 0 0 0.3125vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .item .text .layui-form .layui-item .layui-input {
    height: 36px;
  }
}
.footer .box .item .text .layui-form .layui-item .layui-input::-webkit-input-placeholder {
  font-family: "Roboto-Regular";
  color: rgba(255, 255, 255, 0.2);
}
.footer .box .item .text .layui-form .layui-item .layui-input::-moz-placeholder {
  font-family: "Roboto-Regular";
  color: rgba(255, 255, 255, 0.2);
}
.footer .box .item .text .layui-form .layui-item .layui-input:-moz-placeholder {
  font-family: "Roboto-Regular";
  color: rgba(255, 255, 255, 0.2);
}
.footer .box .item .text .layui-form .layui-item .layui-input:-ms-input-placeholder {
  font-family: "Roboto-Regular";
  color: rgba(255, 255, 255, 0.2);
}
.footer .box .item .text .layui-form .layui-item .layui-input:focus {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.footer .box .item .text .layui-form .layui-item .layui-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  background: #7f7f7f;
  padding: 0;
  border-radius: 0 0.06rem 0.06rem 0;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .footer .box .item .text .layui-form .layui-item .layui-btn {
    width: 1.875vw;
    height: 1.875vw;
    border-radius: 0 0.3125vw 0.3125vw 0;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .item .text .layui-form .layui-item .layui-btn {
    width: 36px;
    height: 36px;
  }
}
.footer .box .item .text .layui-form .layui-item .layui-btn img {
  display: block;
  margin: auto;
  width: 42.86%;
}
.footer .box .footer-nav {
  width: 60%;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav {
    width: 100%;
    flex-wrap: wrap;
  }
}
.footer .box .footer-nav .item.on .title i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer .box .footer-nav .item .title {
  position: relative;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title {
    display: flex;
    align-items: center;
    border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
  }
}
.footer .box .footer-nav .item .title i {
  right: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s;
  display: none;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title i {
    display: block;
  }
}
.footer .box .footer-nav .item .title i::before {
  content: '';
  width: 12px;
  position: absolute;
  height: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #FFFFFF;
}
.footer .box .footer-nav .item .title i::after {
  content: '';
  height: 12px;
  position: absolute;
  width: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul {
    display: none;
    padding-top: 0.3rem;
    margin-top: 0;
    margin-bottom: 0.2rem;
  }
}
.footer .box .footer-nav .item ul li a {
  transition: all 0.5s ease;
}
.footer .box .footer-nav .item ul li a:hover {
  color: #174696;
}
.footer .box .footer-infor {
  width: 35.15625%;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer .footerbottom {
  margin-top: 0.3rem;
  padding: 0.3rem 0;
  border-top: rgba(204, 204, 204, 0.1) solid 1px;
}
@media screen and (min-width: 992px) {
  .footer .footerbottom {
    padding: 1.5625vw 0;
    margin-top: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .footerbottom {
    padding: 30px 0 0;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.footer .footerbottom .copylink {
  font-family: "Roboto-Light";
  font-size: 0.7291666666666667vw;
  color: rgba(153, 153, 153, 0.5);
  line-height: 1.7;
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .copylink {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .copylink {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.footer .footerbottom .copylink a {
  color: rgba(153, 153, 153, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .footerbottom .copylink a:hover {
  color: #FFFFFF;
}
.footer .footerbottom .copylink .poweredBy {
  margin-left: 0.4rem;
  color: rgba(153, 153, 153, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .copylink .poweredBy {
    display: block;
    margin-left: 0;
    width: 100%;
    margin-top: 5px;
  }
}
.footer .footerbottom .copylink .poweredBy a {
  color: rgba(153, 153, 153, 0.5);
}
.footer .footerbottom .copylink .poweredBy:hover {
  color: #FFFFFF;
}
.footer .footerbottom .copylink .poweredBy:hover a {
  color: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .footer-share {
    margin-bottom: 20px;
  }
}
.footer .footerbottom .footer-share ul {
  column-gap: 0.1rem;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .footer .footerbottom .footer-share ul {
    column-gap: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .footer-share ul {
    column-gap: 10px;
  }
}
.footer .footerbottom .footer-share ul li {
  position: relative;
  list-style: none;
}
.footer .footerbottom .footer-share ul li a {
  display: inline-block;
  text-align: center;
}
.footer .footerbottom .footer-share ul li a img {
  max-height: 0.2rem;
}
@media screen and (min-width: 992px) {
  .footer .footerbottom .footer-share ul li a img {
    max-height: 1.041666666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .footer-share ul li a img {
    max-height: 20px;
  }
}
.footer .footerbottom .footer-share ul li .qrcode {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  width: 1.03rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .footer-share ul li .qrcode {
    width: 96px;
  }
}
.footer .footerbottom .footer-share ul li .qrcode .img {
  overflow: hidden;
  background-color: #FFFFFF;
}
.footer .footerbottom .footer-share ul li .qrcode .img img {
  width: 100%;
}
.footer .footerbottom .footer-share ul li .qrcode .sjx {
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8px;
  border-color: #FFFFFF transparent transparent transparent;
}
.footer .footerbottom .footer-share ul li:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
.lunbotu {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.lunbotu .swiper-wrapper .swiper-slide {
  position: relative;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide {
    min-height: 100vh;
  }
}
.lunbotu .swiper-wrapper .swiper-slide > img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    /* object-fit: cover; */
  }
}
.lunbotu .swiper-wrapper .swiper-slide .video-box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.lunbotu .swiper-wrapper .swiper-slide .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner {
  position: absolute;
  left: 0;
  top: 0.9rem;
  z-index: 5;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner {
    top: 4.6875vw;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner {
    position: static;
    transform: none;
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox {
  width: 45.57291666666667%;
  box-sizing: border-box;
  padding-left: 10%;
  padding-right: 5%;
}
@media screen and (max-width: 1260px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox {
    padding-left: 5%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .title {
  font-family: "Roboto-Bold";
  color: #FFFFFF;
  font-size: 3.541666666666667vw;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .title {
    font-size: .6rem;
  }
}
@media screen and (max-width: 480px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .title {
    font-size: .64rem;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .degrees {
  margin-top: 0.2rem;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .degrees {
    margin-top: 1.04167vw;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .degrees span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.96rem;
  height: 0.54rem;
  border-radius: 0.27rem;
  font-family: "Roboto-Medium";
  color: #FFFFFF;
  font-size: 1.25vw;
  background: linear-gradient(to right, #feba06, #ff8000);
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .degrees span {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .degrees span {
    font-size: 0.29rem;
  }
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .degrees span {
    min-width: 10.20833333333333vw;
    height: 2.8125vw;
    border-radius: 1.40625vw;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .text {
  margin-top: 0.3rem;
  font-family: "Roboto-Light";
  color: #FFFFFF;
  font-size: 0.8333333333333333vw;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .text {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .text {
    margin-top: 1.5625vw;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .text ul {
  padding-left: 0;
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .text ul li {
  list-style: none;
  position: relative;
  padding-left: 0.24rem;
  margin-bottom: 0.15rem;
  background: url(../images/icon1.png) left top 0.03rem no-repeat;
  background-size: 0.14rem auto;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .text ul li {
    padding-left: 1.25vw;
    margin-bottom: 0.78125vw;
    background: url(../images/icon1.png) left top 0.15625vw no-repeat;
    background-size: 0.729167vw auto;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .btn {
  margin-top: 0.35rem;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .btn {
    margin-top: 1.8229167vw;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .btn span {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .btn span {
    opacity: 0.8;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .textbox .btn span:hover {
  opacity: 1;
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .imgbox {
  position: relative;
  width: 54.42708333333333%;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .imgbox {
    margin-top: 0.5rem;
    width: 90%;
    margin: auto;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .imgbox img {
  max-width: 100%;
}
.lunbotu .swiper-pagination {
  width: 80%;
  left: 10%;
  bottom: 9.375vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1260px) {
  .lunbotu .swiper-pagination {
    width: 90%;
    left: 5%;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-pagination {
    bottom: 0.7rem;
  }
}
.lunbotu .swiper-pagination .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.02rem;
  margin: 0 0.06rem;
  opacity: 0.3;
  background: #ffffff;
  border-radius: 0;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet {
    width: 1.04167vw;
    height: 0.104167vw;
    margin: 0 0.3125vw;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 2px;
    margin: 0 6px;
  }
}
.lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.7rem;
  opacity: 1;
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 3.645833333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
  }
}
.lunbotu .swiper-button-next,
.lunbotu .swiper-button-prev {
  position: absolute;
  width: 0.56rem;
  height: 0.56rem;
  margin-top: -0.28rem;
  border-radius: 50%;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-button-next,
  .lunbotu .swiper-button-prev {
    width: 2.9167vw;
    height: 2.9167vw;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-button-next,
  .lunbotu .swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.lunbotu .swiper-button-prev {
  background: url(../images/icon12.png) center no-repeat;
  background-size: 30% auto;
  opacity: 0.3;
  right: auto;
  left: 2%;
  transition: opacity 0.5s ease;
}
.lunbotu .swiper-button-prev:hover {
  opacity: 1;
}
.lunbotu .swiper-button-next {
  background: url(../images/icon13.png) center no-repeat;
  background-size: 30% auto;
  opacity: 0.3;
  right: 2%;
  left: auto;
  transition: opacity 0.5s ease;
}
.lunbotu .swiper-button-next:hover {
  opacity: 1;
}
.mImg {
  display: none;
}
@media screen and (max-width: 991px) {
  .mImg {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .pImg {
    display: none;
  }
}
.obanner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.obanner > img {
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .obanner > img {
    height: 24vh;
    object-fit: cover;
  }
}
@media screen and (max-width: 991px) {
  .obanner > img {
    height: 280px;
  }
}
@media screen and (max-width: 480px) {
  .obanner > img {
    height: 250px;
  }
}
.obanner .bannerImg {
  display: none;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.obanner .bannerTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
}
.obanner .bannerTitle .box {
  position: relative;
  padding-right: 1.1rem;
}
@media screen and (min-width: 992px) {
  .obanner .bannerTitle .box {
    padding-right: 5.729167vw;
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box {
    padding-right: 0.8rem;
  }
}
.obanner .bannerTitle .box .headline {
  line-height: 1.2;
  font-size: 2.5vw;
  color: #ffffff;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box .headline {
    font-size: .48rem;
  }
}
@media screen and (max-width: 480px) {
  .obanner .bannerTitle .box .headline {
    font-size: .54rem;
  }
}
.obanner .bannerTitle .box .headline span {
  display: inline-block;
}
.i-title.center {
  text-align: center;
}
.i-title.white .headline {
  color: #FFFFFF;
}
.i-title.white .text {
  color: #FFFFFF;
}
.i-title .headline {
  font-family: "Roboto-Bold";
  color: #333333;
  font-size: 2.5vw;
  line-height: 1.1;
}
@media screen and (max-width: 991px) {
  .i-title .headline {
    font-size: .48rem;
  }
}
@media screen and (max-width: 480px) {
  .i-title .headline {
    font-size: .54rem;
  }
}
.i-title .headline.actcolor {
  color: #184a9e;
}
.i-title .text {
  margin-top: 0.15rem;
  font-family: "Roboto-Regular";
  color: #666666;
  font-size: 1.145833333333333vw;
}
@media screen and (max-width: 991px) {
  .i-title .text {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .i-title .text {
    font-size: 0.28rem;
  }
}
@media screen and (min-width: 992px) {
  .i-title .text {
    margin-top: 0.78125vw;
  }
}
.i-title .rubric {
  font-family: "Roboto-Bold";
  font-size: 1.875vw;
  color: #174696;
}
@media screen and (max-width: 991px) {
  .i-title .rubric {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .i-title .rubric {
    font-size: 0.4rem;
  }
}
.i-title .desc {
  margin-top: 0.2rem;
  font-family: "Roboto-Regular";
  color: #333333;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .i-title .desc {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .i-title .desc {
    margin-top: 1vw;
  }
}
.index_about .box {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .index_about .box .contain {
    flex-wrap: wrap;
  }
}
.index_about .box .contain .left_w {
  width: 39.4%;
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .left_w {
    width: 100%;
  }
}
.index_about .box .contain .left_w .name {
  font-family: "Roboto-Bold";
  color: #FFFFFF;
  font-size: 1.875vw;
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .left_w .name {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .index_about .box .contain .left_w .name {
    font-size: 0.4rem;
  }
}
.index_about .box .contain .left_w .img {
  position: relative;
  width: 100%;
  margin-top: 0.36rem;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .index_about .box .contain .left_w .img {
    margin-top: 1.875vw;
    border-radius: 0.5208333333333333vw;
  }
}
.index_about .box .contain .left_w .img > img {
  display: block;
  width: 100%;
}
.index_about .box .contain .left_w .img .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.3rem;
  height: 0.3rem;
  background: url(../images/icon8.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 992px) {
  .index_about .box .contain .left_w .img .icon {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .left_w .img .icon {
    width: 30px;
    height: 30px;
  }
}
.index_about .box .contain .left_w .desc {
  margin-top: 0.24rem;
  font-family: "Roboto-Regular";
  font-size: 0.8333333333333333vw;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .left_w .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .index_about .box .contain .left_w .desc {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .left_w .desc {
    margin-top: 20px;
  }
}
.index_about .box .contain .left_w .btn {
  margin-top: 0.3rem;
}
@media screen and (min-width: 992px) {
  .index_about .box .contain .left_w .btn {
    margin-top: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .left_w .btn {
    margin-top: 20px;
  }
}
.index_about .box .contain .right_w {
  position: relative;
  width: 51.171875%;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .right_w {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.index_about .box .contain .right_w .globalbg {
  position: relative;
  width: 80.15267175572519%;
  margin: auto;
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .right_w .globalbg {
    width: 100%;
  }
}
.index_about .box .contain .right_w .globalbg > img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .right_w .globalbg > img {
    display: none;
    opacity: 0;
  }
}
.index_about .box .contain .right_w .mapbox {
  display: none;
}
@media screen and (max-width: 1024px) {
  .index_about .box .contain .right_w .mapbox {
    display: block;
  }
}
.index_about .box .contain .right_w .mapbox img {
  display: block;
  width: 100%;
}
.index_about .box .contain .right_w .global {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 991px) {
  .index_about .box .contain .right_w .global {
    position: static;
    transform: none;
    width: 100%;
  }
}
.index_about .about-data {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .index_about .about-data {
    padding-top: 3.3854167vw;
    padding-bottom: 3.3854167vw;
  }
}
.index_about .about-data ul {
  padding-left: 0;
}
@media screen and (max-width: 991px) {
  .index_about .about-data ul {
    gap: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index_about .about-data ul {
    gap: 0rem;
    flex-wrap: wrap;
  }
}
.index_about .about-data ul li {
  position: relative;
  list-style: none;
  margin-right: 1.2rem;
  padding-right: 1.2rem;
}
@media screen and (min-width: 992px) {
  .index_about .about-data ul li {
    margin-right: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media screen and (max-width: 991px) {
  .index_about .about-data ul li {
    min-width: 16%;
    box-sizing: border-box;
    overflow: hidden;
    padding-right: 0.4rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .index_about .about-data ul li {
    width: 50%;
    text-align: center;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .index_about .about-data ul li:nth-child(2n) {
    margin-right: 0;
    padding-right: 0;
  }
  .index_about .about-data ul li:nth-child(2n)::before {
    display: none;
  }
}
.index_about .about-data ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.index_about .about-data ul li:last-child::before {
  display: none;
}
.index_about .about-data ul li:nth-child(1)::after {
  display: none;
}
.index_about .about-data ul li:nth-child(2)::after {
  display: none;
}
.index_about .about-data ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 90%;
  background: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 767px) {
  .index_about .about-data ul li::before {
    height: 60%;
  }
}
@media screen and (max-width: 767px) {
  .index_about .about-data ul li::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    margin: auto;
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
  }
}
.index_about .about-data ul li .t1 {
  display: flex;
  font-family: "Roboto-Bold";
  font-size: 3.541666666666667vw;
  color: #ffffff;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .index_about .about-data ul li .t1 {
    font-size: .6rem;
  }
}
@media screen and (max-width: 480px) {
  .index_about .about-data ul li .t1 {
    font-size: .64rem;
  }
}
@media screen and (max-width: 767px) {
  .index_about .about-data ul li .t1 {
    justify-content: center;
  }
}
.index_about .about-data ul li .t2 {
  font-family: "Roboto-Bold";
  font-size: 0.9375vw;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .index_about .about-data ul li .t2 {
    font-size: 16px;
  }
}
.index_product {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index_product .box {
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .index_product .box {
    margin-top: 2.604167vw;
  }
}
.index_product .box .carousel {
  position: relative;
}
.index_product .box .carousel .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_product .box .carousel .swiper .swiper-wrapper {
  align-items: stretch;
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  
  background: #f8f8f8;
  box-sizing: border-box;
  border-radius: 12px;
}
@media screen and (min-width: 992px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item {
    border-radius: 0.625vw;
  }
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item:hover .desc .t1 span {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item:hover .desc .btn .public-btn {
  color: #ffffff;
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item:hover .desc .btn .public-btn:before,
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item:hover .desc .btn .public-btn::after {
  opacity: 1;
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item:hover .desc .btn .public-btn i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc {
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 0.36rem;
	padding: 0.72rem 0.3rem 0rem;
}
@media screen and (min-width: 992px){
	.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc{
		padding: 3.75vw 1.5625vw 0;
    margin-bottom: 1.875vw;
  }
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .t1 {
  font-family: "Roboto-Medium";
  color: #333333;
  font-size: 1.666666666666667vw;
  line-height: 1.1;
}
@media screen and (max-width: 991px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .t1 {
    font-size: .32rem;
  }
}
@media screen and (max-width: 480px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .t1 {
    font-size: .36rem;
  }
}
@media screen and (max-width: 767px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .t1 span {
    background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
    background: linear-gradient(to right, #43b9d4, #184a9e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .t2 {
  margin-top: 0.12rem;
  color: #666666;
  font-size: 0.8333333333333333vw;
  line-height: 1.5;
  max-width: 3.8rem;
  min-height: 0.48rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .t2 {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .t2 {
    margin-top: 0.625vw;
    max-width: 19.8vw;
    min-height: 2.5vw;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .t2 {
    max-width: 100%;
    margin-top: 10px;
  }
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .btn {
  margin-top: 0.24rem;
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .btn .public-btn {
  min-width: 1.16rem;
  height: 0.32rem;
  padding: 0 0.12rem;
}
@media screen and (min-width: 992px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .btn .public-btn {
    min-width: 6.04167vw;
    height: 1.667vw;
    padding: 0 0.625vw;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .btn .public-btn {
    min-width: 116px;
    height: 32px;
    padding: 0 12px;
  }
}
@media screen and (max-width: 767px) {
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .btn .public-btn {
    color: #ffffff;
    background: linear-gradient(to right, #43b9d4, #184a9e);
  }
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .btn .public-btn:before,
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .btn .public-btn::after {
    opacity: 1;
  }
  .index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .desc .btn .public-btn i img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .img {
	position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 0.3rem 0.3rem;
  box-sizing: border-box;
}
@media screen and (min-width: 992px){
	.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .img{
		padding: 0 1.5625vw 1.5625vw;
	}
}
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item .img img {
  max-width: 100%;
}
.index_product .box .carousel .swiper-button-next,
.index_product .box .carousel .swiper-button-prev {
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.21rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21.4285715% auto;
}
@media screen and (min-width: 992px) {
  .index_product .box .carousel .swiper-button-next,
  .index_product .box .carousel .swiper-button-prev {
    width: 2.1875vw;
    height: 2.1875vw;
    margin-top: -1.09375vw;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .carousel .swiper-button-next,
  .index_product .box .carousel .swiper-button-prev {
    width: 42px;
    height: 42px;
    margin-top: -21px;
  }
}
.index_product .box .carousel .swiper-button-next {
  background-image: url(../images/icon10.png);
  right: -0.56rem;
  left: auto;
}
@media screen and (min-width: 992px) {
  .index_product .box .carousel .swiper-button-next {
    right: -2.91667vw;
  }
}
@media screen and (max-width: 767px) {
  .index_product .box .carousel .swiper-button-next {
    right: 0;
  }
}
.index_product .box .carousel .swiper-button-prev {
  background-image: url(../images/icon9.png);
  left: -0.56rem;
  right: auto;
}
@media screen and (min-width: 992px) {
  .index_product .box .carousel .swiper-button-prev {
    left: -2.91667vw;
  }
}
@media screen and (max-width: 767px) {
  .index_product .box .carousel .swiper-button-prev {
    left: 0;
  }
}
.index_product .box .classify {
  margin-top: 3.90625%;
  row-gap: 30px;
}
@media screen and (max-width: 991px) {
  .index_product .box .classify {
    margin-top: 0.6rem;
    row-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .index_product .box .classify {
    row-gap: 20px;
  }
}
.index_product .box .classify .item {
  position: relative;
  display: block;
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  color: #333333;
  font-size: 0.9375vw;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  padding-right: 0.24rem;
  border-top: #cccccc solid 1px;
  border-bottom: #cccccc solid 1px;
}
@media screen and (max-width: 991px) {
  .index_product .box .classify .item {
    font-size: 16px;
  }
}
.index_product .box .classify .item:nth-child(3n) {
  margin-right: 0;
}
.index_product .box .classify .item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.2rem;
  height: 100%;
  background: url(../images/icon11.png) center right no-repeat;
  background-size: 35% auto;
}
@media screen and (max-width: 991px) {
  .index_product .box .classify .item::before {
    width: 20px;
  }
}
@media screen and (min-width: 992px) {
  .index_product .box .classify .item {
    padding-top: 0.78125vw;
    padding-bottom: 0.78125vw;
    padding-right: 1.25vw;
  }
}
.index_product .box .classify .item:hover {
  color: #174696;
}
.index_product .box .classify .item:hover::before {
  background: url(../images/icon11a.png) center right no-repeat;
  background-size: 35% auto;
}
@media screen and (max-width: 991px) {
  .index_product .box .classify .item {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
  }
  .index_product .box .classify .item:nth-child(3n) {
    margin-right: 25px;
  }
  .index_product .box .classify .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .index_product .box .classify .item {
    width: 100%;
    margin-right: 0 !important;
  }
}
.index_case {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index_case .box {
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .index_case .box {
    margin-top: 2.604166666666667vw;
  }
}
.index_case .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 10%;
  padding-right: 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .index_case .box .swiper {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.index_case .box .swiper .swiper-wrapper {
  align-items: stretch;
}
.index_case .box .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index_case .box .swiper .swiper-wrapper .swiper-slide .item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item {
    border-radius: 0.5208333333333333vw;
  }
}
.index_case .box .swiper .swiper-wrapper .swiper-slide .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 767px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item::before {
    display: none;
  }
}
.index_case .box .swiper .swiper-wrapper .swiper-slide .item .img {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 53.65205843293493%;
}
.index_case .box .swiper .swiper-wrapper .swiper-slide .item .img img {
	position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .img img {
    border-radius: 0.5208333333333333vw;
  }
}
.index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc {
  position: absolute;
  left: 0;
  bottom: 0.6rem;
  width: 100%;
  text-align: center;
  padding: 0 0.4rem;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc {
    bottom: 3.125vw;
    padding: 0 2.08333vw;
  }
}
@media screen and (max-width: 767px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc {
    position: static;
    padding: 0.4rem 0.4rem 0;
  }
}
.index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .t1 {
  color: #ffffff;
  font-size: 1.875vw;
}
@media screen and (max-width: 991px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .t1 {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .t1 {
    font-size: 0.4rem;
  }
}
.index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .t2 {
  margin-top: 0.12rem;
  font-family: "Roboto-Light";
  color: #ffffff;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .t2 {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .t2 {
    margin-top: 0.625vw;
  }
}
.index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .btn {
  margin-top: 0.3rem;
}
@media screen and (min-width: 992px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .btn {
    margin-top: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .index_case .box .swiper .swiper-wrapper .swiper-slide .item .desc .btn {
    margin-top: 0.4rem;
  }
}
.index_case .box .swiper .swiper-button-next,
.index_case .box .swiper .swiper-button-prev {
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.21rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40.4762% auto;
}
@media screen and (min-width: 992px) {
  .index_case .box .swiper .swiper-button-next,
  .index_case .box .swiper .swiper-button-prev {
    width: 2.1875vw;
    height: 2.1875vw;
    margin-top: -1.09375vw;
  }
}
@media screen and (max-width: 991px) {
  .index_case .box .swiper .swiper-button-next,
  .index_case .box .swiper .swiper-button-prev {
    width: 38px;
    height: 38px;
    margin-top: -19px;
  }
}
@media screen and (max-width: 767px) {
  .index_case .box .swiper .swiper-button-next,
  .index_case .box .swiper .swiper-button-prev {
    top: 23vmin;
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }
}
.index_case .box .swiper .swiper-button-next {
  background-image: url(../images/icon13.png);
  right: 11%;
  left: auto;
}
@media screen and (max-width: 991px) {
  .index_case .box .swiper .swiper-button-next {
    right: 6%;
  }
}
.index_case .box .swiper .swiper-button-prev {
  background-image: url(../images/icon12.png);
  left: 11%;
  right: auto;
}
@media screen and (max-width: 991px) {
  .index_case .box .swiper .swiper-button-prev {
    left: 6%;
  }
}
.index_news {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index_news .box {
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .index_news .box {
    margin-top: 2.604166666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box {
    flex-wrap: wrap;
  }
}
.index_news .box .left_w {
  width: 45.37760416666667%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w {
    width: 100%;
  }
}
.index_news .box .left_w .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.index_news .box .left_w .item:hover .text .title {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.index_news .box .left_w .item .img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .index_news .box .left_w .item .img {
    border-radius: 0.5208333333333333vw;
  }
}
.index_news .box .left_w .item .img img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.index_news .box .left_w .item .text {
  margin-top: 0.3rem;
}
@media screen and (min-width: 992px) {
  .index_news .box .left_w .item .text {
    margin-top: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w .item .text {
    margin-top: 0.4rem;
  }
}
.index_news .box .left_w .item .text .title {
  font-family: "Roboto-Medium";
  color: #333333;
  font-size: 1.354166666666667vw;
  line-height: 1.35;
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w .item .text .title {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 480px) {
  .index_news .box .left_w .item .text .title {
    font-size: 0.32rem;
  }
}
.index_news .box .left_w .item .text .date {
  font-family: "Roboto-Light";
  color: #999999;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w .item .text .date {
    font-size: 14px;
  }
}
.index_news .box .left_w .item .text .desc {
  margin-top: 0.12rem;
  font-family: "Roboto-Light";
  color: #999999;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w .item .text .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .index_news .box .left_w .item .text .desc {
    margin-top: 0.625vw;
  }
}
.index_news .box .right_w {
  width: 46.61458333333333%;
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.index_news .box .right_w .item:last-child .text {
  margin-bottom: 0;
}
.index_news .box .right_w .item:hover .date::before {
  opacity: 1;
}
.index_news .box .right_w .item:hover .date .sp1 {
  color: #FFFFFF;
}
.index_news .box .right_w .item:hover .date .sp2 {
  color: #ffffff;
}
.index_news .box .right_w .item:hover .text .subtit {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.index_news .box .right_w .item .date {
  position: relative;
  z-index: 1;
  min-width: 0.84rem;
  min-height: 0.84rem;
  background: #f4f4f4;
  padding: 12px 10px;
  border-radius: 10px;
  margin-right: 12px;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .index_news .box .right_w .item .date {
    width: 4.375vw;
    height: 4.375vw;
    border-radius: 0.520833vw;
    padding: 0.625vw 0.520833vw;
    margin-right: 0.625vw;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w .item .date {
    flex-shrink: 0;
  }
}
.index_news .box .right_w .item .date::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .index_news .box .right_w .item .date::before {
    border-radius: 0.520833vw;
  }
}
.index_news .box .right_w .item .date .sp1 {
  font-family: "Roboto-Bold";
  color: #666666;
  font-size: 1.666666666666667vw;
  line-height: 1.1;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w .item .date .sp1 {
    font-size: .32rem;
  }
}
@media screen and (max-width: 480px) {
  .index_news .box .right_w .item .date .sp1 {
    font-size: .36rem;
  }
}
.index_news .box .right_w .item .date .sp2 {
  color: #666666;
  font-size: 0.7291666666666667vw;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w .item .date .sp2 {
    font-size: 14px;
  }
}
.index_news .box .right_w .item .text {
  width: 80%;
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
}
@media screen and (min-width: 992px) {
  .index_news .box .right_w .item .text {
    margin-bottom: 1.5625vw;
    padding-bottom: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w .item .text {
    flex: 1;
    overflow: hidden;
  }
}
.index_news .box .right_w .item .text .subtit {
  color: #333333;
  font-size: 1.145833333333333vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w .item .text .subtit {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .index_news .box .right_w .item .text .subtit {
    font-size: 0.28rem;
  }
}
.index_news .box .right_w .item .text .desc {
  margin-top: 0.12rem;
  font-family: "Roboto-Light";
  color: #999999;
  font-size: 0.7291666666666667vw;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w .item .text .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .index_news .box .right_w .item .text .desc {
    margin-top: 0.625vw;
  }
}
.index_contact {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index_contact .box {
  margin-top: 0.24rem;
}
@media screen and (min-width: 992px) {
  .index_contact .box {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .index_contact .box {
    flex-wrap: wrap;
    margin-top: 24px;
  }
}
.index_contact .box .infor {
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_contact .box .infor {
    flex: auto;
    width: 100%;
  }
}
.index_contact .box .infor ul {
  position: relative;
  padding-left: 0.27rem;
}
@media screen and (min-width: 992px) {
  .index_contact .box .infor ul {
    padding-left: 1.40625vw;
  }
}
@media screen and (max-width: 991px) {
  .index_contact .box .infor ul {
    padding-left: 0.4rem;
  }
}
.index_contact .box .infor ul::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.08rem;
  height: 100%;
  background: #00b0ec;
}
@media screen and (min-width: 992px) {
  .index_contact .box .infor ul::before {
    width: 0.416667vw;
  }
}
.index_contact .box .infor ul li {
  list-style: none;
  color: #ffffff;
  font-size: 0.9375vw;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 991px) {
  .index_contact .box .infor ul li {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .index_contact .box .infor ul li {
    margin-bottom: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .index_contact .box .infor ul li {
    margin-bottom: 10px;
  }
}
.index_contact .box .share {
  flex-shrink: 0;
  margin-left: 0.4rem;
}
@media screen and (max-width: 991px) {
  .index_contact .box .share {
    flex: auto;
    width: 100%;
    margin-top: 0.4rem;
  }
}
.index_contact .box .share ul {
  column-gap: 0.1rem;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .index_contact .box .share ul {
    column-gap: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .index_contact .box .share ul {
    column-gap: 10px;
  }
}
.index_contact .box .share ul li {
  position: relative;
  list-style: none;
}
.index_contact .box .share ul li a {
  display: inline-block;
  text-align: center;
}
.index_contact .box .share ul li a img {
  max-height: 0.25rem;
}
@media screen and (min-width: 992px) {
  .index_contact .box .share ul li a img {
    max-height: 1.302083333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .index_contact .box .share ul li a img {
    max-height: 25px;
  }
}
.index_contact .box .share ul li .qrcode {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  width: 1.03rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .index_contact .box .share ul li .qrcode {
    width: 96px;
  }
}
.index_contact .box .share ul li .qrcode .img {
  overflow: hidden;
  background-color: #FFFFFF;
}
.index_contact .box .share ul li .qrcode .img img {
  width: 100%;
}
.index_contact .box .share ul li .qrcode .sjx {
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8px;
  border-color: #FFFFFF transparent transparent transparent;
}
.index_contact .box .share ul li:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
.common-nav {
  position: sticky;
  top: 0.8rem;
  left: 0;
  z-index: 14;
  background: #ffffff;
  box-shadow: 2px 7px 40px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 992px) {
  .common-nav {
    top: 4.167vw;
  }
}
@media screen and (max-width: 991px) {
  .common-nav {
    top: 60px;
  }
}
.common-nav ul {
  padding-left: 0;
  column-gap: 0.3rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .common-nav ul {
    column-gap: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .common-nav ul {
    justify-content: flex-start;
    gap: 0.4rem;
  }
}
.common-nav ul li {
  list-style: none;
}
.common-nav ul li span,
.common-nav ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  min-height: 0.7rem;
  cursor: pointer;
  color: #666666;
  font-size: 0.9375vw;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .common-nav ul li span,
  .common-nav ul li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .common-nav ul li span,
  .common-nav ul li a {
    padding: 0 2.604167vw;
  }
}
@media screen and (max-width: 991px) {
  .common-nav ul li span,
  .common-nav ul li a {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .common-nav ul li span,
  .common-nav ul li a {
    min-height: 0.85rem;
  }
}
.common-nav ul li span::before,
.common-nav ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0.02rem;
  background: #174696;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.common-nav ul li:hover span,
.common-nav ul li:hover a {
  color: #174696;
}
.common-nav ul li:hover span::before,
.common-nav ul li:hover a::before {
  width: 100%;
}
.common-nav ul li.on span,
.common-nav ul li.on a {
  color: #174696;
}
.common-nav ul li.on span::before,
.common-nav ul li.on a::before {
  width: 100%;
}
.about .box {
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .about .box {
    max-width: 62.5vw;
  }
}
@media screen and (max-width: 991px) {
  .about .box {
    max-width: 100%;
  }
}
.about .box .textbox .i-title .rubric {
  text-align: center;
}
.about .box .imgbox {
  margin-top: 5.5%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .about .box .imgbox {
    border-radius: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .about .box .imgbox {
    margin-top: 0.5rem;
  }
}
.about .box .imgbox img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .about .box .imgbox img {
    border-radius: 0.5208333333333333vw;
  }
}
.development {
  min-height: 8rem;
  box-sizing: border-box;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .development {
    min-height: 41.6667vw;
  }
}
.development .box {
  max-width: 12.3rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .development .box {
    max-width: 64.0625vw;
  }
}
.development .box .wrap {
  margin-top: 4.5%;
  position: relative;
  padding-left: 6.3%;
  padding-right: 6.3%;
  box-sizing: border-box;
}
.development .box .wrap .swiper-button-next,
.development .box .wrap .swiper-button-prev {
  position: absolute;
  top: 0.72rem;
  bottom: auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0;
  border-radius: 50%;
}
@media screen and (min-width: 992px) {
  .development .box .wrap .swiper-button-next,
  .development .box .wrap .swiper-button-prev {
    top: 3.75vw;
    width: 2.6041667vw;
    height: 2.6041667vw;
  }
}
.development .box .wrap .swiper-button-next {
  background: #FFFFFF url(../images/icon19.png) center no-repeat;
  background-size: 18% auto;
  left: auto;
  right: 0;
}
.development .box .wrap .swiper-button-next.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.4) url(../images/icon19a.png) center no-repeat;
  background-size: 18% auto;
  opacity: 0.5;
}
.development .box .wrap .swiper-button-prev {
  background: #FFFFFF url(../images/icon18.png) center no-repeat;
  background-size: 18% auto;
  right: auto;
  left: 0;
}
.development .box .wrap .swiper-button-prev.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.4) url(../images/icon18a.png) center no-repeat;
  background-size: 18% auto;
  opacity: 0.5;
}
.development .box .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.development .box .wrap .swiper.mySwiper1 {
  background: url(../images/img20.png) center bottom no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 991px) {
  .development .box .wrap .swiper.mySwiper1 {
    background: url(../images/img20.png) left bottom no-repeat;
    background-size: 125% auto;
  }
}
@media screen and (max-width: 640px) {
  .development .box .wrap .swiper.mySwiper1 {
    background: url(../images/img20.png) left bottom no-repeat;
    background-size: 167% auto;
  }
}
.development .box .wrap .swiper.mySwiper1 .swiper-wrapper {
  align-items: stretch;
}
.development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  cursor: pointer;
}
.development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0.07rem;
  height: 0.14rem;
  background: #ffffff;
  opacity: 0;
  transition: all 0.5s ease;
}
.development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide.active::after {
  opacity: 1;
}
.development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide.active .item {
  font-family: "Roboto-Bold";
  font-size: 1.875vw;
}
@media screen and (max-width: 991px) {
  .development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide.active .item {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide.active .item {
    font-size: 0.4rem;
  }
}
.development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item {
  text-align: center;
  color: #ffffff;
  font-size: 1.25vw;
  padding: 0.24rem 0;
}
@media screen and (max-width: 991px) {
  .development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 0.29rem;
  }
}
@media screen and (min-width: 992px) {
  .development .box .wrap .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item {
    padding: 1.25vw 0;
  }
}
.development .box .wrap .swiper.mySwiper2 {
  margin-top: 0.6rem;
}
@media screen and (min-width: 992px) {
  .development .box .wrap .swiper.mySwiper2 {
    margin-top: 3.125vw;
  }
}
.development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc {
  max-width: 9rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8333333333333333vw;
  color: #FFFFFF;
  line-height: 1.7;
}
@media screen and (max-width: 991px) {
  .development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc {
    max-width: 46.875vw;
  }
}
.development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul {
  padding-left: 0.24rem;
  padding-right: 0.24rem;
  overflow-y: auto;
  max-height: 1.35rem;
  /* 修改滚动条的整体大小 */
  /* 修改滚动条的轨道样式 */
  /* 修改滚动条的滑块样式 */
  /* 修改滑块的 hover 样式 */
}
@media screen and (min-width: 992px) {
  .development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul {
    padding-left: 1.25vw;
    padding-right: 1.25vw;
    max-height: 7.03125vw;
  }
}
@media screen and (max-width: 991px) {
  .development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul {
    max-height: 150px;
  }
}
.development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul::-webkit-scrollbar {
  width: 2px;
  /* 垂直滚动条的宽度 */
  height: 2px;
  /* 水平滚动条的高度 */
}
.development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  /* 轨道背景颜色 */
  border-radius: 2px;
  /* 轨道的圆角 */
}
.development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul::-webkit-scrollbar-thumb {
  background: #FFFFFF;
  /* 滑块背景颜色 */
  border-radius: 4px;
  /* 滑块圆角 */
}
.development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
  /* 当鼠标悬停时滑块的颜色 */
}
.development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul li {
  list-style: none;
  position: relative;
  padding-left: 0.24rem;
  margin-bottom: 0.12rem;
}
@media screen and (min-width: 992px) {
  .development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul li {
    padding-left: 1.25vw;
    margin-bottom: 0.625vw;
  }
}
.development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #FFFFFF;
}
@media screen and (min-width: 992px) {
  .development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul li::before {
    top: 0.5208333vw;
    width: 0.41667vw;
    height: 0.41667vw;
  }
}
@media screen and (max-width: 991px) {
  .development .box .wrap .swiper.mySwiper2 .swiper-wrapper .swiper-slide .desc ul li::before {
    top: 7px;
    width: 5px;
    height: 5px;
  }
}
.qualifications .sort-tab {
  margin-top: 0.24rem;
}
@media screen and (min-width: 992px) {
  .qualifications .sort-tab {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .qualifications .sort-tab {
    margin-top: 24px;
  }
}
.qualifications .sort-tab ul {
  gap: 0.22rem;
}
@media screen and (min-width: 992px) {
  .qualifications .sort-tab ul {
    gap: 1.1458333vw;
  }
}
@media screen and (max-width: 991px) {
  .qualifications .sort-tab ul {
    gap: 16px;
  }
}
.qualifications .sort-tab ul li.active span,
.qualifications .sort-tab ul li.active a {
  background: #174696;
  color: #FFFFFF;
  border-color: #174696;
}
.qualifications .sort-tab ul li:hover span,
.qualifications .sort-tab ul li:hover a {
  background: #174696;
  color: #FFFFFF;
  border-color: #174696;
}
.qualifications .sort-tab ul li span,
.qualifications .sort-tab ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 0.38rem;
  border-radius: 0.2rem;
  color: #333333;
  font-size: 0.8333333333333333vw;
  padding: 0 0.2rem;
  box-sizing: border-box;
  border: #cccccc solid 1px;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .qualifications .sort-tab ul li span,
  .qualifications .sort-tab ul li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .qualifications .sort-tab ul li span,
  .qualifications .sort-tab ul li a {
    min-width: 8.8541667vw;
    height: 1.98vw;
    border-radius: 1vw;
    padding: 0 1.041667vw;
  }
}
@media screen and (max-width: 991px) {
  .qualifications .sort-tab ul li span,
  .qualifications .sort-tab ul li a {
    min-width: 150px;
    height: 32px;
    border-radius: 16px;
    padding: 0 12px;
  }
}
.qualifications .box {
  margin-top: 5.208333%;
}
@media screen and (max-width: 991px) {
  .qualifications .box {
    margin-top: 0.5rem;
  }
}
.qualifications .box .item {
  display: block;
  width: 23.5%;
  margin-right: 2%;
}
.qualifications .box .item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .qualifications .box .item {
    width: 32%;
    margin-right: 2%;
  }
  .qualifications .box .item:nth-child(4n) {
    margin-right: 2%;
  }
  .qualifications .box .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .qualifications .box .item {
    width: 48.5%;
    margin-right: 3%;
  }
  .qualifications .box .item:nth-child(4n) {
    margin-right: 3%;
  }
  .qualifications .box .item:nth-child(3n) {
    margin-right: 3%;
  }
  .qualifications .box .item:nth-child(2n) {
    margin-right: 0;
  }
}
.qualifications .box .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  border-radius: 10px;
  background: #f4f4f4;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .qualifications .box .item .img {
    border-radius: 0.5208335vw;
  }
}
.qualifications .box .item .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}
.qualifications .box .item .text {
  text-align: center;
  padding: 0.18rem;
  font-size: 0.8333333333333333vw;
  color: #666666;
}
@media screen and (max-width: 991px) {
  .qualifications .box .item .text {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .qualifications .box .item .text {
    padding: 0.9375vw;
  }
}
@media screen and (max-width: 991px) {
  .qualifications .box .item .text {
    padding: 0.24rem;
  }
}
.recruitment .box {
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .recruitment .box {
    margin-top: 2.6041667vw;
  }
}
.recruitment .box .recruit-list {
  position: relative;
}
.recruitment .box .recruit-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.06rem;
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
@media screen and (min-width: 992px) {
  .recruitment .box .recruit-list::before {
    height: 0.3125vw;
  }
}
.recruitment .box .recruit-list .s1 {
  width: 0.8rem;
  padding-right: 0.2rem;
  text-align: center;
  box-sizing: border-box;
}
.recruitment .box .recruit-list .s2 {
  width: 15.625%;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .s2 {
    width: calc(68% - 1.6rem);
  }
}
.recruitment .box .recruit-list .s3 {
  width: 13%;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .s3 {
    width: 0.8rem;
  }
}
.recruitment .box .recruit-list .s4 {
  width: 17.578125%;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .s4 {
    width: 32%;
  }
}
.recruitment .box .recruit-list .s5 {
  width: 17.578125%;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .s5 {
    width: 29%;
    justify-content: flex-start !important;
    box-sizing: border-box;
    padding-left: 0.8rem;
  }
}
.recruitment .box .recruit-list .s6 {
  width: 17.578125%;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .s6 {
    width: 43%;
  }
}
.recruitment .box .recruit-list .s7 {
  width: 15.625%;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .s7 {
    width: 28%;
  }
}
.recruitment .box .recruit-list .recruit-title {
  position: relative;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .recruit-title {
    display: none;
  }
}
.recruitment .box .recruit-list .recruit-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
.recruitment .box .recruit-list .recruit-title > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0.78rem;
  font-size: 1.145833333333333vw;
  color: #333333;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .recruit-title > div {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitment .box .recruit-list .recruit-title > div {
    font-size: 0.28rem;
  }
}
@media screen and (min-width: 992px) {
  .recruitment .box .recruit-list .recruit-title > div {
    min-height: 4.0625vw;
  }
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list .recruit-title > div {
    min-height: 0.6rem;
  }
}
.recruitment .box .recruit-list .recruit-title > div.s2 {
  justify-content: flex-start;
}
.recruitment .box .recruit-list ul {
  padding-left: 0;
}
.recruitment .box .recruit-list ul li {
  list-style: none;
  width: 100%;
  border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
}
.recruitment .box .recruit-list ul li.active {
  border-color: transparent;
}
.recruitment .box .recruit-list ul li.active .title {
  color: #FFFFFF;
}
.recruitment .box .recruit-list ul li.active .title::before {
  opacity: 1;
  visibility: visible;
}
.recruitment .box .recruit-list ul li:hover .title {
  color: #FFFFFF;
}
.recruitment .box .recruit-list ul li:hover .title::before {
  opacity: 1;
  visibility: visible;
}
.recruitment .box .recruit-list ul li .title {
  position: relative;
  z-index: 1;
  width: 100%;
  color: #666666;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list ul li .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list ul li .title {
    flex-wrap: wrap;
    padding: 6px 0;
  }
}
.recruitment .box .recruit-list ul li .title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #43b9d4, #184a9e);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.recruitment .box .recruit-list ul li .title > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0.78rem;
}
.recruitment .box .recruit-list ul li .title > div.s2 {
  justify-content: flex-start;
}
@media screen and (min-width: 992px) {
  .recruitment .box .recruit-list ul li .title > div {
    min-height: 4.0625vw;
  }
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list ul li .title > div {
    min-height: 0.56rem;
  }
}
.recruitment .box .recruit-list ul li .desc {
  display: none;
  padding: 0.24rem 0.42rem 0.72rem;
  color: #666666;
  font-size: 0.8333333333333333vw;
  line-height: 1.7;
  background: url(../images/img25.jpg) center bottom no-repeat;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list ul li .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment .box .recruit-list ul li .desc {
    padding: 1.25vw 2.1875vw 3.75vw;
  }
}
.recruitment .box .recruit-list ul li .desc .item {
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 992px) {
  .recruitment .box .recruit-list ul li .desc .item {
    margin-bottom: 2.0833vw;
  }
}
.recruitment .box .recruit-list ul li .desc .item .subtit {
  font-family: "Roboto-Bold";
  font-size: 1.354166666666667vw;
  color: #333333;
  margin-bottom: 0.24rem;
  padding: 0.18rem 0;
  border-bottom: #cccccc solid 1px;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list ul li .desc .item .subtit {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitment .box .recruit-list ul li .desc .item .subtit {
    font-size: 0.32rem;
  }
}
@media screen and (min-width: 992px) {
  .recruitment .box .recruit-list ul li .desc .item .subtit {
    padding: 0.9375vw 0;
    margin-bottom: 1.25vw;
  }
}
.recruitment .box .recruit-list ul li .desc .deliver-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 0.5rem;
  border-radius: 0.06rem;
  color: #ffffff;
  font-size: 0.8333333333333333vw;
  text-transform: uppercase;
  background: linear-gradient(to right, #43b9d4, #184a9e);
  padding: 0 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list ul li .desc .deliver-btn a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment .box .recruit-list ul li .desc .deliver-btn a {
    min-width: 9.375VW;
    height: 2.6041667VW;
    border-radius: 0.3125vw;
    padding: 0 1.041667vw;
  }
}
@media screen and (max-width: 991px) {
  .recruitment .box .recruit-list ul li .desc .deliver-btn a {
    min-width: 120px;
    height: 36px;
    border-radius: 6px;
    padding: 0 15px;
  }
}
.caseitem {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .caseitem {
    border-radius: 0.5208333vw;
  }
}
.caseitem::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.caseitem:hover .img img {
  transform: scale(1.1);
}
.caseitem .img {
	position: relative;
  padding-bottom: 53.65205843293493%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .caseitem .img {
    border-radius: 0.5208333vw;
  }
}
.caseitem .img img {
	position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: all 0.5s ease;
}
.caseitem .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0.24rem 0.3rem;
}
@media screen and (min-width: 992px) {
  .caseitem .text {
    padding: 1.25vw 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .caseitem .text {
    padding: 0.3rem;
  }
}
.caseitem .text .title {
  color: #ffffff;
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .caseitem .text .title {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .caseitem .text .title {
    font-size: 0.29rem;
  }
}
.caseitem .text .content .desc {
  padding-top: 0.12rem;
  text-align: center;
  font-family: "Roboto-Light";
  font-size: 0.8333333333333333vw;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .caseitem .text .content .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .caseitem .text .content .desc {
    padding-top: 0.625vw;
  }
}
.caseitem .text .content .btn {
  padding-top: 0.18rem;
}
@media screen and (min-width: 992px) {
  .caseitem .text .content .btn {
    padding-top: 0.9375vw;
  }
}
.case .box {
  padding-bottom: 0.3rem;
}
@media screen and (min-width: 992px) {
  .case .box {
    padding-bottom: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .case .box {
    padding-bottom: 0.5rem;
  }
}
.case .box .caseitem {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.case .box .caseitem:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .case .box .caseitem {
    width: 100%;
    margin-right: 0% !important;
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .case .box .caseitem {
    margin-bottom: 0.35rem;
  }
}
.case .box .caseitem .text .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.page {
  width: 100%;
  text-align: center;
}
.page .page-list {
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.page .page-list span,
.page .page-list a {
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 .1rem;
  min-width: .44rem;
  height: .44rem;
  border-radius: 0.06rem;
  margin-bottom: .15rem;
  margin-right: .15rem;
  text-align: center;
  font-family: "Roboto-Light";
  font-size: 0.7291666666666667vw;
  color: #666666;
  background-color: #FFFFFF;
  border: #c9c9c9 solid 1px;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  .page .page-list span,
  .page .page-list a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .page .page-list span,
  .page .page-list a {
    padding: 0 0.5208333vw;
    min-width: 2.291667vw;
    height: 2.291667vw;
    border-radius: 0.3125vw;
    margin-bottom: 0.78125vw;
    margin-right: 0.78125vw;
  }
}
@media screen and (max-width: 480px) {
  .page .page-list span,
  .page .page-list a {
    min-width: .56rem;
    height: .56rem;
    margin-bottom: .1rem;
    margin-right: .1rem;
    font-size: 12px;
  }
}
.page .page-list span:last-child,
.page .page-list a:last-child {
  margin-right: 0;
}
.page .page-list span:hover,
.page .page-list a:hover {
  color: #FFFFFF;
  background: #174696;
  border: #174696 solid 1px;
}
.page .page-list span.fyprev,
.page .page-list a.fyprev {
  background: #FFFFFF url(../images/icon20.png) center no-repeat;
  background-size: 13.636364% auto;
}
.page .page-list span.fyprev.disabled,
.page .page-list a.fyprev.disabled {
  pointer-events: none;
}
.page .page-list span.fyprev:hover,
.page .page-list a.fyprev:hover {
  background: #174696 url(../images/icon20a.png) center no-repeat;
  background-size: 13.636364% auto;
}
.page .page-list span.fynext,
.page .page-list a.fynext {
  background: #FFFFFF url(../images/icon21.png) center no-repeat;
  background-size: 13.636364% auto;
}
.page .page-list span.fynext.disabled,
.page .page-list a.fynext.disabled {
  pointer-events: none;
  background: none;
}
.page .page-list span.fynext:hover,
.page .page-list a.fynext:hover {
  background: #174696 url(../images/icon21a.png) center no-repeat;
  background-size: 13.636364% auto;
}
.page .page-list span.on,
.page .page-list a.on {
  color: #FFFFFF;
  background: #174696;
  border: #174696 solid 1px;
}
.page .page-list span {
  min-width: 0.3rem;
  background: none;
}
.page .page-list span.els {
  color: #999999;
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .page .page-list span.els {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .page .page-list span.els {
    font-size: 0.29rem;
  }
}
.page .page-list span:hover {
  background: none;
}
.case-atlas .contain {
  position: relative;
}
.case-atlas .contain .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.case-atlas .contain .swiper .swiper-wrapper {
  align-items: stretch;
}
.case-atlas .contain .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.case-atlas .contain .swiper .swiper-wrapper .swiper-slide .item {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .case-atlas .contain .swiper .swiper-wrapper .swiper-slide .item {
    border-radius: 0.5208333vw;
  }
}
.case-atlas .contain .swiper .swiper-wrapper .swiper-slide .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .case-atlas .contain .swiper .swiper-wrapper .swiper-slide .item img {
    border-radius: 0.5208333vw;
  }
}
.case-atlas .contain .swiper-button-next,
.case-atlas .contain .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
}
@media screen and (max-width: 991px) {
  .case-atlas .contain .swiper-button-next,
  .case-atlas .contain .swiper-button-prev {
    width: 42px;
    height: 42px;
    margin-top: -21px;
  }
}
.case-atlas .contain .swiper-button-next {
  left: auto;
  right: -0.6rem;
  background: url(../images/icon10.png) center no-repeat;
  background-size: 26% auto;
}
@media screen and (max-width: 991px) {
  .case-atlas .contain .swiper-button-next {
    right: 0;
  }
}
.case-atlas .contain .swiper-button-prev {
  left: -0.6rem;
  right: auto;
  background: url(../images/icon9.png) center no-repeat;
  background-size: 26% auto;
}
@media screen and (max-width: 991px) {
  .case-atlas .contain .swiper-button-prev {
    left: 0;
  }
}
.caseinfo {
  background: #f8f8f8;
}
@media screen and (max-width: 991px) {
  .caseinfo .box {
    flex-wrap: wrap;
  }
}
.caseinfo .box .content {
  position: relative;
  width: 71%;
  margin-right: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .content {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }
}
.caseinfo .box .content:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #cccccc;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .content:before {
    display: none;
  }
}
.caseinfo .box .content .title {
  font-family: "Roboto-Bold";
  font-size: 2.5vw;
  color: #333333;
  margin-bottom: 0.45rem;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .content .title {
    font-size: .48rem;
  }
}
@media screen and (max-width: 480px) {
  .caseinfo .box .content .title {
    font-size: .54rem;
  }
}
@media screen and (min-width: 992px) {
  .caseinfo .box .content .title {
    margin-bottom: 2.34375vw;
  }
}
.caseinfo .box .content .text {
  color: #333333;
  font-size: 0.9375vw;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .content .text {
    font-size: 16px;
  }
}
.caseinfo .box .side-content {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content {
    width: 100%;
    margin-top: 0.7rem;
  }
}
.caseinfo .box .side-content .related-products .subtitle {
  text-align: center;
  font-family: "Roboto-Bold";
  font-size: 1.875vw;
  color: #333333;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .related-products .subtitle {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .caseinfo .box .side-content .related-products .subtitle {
    font-size: 0.4rem;
  }
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .related-products .subtitle {
    margin-bottom: 1vw;
  }
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .related-products .subtitle {
    margin-bottom: 20px;
  }
}
.caseinfo .box .side-content .related-products .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0.3rem;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .related-products .wrap .swiper {
    padding-bottom: 1.5625vw;
    border-radius: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .related-products .wrap .swiper {
    padding-bottom: 30px;
  }
}
.caseinfo .box .side-content .related-products .wrap .swiper .swiper-wrapper .swiper-slide .item {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .related-products .wrap .swiper .swiper-wrapper .swiper-slide .item {
    border-radius: 0.5208333vw;
  }
}
.caseinfo .box .side-content .related-products .wrap .swiper .swiper-wrapper .swiper-slide .item .img {
  width: 100%;
  overflow: hidden;
}
.caseinfo .box .side-content .related-products .wrap .swiper .swiper-wrapper .swiper-slide .item .img img {
  display: block;
  width: 100%;
}
.caseinfo .box .side-content .related-products .wrap .swiper .swiper-wrapper .swiper-slide .item .type-name {
  text-align: center;
  font-family: "Roboto-Medium";
  color: #333333;
  font-size: 1.25vw;
  padding-bottom: 0.36rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .related-products .wrap .swiper .swiper-wrapper .swiper-slide .item .type-name {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .caseinfo .box .side-content .related-products .wrap .swiper .swiper-wrapper .swiper-slide .item .type-name {
    font-size: 0.29rem;
  }
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .related-products .wrap .swiper .swiper-wrapper .swiper-slide .item .type-name {
    padding-bottom: 1.875vw;
  }
}
.caseinfo .box .side-content .related-products .wrap .swiper .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0;
}
.caseinfo .box .side-content .related-products .wrap .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  border: #cccccc solid 1px;
  box-sizing: border-box;
  background: #ffffff;
  opacity: 1;
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .related-products .wrap .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.caseinfo .box .side-content .related-products .wrap .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #001f5d;
  border-color: #001f5d;
}
.caseinfo .box .side-content .contact-form {
  margin-top: 0.6rem;
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .contact-form {
    margin-top: 3.125vw;
  }
}
.caseinfo .box .side-content .contact-form .tit {
  text-align: center;
  font-family: "Roboto-Bold";
  color: #333333;
  font-size: 1.25vw;
  margin-bottom: 0.24rem;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .tit {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .caseinfo .box .side-content .contact-form .tit {
    font-size: 0.29rem;
  }
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .contact-form .tit {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .tit {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item {
  position: relative;
  margin-bottom: 0.12rem;
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item {
    margin-bottom: 0.625vw;
  }
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item {
    margin-bottom: 12px;
  }
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item:last-child {
  margin-bottom: 0;
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input {
  width: 100%;
  height: 0.58rem;
  font-family: "Roboto-Regular";
  color: #333333;
  font-size: 0.8333333333333333vw;
  padding: 0 0.2rem;
  background: #FFFFFF;
  border: none;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input {
    font-size: 14px;
  }
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input::-webkit-input-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input::-moz-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input:-moz-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input:-ms-input-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input {
    height: 3.0208333vw;
    padding: 0 1.041667vw;
  }
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input {
    padding: 0 0.25rem;
    height: 0.62rem;
  }
}
@media screen and (max-width: 480px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-input {
    height: 0.7rem;
    padding: 0 0.3rem;
  }
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-form-label {
  position: absolute;
  top: 0.18rem;
  left: 0.2rem;
  z-index: 1;
  font-family: "Roboto-Regular";
  color: #999999;
  font-size: 0.8333333333333333vw;
  padding: 0;
  width: auto;
  min-width: 1px;
  text-align: left;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-form-label {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-form-label {
    top: 0.9375vw;
    left: 1.041667vw;
  }
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-form-label span {
  display: inline-block;
  margin-left: 0.03rem;
  color: #ff0101;
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-form-label span {
    margin-left: 0.15625vw;
  }
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-form-label.hidden {
  display: none;
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea {
  width: 100%;
  height: 1.64rem;
  font-family: "Roboto-Regular";
  color: #333333;
  font-size: 0.8333333333333333vw;
  padding: 0.15rem 0.2rem;
  background: #FFFFFF;
  border: none;
  resize: none;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea {
    font-size: 14px;
  }
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea::-webkit-input-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea::-moz-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea:-moz-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea:-ms-input-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea {
    height: 8.541667vw;
    padding: 0.78125vw 1.041667vw;
  }
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea {
    height: 1.72rem;
    padding: 0.18rem 0.25rem;
  }
}
@media screen and (max-width: 480px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-textarea {
    height: 2rem;
    padding: 0.2rem 0.3rem;
  }
}
.caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-btn {
  margin-top: 0.35rem;
  min-width: 1.6rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  font-family: "Roboto-Regular";
  color: #FFFFFF;
  font-size: 0.9375vw;
  border: none;
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-btn {
    margin-top: 1.875vw;
    min-width: 8.33333vw;
    height: 2.6041667vw;
    border-radius: 1.3021vw;
  }
}
@media screen and (max-width: 991px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-btn {
    margin-top: 0.4rem;
    min-width: 1.7rem;
    height: 0.56rem;
    border-radius: 0.28rem;
  }
}
@media screen and (max-width: 480px) {
  .caseinfo .box .side-content .contact-form .wrap .layui-form .layui-form-item .layui-btn {
    min-width: 1.8rem;
    height: 0.7rem;
    border-radius: 0.35rem;
  }
}
.related-cases {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.related-cases .box {
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .related-cases .box {
    margin-top: 2.6041667vw;
  }
}
.related-cases .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .related-cases .box .swiper {
    border-radius: 0.5208333vw;
  }
}
.related-cases .box .swiper .swiper-wrapper {
  align-items: stretch;
}
.related-cases .box .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
.related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
@media screen and (max-width: 991px) {
  .related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem::before {
    display: none;
  }
}
.related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem:hover .img img {
  transform: scale(1.06);
}
.related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem .text {
  padding-bottom: 0.6rem;
}
@media screen and (min-width: 992px) {
  .related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem .text {
    padding-bottom: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem .text {
    position: static;
    margin-top: 0.4rem;
    padding: 0 0.4rem;
  }
}
.related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem .text .title {
  font-size: 1.875vw;
}
@media screen and (max-width: 991px) {
  .related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem .text .title {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem .text .title {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 991px) {
  .related-cases .box .swiper .swiper-wrapper .swiper-slide .caseitem .text .content .btn {
    padding-top: 0.3rem;
  }
}
.related-cases .box .swiper .swiper-button-next,
.related-cases .box .swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
}
@media screen and (max-width: 767px) {
  .related-cases .box .swiper .swiper-button-next,
  .related-cases .box .swiper .swiper-button-prev {
    top: 23vmin;
  }
}
.related-cases .box .swiper .swiper-button-next {
  background: url(../images/icon13.png) center no-repeat;
  background-size: 28.33333% auto;
  right: 0.1rem;
  left: auto;
}
@media screen and (min-width: 992px) {
  .related-cases .box .swiper .swiper-button-next {
    right: 0.5208333vw;
  }
}
@media screen and (max-width: 767px) {
  .related-cases .box .swiper .swiper-button-next {
    right: 0;
  }
}
.related-cases .box .swiper .swiper-button-prev {
  background: url(../images/icon12.png) center no-repeat;
  background-size: 28.33333% auto;
  left: 0.1rem;
  right: auto;
}
@media screen and (min-width: 992px) {
  .related-cases .box .swiper .swiper-button-prev {
    left: 0.5208333vw;
  }
}
@media screen and (max-width: 767px) {
  .related-cases .box .swiper .swiper-button-prev {
    left: 0;
  }
}
@media screen and (max-width: 991px) {
  .contact .box {
    flex-wrap: wrap;
  }
}
.contact .box .textbox {
  width: 49%;
  min-height: 31.77083333333333vw;
  padding: 4% 6.25% 4% 5.625%;
  box-sizing: border-box;
  overflow: hidden;
  background: #f8f8f8 url(../images/img41.png) top center no-repeat;
  background-size: 100% auto;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .contact .box .textbox {
    border-radius: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .textbox {
    width: 100%;
    padding: 8% 6%;
  }
}
.contact .box .textbox .text .title {
  font-family: "Roboto-Medium";
  color: #00a0e9;
  font-size: 1.666666666666667vw;
  margin-bottom: 0.48rem;
}
@media screen and (max-width: 991px) {
  .contact .box .textbox .text .title {
    font-size: .32rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .box .textbox .text .title {
    font-size: .36rem;
  }
}
@media screen and (min-width: 992px) {
  .contact .box .textbox .text .title {
    margin-bottom: 2.5vw;
  }
}
.contact .box .textbox .text ul {
  padding-top: 0.42rem;
  border-top: rgba(204, 204, 204, 0.5) solid 1px;
  padding-left: 0;
}
@media screen and (min-width: 992px) {
  .contact .box .textbox .text ul {
    padding-top: 2.1875vw;
  }
}
.contact .box .textbox .text ul li {
  list-style: none;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 992px) {
  .contact .box .textbox .text ul li {
    margin-bottom: 1.5625vw;
  }
}
.contact .box .textbox .text ul li .sp1 {
  display: flex;
  align-items: center;
  min-width: 26.4%;
  flex-shrink: 0;
  color: #333333;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .contact .box .textbox .text ul li .sp1 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact .box .textbox .text ul li .sp1 {
    min-width: 120px;
  }
}
.contact .box .textbox .text ul li .sp1 img {
  display: inline-block;
  margin-right: 0.09rem;
  width: 0.2rem;
}
@media screen and (min-width: 992px) {
  .contact .box .textbox .text ul li .sp1 img {
    width: 1.041667vw;
    margin-right: 0.46875vw;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .textbox .text ul li .sp1 img {
    width: 18px;
    margin-right: 7px;
  }
}
.contact .box .textbox .text ul li .sp2 {
  display: flex;
  align-items: flex-start;
  flex: 1;
  overflow: hidden;
  font-family: "Roboto-Light";
  color: #999999;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .contact .box .textbox .text ul li .sp2 {
    font-size: 14px;
  }
}
.contact .box .textbox .text .shareicon {
  padding-left: 26.4%;
  gap: 0.06rem;
}
@media screen and (min-width: 992px) {
  .contact .box .textbox .text .shareicon {
    gap: 0.3125vw;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .textbox .text .shareicon {
    gap: 6px;
  }
}
@media screen and (max-width: 767px) {
  .contact .box .textbox .text .shareicon {
    padding-left: 120px;
  }
}
.contact .box .textbox .text .shareicon .item a img {
  width: 0.3rem;
}
@media screen and (min-width: 992px) {
  .contact .box .textbox .text .shareicon .item a img {
    width: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .textbox .text .shareicon .item a img {
    width: 20px;
  }
}
.contact .box .imgbox {
  position: relative;
  width: 49%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .contact .box .imgbox {
    border-radius: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .imgbox {
    width: 100%;
    padding-bottom: 80.90185676392573%;
  }
}
.contact .box .imgbox iframe,
.contact .box .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.online-message .box {
  margin-top: 2.8125%;
}
@media screen and (max-width: 991px) {
  .online-message .box {
    margin-top: 0.4rem;
  }
}
.online-message .box .layui-form .layui-form-item {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.online-message .box .layui-form .layui-form-item.buttonbox {
  margin-top: 0.32rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .online-message .box .layui-form .layui-form-item.buttonbox {
    margin-top: 1.666667vw;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item.buttonbox {
    margin-top: 0.4rem;
  }
}
.online-message .box .layui-form .layui-form-item.two {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 1.31%;
}
.online-message .box .layui-form .layui-form-item.two:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item.two {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 12px;
  }
}
.online-message .box .layui-form .layui-form-item .layui-input {
  width: 100%;
  padding: 0 0.2rem;
  height: 0.58rem;
  font-family: "Roboto-Regular";
  color: #000000;
  font-size: 0.8333333333333333vw;
  background: #ffffff;
  box-sizing: border-box;
  border-radius: 6px;
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item .layui-input {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .online-message .box .layui-form .layui-form-item .layui-input {
    padding: 0 1.04167vw;
    height: 3.020833333333333vw;
    border-radius: 0.3125vw;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item .layui-input {
    height: 0.62rem;
  }
}
@media screen and (max-width: 480px) {
  .online-message .box .layui-form .layui-form-item .layui-input {
    padding: 0 0.3rem;
    border-width: 1px;
    height: 0.7rem;
  }
}
.online-message .box .layui-form .layui-form-item .layui-input::-webkit-input-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.online-message .box .layui-form .layui-form-item .layui-input::-moz-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.online-message .box .layui-form .layui-form-item .layui-input:-moz-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.online-message .box .layui-form .layui-form-item .layui-input:-ms-input-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.online-message .box .layui-form .layui-form-item .layui-form-label {
  position: absolute;
  top: 0.18rem;
  left: 0.2rem;
  z-index: 1;
  font-family: "Roboto-Regular";
  color: #999999;
  font-size: 0.8333333333333333vw;
  padding: 0;
  width: auto;
  min-width: 1px;
  text-align: left;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item .layui-form-label {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .online-message .box .layui-form .layui-form-item .layui-form-label {
    top: 0.9375vw;
    left: 1.041667vw;
  }
}
.online-message .box .layui-form .layui-form-item .layui-form-label span {
  display: inline-block;
  margin-left: 0.03rem;
  color: #ff0101;
}
@media screen and (min-width: 992px) {
  .online-message .box .layui-form .layui-form-item .layui-form-label span {
    margin-left: 0.15625vw;
  }
}
.online-message .box .layui-form .layui-form-item .layui-form-label.hidden {
  display: none;
}
.online-message .box .layui-form .layui-form-item .layui-textarea {
  width: 100%;
  padding: 0.2rem;
  height: 1.25rem;
  font-family: "Roboto-Regular";
  color: #333333;
  font-size: 0.8333333333333333vw;
  background: #FFFFFF;
  box-sizing: border-box;
  border-radius: 6px;
  resize: none;
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item .layui-textarea {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .online-message .box .layui-form .layui-form-item .layui-textarea {
    padding: 1.04167vw;
    height: 6.5104167vw;
    border-radius: 0.3125vw;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item .layui-textarea {
    height: 1.35rem;
  }
}
@media screen and (max-width: 480px) {
  .online-message .box .layui-form .layui-form-item .layui-textarea {
    padding: 0.3rem;
    height: 1.5rem;
    border-width: 1px;
  }
}
.online-message .box .layui-form .layui-form-item .layui-textarea::-webkit-input-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.online-message .box .layui-form .layui-form-item .layui-textarea::-moz-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.online-message .box .layui-form .layui-form-item .layui-textarea:-moz-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.online-message .box .layui-form .layui-form-item .layui-textarea:-ms-input-placeholder {
  font-family: "Roboto-Regular";
  color: #999999;
}
.online-message .box .layui-form .layui-form-item .layui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .2rem;
  min-width: 1.5rem;
  height: 0.42rem;
  border-radius: 0.21rem;
  border: none;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Roboto-Regular";
  font-size: 0.9375vw;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item .layui-btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .online-message .box .layui-form .layui-form-item .layui-btn {
    min-width: 7.8125vw;
    height: 2.1875vw;
    border-radius: 1.09375vw;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item .layui-btn {
    padding: 0 .3rem;
    min-width: 2.4rem;
    height: 0.62rem;
    border-radius: 0.32rem;
  }
}
@media screen and (max-width: 480px) {
  .online-message .box .layui-form .layui-form-item .layui-btn {
    height: 0.7rem;
    border-radius: 0.35rem;
  }
}
.online-message .box .layui-form .layui-form-item .layui-form-select .layui-edge {
  right: 0.2rem;
}
@media screen and (min-width: 992px) {
  .online-message .box .layui-form .layui-form-item .layui-form-select .layui-edge {
    right: 1.04167vw;
  }
}
.online-message .box .layui-form .layui-form-item .layui-form-select dl {
  top: 100%;
  padding: 0;
}
.online-message .box .layui-form .layui-form-item .layui-form-select dl dd {
  line-height: 0.4rem;
}
@media screen and (min-width: 992px) {
  .online-message .box .layui-form .layui-form-item .layui-form-select dl dd {
    line-height: 2.08333vw;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .layui-form .layui-form-item .layui-form-select dl dd {
    line-height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .online-message .box .layui-form .layui-form-item .layui-form-select dl dd {
    line-height: 0.7rem;
  }
}
.online-message .box .layui-form .layui-form-item .layui-form-select dl dd.layui-this {
  background: #fc9613;
}
.newlist .box {
  padding-bottom: 2%;
}
@media screen and (max-width: 991px) {
  .newlist .box {
    padding-bottom: 0.4rem;
  }
}
.newlist .box .item {
  margin-bottom: 2%;
  padding-bottom: 2%;
  border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
}
@media screen and (max-width: 991px) {
  .newlist .box .item {
    margin-bottom: 3%;
    padding-bottom: 2.5%;
  }
}
@media screen and (max-width: 767px) {
  .newlist .box .item {
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
    padding-bottom: 0.2rem;
  }
}
.newlist .box .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.newlist .box .item:hover .text .title {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.newlist .box .item:hover .text .btn span {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.newlist .box .item:hover .text .btn span i {
  background: url(../images/arrow-right2.png) center no-repeat;
  background-size: 100% auto;
}
.newlist .box .item .img {
  position: relative;
  width: 32.03125%;
  /*padding-bottom: 16.73177083333333%;*/
  overflow: hidden;
  border-radius: 10px;
  max-width: 32.03125%;
  flex-basis: content;
}
@media screen and (min-width: 992px) {
  .newlist .box .item .img {
    border-radius: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .newlist .box .item .img {
    width: 42%;
    max-width: 42%;
    /*padding-bottom: 21.92832764505119%;*/
  }
}
@media screen and (max-width: 767px) {
  .newlist .box .item .img {
    width: 100%;
    max-width: 100%;
    /*padding-bottom: 52.23577235772358%;*/
  }
}
.newlist .box .item .img img {
  /*position: absolute;
  left: 0;
  top: 0;*/
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.newlist .box .item .text {
  width: 67.96875%;
  padding: 1% 2%;
  box-sizing: border-box;
  overflow: hidden;
  flex-grow: 1;
}
@media screen and (max-width: 991px) {
  .newlist .box .item .text {
    width: 58%;
  }
}
@media screen and (max-width: 767px) {
  .newlist .box .item .text {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.newlist .box .item .text .title {
  color: #333333;
  font-size: 0.9375vw;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991px) {
  .newlist .box .item .text .title {
    font-size: 16px;
  }
}
.newlist .box .item .text .date {
  margin-top: 0.12rem;
  color: #666666;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .newlist .box .item .text .date {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .newlist .box .item .text .date {
    margin-top: 0.625vw;
  }
}
.newlist .box .item .text .desc {
  margin-top: 0.18rem;
  color: #666666;
  font-size: 0.7291666666666667vw;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991px) {
  .newlist .box .item .text .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .newlist .box .item .text .desc {
    margin-top: 0.9375vw;
  }
}
.newlist .box .item .text .btn {
  margin-top: 0.3rem;
}
@media screen and (min-width: 992px) {
  .newlist .box .item .text .btn {
    margin-top: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .newlist .box .item .text .btn {
    margin-top: 0.25rem;
  }
}
.newlist .box .item .text .btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 0.7291666666666667vw;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .newlist .box .item .text .btn span {
    font-size: 14px;
  }
}
.newlist .box .item .text .btn span i {
  display: inline-block;
  margin-left: 0.15rem;
  width: 0.06rem;
  height: 0.11rem;
  background: url(../images/arrow-right1.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 992px) {
  .newlist .box .item .text .btn span i {
    margin-left: 0.78125vw;
    width: 0.3125vw;
    height: 0.5729166666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .newlist .box .item .text .btn span i {
    margin-left: 10px;
    width: 5px;
    height: 10px;
  }
}
@media screen and (max-width: 991px) {
  .newsinfo .box {
    flex-wrap: wrap;
  }
}
.newsinfo .box .left_w {
  width: 66.015625%;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w {
    width: 100%;
  }
}
.newsinfo .box .left_w .new-detail .title .headline {
  font-family: "Roboto-Bold";
  color: #333333;
  font-size: 2.395833333333333vw;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w .new-detail .title .headline {
    font-size: .46rem;
  }
}
@media screen and (max-width: 480px) {
  .newsinfo .box .left_w .new-detail .title .headline {
    font-size: .5rem;
  }
}
.newsinfo .box .left_w .new-detail .title .sp {
  margin-top: 0.24rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  color: #666666;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w .new-detail .title .sp {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .newsinfo .box .left_w .new-detail .title .sp {
    margin-top: 1.25vw;
    gap: 1.5625vw;
  }
}
.newsinfo .box .left_w .new-detail .content {
  padding-top: 0.3rem;
  margin-top: 0.3rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  color: #666666;
  font-size: 0.8333333333333333vw;
  line-height: 1.7;
  border-top: rgba(204, 204, 204, 0.5) solid 1px;
  border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w .new-detail .content {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .newsinfo .box .left_w .new-detail .content {
    padding-top: 1.5625vw;
    margin-top: 1.5625vw;
    padding-bottom: 2.6041667vw;
    margin-bottom: 2.6041667vw;
  }
}
.newsinfo .box .left_w .new-detail .detail-pager a {
  color: #666666;
  font-size: 0.8333333333333333vw;
  line-height: 1.7;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w .new-detail .detail-pager a {
    font-size: 14px;
  }
}
.newsinfo .box .left_w .new-detail .detail-pager a:hover {
  color: #174696;
}
.newsinfo .box .left_w .new-detail .detail-share {
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .newsinfo .box .left_w .new-detail .detail-share {
    margin-top: 2.6041667vw;
  }
}
.newsinfo .box .left_w .new-detail .detail-share span {
  flex-shrink: 0;
  margin-right: 0.2rem;
  color: #174696;
  font-size: 0.8333333333333333vw;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w .new-detail .detail-share span {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .newsinfo .box .left_w .new-detail .detail-share span {
    margin-right: 1.0416667vw;
  }
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w .new-detail .detail-share span {
    margin-right: 10px;
  }
}
.newsinfo .box .left_w .new-detail .detail-share ul {
  flex: 1;
  overflow: hidden;
  gap: 0.1rem;
}
@media screen and (min-width: 992px) {
  .newsinfo .box .left_w .new-detail .detail-share ul {
    gap: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w .new-detail .detail-share ul {
    gap: 10px;
  }
}
.newsinfo .box .left_w .new-detail .detail-share ul li a img {
  width: 0.3rem;
}
@media screen and (min-width: 992px) {
  .newsinfo .box .left_w .new-detail .detail-share ul li a img {
    width: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .newsinfo .box .left_w .new-detail .detail-share ul li a img {
    width: 20px;
  }
}
.newsinfo .box .right_w {
  width: 26.04166666666667%;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .right_w {
    width: 100%;
    margin-top: 0.7rem;
  }
}
.newsinfo .box .right_w .title {
  font-family: "Roboto-Bold";
  font-size: 1.354166666666667vw;
  color: #184a9e;
  margin-bottom: 0.24rem;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .right_w .title {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 480px) {
  .newsinfo .box .right_w .title {
    font-size: 0.32rem;
  }
}
@media screen and (min-width: 992px) {
  .newsinfo .box .right_w .title {
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .newsinfo .box .right_w .title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.newsinfo .box .right_w .title span {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.newsinfo .box .right_w .related-news ul {
  padding-left: 0;
}
.newsinfo .box .right_w .related-news ul li {
  list-style: none;
}
.newsinfo .box .right_w .related-news ul li .item {
  display: block;
  width: 100%;
  overflow: hidden;
}
.newsinfo .box .right_w .related-news ul li .item:hover .img img {
  transform: scale(1.1);
}
.newsinfo .box .right_w .related-news ul li .item:hover .text .subtit {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.newsinfo .box .right_w .related-news ul li .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 52.25%;
  border-radius: 10px;
  overflow: hidden;
}
.newsinfo .box .right_w .related-news ul li .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.newsinfo .box .right_w .related-news ul li .item .text {
  padding-top: 0.15rem;
  padding-bottom: 0.2rem;
  border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 992px) {
  .newsinfo .box .right_w .related-news ul li .item .text {
    padding-top: 0.78125vw;
    padding-bottom: 1.0416667vw;
    margin-bottom: 1.0416667vw;
  }
}
@media screen and (max-width: 991px) {
  .newsinfo .box .right_w .related-news ul li .item .text {
    padding-top: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.newsinfo .box .right_w .related-news ul li .item .text .subtit {
  color: #333333;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .right_w .related-news ul li .item .text .subtit {
    font-size: 14px;
  }
}
.newsinfo .box .right_w .related-news ul li .item .text .date {
  margin-top: 0.1rem;
  color: #666666;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .newsinfo .box .right_w .related-news ul li .item .text .date {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .newsinfo .box .right_w .related-news ul li .item .text .date {
    margin-top: 0.5208333vw;
  }
}
.product .box {
  margin-top: 0.2rem;
}
@media screen and (min-width: 992px) {
  .product .box {
    margin-top: 1.0416667vw;
  }
}
@media screen and (max-width: 991px) {
  .product .box {
    flex-wrap: wrap;
  }
}
.product .box .product-nav {
  width: 23.4375%;
  background: url(../images/img52.png) top center no-repeat;
  background-size: cover;
  border: rgba(204, 204, 204, 0.5) solid 1px;
  border-radius: 10px;
  padding: 0.24rem 0.36rem 0.45rem;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .product .box .product-nav {
    padding: 1.25vw 1.875vw 2.34375vw;
    border-radius: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .product .box .product-nav {
    width: 100%;
  }
}
.product .box .product-nav > ul > li {
  border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
}
.product .box .product-nav > ul > li.open {
  border-bottom-color: transparent;
}
.product .box .product-nav > ul > li .rubric {
  display: flex;
  align-items: flex-start;
  padding: 0.12rem 0;
  font-size: 0.8333333333333333vw;
  color: #666666;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .product .box .product-nav > ul > li .rubric {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .product .box .product-nav > ul > li .rubric {
    padding: 0.625vw 0;
  }
}
@media screen and (max-width: 991px) {
  .product .box .product-nav > ul > li .rubric {
    padding: 10px 0;
  }
}
.product .box .product-nav > ul > li .rubric.active {
  color: #174696;
}
.product .box .product-nav > ul > li .rubric.active i {
  background: #174696 url(../images/icon31a.png) center no-repeat;
  background-size: 23.81% auto;
}
.product .box .product-nav > ul > li .rubric i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.07rem;
  width: 0.21rem;
  height: 0.21rem;
  border-radius: 50%;
  background: url(../images/icon31.png) left center no-repeat;
  background-size: 23.81% auto;
}
@media screen and (min-width: 992px) {
  .product .box .product-nav > ul > li .rubric i {
    margin-right: 0.3645833333333333vw;
    width: 1.09375vw;
    height: 1.09375vw;
  }
}
@media screen and (max-width: 991px) {
  .product .box .product-nav > ul > li .rubric i {
    margin-right: 6px;
    width: 18px;
    height: 18px;
  }
}
.product .box .product-nav > ul > li .rubric span {
  flex: 1;
  overflow: hidden;
  line-height: 1.5;
}
.product .box .product-nav > ul > li ul {
  position: relative;
  display: none;
  padding: 0.2rem;
  background: linear-gradient(to bottom, rgba(23, 70, 150, 0), rgba(23, 70, 150, 0.1));
}
@media screen and (min-width: 992px) {
  .product .box .product-nav > ul > li ul {
    padding: 1.0416667vw;
  }
}
@media screen and (max-width: 991px) {
  .product .box .product-nav > ul > li ul {
    padding: 18px;
  }
}
.product .box .product-nav > ul > li ul::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #174696;
}
.product .box .product-nav > ul > li ul li {
  padding: 0.06rem 0;
}
@media screen and (min-width: 992px) {
  .product .box .product-nav > ul > li ul li {
    padding: 0.3125vw 0;
  }
}
@media screen and (max-width: 991px) {
  .product .box .product-nav > ul > li ul li {
    padding: 6px 0;
  }
}
.product .box .product-nav > ul > li ul li.on a {
  color: #174696;
}
.product .box .product-nav > ul > li ul li.on a i {
  background: url(../images/icon31b.png) center no-repeat;
  background-size: 23.81% auto;
}
.product .box .product-nav > ul > li ul li a {
  display: flex;
  align-items: flex-start;
  color: #666666;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .product .box .product-nav > ul > li ul li a {
    font-size: 14px;
  }
}
.product .box .product-nav > ul > li ul li a.on {
  color: #174696;
}
.product .box .product-nav > ul > li ul li a.on i {
  background: url(../images/icon31b.png) center no-repeat;
  background-size: 23.81% auto;
}
.product .box .product-nav > ul > li ul li a:hover {
  color: #174696;
}
.product .box .product-nav > ul > li ul li a:hover i {
  background: url(../images/icon31b.png) center no-repeat;
  background-size: 23.81% auto;
}
.product .box .product-nav > ul > li ul li a i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.21rem;
  height: 0.21rem;
  border-radius: 50%;
  background: url(../images/icon31.png) center no-repeat;
  background-size: 23.81% auto;
}
@media screen and (min-width: 992px) {
  .product .box .product-nav > ul > li ul li a i {
    width: 1.09375vw;
    height: 1.09375vw;
  }
}
@media screen and (max-width: 991px) {
  .product .box .product-nav > ul > li ul li a i {
    width: 18px;
    height: 18px;
  }
}
.product .box .product-nav > ul > li ul li a span {
  flex: 1;
  overflow: hidden;
}
.product .box .wrap {
  width: 74.5625%;
}
@media screen and (max-width: 991px) {
  .product .box .wrap {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.product .box .wrap .product-list {
  width: 100%;
  overflow: hidden;
  padding-bottom: 3%;
}
@media screen and (max-width: 991px) {
  .product .box .wrap .product-list {
    padding-bottom: 0.4rem;
  }
}
.product .box .wrap .product-list .productitem {
  width: 31.586%;
  margin-right: 2.62%;
  margin-bottom: 2.62%;
}
.product .box .wrap .product-list .productitem:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .product .box .wrap .product-list .productitem {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .product .box .wrap .product-list .productitem:nth-child(3n) {
    margin-right: 4%;
  }
  .product .box .wrap .product-list .productitem:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .product .box .wrap .product-list .productitem {
    width: 100%;
    margin-right: 0% !important;
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .product .box .wrap .product-list .productitem {
    margin-bottom: 0.35rem;
  }
}
.productitem {
  border-radius: 10px;
  background: #f8f8f8;
}
@media screen and (min-width: 992px) {
  .productitem {
    border-radius: 0.5208333vw;
  }
}
.productitem:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.productitem:hover .text .type {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.productitem:hover .text .btn span {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.productitem:hover .text .btn span i {
  background: url(../images/arrow-right2.png) center no-repeat;
  background-size: 100% auto;
}
.productitem .img {
  width: 100%;
  overflow: hidden;
}
.productitem .img img {
  display: block;
  width: 100%;
  transition: all 0.5s ease;
}
.productitem .text {
  text-align: center;
  padding: 0.15rem 0.24rem 0.42rem;
}
@media screen and (min-width: 992px) {
  .productitem .text {
    padding: 0.78125vw 1.25vw 2.1875vw;
  }
}
@media screen and (max-width: 991px) {
  .productitem .text {
    padding: 0.25rem 0.3rem 0.5rem;
  }
}
.productitem .text .type {
  font-family: "Roboto-Medium";
  color: #333333;
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .productitem .text .type {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .productitem .text .type {
    font-size: 0.29rem;
  }
}
.productitem .text .desc {
  margin-top: 0.12rem;
  color: #666666;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .productitem .text .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .productitem .text .desc {
    margin-top: 0.625vw;
  }
}
@media screen and (max-width: 991px) {
  .productitem .text .desc {
    margin-top: 10px;
  }
}
.productitem .text .btn {
  margin-top: 0.12rem;
}
@media screen and (min-width: 992px) {
  .productitem .text .btn {
    margin-top: 0.625vw;
  }
}
@media screen and (max-width: 991px) {
  .productitem .text .btn {
    margin-top: 10px;
  }
}
.productitem .text .btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 0.7291666666666667vw;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .productitem .text .btn span {
    font-size: 14px;
  }
}
.productitem .text .btn span i {
  display: inline-block;
  margin-left: 0.15rem;
  width: 0.04rem;
  height: 0.10rem;
  background: url(../images/arrow-right1.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 992px) {
  .productitem .text .btn span i {
    margin-left: 0.78125vw;
    width: 0.20833333vw;
    height: 0.5083333vw;
  }
}
@media screen and (max-width: 991px) {
  .productitem .text .btn span i {
    margin-left: 15px;
    width: 4px;
    height: 10px;
  }
}
.public-crumbs {
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
.public-crumbs .contain {
  display: flex;
  align-items: center;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 0.7291666666666667vw;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .public-crumbs .contain {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .public-crumbs .contain {
    padding-top: 0.78125vw;
    padding-bottom: 0.78125vw;
  }
}
@media screen and (max-width: 991px) {
  .public-crumbs .contain {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.public-crumbs .contain span,
.public-crumbs .contain a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #FFFFFF;
}
.public-crumbs .contain span img,
.public-crumbs .contain a img {
  display: inline-block;
  margin-right: 0.03rem;
  width: 0.12rem;
}
@media screen and (min-width: 992px) {
  .public-crumbs .contain span img,
  .public-crumbs .contain a img {
    width: 0.625vw;
    margin-right: 0.15625vw;
  }
}
@media screen and (max-width: 991px) {
  .public-crumbs .contain span img,
  .public-crumbs .contain a img {
    width: 12px;
    margin-right: 2px;
  }
}
.public-crumbs .contain span.on,
.public-crumbs .contain a.on {
  flex: 1;
  flex-shrink: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.public-crumbs .contain span {
  margin: 0 4px;
}
@media screen and (min-width: 992px) {
  .public-crumbs .contain span {
    margin: 0 0.208333vw;
  }
}
.product-banner {
  position: relative;
}
.product-banner > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .product-banner > img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
  }
}
.product-banner .box {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .product-banner .box {
    position: static;
    transform: none;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain {
    flex-wrap: wrap;
  }
}
.product-banner .box .contain .textbox {
  width: 40%;
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .textbox {
    width: 100%;
  }
}
.product-banner .box .contain .textbox .title {
  font-family: "Roboto-Medium";
  color: #FFFFFF;
  font-size: 3.541666666666667vw;
  line-height: 1.1;
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .textbox .title {
    font-size: .6rem;
  }
}
@media screen and (max-width: 480px) {
  .product-banner .box .contain .textbox .title {
    font-size: .64rem;
  }
}
.product-banner .box .contain .textbox .title span {
  display: inline;
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.product-banner .box .contain .textbox .text {
  margin-top: 0.3rem;
  color: #FFFFFF;
  font-size: 1.666666666666667vw;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .textbox .text {
    font-size: .32rem;
  }
}
@media screen and (max-width: 480px) {
  .product-banner .box .contain .textbox .text {
    font-size: .36rem;
  }
}
@media screen and (min-width: 992px) {
  .product-banner .box .contain .textbox .text {
    margin-top: 1.5625vw;
  }
}
.product-banner .box .contain .textbox .btn {
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .product-banner .box .contain .textbox .btn {
    margin-top: 2.60416667vw;
  }
}
.product-banner .box .contain .textbox .btn span {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .textbox .btn span {
    opacity: 0.8;
  }
}
.product-banner .box .contain .textbox .btn span:hover {
  opacity: 1;
}
.product-banner .box .contain .imgbox {
  width: 48.6%;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .imgbox {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.product-banner .box .contain .imgbox img {
  width: 100%;
}
.product-banner .box .contain .imgbox .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-banner .box .contain .imgbox .swiper.mySwiper1 {
  margin-top: 0.5rem;
}
.product-banner .box .contain .imgbox .swiper.mySwiper1 .swiper-wrapper {
  align-items: stretch;
}
.product-banner .box .contain .imgbox .swiper.mySwiper1 .swiper-wrapper .swiper-slide {
  height: auto;
  cursor: pointer;
}
.product-banner .box .contain .imgbox .swiper.mySwiper1 .swiper-wrapper .swiper-slide.active .picitem {
  border: #00a0e9 1px solid;
}
.product-banner .box .contain .imgbox .swiper.mySwiper1 .swiper-wrapper .swiper-slide .picitem {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: #ebebeb 1px solid;
  padding: 0.12rem;
  box-sizing: border-box;
}
.product-banner .box .contain .imgbox .swiper.mySwiper1 .swiper-wrapper .swiper-slide .picitem img {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .imgbox .swiper.mySwiper2 {
    padding-top: 0.4rem;
  }
}
.product-banner .box .contain .imgbox .swiper.mySwiper2 .swiper-wrapper {
  align-items: stretch;
}
.product-banner .box .contain .imgbox .swiper.mySwiper2 .swiper-wrapper .swiper-slide {
  height: auto;
}
.product-banner .box .contain .imgbox .swiper.mySwiper2 .swiper-wrapper .swiper-slide .picitem {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-banner .box .contain .imgbox .swiper.mySwiper2 .swiper-wrapper .swiper-slide .picitem img {
  max-width: 100%;
}
.product-banner .box .contain .imgbox .swiper .swiper-button-next,
.product-banner .box .contain .imgbox .swiper .swiper-button-prev {
  width: 0.56rem;
  height: 0.56rem;
  margin-top: -0.21rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30% auto;
}
@media screen and (min-width: 992px) {
  .product-banner .box .contain .imgbox .swiper .swiper-button-next,
  .product-banner .box .contain .imgbox .swiper .swiper-button-prev {
    width: 2.9167vw;
    height: 2.9167vw;
    margin-top: -1.45835vw;
  }
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .imgbox .swiper .swiper-button-next,
  .product-banner .box .contain .imgbox .swiper .swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
    margin-top: -0.32rem;
  }
}
.product-banner .box .contain .imgbox .swiper .swiper-button-next {
  background-image: url(../images/icon19.png);
  right: 2%;
  left: auto;
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .imgbox .swiper .swiper-button-next {
    right: 0;
  }
}
.product-banner .box .contain .imgbox .swiper .swiper-button-prev {
  background-image: url(../images/icon18.png);
  left: 2%;
  right: auto;
}
@media screen and (max-width: 991px) {
  .product-banner .box .contain .imgbox .swiper .swiper-button-prev {
    left: 0;
  }
}
.detail-title {
  width: 100%;
}
.detail-title.center {
  text-align: center;
}
.detail-title .headline {
  font-family: "Roboto-Medium";
  font-size: 3.541666666666667vw;
  color: #333333;
  line-height: 1.1;
}
@media screen and (max-width: 991px) {
  .detail-title .headline {
    font-size: .6rem;
  }
}
@media screen and (max-width: 480px) {
  .detail-title .headline {
    font-size: .64rem;
  }
}
.detail-title .headline.white {
  color: #FFFFFF;
}
.detail-title .headline.gradient {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.detail-title .headline span {
  display: inline;
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.detail-title .subtitle {
  font-family: "Roboto-Medium";
  font-size: 2.5vw;
  color: #333333;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  .detail-title .subtitle {
    font-size: .48rem;
  }
}
@media screen and (max-width: 480px) {
  .detail-title .subtitle {
    font-size: .54rem;
  }
}
.detail-title .subtitle.white {
  color: #FFFFFF;
}
.detail-title .text {
  margin-top: 0.15rem;
  color: #666666;
  font-size: 1.875vw;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .detail-title .text {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .detail-title .text {
    font-size: 0.4rem;
  }
}
@media screen and (min-width: 992px) {
  .detail-title .text {
    margin-top: 0.78125vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-title .text {
    margin-top: 0.25rem;
  }
}
.detail-title .text.white {
  color: #FFFFFF;
}
.detail-title .desc {
  margin-top: 0.42rem;
  color: #666666;
  font-size: 1.25vw;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .detail-title .desc {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .detail-title .desc {
    font-size: 0.29rem;
  }
}
@media screen and (min-width: 992px) {
  .detail-title .desc {
    margin-top: 2.1875vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-title .desc {
    margin-top: 0.25rem;
  }
}
.detail-title .desc.white {
  color: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .detail-section1 .box {
    flex-wrap: wrap;
  }
}
.detail-section1 .box .imgbox {
  width: 49%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .detail-section1 .box .imgbox {
    width: 100%;
  }
}
.detail-section1 .box .imgbox img {
  display: block;
  width: 100%;
}
.detail-section1 .box .textbox {
  width: 49%;
  padding-left: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .detail-section1 .box .textbox {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.detail-section1 .box .textbox .detail-title {
  min-height: 80%;
}
@media screen and (max-width: 991px) {
  .detail-section2 .box {
    flex-wrap: wrap;
  }
}
.detail-section2 .box .imgbox {
  width: 49%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .detail-section2 .box .imgbox {
    width: 100%;
  }
}
.detail-section2 .box .imgbox img {
  display: block;
  width: 100%;
}
.detail-section2 .box .textbox {
  width: 49%;
  padding-right: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .detail-section2 .box .textbox {
    width: 100%;
    padding-right: 0;
    margin-top: 0.5rem;
  }
}
.detail-section2 .box .textbox .detail-title {
  min-height: 72%;
}
@media screen and (max-width: 991px) {
  .detail-section3 .box {
    flex-wrap: wrap;
  }
}
.detail-section3 .box .imgbox {
  width: 49%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .detail-section3 .box .imgbox {
    width: 100%;
  }
}
.detail-section3 .box .imgbox img {
  display: block;
  width: 100%;
}
.detail-section3 .box .textbox {
  width: 49%;
  padding-left: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .detail-section3 .box .textbox {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.detail-section3 .box .textbox .detail-title {
  min-height: 72%;
}
@media screen and (max-width: 991px) {
  .detail-section4 .box {
    flex-wrap: wrap;
  }
}
.detail-section4 .box .imgbox {
  width: 49%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .detail-section4 .box .imgbox {
    width: 100%;
  }
}
.detail-section4 .box .imgbox img {
  display: block;
  width: 100%;
}
.detail-section4 .box .textbox {
  width: 49%;
  padding-right: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .detail-section4 .box .textbox {
    width: 100%;
    padding-right: 0;
    margin-top: 0.5rem;
  }
}
.detail-section4 .box .textbox .detail-title {
  min-height: 72%;
}
@media screen and (max-width: 991px) {
  .detail-section5 .box {
    flex-wrap: wrap;
  }
}
.detail-section5 .box .imgbox {
  margin-top: 3.90625%;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .detail-section5 .box .imgbox {
    margin-top: 0.5rem;
  }
}
.detail-section5 .box .imgbox ul li {
  width: 23.8%;
  margin: 0 0.6%;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .detail-section5 .box .imgbox ul li {
    width: 48%;
    margin-right: 4%;
    margin-left: 0;
  }
  .detail-section5 .box .imgbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.detail-section5 .box .imgbox ul li .pic {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.detail-section5 .box .imgbox ul li .pic img {
  display: block;
  width: 100%;
}
.detail-section5 .box .imgbox ul li .sp {
  margin-top: 0.15rem;
  color: #ffffff;
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .detail-section5 .box .imgbox ul li .sp {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .detail-section5 .box .imgbox ul li .sp {
    font-size: 0.29rem;
  }
}
@media screen and (min-width: 992px) {
  .detail-section5 .box .imgbox ul li .sp {
    margin-top: 0.78125vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section5 .box .imgbox ul li .sp {
    margin-top: 15px;
  }
}
.detail-section5 .box .textbox {
  width: 100%;
  box-sizing: border-box;
}
.detail-section6 {
  position: relative;
}
.detail-section6 .box {
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .detail-section6 .box {
    top: 6.25vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section6 .box {
    position: static;
    padding-top: 1rem;
  }
}
.detail-section6 .box .textbox {
  width: 48%;
}
@media screen and (max-width: 991px) {
  .detail-section6 .box .textbox {
    width: 100%;
  }
}
.detail-section6 .imgbox {
  width: 100%;
  overflow: hidden;
}
.detail-section6 .imgbox img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .detail-section7 .box {
    flex-wrap: wrap;
  }
}
.detail-section7 .box .imgbox {
  width: 49%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .detail-section7 .box .imgbox {
    width: 100%;
  }
}
.detail-section7 .box .imgbox img {
  display: block;
  width: 100%;
}
.detail-section7 .box .textbox {
  width: 49%;
  padding-left: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .detail-section7 .box .textbox {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.detail-section7 .box .textbox .detail-title .desc {
  margin-top: 0.12rem;
}
@media screen and (min-width: 992px) {
  .detail-section7 .box .textbox .detail-title .desc {
    margin-top: 0.625vw;
  }
}
.detail-section7 .box .textbox .detail-title .text {
  margin-top: 0.36rem;
}
@media screen and (min-width: 992px) {
  .detail-section7 .box .textbox .detail-title .text {
    margin-top: 1.875vw;
  }
}
.detail-section8 .box .imgbox {
  margin-top: 0.2rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .detail-section8 .box .imgbox {
    margin-top: 1.05vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section8 .box .imgbox {
    margin-top: 0.5rem;
  }
}
.detail-section8 .box .imgbox img {
  display: block;
  width: 100%;
}
.detail-section8 .box .textbox {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .detail-section9 .box {
    flex-wrap: wrap;
  }
}
.detail-section9 .box .imgbox {
  width: 49%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .detail-section9 .box .imgbox {
    width: 100%;
  }
}
.detail-section9 .box .imgbox img {
  display: block;
  width: 100%;
}
.detail-section9 .box .textbox {
  width: 49%;
  padding-left: 2.6%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .detail-section9 .box .textbox {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.detail-section10 .box .imgbox {
  margin-top: 0.5rem;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .detail-section10 .box .imgbox {
    margin-top: 2.6041667vw;
  }
}
.detail-section10 .box .imgbox img {
  display: block;
  margin: auto;
  max-width: 100%;
}
.detail-section10 .box .textbox {
  width: 100%;
  box-sizing: border-box;
}
.detail-section11 .box .imgbox {
  margin-top: 0.5rem;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .detail-section11 .box .imgbox {
    margin-top: 2.6041667vw;
  }
}
.detail-section11 .box .imgbox img {
  display: block;
  margin: auto;
  max-width: 100%;
}
.detail-section11 .box .textbox {
  width: 100%;
  box-sizing: border-box;
}
.detail-section12 {
  position: relative;
}
.detail-section12 .box {
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .detail-section12 .box {
    top: 6.25vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section12 .box {
    position: static;
    padding-top: 1rem;
  }
}
.detail-section12 .box .contain {
  display: flex;
  justify-content: flex-end;
}
.detail-section12 .box .contain .textbox {
  width: 44%;
}
@media screen and (max-width: 991px) {
  .detail-section12 .box .contain .textbox {
    width: 100%;
  }
}
.detail-section12 .box .contain .textbox .detail-title .desc {
  margin-top: 0.12rem;
}
@media screen and (min-width: 992px) {
  .detail-section12 .box .contain .textbox .detail-title .desc {
    margin-top: 0.625vw;
  }
}
.detail-section12 .imgbox {
  width: 100%;
  overflow: hidden;
}
.detail-section12 .imgbox img {
  display: block;
  width: 100%;
}
.detail-section13 .box .imgbox {
  margin-top: 0.5rem;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .detail-section13 .box .imgbox {
    margin-top: 2.6041667vw;
  }
}
.detail-section13 .box .imgbox img {
  display: block;
  margin: auto;
  max-width: 100%;
}
.detail-section13 .box .textbox {
  width: 100%;
  box-sizing: border-box;
}
.detail-section14 .box .textbox {
  width: 100%;
  box-sizing: border-box;
}
.detail-section14 .box .imgbox {
  margin-top: 0.5rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .detail-section14 .box .imgbox {
    margin-top: 2.6041667vw;
  }
}
.detail-section14 .box .imgbox .itemwrap {
  row-gap: 0.3rem;
}
@media screen and (min-width: 992px) {
  .detail-section14 .box .imgbox .itemwrap {
    row-gap: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section14 .box .imgbox .itemwrap {
    row-gap: 20px;
  }
}
.detail-section14 .box .imgbox .itemwrap .item {
  width: 32%;
  margin-right: 2%;
}
.detail-section14 .box .imgbox .itemwrap .item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .detail-section14 .box .imgbox .itemwrap .item {
    width: 48%;
    margin-right: 4%;
  }
  .detail-section14 .box .imgbox .itemwrap .item:nth-child(3n) {
    margin-right: 4%;
  }
  .detail-section14 .box .imgbox .itemwrap .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .detail-section14 .box .imgbox .itemwrap .item {
    width: 100%;
    margin-right: 0 !important;
  }
}
.detail-section14 .box .imgbox .itemwrap .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .detail-section14 .box .imgbox .itemwrap .item .img {
    border-radius: 0.5208333vw;
  }
}
.detail-section14 .box .imgbox .itemwrap .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-section14 .box .imgbox .itemwrap .item .txt {
  margin-top: 0.15rem;
  text-align: center;
  color: #333333;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .detail-section14 .box .imgbox .itemwrap .item .txt {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .detail-section14 .box .imgbox .itemwrap .item .txt {
    margin-top: 0.78125vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section14 .box .imgbox .itemwrap .item .txt {
    margin-top: 12px;
  }
}
.detail-section15 .box .textbox {
  width: 100%;
  box-sizing: border-box;
}
.detail-section15 .box .imgbox {
  margin-top: 0.5rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .detail-section15 .box .imgbox {
    margin-top: 2.6041667vw;
  }
}
.detail-section15 .box .imgbox .itemwrap {
  row-gap: 0.3rem;
}
@media screen and (min-width: 992px) {
  .detail-section15 .box .imgbox .itemwrap {
    row-gap: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section15 .box .imgbox .itemwrap {
    row-gap: 20px;
  }
}
.detail-section15 .box .imgbox .itemwrap .item {
  width: 49%;
  margin-right: 2%;
}
.detail-section15 .box .imgbox .itemwrap .item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .detail-section15 .box .imgbox .itemwrap .item {
    width: 100%;
    margin-right: 0 !important;
  }
}
.detail-section15 .box .imgbox .itemwrap .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 49.06914893617021%;
  border-radius: 10px;
  overflow: hidden;
  border: #0075bf solid 1px;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .detail-section15 .box .imgbox .itemwrap .item .img {
    border-radius: 0.5208333vw;
  }
}
.detail-section15 .box .imgbox .itemwrap .item .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
}
.detail-section15 .box .imgbox .itemwrap .item .txt {
  margin-top: 0.15rem;
  text-align: center;
  color: #333333;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .detail-section15 .box .imgbox .itemwrap .item .txt {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .detail-section15 .box .imgbox .itemwrap .item .txt {
    margin-top: 0.78125vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section15 .box .imgbox .itemwrap .item .txt {
    margin-top: 12px;
  }
}
.detail-section16 .box .textbox {
  width: 100%;
  box-sizing: border-box;
}
.detail-section16 .box .imgbox {
  margin-top: 0.5rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .detail-section16 .box .imgbox {
    margin-top: 2.6041667vw;
  }
}
.detail-section16 .box .imgbox .itemwrap {
  row-gap: 0.3rem;
}
@media screen and (min-width: 992px) {
  .detail-section16 .box .imgbox .itemwrap {
    row-gap: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-section16 .box .imgbox .itemwrap {
    row-gap: 20px;
  }
}
.detail-section16 .box .imgbox .itemwrap .productitem {
  width: 23%;
  margin-right: 2%;
}
.detail-section16 .box .imgbox .itemwrap .productitem:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .detail-section16 .box .imgbox .itemwrap .productitem {
    width: 48%;
    margin-right: 4%;
  }
  .detail-section16 .box .imgbox .itemwrap .productitem:nth-child(4n) {
    margin-right: 4%;
  }
  .detail-section16 .box .imgbox .itemwrap .productitem:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .detail-section16 .box .imgbox .itemwrap .productitem {
    width: 100%;
    margin-right: 0% !important;
  }
}
.detail-edit {
  color: #666666;
  font-size: 1.25vw;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .detail-edit {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .detail-edit {
    font-size: 0.29rem;
  }
}
.detail-edit img {
  max-width: 100%;
  display: block;
  margin: auto;
  width: 1280px;
}
@media screen and (max-width: 1280px){
	.detail-edit img{
		width: 100%;
	}
}
.c-section {
  padding-top: 0.8rem;
  margin-top: -0.8rem;
}
.c-section{
	display: none;
}
.c-section.on{
	display: block;
}
@media screen and (min-width: 992px) {
  .c-section {
    padding-top: 4.167vw;
    margin-top: -4.167vw;
  }
}
@media screen and (max-width: 991px) {
  .c-section {
    padding-top: 60px;
    margin-top: -60px;
  }
}
.specification .box {
  color: #666666;
  font-size: 1.25vw;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .specification .box {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .specification .box {
    font-size: 0.29rem;
  }
}
@media screen and (max-width: 991px) {
  .specification .box {
    overflow-y: auto;
  }
}
.specification .box table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .specification .box table {
    min-width: 800px;
  }
}
.specification .box table th {
  background: #ededed;
  height: 0.8rem;
  font-family: "Roboto-Medium";
  color: #000000;
  font-size: 0.9375vw;
  text-align: center;
  padding: 0 0.15rem;
  box-sizing: border-box;
  border: #dddddd solid 1px;
}
@media screen and (max-width: 991px) {
  .specification .box table th {
    font-size: 16px;
  }
}
.specification .box table td {
  height: 1rem;
  font-family: "Roboto-Regular";
  color: #666666;
  font-size: 0.8333333333333333vw;
  text-align: center;
  padding: 0 0.15rem;
  box-sizing: border-box;
  border: #dddddd solid 1px;
}
@media screen and (max-width: 991px) {
  .specification .box table td {
    font-size: 14px;
  }
}
.specification .box table td img {
  max-width: 3rem;
  max-height: 1.5rem;
}



.search-result .contain > div {
  margin-bottom: 6%;
}
@media screen and (max-width: 991px) {
  .search-result .contain > div {
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 767px) {
  .search-result .contain > div {
    margin-bottom: 0.7rem;
  }
}
.search-result .contain > div:last-child {
  margin-bottom: 0;
}
.search-result .box .item {
  width: 100%;
  margin-bottom: 2%;
  padding-bottom: 2%;
  border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
}
@media screen and (max-width: 991px) {
  .search-result .box .item {
    align-items: center;
    margin-bottom: 3%;
    padding-bottom: 2.5%;
  }
}
@media screen and (max-width: 767px) {
  .search-result .box .item {
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
    padding-bottom: 0.2rem;
  }
}
.search-result .box .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.search-result .box .item:hover .text .title {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.search-result .box .item:hover .text .btn span {
  background: -webkit-linear-gradient(to right, #43b9d4, #184a9e);
  background: linear-gradient(to right, #43b9d4, #184a9e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.search-result .box .item:hover .text .btn span i {
  background: url(../images/arrow-right2.png) center no-repeat;
  background-size: 100% auto;
}
.search-result .box .item .img {
  width: 32%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .search-result .box .item .img {
    border-radius: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .search-result .box .item .img {
    width: 42%;
  }
}
@media screen and (max-width: 767px) {
  .search-result .box .item .img {
    width: 100%;
  }
}
.search-result .box .item .img img {
  display: block;
  width: 100%;
}
.search-result .box .item .text {
  width: 68%;
  padding: 1% 2%;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .search-result .box .item .text {
    width: 58%;
  }
}
@media screen and (max-width: 767px) {
  .search-result .box .item .text {
    margin-top: 0.3rem;
    width: 100%;
  }
}
.search-result .box .item .text .title {
  color: #333333;
  font-size: 0.9375vw;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991px) {
  .search-result .box .item .text .title {
    font-size: 16px;
  }
}
.search-result .box .item .text .date {
  margin-top: 0.12rem;
  color: #666666;
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .search-result .box .item .text .date {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .search-result .box .item .text .date {
    margin-top: 0.625vw;
  }
}
.search-result .box .item .text .desc {
  margin-top: 0.18rem;
  color: #666666;
  font-size: 0.7291666666666667vw;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991px) {
  .search-result .box .item .text .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .search-result .box .item .text .desc {
    margin-top: 0.9375vw;
  }
}
.search-result .box .item .text .btn {
  margin-top: 0.3rem;
}
@media screen and (min-width: 992px) {
  .search-result .box .item .text .btn {
    margin-top: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .search-result .box .item .text .btn {
    margin-top: 0.25rem;
  }
}
.search-result .box .item .text .btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 0.7291666666666667vw;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .search-result .box .item .text .btn span {
    font-size: 14px;
  }
}
.search-result .box .item .text .btn span i {
  display: inline-block;
  margin-left: 0.15rem;
  width: 0.06rem;
  height: 0.11rem;
  background: url(../images/arrow-right1.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 992px) {
  .search-result .box .item .text .btn span i {
    margin-left: 0.78125vw;
    width: 0.3125vw;
    height: 0.5729166666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .search-result .box .item .text .btn span i {
    margin-left: 10px;
    width: 5px;
    height: 10px;
  }
}


.productitem .img{
	position: relative;
}
.add-depict {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.3rem;
  overflow: hidden;
  transition: all 0.5s ease;
}
.productitem:hover .add-depict,
.index_product .box .carousel .swiper .swiper-wrapper .swiper-slide .item:hover .add-depict{
	top: 0;
}
.add-depict .addtext {
	text-align: center;
  color: #FFFFFF;
}
.index_product .box .carousel .item .add-depict .addtext {
  font-size: 1.666666666666667vw;
}
@media screen and (max-width: 991px) {
  .index_product .box .carousel .item .add-depict .addtext {
    font-size: .32rem;
  }
}
@media screen and (max-width: 480px) {
  .index_product .box .carousel .item .add-depict .addtext {
    font-size: .36rem;
  }
}
.productitem .add-depict .addtext {
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .productitem .add-depict .addtext {
    font-size: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .productitem .add-depict .addtext {
    font-size: 0.29rem;
  }
}
.p-hide{
  display: none;
}

@media screen and (max-width: 1200px) {
  .p-hide{
    display: block;
  }
  .m-hide{
    display: none;
  }
}
