/*================================================= video ==========================================*/
.video {
  width: 70%;
}

.video_box .big_p {
  display: block;
  width: 100%;
}

.video_box {
  position: relative;
}

.play_box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 180px 0 180px 240px;
  height: 100%;
  background-image: url(../image/index/矩形\ 47.png);
  background-position: 0 center;
  background-repeat: no-repeat;
  background-size: 80% 100%;
  box-sizing: border-box;
}

.play_btn {
  display: block;
  width: 30%;
  cursor: pointer;
}

.play_btn:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.play_box h4,
.play_box h5 {
  color: #fff;
}

.play_box h5 {
  margin: 60px 0 0 0;
}

.popupwindows_box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  /*display: none;*/
}

.popupwindows_box .video_border {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 20px;
}

.video_border p {
  margin: 20px 0 0 0;
  color: #fff;
}

/* accordion */
.accordion_box {
  position: relative;
}

/* our_advantagestitle */
.our_advantagestitle h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.our_advantagestitle h4::after {
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 260px;
  height: 20px;
  background: #1A6BC6;
  opacity: 0.3;
}

/* ======= */
/* body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: sans-serif;
} */

.options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  /* min-width: 600px;
  max-width: 900px; */
  /* width: calc(100% - 100px); */
  height: 600px;
  margin: 60px 0 0 0;
}

@media screen and (max-width: 718px) {
  .options {
    min-width: 520px;
  }

  .options .option:nth-child(5) {
    display: none;
  }
}

@media screen and (max-width: 638px) {
  .options {
    min-width: 440px;
  }

  .options .option:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 558px) {
  .options {
    min-width: 360px;
  }

  .options .option:nth-child(3) {
    display: none;
  }
}

@media screen and (max-width: 478px) {
  .options {
    min-width: 280px;
  }

  .options .option:nth-child(2) {
    display: none;
  }
}

.options .option {
  position: relative;
  overflow: hidden;
  min-width: 20%;
  /* margin: 10px; */
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: 100% 120% !important;
  background-position: center;
  background-repeat: no-repeat !important;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option:nth-child(1) {
  --defaultBackground: #1A6BC6;
}

.options .option:nth-child(2) {
  --defaultBackground: #1A6BC6;
}

.options .option:nth-child(3) {
  --defaultBackground: #1A6BC6;
}

.options .option:nth-child(4) {
  --defaultBackground: #1A6BC6;
}

.options .option:nth-child(5) {
  --defaultBackground: #1A6BC6;
}

.options .option:nth-child(6) {
  --defaultBackground: #1A6BC6;
}

.options .option.active {
  display: block;
  flex-grow: 10000;
  -webkit-transform: scale(1);
  transform: scale(1);
  max-width: 100%;
  margin: 0px;
  /* border-radius: 40px; */
  background-size: auto 100%;
  /*&:active {
     transform:scale(0.9);
  }*/
}

.options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.options .option.active .label {
  display: flex;
  padding: 50px;
  width: 100%;
  height: 100%;
  /* bottom: 60px; */
  left: 20px;
  box-sizing: border-box;
}

.options .option.active .label .info>div {
  left: 0px;
  opacity: 1;
}

.options .option:not(.active) {
  flex-grow: 1;
  /* border-radius: 30px; */
}

.options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.options .option:not(.active) .label {
  left: 61%;
  top: 90%;
  transform: translate(-50%, -50%);
}

.options .option:not(.active) .label .info>div {
  left: 20px;
  opacity: 0;
}

.options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--defaultBackground);
}

#options_one .option .label .icon {
  position: absolute;
  left: -60%;
  bottom: -30%;
  min-width: 20px;
  max-width: 20px;
  height: 110px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}

#options_one .option {
  margin: 0 20px;
  min-width: 12%;
  border-radius: 20px;
}

#options_one .option.active .label {
  padding: 50px 20px;
  left: 0;
}



.options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  /* white-space: pre; */
}

.options .option .label .info>div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

.options .option .label .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}

.options .option .label .info .sub {
  display: block;
  width: 70%;
  transition-delay: .1s;
  line-height: 40px;
}

.our_advantages {
  padding: 100px 0;
  background-image: url(../image/index/矩形\ 49\ \(3\).png);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* about */


/* * {
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
} */

/* *:focus {
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
} */

/* body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-family: "微软雅黑", microsoft yahei;
  color: #333;
  background: #fff;
} */

/* body,
div,
span,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
legend,
caption,
tbody,
tfoot,
thead,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  padding: 0;
  margin: 0;
}

ul,
li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
} */

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}

.main {
  padding: 60px 0;
  /* margin: 0 auto; */
  /* max-width: 1000px; */
  width: 50%;
}

.numCount {
  margin: 0 -10px;
}

.numCount li {
  float: left;
  width: 25%;
  text-align: center;
}

.numCount li .item {
  margin: 0 10px;
}

.numCount li .numU {
  line-height: 1.3;
}

.numCount li .numCX {
  font-size: 50px;
  color: #1A6BC6;
  font-weight: bold;
}

.numCount li .numU .unitC {
  font-size: 100%;
  line-height: 1.3;
  margin-left: 0.3em;
  color: #1A6BC6;
}

/* .numCount li .numU sup {
  vertical-align: top;
} */

.numCount li .numU sub {
  vertical-align: baseline;
}

@media (max-width:800px) {
  .numCount li .numCX {
    font-size: 36px;
  }
}

@media (max-width:640px) {
  .numCount li .numCX {
    font-size: 7vw;
  }
}

@media (max-width:480px) {
  .numCount {
    font-size: 0.5vw;
  }
}

.about_us_box {
  padding: 60px 0 135px 0;
  background-image: url(../image/index/about_bg.png);
  background-position: 0 center;
  background-repeat: no-repeat;
  background-size: 65% 100%;
}

.about_us {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* width: 70%; */
}

.about_us h5 {
  margin: 140px 0 75px 0;
}

.about_us p {
  line-height: 40px;
  width: 70%;
  text-align: right;
}

.about_us a {
  display: block;
  margin: 20px 0 0 0;
  padding: 20px 0;
  width: 15%;
  background: #1A6BC6;
  color: #fff;
  text-align: center;
}

.water {
  /* width: 400px; */
  /* height: 400px; */
  background-color: skyblue;
  /* border-radius: 50%; */
  position: relative;
  /* box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, .5), 0 4px 10px 0 rgba(0, 0, 0, .5); */
  overflow: hidden;
}

.water:before,
.water:after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  left: -50%;
  top: 40px;
  background-color: #fff;
}

.water:before {
  border-radius: 45%;
  background: rgba(255, 255, 255, .7);
  animation: wave 5s linear infinite;
}

.water:after {
  border-radius: 35%;
  background: rgba(255, 255, 255, .3);
  animation: wave 5s linear infinite;
}

@keyframes wave {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* news */
.news_act {
  color: #1A6BC6;
}

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

.news_titbox .l {
  width: 40%;
}

.news_titbox .l dl {
  display: flex;
  align-items: flex-end;
  /* justify-content: space-between; */
}

.news_titbox .l dl dd {
  padding: 0 40px;
  border-right: 1px solid #BAD2EE;
}

.news_titbox .l dl dd:last-child {
  border: none;
}

.news_box {
  padding: 100px 0;
}

.news_titbox {
  margin: 0 0 80px 0;
}

.tiemandbrowse {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 30px 0;
}

.browse_box {
  display: flex;
}

.news_content .l {
  width: 50%;
}

.news_content .l .p_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 435px;
}

.news_content .l .p_box img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.news_content .l .synopsis {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news_box {
  position: relative;
}

/* ======= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: linear-gradient(60deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%); */
  color: white;
  z-index: -1;
}

.header svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.logo {
  width: 50px;
  fill: white;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-header {
  height: 65vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 300px;
  max-height: 300px;
}

.content {
  position: relative;
  /* height: 20vh; */
  text-align: center;
  background-color: white;
}

/* Animation */

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }

  .content {
    height: 30vh;
  }

  h1 {
    font-size: 24px;
  }
}

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

.news_content .r {
  width: 40%;
}

.news_content .r .list_timeandbrowsebox {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 0 0;
}

.news_content .r .list_timeandbrowsebox .browse {
  display: flex;
  display: none;
}

.news_content .r .todetailsbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0 0 0;
  display: none;
}

.news_content .r ul li a {
  display: block;
  padding: 30px 0;
  width: 100%;
  height: 100%;
}

.news_content .r ul li a:hover .browse {
  display: flex;
  transition: all 0.6s;
}

.news_content .r ul li a:hover .todetailsbox {
  display: flex;
  transition: all 0.6s;
}

.news_content .r ul {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news_content .r ul li a {
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.news_content .r ul li a:hover {
  color: #000;
  transition: all 0.6s;
  border-bottom: 1px solid #1A6BC6;
  box-sizing: border-box;
}

.news_content .r ul {
  border-bottom: none;
}

.news_content .l {
  margin: 0 0 80px 0;
}

.news_content {
  display: none;
}

.news_unit {
  cursor: pointer;
}

/*================================================= product ==========================================*/
.product_box {
  padding: 60px 0 0 0;
}

.product .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px 0;
  color: #fff;
}

.product .title a {
  color: #fff;
}

.product_box {
  background-image: url(../image/index/明星背景.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-size: cover;
  background-attachment: fixed;
}

.product_content {
  display: flex;
}

.product_content .l {
  width: 60%;
}

.product_content .r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 80px;
  width: 40%;
  background-color: #EFEFEF;
  box-sizing: border-box;
}

.product_content .r div {
  line-height: 32px;
}

.swiper-containerproduct {
  overflow: hidden;
}

.bannerproduct {
  position: relative;
  height: 345px;
}

.bannerproduct .swiper-slide img {
  display: block;
  width: 100%;
  height: 345px;
}

.bannerproduct .swiper-pagination-bullet {
  background-color: #fff !important;
  opacity: 1 !important;
}

.bannerproduct .swiper-pagination-bullet-active {
  background-color: #1A6BC6 !important;
}

.product_content .r a {
  animation: ax 5s infinite;
  o-animation: ax 5s infinite;
}

@keyframes ax {
  0% {
    color: #000;
  }

  25% {
    color: #1A6BC6;
  }

  50% {
    color: #000;
  }

  75% {
    color: #1A6BC6;
  }

  100% {
    color: #000;
  }
}

/*======= four_unit =======*/
/* .four_unit {
  margin: 100px 0 0 0;
}

.four_unit .p_box {
  position: relative;
}

.four_unit ul li {
  width: 45%;
}

.four_unit ul li a {
  display: block;
  width: 100%;
}

.four_unit .p_box .four_utit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
}

.four_unit .p_box .four_utit h4 {
  color: #fff;
} */

.homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}

.banneradvantages {
  display: none;
}

.banneradvantages .swiper-slide {
  position: relative;
  height: 700px;
}

.text_contentadv {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.text_contentadv h4 {
  margin: 0 0 15px 0;
}

.text_contentadv span {
  line-height: 1.5;
}

.our_advantagestitle h4 {
  margin: 0 0 15px 0;
}

.swiper-containeradvantages {
  overflow: hidden;
}

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

  /* vieo */
  .play_box h4 {
    font-size: 45px;
  }

  .play_box h5 {
    font-size: 35px;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  .video_border p {
    font-size: 22px;
  }

  /* product */
  .product_box {
    padding: 55px 0 0 0;
  }

  .product .title h4 {
    font-size: 36px;
  }

  .product .title a {
    font-size: 22px;
  }

  .product_content .r {
    padding: 35px 70px;
  }

  .product_content .r h4 {
    font-size: 20px;
  }

  .product .title {
    margin: 0 0 35px 0;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
    min-width: 220px !important;
    width: 220px !important;
    height: 130px !important;
  }

  .main-group {
    margin: 90px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 55px 0 !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon .homepage_HeroNameContainer .homepage_HeroName {
    font-size: 16px !important;
  }

  .main-group .img-group .page-one-title {
    width: 110px !important;
    height: 110px !important;
    font-size: 16px !important;
  }

  .item-group .content {
    top: 130px !important;
  }

  .our_advantagestitle h4 {
    font-size: 34px;
  }

  /* 关于我们 */
  .about_us h4 {
    font-size: 34px;
  }

  .about_us h5 {
    margin: 130px 0 70px 0;
    font-size: 22px;
  }

  .about_us p {
    font-size: 18px;
    line-height: 35px;
  }

  .numCount li .numCX {
    font-size: 45px;
  }

  .about_us a {
    margin: 15px 0 0 0;
    font-size: 18px;
  }

  .main {
    padding: 55px 0;
  }

  .about_us_box {
    padding: 55px 0 120px 0;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 34px;
  }

  .news_titbox .l dl dd {
    font-size: 22px;
  }

  .news_titbox .r a {
    font-size: 24px;
  }

  .news_titbox {
    margin: 0 0 75px 0;
  }

  .news_box {
    padding: 95px 0;
  }

  .tiemandbrowse {
    margin: 55px 0 25px 0;
  }

  .tiemandbrowse p,
  .browse_box {
    font-size: 20px;
  }

  .news_content .l .synopsis p {
    font-size: 24px;
  }

  .news_content .r ul li a {
    padding: 25px 0;
  }

  .news_content .r ul li a h4 {
    font-size: 18px;
  }

  .list_timeandbrowsebox {
    font-size: 16px;
  }

  .news_content .r .list_timeandbrowsebox {
    margin: 35px 0 0 0;
  }

  .news_content .r .todetailsbox {
    margin: 65px 0 0 0;
  }

  .our_advantages {
    padding: 90px 0;
  }

  #options_one .option .label .info .sub h4 {
    font-size: 24px;
  }
}

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

  /* vieo */
  .play_box h4 {
    font-size: 40px;
  }

  .play_box h5 {
    font-size: 30px;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  .video_border p {
    font-size: 20px;
  }

  /* product */
  .product_box {
    padding: 50px 0 0 0;
  }

  .product .title h4 {
    font-size: 32px;
  }

  .product .title a {
    font-size: 20px;
  }

  .product_content .r {
    padding: 30px 60px;
  }

  .product_content .r h4 {
    font-size: 18px;
  }

  .product_content .r div {
    font-size: 14px;
    line-height: 30px;
  }

  .product_content .r a {
    font-size: 16px;
  }

  .product .title {
    margin: 0 0 30px 0;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
    min-width: 200px !important;
    width: 200px !important;
    height: 120px !important;
  }

  .main-group {
    margin: 80px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 50px 0 !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon .homepage_HeroNameContainer .homepage_HeroName {
    font-size: 14px !important;
  }

  .main-group .img-group .page-one-title {
    width: 100px !important;
    height: 100px !important;
    font-size: 14px !important;
  }

  .item-group .content {
    top: 115px !important;
  }

  .our_advantagestitle h4 {
    font-size: 32px;
  }

  /* 关于我们 */
  .about_us h4 {
    font-size: 32px;
  }

  .about_us h5 {
    margin: 120px 0 65px 0;
    font-size: 20px;
  }

  .about_us p {
    font-size: 16px;
    line-height: 30px;
  }

  .numCount li .numCX {
    font-size: 40px;
  }

  .about_us a {
    margin: 15px 0 0 0;
    font-size: 16px;
  }

  .main {
    padding: 50px 0;
  }

  .about_us_box {
    padding: 50px 0 110px 0;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 32px;
  }

  .news_titbox .l dl dd {
    font-size: 20px;
  }

  .news_titbox .r a {
    font-size: 22px;
  }

  .news_titbox {
    margin: 0 0 70px 0;
  }

  .news_box {
    padding: 90px 0;
  }

  .tiemandbrowse {
    margin: 50px 0 20px 0;
  }

  .tiemandbrowse p,
  .browse_box {
    font-size: 18px;
  }

  .news_content .l .synopsis p {
    font-size: 22px;
  }

  .news_content .r ul li a {
    padding: 20px 0;
  }

  .news_content .r ul li a h4 {
    font-size: 16px;
  }

  .list_timeandbrowsebox {
    font-size: 14px;
  }

  .news_content .r .list_timeandbrowsebox {
    margin: 30px 0 0 0;
  }

  .news_content .r .todetailsbox {
    margin: 60px 0 0 0;
  }

  .our_advantages {
    padding: 80px 0;
  }

  #options_one .option .label .info .sub h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 1440px) {
.news_content .l .p_box {
    height: 335px;
}
  /* vieo */
  .play_box h4 {
    font-size: 35px;
  }

  .play_box h5 {
    font-size: 25px;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  .video_border p {
    font-size: 18px;
  }

  .play_btn {
    width: 90px;
    height: 90px;
  }

  /* product */
  .product_box {
    padding: 45px 0 0 0;
  }

  .product .title h4 {
    font-size: 28px;
  }

  .product .title a {
    font-size: 18px;
  }

  .product_content .r {
    padding: 25px 50px;
  }

  .product .title {
    margin: 0 0 25px 0;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
    min-width: 180px !important;
    width: 180px !important;
    height: 110px !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow {
    height: 130px !important;
  }

  .main-group {
    margin: 70px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 45px 0 !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon .homepage_HeroNameContainer .homepage_HeroName {
    font-size: 12px !important;
  }

  .item-group .content {
    top: 85px !important;
  }

  .options .option.active .label {
    padding: 45px;
  }

  .our_advantagestitle h4 {
    font-size: 30px;
  }

  /* 关于我们 */
  .about_us h4 {
    font-size: 30px;
  }

  .about_us h5 {
    margin: 110px 0 60px 0;
    font-size: 18px;
  }

  .about_us p {
    font-size: 14px;
    line-height: 30px;
  }

  .numCount li .numCX {
    font-size: 35px;
  }

  .about_us a {
    margin: 15px 0 0 0;
    font-size: 14px;
  }

  .main {
    padding: 45px 0;
  }

  .about_us_box {
    padding: 45px 0 100px 0;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 30px;
  }

  .news_titbox .l dl dd {
    font-size: 18px;
  }

  .news_titbox .r a {
    font-size: 20px;
  }

  .news_titbox {
    margin: 0 0 65px 0;
  }

  .news_box {
    padding: 85px 0;
  }

  .tiemandbrowse {
    margin: 45px 0 15px 0;
  }

  .tiemandbrowse p,
  .browse_box {
    font-size: 16px;
  }

  .news_content .l .synopsis p {
    font-size: 20px;
  }

  .news_content .r ul li a {
    padding: 15px 0;
  }

  .news_content .r ul li a h4 {
    font-size: 16px;
  }

  .list_timeandbrowsebox {
    font-size: 14px;
  }

  .news_content .r .list_timeandbrowsebox {
    margin: 25px 0 0 0;
  }

  .news_content .r .todetailsbox {
    margin: 55px 0 0 0;
  }

  .our_advantages {
    padding: 70px 0;
  }

  #options_one .option .label .info .sub h4 {
    font-size: 20px;
  }
}

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

  /* vieo */
  .play_box h4 {
    font-size: 30px;
  }

  .play_box h5 {
    font-size: 20px;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  .video_border p {
    font-size: 16px;
  }

  /* product */
  .product_box {
    padding: 40px 0 0 0;
  }

  .product .title h4 {
    font-size: 24px;
  }

  .product .title a {
    font-size: 16px;
  }

  .product_content .r {
    padding: 20px 40px;
  }

  .product .title {
    margin: 0 0 20px 0;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
    min-width: 160px !important;
    width: 160px !important;
    height: 100px !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow {
    height: 120px !important;
  }

  .main-group {
    margin: 60px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 40px 0 !important;
  }

  .item-group .content {
    top: 45px !important;
  }

  .options .option.active .label {
    padding: 40px;
  }

  .our_advantagestitle h4 {
    font-size: 28px;
  }

  /* 关于我们 */
  .indc {
    font-size: 14px;
  }

  .numCount li .numU .unitC {
    font-size: 14px;
  }

  .about_us h4 {
    font-size: 28px;
  }

  .about_us h5 {
    margin: 100px 0 55px 0;
    font-size: 16px;
  }

  .about_us p {
    font-size: 14px;
    line-height: 30px;
  }

  .numCount li .numCX {
    font-size: 30px;
  }

  .about_us a {
    margin: 15px 0 0 0;
    font-size: 14px;
  }

  .main {
    padding: 40px 0;
  }

  .about_us_box {
    padding: 40px 0 90px 0;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 28px;
  }

  .news_titbox .l dl dd {
    font-size: 16px;
  }

  .news_titbox .r a {
    font-size: 18px;
  }

  .news_titbox {
    margin: 0 0 60px 0;
  }

  .news_box {
    padding: 80px 0;
  }

  .tiemandbrowse {
    margin: 40px 0 15px 0;
  }

  .tiemandbrowse p,
  .browse_box {
    font-size: 14px;
  }

  .news_content .l .synopsis p {
    font-size: 18px;
  }

  .news_content .r .list_timeandbrowsebox {
    margin: 20px 0 0 0;
  }

  .news_content .r .todetailsbox {
    margin: 50px 0 0 0;
  }

  .our_advantages {
    padding: 60px 0;
  }

  #options_one .option .label .info .sub h4 {
    font-size: 18px;
  }

  #options_one .option .label .info .sub h5 {
    font-size: 16px;
  }

  #options_one .option .label .info .sub span {
    font-size: 14px;
  }

  .play_btn {
    width: 80px;
    height: 80px;
  }
}

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

  /* vieo */
  .play_box h4 {
    font-size: 25px;
  }

  .play_box h5 {
    font-size: 18px;
  }

  .play_box {
    padding: 150px 0 150px 240px;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  .video_border p {
    font-size: 14px;
  }

  /* product */
  .product_box {
    padding: 35px 0 0 0;
  }

  .product .title h4 {
    font-size: 20px;
  }

  .product .title a {
    font-size: 14px;
  }

  .product_content .r {
    padding: 15px 30px;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
    min-width: 140px !important;
    width: 140px !important;
    height: 90px !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow {
    height: 110px !important;
  }

  .main-group {
    margin: 50px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 35px 0 !important;
  }

  .item-group .content {
    top: 25px !important;
  }

  .our_advantagestitle h4 {
    font-size: 26px;
  }

  /* 关于我们 */
  .about_us h4 {
    font-size: 26px;
  }

  .about_us h5 {
    margin: 90px 0 50px 0;
  }

  .numCount li .numCX {
    font-size: 25px;
  }

  .main {
    padding: 35px 0;
  }

  .about_us_box {
    padding: 35px 0 80px 0;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 26px;
  }

  .news_titbox .l dl dd {
    font-size: 16px;
  }

  .news_titbox .r a {
    font-size: 16px;
  }

  .news_titbox {
    margin: 0 0 55px 0;
  }

  .news_box {
    padding: 75px 0;
  }

  .tiemandbrowse {
    margin: 35px 0 15px 0;
  }

  .news_content .l .synopsis p {
    font-size: 16px;
  }

  .news_content .r .list_timeandbrowsebox {
    margin: 15px 0 0 0;
  }

  .news_content .r .todetailsbox {
    margin: 45px 0 0 0;
  }

  .news_titbox .l {
    width: 50%;
  }

  .news_content .l .p_box {
    height: 300px;
  }

  .our_advantages {
    padding: 50px 0;
  }

  .play_btn {
    width: 70px;
    height: 70px;
  }
}

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

  /* vieo */
  .play_box h4 {
    font-size: 20px;
  }

  .play_box h5 {
    font-size: 16px;
  }

  .play_box {
    padding: 120px 0 120px 200px;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  /* product */
  .product_box {
    padding: 30px 0 0 0;
  }

  .product_content .r {
    padding: 15px 20px;
  }

  .bannerproduct {
    height: 100%;
  }

  .swiper-containerproduct {
    height: 100%;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
    min-width: 120px !important;
    width: 120px !important;
    height: 80px !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow {
    height: 100px !important;
  }

  .main-group {
    margin: 40px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 30px 0 !important;
  }

  .item-group .content {
    top: -15px !important;
  }

  .our_advantagestitle h4 {
    font-size: 24px;
  }

  /* 关于我们 */
  .about_us h4 {
    font-size: 24px;
  }

  .about_us h5 {
    margin: 80px 0 45px 0;
  }

  .numCount li .numCX {
    font-size: 20px;
  }

  .main {
    padding: 30px 0;
  }

  .about_us_box {
    padding: 30px 0 70px 0;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 24px;
  }

  .news_titbox .l dl dd {
    font-size: 16px;
  }

  .news_titbox .r a {
    font-size: 14px;
  }

  .news_titbox {
    margin: 0 0 50px 0;
  }

  .news_box {
    padding: 70px 0;
  }

  .tiemandbrowse {
    margin: 30px 0 15px 0;
  }

  .news_content .l .synopsis p {
    font-size: 16px;
  }

  .news_content .r .list_timeandbrowsebox {
    margin: 15px 0 0 0;
  }

  .news_content .r .todetailsbox {
    margin: 45px 0 0 0;
  }

  .news_content .l .p_box {
    height: 230px;
  }

  .news_titbox .l {
    width: 70%;
  }

  .our_advantages {
    padding: 40px 0;
  }

  .play_btn {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 980px) {
    .video {
    width: 65%;
}
    
  .text_contentadv .p_box {
    margin: 0 0 20px 0 !important;
  }

  /* vieo */
  .play_box {
    padding: 100px 0 100px 200px;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  /* product */
  .product_box {
    padding: 25px 0 0 0;
  }

  .product_content {
    flex-wrap: wrap;
  }

  .product_content .l,
  .product_content .r {
    width: 100%;
  }

  .product_content .r div {
    margin: 10px 0;
    line-height: 1.5;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
    min-width: 100px !important;
    width: 100px !important;
    height: 70px !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow {
    height: 90px !important;
  }

  .main-group {
    margin: 30px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 25px 0 !important;
  }

  .main-group .item-group {
    width: 100% !important;
  }

  .item-group .content {
    top: 215px !important;
  }

  .xsop {
    display: none;
  }

  .banneradvantages {
    display: block;
  }

  .our_advantagestitle h4 {
    font-size: 22px;
  }

  /* 关于我们 */
  .about_us h4 {
    font-size: 22px;
  }

  .about_us h5 {
    margin: 70px 0 40px 0;
  }

  .numCount li .numCX {
    font-size: 20px;
  }

  .main {
    padding: 25px 0;
    width: 60%;
  }

  .about_us_box {
    padding: 20px 0 60px 0;
  }

  .news_content {
    flex-wrap: wrap;
  }

  .news_content .l,
  .news_content .r {
    width: 100%;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 22px;
  }

  .news_titbox .l dl dd {
    font-size: 16px;
  }

  .news_titbox {
    margin: 0 0 45px 0;
  }

  .news_box {
    padding: 65px 0;
  }

  .tiemandbrowse {
    margin: 25px 0 15px 0;
  }

  .news_content .l .synopsis p {
    font-size: 14px;
  }

  .news_content .r .list_timeandbrowsebox {
    margin: 15px 0 0 0;
  }

  .news_content .r .todetailsbox {
    margin: 40px 0 0 0;
  }

  .news_content .l .p_box {
    height: 230px;
  }

  .news_content .l {
    margin: 0 0 30px 0;
  }

  .news_content .r ul li a h4 {
    font-size: 14px;
  }

  .todetailsbox {
    font-size: 16px;
  }

  .our_advantages {
    padding: 30px 0;
  }

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

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

  /* vieo */
  .play_box {
    padding: 60px 0 60px 150px;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  /* product */
  .product_box {
    padding: 20px 0 0 0;
  }

  .product_content .r div {
    line-height: 1.3;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon {
    min-width: 80px !important;
    width: 80px !important;
    height: 60px !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow {
    height: 80px !important;
  }

  .main-group {
    margin: 20px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 20px 0 !important;
  }

  .homepage_HeroGrid .homepage_HeroGridRow .homepage_HeroIcon .homepage_HeroNameContainer .homepage_HeroName {
    line-height: 1.5 !important;
  }

  .item-group .content {
    top: 70px !important;
  }

  .item-group .content .title {
    font-size: 16px !important;
  }

  .item-group .content .desc {
    line-height: 1.3 !important;
    font-size: 14px !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }

  .our_advantagestitle h4 {
    font-size: 20px;
  }

  /* 关于我们 */
  .about_us h4 {
    font-size: 20px;
  }

  .about_us h5 {
    margin: 30px 0 30px 0;
  }

  .main {
    padding: 20px 0;
  }

  .about_us_box {
    padding: 15px 0 20px 0;
  }

  .main {
    width: 70%;
  }

  .about_us p {
    line-height: 1.3;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 20px;
  }

  .news_titbox .l dl dd {
    font-size: 16px;
  }

  .news_titbox {
    margin: 0 0 20px 0;
  }

  .news_box {
    padding: 30px 0;
  }

  .tiemandbrowse {
    margin: 20px 0 15px 0;
  }

  .news_content .r .todetailsbox {
    margin: 35px 0 0 0;
  }

  .news_content .l .p_box {
    height: 230px;
  }

  .news_content .l {
    margin: 0 0 15px 0;
  }

  .todetailsbox {
    font-size: 14px;
  }

  .news_titbox .l {
    width: 80%;
  }

  .our_advantages {
    padding: 20px 0;
  }

  .play_btn {
    width: 40px;
    height: 40px;
  }
}

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

  /* vieo */
  .play_box {
    padding: 30px 0 30px 75px;
  }

  .play_box h5 {
    margin: 15px 0 0 0;
  }

  .video_border p {
    margin: 15px 0 0 0;
  }

  /* product */
  .product_box {
    padding: 15px 0 0 0;
  }

  .main-group {
    margin: 15px 0 0 0 !important;
  }

  .product_two {
    padding: 0 0 15px 0 !important;
  }

  .item-group .content {
    top: 15px !important;
  }

  .item-group .content .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }

  .banneradvantages .swiper-slide {
    height: 500px;
  }

  .our_advantagestitle h4 {
    font-size: 18px;
  }

  /* 关于我们 */
  .about_us h4 {
    font-size: 18px;
  }

  .about_us h5 {
    margin: 20px 0 20px 0;
  }

  .main {
    padding: 15px 0;
  }

  .about_us_box {
    padding: 15px 0 15px 0;
  }

  .main {
    width: 100%;
  }

  .about_us a {
    width: 25%;
  }

  /* 新闻中心 */
  .news_titbox .l dl dt {
    font-size: 18px;
  }

  .news_titbox .l dl dd {
    font-size: 16px;
  }

  .news_titbox {
    margin: 0 0 15px 0;
  }

  .news_box {
    padding: 15px 0;
  }

  .tiemandbrowse {
    margin: 15px 0 15px 0;
  }

  .news_content .r .todetailsbox {
    margin: 15px 0 0 0;
  }

  .news_content .l .p_box {
    height: 230px;
  }

  .news_content .l {
    margin: 0 0 15px 0;
  }

  .our_advantages {
    padding: 15px 0;
  }

  .play_btn {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 375px) {
  .content {
    height: 17vh;
  }

  .item-group .content .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .our_advantagestitle h4 {
    font-size: 16px;
  }
}