@charset "UTF-8";
:root {
  

      --main-color: #5050C0;
    --cyan-color: #71E2D2;
    --zyan-color: #5997FD;
    --yellow-color: #ffca1a;
    --text-color6: #666666;
    --text-color3: #333333;
    --green: #7FC615;
    --gyan: #53C5B5;
    --yellow: #ffca1a;

}

body {
  word-break: keep-all;
}

.bg_main {
  background: var(--main-color);
}

.bg_cyan {
  background: var(--cyan-color);
}
.bg_gyan {
    background: var(--gyan);
}

.bg_yellow {
  background: var(--yellow-color);
}
.bg_green{
    background: var(--green);
}

/*整站按钮动画*/
@-webkit-keyframes btn_ani {
  0% {
    background: rgba(0, 0, 0, 0.25);
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    background: transparent;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes btn_ani {
  0% {
    background: rgba(0, 0, 0, 0.25);
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    background: transparent;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

/*面包屑*/
.thumb {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 2.34375vw;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
}
.thumb li {
  height: 24px;
  position: relative;
  color: #fff;
}
.thumb li a,
.thumb li span {
  color: #fff;
}
.thumb li:first-child::before {
  content: none;
}
.thumb li:before {
  content: ">";
  font-size: 16px;
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}
.thumb li:first-child a {
  display: flex;
  line-height: 24px;
  align-items: center;
}
.thumb li:first-child svg {
  width: 16px;
  margin-right: 7px;
}

/*轮播按钮*/
.swiperbtns {
  display: flex;
  align-items: center;
  width: 100%;
}
.swiperbtns .common_scrollbar {
  flex: 1;
}
.swiperbtns .common_btn {
  margin-left: 7.2%;
  flex: none;
}
/*banner按钮*/
.banner_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner_btn a {
  width: 200px;
  height: 50px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  margin-right: 40px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}
.banner_btn a span {
  position: relative;
  z-index: 2;
}
.banner_btn a:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(
    to right,
    #fff 25%,
    /* 白色到 25% 位置 */ var(--cyan-color) 25%,
    /* 直接从 25% 开始用 #71D9C9，无过渡 */ var(--cyan-color) 62.5%,
    /* #71D9C9 到 62.5% 位置 */ #fff 62.5%,
    /* 直接从 62.5% 开始用白色，无过渡 */ #fff 68%,
    /* 白色到 68% 位置 */ var(--yellow-color) 68%,
    /* 直接从 68% 开始用 #FFCA1A，无过渡 */ var(--yellow-color) 87%,
    /* #FFCA1A 到 87% 位置 */ #fff 87%
      /* 直接从 87% 开始用白色，无过渡，直到 100% */
  );
}

.banner_btn a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.banner_btn a:hover::after {
  -webkit-animation: btn_ani 1s;
  animation: btn_ani 1s;
  z-index: 2;
}
.banner_btn a:last-child {
  margin-right: 0px;
}

@media only screen and (max-width: 1600px) {
  .banner_btn a {
    width: auto;
    height: auto;
    padding: 10px 20px;
    margin-right: 20px;
  }
  .banner .des {
    line-height: 1.2;
  }
}
/*公共模块标题*/
.common_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  font-weight: bold;

  color: var(--main-color);
}
.common_title svg {
  width: 38px;
  margin-right: 30px;
}
.common_title div {
  font-weight: 600;
}
.e_html-1 .sticky{
    top: 80px ;
  }
@media only screen and (max-width: 1600px) {
  .common_title svg {
    width: 30px;
  }
}
@media only screen and (max-width: 1024px) {
.e_html-1 .sticky{
    top: 60px ;
  }
}
@media only screen and (max-width: 768px) {
  .common_title svg {
    margin-right: 5vw;
  }
  
}
/*整站跳转链接按钮*/
.common_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.common_more:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(
    to right,
    #fff 25%,
    /* 白色到 25% 位置 */ var(--cyan-color) 25%,
    /* 直接从 25% 开始用 #71D9C9，无过渡 */ var(--cyan-color) 62.5%,
    /* #71D9C9 到 62.5% 位置 */ #fff 62.5%,
    /* 直接从 62.5% 开始用白色，无过渡 */ #fff 68%,
    /* 白色到 68% 位置 */ var(--yellow-color) 68%,
    /* 直接从 68% 开始用 #FFCA1A，无过渡 */ var(--yellow-color) 87%,
    /* #FFCA1A 到 87% 位置 */ #fff 87%
      /* 直接从 87% 开始用白色，无过渡，直到 100% */
  );
}
.common_more.blue:before {
  background-image: linear-gradient(
    to right,
    var(--main-color) 25%,
    /* 白色到 25% 位置 */ var(--cyan-color) 25%,
    /* 直接从 25% 开始用 #71D9C9，无过渡 */ var(--cyan-color) 62.5%,
    /* #71D9C9 到 62.5% 位置 */ var(--main-color) 62.5%,
    /* 直接从 62.5% 开始用白色，无过渡 */ var(--main-color) 68%,
    /* 白色到 68% 位置 */ var(--yellow-color) 68%,
    /* 直接从 68% 开始用 #FFCA1A，无过渡 */ var(--yellow-color) 87%,
    /* #FFCA1A 到 87% 位置 */ var(--main-color) 87%
      /* 直接从 87% 开始用白色，无过渡，直到 100% */
  );
}
.common_more::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.common_more:hover::after {
  -webkit-animation: btn_ani 1s;
  animation: btn_ani 1s;
  z-index: 2;
}

@media only screen and (max-width: 1600px) {
  .common_more {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: auto;
    padding: 0.8vw 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .common_more {
    padding: 2vw 5vw;
  }
}
/*公共轮播滚动条class名称*/
.common_scrollbar {
  height: 1px;
  background: rgba(59, 51, 125, 0.2);
}
.common_scrollbar .swiper-scrollbar-drag {
  height: 3px;
  margin-top: -1px;
  background-color: var(--main-color);
  cursor: -webkit-grab;
  cursor: grab;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/*公共轮播前进后退按钮-不absolute 绝对定位*/
.common_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.common_btn div {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.common_btn div:not(.swiper-button-disabled):hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  cursor: pointer;
}
.common_btn div:not(.swiper-button-disabled):hover svg path {
  fill: #fff;
}
.common_btn .swiper-button-disabled {
  opacity: 0.2;
}
.common_btn svg path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.common_btn .prev {
  margin-right: 40px;
}
.common_btn .prev svg {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1500px) {
  .common_btn div {
    width: 38px;
    height: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .common_btn .prev {
    margin-right: 3vw;
  }
}
/*公共轮播前进后退按钮-absolute 绝对定位*/
.btn_absolute {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn_absolute svg path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  fill: rgba(80, 80, 201, 0.3);
}
.btn_absolute:not(.swiper-button-disabled):hover {
  cursor: pointer;
}
.btn_absolute:not(.swiper-button-disabled):hover svg path {
  fill: var(--main-color);
}
.btn_absolute.swiper-button-disabled svg path {
  fill: rgba(80, 80, 201, 0.3);
}

.prev_absolute {
  left: -50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.prev_absolute svg {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.next_absolute {
  right: -50px;
  margin-left: 50px;
}

@media only screen and (max-width: 1100px) {
  .next_absolute {
    right: -30px;
  }
  .prev_absolute {
    left: -30px;
  }
}
@media only screen and (max-width: 768px) {
  .next_absolute {
    right: 10px;
  }
  .prev_absolute {
    left: 10px;
  }
}
/*粘性定位*/
.sticky {
  position: sticky;
  background-color: #fff;
  z-index: 3;
  top: 0;
  line-height: 1;
}
.sticky .sticky_con {
  position: relative;
}
.sticky .sticky_con::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #cccccc;
  position: absolute;
  bottom: 1px;
}
.sticky .swiper-slide {
  padding: 0px 30px;
  width: auto;
}
.sticky .swiper-slide:first-child {
  padding-left: 0;
}
.sticky .swiper-slide:last-child {
  padding-right: 0;
}
.sticky .swiper-slide:last-child::after {
  display: none;
}
.sticky .swiper-slide::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #cccccc;
}
.sticky .swiper-slide div {
  position: relative;
  padding: 35px 0;
}
.sticky a {
  color: #666;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.sticky a:hover {
  color: var(--main-color);
}
.sticky .sticky_act a {
  color: var(--main-color);
  font-weight: 600;
}
.sticky .sticky_act div::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .common_btn .prev {
    margin-right: 30px;
  }
  .common_btn div {
    width: 35px;
    height: 35px;
  }

  .thumb li:before {
    margin-left: 5px;
    margin-right: 5px;
  }
  .thumb {
    bottom: 15px;
  }
}
