@charset "utf-8";

/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */

.rightfix {
  bottom: auto;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
  left: 1.25rem;
  right: auto;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
}

.rightfix li {
  width: 5rem;
  height: 5rem;
  border-radius: 0.3125rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 0.75rem;
  background: #1857a4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rightfix li:hover {
  background: #c80f0f;
}

.rightfix li:hover img {
  filter: brightness(0) invert(1);
}

.rightfix li a img {
  height: 2rem;
  width: 2rem;
  margin-bottom: 0.375rem;
}

.rightfix li .right_div {
  left: calc(100% + 0.5rem) !important;
  right: auto;
  padding: 0 1.25rem;
  min-width: 10.5rem !important;
}

.rightfix li.bg {
  background: #c80f0f;
}

.rightfix li.bg img {
  filter: brightness(0) invert(1);
}

.rightfix li::before {
  display: none;
}

.fixright_li_last {
  display: none;
}

.rightfix li {
  position: relative;
  border: none !important;
}

.rightfix li .iconfont {
  font-size: 1.375rem;
  display: block;
  color: #fff;
  border-radius: 50%;
  background: #0074CA;
}

.rightfix li:hover .iconfont {
  background: #ec8402;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.rightfix li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #DEDDDD;
  width: 1.1875rem;
}

.rightfix li:last-child::before {
  display: none;
}

.right_div.img {
  min-width: 7.5rem !important;
}

.right_div.img img {
  height: 7.5rem;
  object-fit: contain;
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}




@-webkit-keyframes banscaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes banscaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }

  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }

  75% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes banscaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }

  50% {
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  75% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes banscaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    /*放大1.1倍*/
  }

  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}




.index_four {
  position: relative;
  padding: 4.6875rem 0;
}

.index_four.index {
  background: url(../img/5.png) no-repeat;
  background-size: cover;
}

.index_four.list_pro_case {
  /*padding-bottom: 0;*/
  z-index: 9;
}

.index_four.list_pro_case .en_title span {
  background: transparent;
}

.index_four.list_pro_case .en_title::before,
.index_four.list_pro_case .en_title::after {
  background: #fff;
}

.index_four.list_pro_case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28.75rem;
  background: url(../img/21.png) no-repeat;
  background-size: cover;
  z-index: -1;
}

.index_four .sum>div {
  display: none;
}

.index_four .sum>div.active {
  display: block;
}

.index_four .swiper-slide {
  background: #fff;
  text-align: center;
}

.index_four .swiper-slide:hover .top div {
  color: #1857a4;
}

.index_four .swiper-slide:hover .over img {
  transform: scale(1.1);
}

.index_four .swiper-slide:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.index_four .swiper-slide .top {
  padding: 1rem 0 1.125rem;
}

.index_four .swiper-slide div {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #0C0C0C;
  padding: 0 1.25rem;
  padding-top: 0.625rem;
}

.index_four .swiper-slide .img img {
  height: 11.0625rem;
  object-fit: contain;
}

.index_five {
  padding: 4.6875rem 0;
}

.index_five .ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 2.625rem;
}

.index_five .ul li {
  flex: 1 0 0;
  background: #fff;
  line-height: 5.9375rem;
  font-size: 1.25rem;
  color: #636363;
}

.index_five .ul li:hover img,
.index_five .ul li.active img {
  filter: brightness(1) invert(0);
}

.index_five .ul li:hover a,
.index_five .ul li.active a {
  color: #1857a4;
}

.index_five .ul li:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.index_five .ul li img {
  height: 2.125rem;
  margin-right: 0.75rem;
  filter: brightness(0);
}

.index_five .ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_five .sum>div {
  display: none;
}

.index_five .sum>div.active {
  display: block;
}

.index_five .ul2 {
  margin: 0 -1.25rem;
}

.index_five .ul2 li {
  padding: 0 1.25rem 1.25rem;
}

.index_five .ul2 li .name {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #606060;
  margin-top: 0.625rem;
}

.index_five .ul2 li:hover .name {
  color: #1857a4;
}

.index_five .ul2 li:hover .over img {
  transform: scale(1.1);
}

.index_five .flex_more {
  margin-top: 1.5rem;
}

.more_4 {
  display: flex;
  align-items: center;
  font-size: 1rem;
  text-transform: uppercase;
  color: #707070;
}

.more_4:hover {
  color: #c80f0f;
}

.more_4:hover div {
  border-color: #c80f0f;
  transform: translateX(0.25rem);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.more_4:hover div .iconfont {
  color: #c80f0f;
}

.more_4 div {
  width: 2rem;
  height: 2rem;
  border-radius: 0.3125rem;
  border: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.more_4 div .iconfont {
  font-size: 1rem;
  display: block;
  font-weight: 600;
}

.felx_about {
  display: flex;
  align-items: center;
}

.felx_about .more {
  margin: 0 1.875rem 0 4.375rem;
}

.felx_about .tel {
  font-weight: bold;
  font-size: 1.5rem;
  color: #C80F0F;
}

.index_six {
  padding: 4.6875rem 0;
  position: relative;
  z-index: 5;
}

.index_six .swiper_six2 .swiper-slide {
  text-align: center;
}

.index_six .swiper-slide img {
  height: 21.25rem;
  object-fit: cover;
}

.index_six .swiper-slide .name {
  font-size: 1.125rem;
  line-height: 1.875rem;
  height: 3.75rem;
  color: #606060;
  margin-top: 0.625rem;
}

.index_six.list_pro_four::before {
  display: none;
}

.index_six.list_pro_four .index_qiehuan {
  margin-top: 2.5rem;
}

.index_six.list_pro_four .top .left {
  background: transparent;
  order: 2;
}

.index_six.list_pro_four .top .right {
  order: 1;
}

.index_six::before {
  content: "";
  position: absolute;
  bottom: 4.375rem;
  left: 0;
  width: 100%;
  height: 70%;
  background: url(../img/9.png) no-repeat;
  background-size: cover;
  z-index: -1;
}

.index_six .top {
  display: flex;
  background: #e9ecf1;
  margin: 1.875rem 0 3.4375rem;
}

.index_six .left {
  width: 37%;
  position: relative;
}

.index_six .left .over {
  position: relative;
  top: 1.125rem;
  left: 1.125rem;
  height: 100%;
}

.index_six .left .over img {
  height: 100%;
  object-fit: cover;
}

.index_six .right {
  width: 63%;
  padding: 0 2.1875rem 0 4.6875rem;
  display: flex;
  align-items: center;
}

.index_six .right .felx_about {
  margin-top: 1.875rem;
}

.index_six .sum>div {
  display: none;
}

.index_six .sum>div.active {
  display: block;
}

.swiper_btn {
  width: 2.9375rem;
  height: 2.9375rem;
  border-radius: 50%;
  border: 1px solid #bcbcbc;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.swiper_btn:hover {
  background: #1857a4;
}

.swiper_btn:hover .iconfont {
  color: #fff;
}

.swiper_btn.swiper-button-prev {
  left: -4.375rem;
}

.swiper_btn.swiper-button-next {
  right: -4.375rem;
}

.swiper_btn .iconfont {
  font-size: 1.25rem;
  color: #bcbcbc;
}

.title_seven {
  font-weight: bold;
  font-size: 0.43472rem;
  line-height: 0.5rem;
  color: #000000;
}

.ta{ text-align:center;}

.subtitle {
  font-size: 0.261rem;
  line-height: 0.475rem;
  color: #777777;
  margin: 0.1rem 0 0.075rem;
}

.subtitle span {
  color: #1857a4;
}

.en_title {
  font-size: 0.325rem;
  line-height: 0.575rem;
  text-transform: uppercase;
  color: #969696;
  position: relative;
  z-index: 9;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.en_title.mt10 {
  margin-top: 0.625rem;
}

.en_title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
  height: 1px;
  background: #000;
  opacity: 0.3;
  width: 40.5%;
  z-index: -1;
}

.en_title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0%;
  height: 1px;
  background: #000;
  opacity: 0.3;
  width: 40.5%;
  z-index: -1;
}

.en_title span {
  padding: 0 2.1875rem;
}

.index_seven {
	background-color:#fafafa;
	padding-top:30px; padding-bottom:15px;

}

.index_seven.list_pro_five {
  background: transparent;
}

.index_seven.list_pro_five ul::before {
  background: #b2b2b2;
  opacity: 1;
}

.index_seven.list_pro_five .en_title::before,
.index_seven.list_pro_five .en_title::after {
  background: #000;
}

.index_seven.list_pro_five ul li .circle {
  border: 1px solid #b2b2b2;
  color: #1857A4;
}

.index_seven.list_pro_five ul li .name {
  color: #3A3A3A;
}

.index_seven .en_title::before,
.index_seven .en_title::after {
  background: #333;
  opacity: 0.3;
}

.index_seven ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.185rem;
  z-index: 4;
}

.index_seven ul::before {
  content: "";
  position: absolute;
  bottom: 1.015rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  opacity: 0.3;
  z-index: -1;
}

.index_seven ul li {
  flex: 1 0 0;
  text-align: center;
}

.index_seven ul li .name {
  font-size: 0.18rem;
  line-height: 0.75rem;
  color: #333;
  padding-top: 0.015rem;
}

.index_seven ul li:hover .icon img {
  transform: rotateY(180deg);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.index_seven ul li .circle {
  width: 0.45rem;
  height: 0.45rem;
  background: #fff;
  display: flex;
  border:#CCC 1px solid;
  align-items: center;
  justify-content: center;
  font-size: .2rem;
  color: #1857A4;
  border-radius: 50%;
  margin: 0 auto;
  font-weight: 600;
}

.index_seven ul li .icon {
  margin-bottom: 0.175rem;
}

.index_seven ul li .icon img {
  height: 1.4375rem;
  width: 1rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.index_eight {
  padding: 4.6875rem 0;
}

.index_eight .left,
.index_eight .right {
  padding: 0 1.375rem;
}

.index_eight .row.mt50 {
  margin-left: -1.375rem;
  margin-right: -1.375rem;
}

.index_eight .more {
  margin-top: 5rem;
}

.index_eight ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.index_eight ul li:not(:last-child) {
  margin-bottom: 3.75rem;
}

.index_eight ul li .data {
  width: 5rem;
  height: 5rem;
  position: relative;
  background: #1857a4;
}

.index_eight ul li .data::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  width: 1px;
  height: 80%;
  transform: rotate(45deg);
  background: #fff;
  left: 2.5rem;
}

.index_eight ul li .data div {
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  position: relative;
  top: 0.5rem;
  left: 0.5rem;
}

.index_eight ul li .data p {
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  position: absolute;
  bottom: 0.875rem;
  right: 0.375rem;
}

.index_eight ul li .r {
  width: calc(100% - 5rem);
  padding-left: 1.875rem;
}

.index_eight ul li .r p {
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #1857A4;
}

.index_eight ul li .r div {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #4F4F4F;
}

.index_eight .right ul {
  margin-top: 7.5rem;
}

.index_nine {
  display: flex;
  background: url(../img/16.png) no-repeat;
  background-size: cover;
}

.index_nine.list_pro_six {
  background: transparent;
}

.index_nine.list_pro_six .right {
  width: 100%;
  padding: 0;
}

.index_nine.list_pro_six .flex_top {
  margin: 2.1875rem 0 3.125rem;
  align-items: stretch;
  display: flex;
}

.index_nine.list_pro_six .flex_top>div {
  flex: 1 0 0;
}

.index_nine.list_pro_six .flex_top .center div {
  height: 100%;
}

.index_nine.list_pro_six .flex_top .center div img {
  height: 100%;
  object-fit: cover;
}

.index_nine.list_pro_six .flex_top ul {
  margin: 0;
}

.index_nine.list_pro_six .flex_top ul li {
  padding: 0;
}

.index_nine.list_pro_six .flex_top ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.index_nine .left {
  width: 39%;
}

.index_nine .left .over,
.index_nine .left .over img {
  height: 100%;
  object-fit: cover;
}

.index_nine.index .en_title {
  margin: 0;
  width: 45%;
}

.index_nine.index .en_title span {
  padding-left: 0;
}

.index_nine.index .en_title::after {
  width: 60%;
}

.index_nine.index .en_title::before {
  display: none;
}

.index_nine .right {
  width: 61%;
  padding: 4.6875rem var(--container) 4.6875rem 2.5rem;
}

.index_nine .right ul {
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem;
}

.index_nine .right ul li {
  padding: 0.9375rem 15px;
}

.index_nine .right ul li>div {
  height: 100%;
}

.index_nine .right ul li:hover>div {
  background: #1857a4;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.index_nine .right ul li:hover>div .name,
.index_nine .right ul li:hover>div .text {
  color: #fff;
}

.index_nine .right ul li:hover>div .name::before {
  background: #fff;
}

.index_nine .right ul li>div {
  padding: 1.75rem 1.5rem 1.75rem 2.25rem;
  border: 1px solid #b2b2b2;
}

.index_nine .right ul li>div .name {
  font-size: 1.5rem;
  position: relative;
  padding-right: 1.875rem;
  display: inline-block;
  margin-bottom: 0.375rem;
  line-height: 1.875rem;
  color: #1857A4;
}

.index_nine .right ul li>div .name::before {
  content: "";
  position: absolute;
  bottom: 0.375rem;
  right: 0;
  width: 1.375rem;
  height: 0.125rem;
  background: #1857a4;
}

.index_nine .right ul li>div .text {
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #4F4F4F;
}

.index_ten {
  padding: 4.6875rem 0;
}

.index_ten .margin {
  margin: 1.875rem 0;
}

.index_ten ul {
  display: flex;
  flex-wrap: wrap;
  margin: -0.9375rem;
  justify-content: flex-start;
}

.index_ten ul li {
  width: 20%;
  padding: 0.9375rem;
}

.index_ten ul li div {
  height: 7.3125rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_ten ul li div img {
  height: 5.625rem;
}

.index_ten ul li:hover img {
  transform: scale(1.1);
}

.index_eleven {
  padding: 4.6875rem 0;
}

.index_eleven .text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #4F4F4F;
}

.index_eleven ul.top .name {
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #212121;
  margin-top: 1rem;
}

.index_eleven ul.top .data {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #9B9B9B;
  margin: 0.25rem 0;
}

.index_eleven ul.top .more_4 {
  margin-top: 1rem;
}

.index_eleven ul.top li:hover .name {
  color: #1857a4;
}

.index_eleven ul.top li:hover img {
  transform: scale(1.1);
}

.index_eleven ul.top .more_4:hover {
  color: #1857a4;
}

.index_eleven ul.top .more_4:hover div {
  border-color: #1857a4;
}

.index_eleven ul.top .more_4:hover div .iconfont {
  color: #1857a4;
}

.index_eleven .cjwt {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 1.875rem 2.5rem;
  margin-bottom: 4rem;
  margin-top: 1.875rem;
}

.cjwt .name2 {
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: #212121;
  margin-bottom: 0.625rem;
}

.cjwt ul li {
  cursor: pointer;
}

.cjwt ul li .wen {
  margin-bottom: 0.5625rem;
  line-height: 2rem;
  font-size: 1.25rem;
  color: #212121;
}

.cjwt ul li>div {
  height: 100%;
}

.cjwt ul li .da {
  line-height: 1.625rem;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #4F4F4F;
}

.cjwt ul li .wen,
.cjwt ul li .da {
  display: flex;
  align-items: flex-start;
}

.cjwt ul li .wen .bg2,
.cjwt ul li .da .bg2 {
  color: #fff;
  background: #1857a4;
}

.cjwt ul li .wen div,
.cjwt ul li .da div {
  width: 2rem;
  height: 2rem;
  border-radius: 0.3125rem;
  border: 1px solid #1857a4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1857a4;
}

.cjwt ul li .wen p,
.cjwt ul li .da p {
  width: calc(100% - 2rem);
  padding-left: 1rem;
}

.cjwt ul li>div {
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  position: relative;
}

.cjwt ul li>div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #1857a4;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.cjwt ul li:hover>div::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}





.index_one.list_pro_two .margin {
  margin: 2.5rem -0.9375rem;
}

.list_pro_three {
  padding: 3.6875rem 0;
}

.list_pro_three table,
.show_pro_twit_one table {
  margin: 2.5rem 0 0;
}

.list_pro_three table tr:nth-child(1),
.show_pro_twit_one table tr:nth-child(1) {
  background: #1857a4 !important;
}

.list_pro_three table tr:nth-child(1) td,
.show_pro_twit_one table tr:nth-child(1) td {
  color: #fff;
}

.list_pro_three table td,
.show_pro_twit_one table td {
  font-size: 1rem;
  line-height: 1.875rem;
  padding: 0.9375rem;
  color: #606060;
  border: 1px solid #c7d2dd;
  text-align: center;
  width: 50%;
  vertical-align: middle;
}

.list_pro_three table tr:nth-child(odd),
.show_pro_twit_one table tr:nth-child(odd) {
  background: #d9dfe8;
}

.list_pro_seven,
.list_pro_six {
  padding: 4.6875rem 0;
}

.list_pro_seven .margin {
  padding: 0 5.5rem;
  margin: 5rem 0;
}

.list_pro_seven ul li {
  width: 11.625rem;
  height: 11.625rem;
  background: #fff;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  overflow: hidden;
}

.list_pro_seven ul li .over {
  transform: rotate(-45deg);
}

.list_pro_seven ul li .over img {
  height: 5rem;
}

.list_pro_seven .ul3 {
  margin-top: -2rem;
}

.list_pro_seven .ul4 {
  justify-content: center;
  margin-top: -2rem;
}

.list_pro_seven .ul4 li {
  margin: 0 3rem;
}

.list_pro_seven .ul2 {
  padding: 0 8.25rem;
  position: relative;
  margin-top: -2rem;
}

.list_pro_eight {
  display: flex;
}

.list_pro_eight .left {
  width: 39%;
  position: relative;
}

.list_pro_eight .left .img,
.list_pro_eight .left .img img {
  height: 100%;
  object-fit: cover;
}

.list_pro_eight .left .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8.125rem;
  height: calc(100% - 15rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 17.3125rem;
}

.list_pro_eight .left .hover .subtitle {
  white-space: nowrap;
}

.list_pro_eight .left .hover .top {
  position: absolute;
  top: 3.4375rem;
  left: 50%;
  transform: translateX(-50%);
}

.list_pro_eight .left .hover .bot {
  position: absolute;
  bottom: 4rem;
  width: 100%;
}

.list_pro_eight .left .hover .en_title {
  width: 100%;
}

.list_pro_eight .left .hover .en_title span {
  background: transparent;
}

.list_pro_eight .left .hover .en_title::before,
.list_pro_eight .left .hover .en_title::after {
  display: none;
}

.list_pro_eight .right {
  width: 61%;
  padding: 4.6875rem var(--container) 4.6875rem 0;
  display: flex;
  align-items: center;
}

.list_pro_eight .right li {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: -1.625rem;
}

.list_pro_eight .right li:not(:last-child) {
  margin-bottom: 2.5rem;
}

.list_pro_eight .right li .icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.13);
  font-weight: bold;
  font-size: 1rem;
  color: #1857A4;
}

.list_pro_eight .right li .r {
  width: calc(100% - 3.25rem);
  padding-left: 3.4375rem;
}

.list_pro_eight .right .name {
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #1857A4;
}

.list_pro_eight .right .text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #4F4F4F;
}

.list_pro_nine {
  background: url(../img/25.png) no-repeat;
  background-size: cover;
}

.show_pro_twit {
  background: url(../img/40.png) no-repeat;
  background-size: cover;
}

.show_pro_twit .center .swiper-container {
  width: 30.5rem;
  margin: 0 auto;
}

.show_pro_twit .center .swiper-pagination {
  position: static;
  margin-top: 1.25rem;
  text-align: center;
}

.show_pro_twit .center .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}

.show_pro_twit .center .swiper-pagination .swiper-pagination-bullet-active {
  background: #c80f0f;
}

.show_pro_twit .center .img img {
  height: 27rem;
  object-fit: contain;
}

.show_pro_twit .left ul li {
  justify-content: flex-end;
  text-wrap: pretty;
  position: relative;
}

.show_pro_twit .left ul li img {
  width: 6.25rem;
  object-fit: contain;
  position: absolute;
  right: -5.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.show_pro_twit .right ul li {
  position: relative;
}

.show_pro_twit .right ul li img {
  width: 6.25rem;
  object-fit: contain;
  position: absolute;
  left: -5.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.show_pro_twit_one {
  padding-top: 4.6875rem;
}

.show_pro_twit_one ul {
  margin-top: 2.1875rem;
  margin-bottom: 3.125rem;
}

.show_pro_twit_one ul li .name {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.875rem;
  padding-top: 1rem;
  color: #000000;
}

.show_pro_twit_one .alignc {
  align-items: center;
}

.show_pro_twit_one .right {
  padding-left: 2.5rem;
}

.show_pro_twit_one .left {
  padding-bottom: 4rem;
  padding-right: 0;
}

.show_pro_twit_one .left ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.show_pro_twit_one .left ul li {
  padding: 0 1rem;
  font-weight: bold;
  font-size: 1.25rem;
  width: 50%;
  color: #000000;
}

.show_pro_twit_one .left ul li div {
  padding: 1.25rem 0;
  border-bottom: 1px solid #B3B3B3;
  display: flex;
  align-items: center;
}

.show_pro_twit_one .left ul li div img {
  width: 0.625rem;
  margin-right: 0.875rem;
}

.list_pro_nine,
.show_pro_twit {
  padding: 4.6875rem 0;
}

.list_pro_nine .content,
.show_pro_twit .content {
  display: flex;
  margin-top: 2.8125rem;
}

/*.list_pro_nine .left ul li,*/
/*.show_pro_twit .left ul li {*/
/*  text-align: right;*/
/*}*/

.list_pro_nine .center,
.show_pro_twit .center {
  width: calc(100% - 21.25rem - 21.25rem);
}

.list_pro_nine ul li,
.show_pro_twit ul li {
  width: 21.25rem;
  padding: 0.625rem 1.125rem 1.125rem;
  background: #fff;
  border: 1px dashed #aaaaaa;
}

.list_pro_nine ul li:nth-child(2),
.show_pro_twit ul li:nth-child(2) {
  margin: 3.4375rem 0;
}

.list_pro_nine ul li .name,
.show_pro_twit ul li .name {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.625rem;
  color: #000000;
}

.list_pro_nine ul li .text,
.show_pro_twit ul li .text {
  font-size: 1rem;
  line-height: 1.625rem;
  color: #919191;
}
.list_pro_nine ul li .text.line5,
.show_pro_twit ul li .text.line5  {
    height: 8.125rem;
}
.list_pro_nine ul li .text.line3,
.show_pro_twit ul li .text.line3  {
    height: 4.875rem;
}
.pro_fix {
  position: fixed;
  top: 50%;
  right: 1.25rem;
  width: 9.6875rem;
  z-index: 999;
  transform: translateY(-50%);
}

.pro_fix ul {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pro_fix ul li {
  line-height: 3.3125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 1.5rem;
  cursor: pointer;
}

.pro_fix ul li a {
  font-size: 1rem;
  color: #636363;
}

.pro_fix ul li:hover a {
  color: #1857a4;
}

.pro_fix ul li.active {
  background: #1857a4;
}

.pro_fix ul li.active a {
  color: #fff;
}

.nyban .hover {
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.nyban .hover .p1 {
  font-weight: bold;
  font-size: 3.125rem;
  line-height: 4rem;
  color: #1857A4;
}

.bread {
  font-size: 1rem;
  line-height: 1.875rem;
  text-transform: uppercase;
  color: #000000;
}

.bread a {
  color: #000;
}

.bread a:hover {
  color: #1857a4;
}

.bread span {
  margin: 0 0.3125rem;
}

.bread span:last-child {
  display: none;
}

.nyerji {
  margin: 4.6875rem 0 3.75rem;
}

.nyerji ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -0.625rem;
}

.nyerji ul li {
  margin: 0 0.625rem;
  width: 8.75rem;
  height: 2.8125rem;
  line-height: 2.8125rem;
  border-radius: 3.125rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1.125rem;
  text-align: center;
  color: #000000;
}

.nyerji ul li a {
  color: #000;
}

.nyerji ul li.active,
.nyerji ul li:hover {
  background: #1857a4;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.nyerji ul li.active a,
.nyerji ul li:hover a {
  color: #fff;
}

.pb75 {
  padding-bottom: 4.6875rem;
}

.pt75 {
  padding-top: 4.6875rem;
}

.p75 {
  padding: 4.6875rem 0;
}

.list_news .name {
  font-size: 1.75rem;
  line-height: 2.5rem;
  color: #212121;
}

.list_news .text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #919191;
  margin: 0.625rem 0 1rem;
}

.list_news .ul li {
  padding: 1.375rem;
  background: #e9ecf1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.1875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_news .ul li .en_title span {
  background: #e9ecf1;
}

.list_news .ul li:hover {
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_news .ul li:hover .name {
  color: #1857a4;
}

.list_news .ul li:hover .left img {
  transform: scale(1.05);
}

.list_news .ul li .left {
  width: 35%;
}

.list_news .ul li .right {
  width: 65%;
  padding-left: 2.8125rem;
}

.last_bot2 {
  position: relative;
}

.last_bot2 .name {
  font-weight: bold;
  font-size: 2.125rem;
  line-height: 3.4375rem;
  color: #4C4C4C;
}

.last_bot2 .tel {
  padding: 0 15.3125rem 0 3.125rem;
  border-radius: 3.75rem;
  border: 1px solid #c80f0f;
  display: inline-block;
  margin: 2.1875rem 0 1.5625rem;
}

.last_bot2 .tel>div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.last_bot2 .tel>div div {
  font-weight: bold;
  font-size: 2.1875rem;
  line-height: 4.375rem;
  color: #C10000;
}

.last_bot2 .tel>div div img {
  height: 2.5rem;
}

.last_bot2 .tel a {
  width: 12.6875rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  color: #FFFFFF;
  background: -moz-linear-gradient(0% 50% 0deg, #d35f5f 0%, #c60000 100%);
  background: -webkit-linear-gradient(0deg, #d35f5f 0%, #c60000 100%);
  background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0, #d35f5f), color-stop(1, #c60000));
  background: -o-linear-gradient(0deg, #d35f5f 0%, #c60000 100%);
  background: -ms-linear-gradient(0deg, #d35f5f 0%, #c60000 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#D35F5F', endColorstr='#C60000' ,GradientType=0)";
  background: linear-gradient(90deg, #d35f5f 0%, #c60000 100%);
  border-radius: 35px;
  -moz-border-radius: 35px;
  -webkit-border-radius: 35px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D35F5F', endColorstr='#C60000', GradientType=1);
  line-height: 4.375rem;
  z-index: 9;
}

.last_bot2 .tel a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-radius: 3.75rem;
  z-index: -1;
  opacity: 0;
  transform: scale(0.6);
}

.last_bot2 .tel a:hover {
  color: #c80f0f;
}

.last_bot2 .tel a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.last_bot2 .ul2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.last_bot2 .ul2 li:hover a {
  color: #1857a4;
}

.last_bot2 .ul2 li a {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #C80F0F;
  padding: 0 0.9375rem;
  position: relative;
}

.last_bot2 .ul2 li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 0.125rem;
  height: 1.0625rem;
  background: #b5b5b5;
}

.last_bot2 .ul2 li:last-child a::before {
  display: none;
}

.more_5 {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #5E5E5E;
}

.sb_recommond .margin {
  margin: 2rem -0.9375rem 0;
}

.about_news .content {
  background: #fff;
  padding: 1.375rem;
  margin: 1.5rem 0 0;
}

.about_news .content .margin {
  margin: 0 -2.3125rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about_news .content .margin>div {
  padding: 0 2.3125rem;
}

.about_news .content .left {
  display: flex;
  align-items: center;
  width: 60%;
}

.about_news .content .left:hover .name {
  color: #c80f0f;
}

.about_news .content .left:hover .over img {
  transform: scale(1.1);
}

.about_news .content .left:hover .more_4 {
  color: #c80f0f;
}

.about_news .content .left:hover .more_4 div {
  border-color: #c80f0f;
}

.about_news .content .left .l {
  width: 40%;
}

.about_news .content .left .r {
  width: 60%;
}

.about_news .content .left .r {
  padding-left: 2rem;
}

.about_news .content .left .name {
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #212121;
}

.about_news .content .left .data {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #9B9B9B;
  margin: 0.3125rem 0;
}

.about_news .content .left .more_4 {
  color: #1857a4;
}

.about_news .content .left .more_4 div {
  border-color: #1857a4;
}

.about_news .content .left .more_4:hover {
  color: #c80f0f;
}

.about_news .content .left .more_4:hover div {
  border-color: #c80f0f;
}

.about_news .content .left .text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #4F4F4F;
  margin-bottom: 1.25rem;
}

.about_news .content .right {
  width: 40%;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.about_news .content .right ul a {
  display: flex;
  align-items: center;
  line-height: 3.0625rem;
}

.about_news .content .right ul a div {
  font-size: 1.25rem;
  color: #212121;
  width: 70%;
}

.about_news .content .right ul a span {
  display: block;
  width: 30%;
  text-align: right;
  font-size: 1.125rem;
  color: #7C7C7C;
}

.about_news .content .right ul li:hover a div,
.about_news .content .right ul li:hover a span {
  color: #c80f0f;
}

.show_detail {
  padding-top: 6.25rem;
}

.show_detail .name {
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: #000000;
  margin-bottom: 0.8125rem;
}

.show_detail .text {
  color: #898989;
}

.show_detail .left {
  padding-right: 2rem;
}

.show_detail .left .data {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  line-height: 2.5rem;
  color: #848484;
  margin-bottom: 0.75rem;
}

.show_detail .left .data>p {
  margin-right: 2.5rem;
}

.show_detail .left .data>div {
  display: flex;
  align-items: center;
}

.show_detail .left .data>div .iconfont {
  font-size: 1.25rem;
  display: block;
}

.show_detail .left .data>div:hover ul {
  display: flex;
}

.show_detail .left .data>div:hover .iconfont {
  display: none;
}

.show_detail .left .data>div ul {
  display: none;
}

.show_detail .left .data>div ul li {
  margin-left: 0.625rem;
}

.show_detail .left .data>div ul li a {
  border: 1px solid #848484;
  color: #848484;
  font-size: 0.875rem;
  margin: 0;
}

.show_detail .left .data>div ul li:hover a {
  color: #fff;
}

.show_detail .left .more {
  width: 13.125rem;
  height: 3.4375rem;
  line-height: 3.3125rem;
  border: 1px solid rgba(158, 158, 158, 0.7);
  text-align: center;
  display: inline-block;
  border-radius: 31.25rem;
  z-index: 5;
  position: relative;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.show_detail .left .more div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.show_detail .left .more .iconfont {
  font-size: 1rem;
  font-weight: 600;
  color: #686868;
  margin-left: 0.5rem;
  display: block;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.show_detail .left .more::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  background: #c80f0f;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  opacity: 0;
  transform: scale(0.6);
  z-index: -1;
  border-radius: 31.25rem;
}

.show_detail .left .more:hover {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border: 1px solid #c80f0f;
  color: #fff;
}

.show_detail .left .more:hover::before {
  transform: scale(1);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  opacity: 1;
}

.show_detail .left .more:hover .iconfont {
  color: #fff;
}

.show_detail .left .more.bgg {
  border: 1px solid #c80f0f;
  background: #c80f0f;
  color: #fff;
}

.show_detail .left .more.bgg .iconfont {
  color: #fff;
}

.show_detail .left .more.bgg::before {
  background: #fff;
}

.show_detail .left .more.bgg:hover {
  color: #c80f0f;
}

.show_detail .left .more.bgg:hover .iconfont {
  color: #c80f0f;
}

.show_detail .left>div {
  overflow: hidden;
  background: #FFFFFF;
  padding: 0 0 5rem;
  border-radius: 0.625rem;
}

.show_detail .left .shangxia_p {
  margin: 5rem 0 2.5rem;
}

.show_detail .left .shangxia {
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  padding: 1.25rem 0;
  color: #212121;
}

.show_detail .left .shangxia p {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #212121;
}

.show_detail .left .shangxia a {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #212121;
}

.show_detail .left .shangxia a:hover {
  color: #c80f0f;
}

.return_list .more {
  background: transparent;
  color: #232323;
  border: 1px solid #c9c9c9;
}

.return_list .more>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.return_list .iconfont {
  font-size: 1.25rem;
  margin-left: 0.625rem;
}

.return_list:hover .more {
  color: #fff;
  border: 1px solid #c80f0f;
}

.list_case .ul li>div {
  border-bottom: 1px solid #cccccc;
  padding: 3.125rem 0;
}

.list_case .ul li:first-child {
  padding-top: 0;
}

.list_case .ul li:hover .over img {
  transform: scale(1.1);
}

.list_case .ul li:hover .over {
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_case .ul li:hover .name {
  color: #1857a4;
}

.list_case .ul li .over {
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_case .ul li .content {
  margin-top: 2rem;
}

.list_case .ul li .name {
  font-size: 1.75rem;
  line-height: 2.5rem;
  color: #212121;
}

.list_case .ul li .text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #4F4F4F;
  margin: 0.5rem 0 1.375rem;
  height: 1.875rem;
}

.list_about .text {
  color: #919191;
}

.list_about .left .over,
.list_about .left .over img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .list_about .mt30 {
    margin-top: 15px;
  }
}

.list_about_two .ul li .margin {
  margin-top: 1.875rem;
}

.list_about_two .ul li:not(:last-child) {
  margin-bottom: 3.125rem;
}

.list_about_two .ul li .name {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #606060;
  margin-top: 0.625rem;
}

.list_culture .ul li {
  margin-bottom: 2.5rem;
}

.list_culture .ul li:last-child,
.list_culture .ul li:nth-last-child(2) {
  margin-bottom: 0;
}

.list_culture .ul li .name {
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: #353535;
  margin: 1.875rem 0 0.625rem;
}

.list_culture .ul li .text {
  font-size: 1.25rem;
  line-height: 2.1875rem;
  color: #919191;
}

.list_culture .ul li:hover .over img {
  transform: scale(1.1);
}

.list_culture .ul li:hover .name {
  color: #1857a4;
}

.list_zjl .row {
  padding: 1.875rem 0;
}

.list_zjl .left {
  padding-right: 2.5rem;
}

.list_zjl .left .over {
  position: relative;
  top: 1.125rem;
  left: 1.125rem;
}

.list_zjl .name {
  display: flex;
  align-items: center;
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #282828;
  margin-top: 1.125rem;
}

.list_zjl .name img {
  margin-left: 1.25rem;
  height: 3.75rem;
  object-fit: contain;
}

.list_zjl .text {
  color: #919191;
}

.list_contact .content {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 0 0.625rem rgba(24, 87, 164, 0.2);
  margin-top: 1.875rem;
}

.list_contact .content .left {
  width: 50%;
  padding-right: 3.75rem;
}

.list_contact .content .left #container {
  height: 25.6875rem;
}

.list_contact .content .right {
  width: 50%;
  padding: 0 3.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.list_contact .content .right>div {
  width: 90%;
}

.list_contact .content .right ul li {
  display: flex;
  align-items: center;
}

.list_contact .content .right ul li .icon img {
  height: 1.875rem;
  width: 1.875rem;
}

.list_contact .content .right ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.list_contact .content .right ul .icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: -moz-radial-gradient(49.49% 50.75%, circle farthest-corner, rgba(188, 213, 247, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  background: -webkit-radial-gradient(49.49% 50.75%, circle farthest-corner, rgba(188, 213, 247, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  background: -webkit-gradient(radial, 49.49% 50.75%, 0, 49.49% 50.75%, 48.3, color-stop(0, rgba(188, 213, 247, 0.6)), color-stop(1, rgba(255, 255, 255, 0.6)));
  background: -o-radial-gradient(49.49% 50.75%, circle farthest-corner, rgba(188, 213, 247, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  background: -ms-radial-gradient(49.49% 50.75%, circle farthest-corner, rgba(188, 213, 247, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(49.49% 50.75%, circle farthest-corner, rgba(188, 213, 247, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  filter: alpha(opacity=60) progid:DXImageTransform.Microsoft.Alpha(opacity=60) progid:DXImageTransform.Microsoft.Alpha(Stlye=2);
}

.list_contact .content .right ul p {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #444444;
  padding-left: 1.875rem;
  width: calc(100% - 4.5rem);
}

.list_contact .content .right form {
  margin-top: 1.875rem;
}

.list_contact .content .right form>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_contact .content .right form input {
  border: 1px solid #cecece;
  width: calc(100% - 15rem);
  line-height: 3.125rem;
  text-align: center;
  font-size: 1rem;
  border-radius: 3.125rem;
  color: #000;
}

.list_contact .content .right form input::placeholder {
  color: #999999;
}

.list_contact .content .right form button {
  border: none;
}

.list_contact .content .right form .btn2 {
  position: absolute;
  right: 0;
}

.list_contact .content .right form .btn1 {
  position: absolute;
  left: 0;
}

.list_message .right .over,
.list_message .right .over img {
  height: 100%;
  object-fit: cover;
}

.list_message input {
  line-height: 3.125rem;
  padding: 0 2rem;
  font-size: 1rem;
  color: #5B5B5B;
  border-radius: 3.125rem;
  width: 100%;
  border: 1px solid #c9c9c9;
  font-weight: 500;
}

.list_message textarea {
  height: 10.3125rem;
  line-height: 1.875rem;
  border: 1px solid #c9c9c9;
  border-radius: 1.25rem;
  display: block;
  padding: 0.875rem 2rem;
  width: 100%;
}

.list_message button {
  width: 11.25rem;
  text-align: center;
  border: none;
}

.list_message button .flex {
  justify-content: center;
}

.font30 {
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: #000000;
}

.list_service .margin {
  font-size: 1.1rem;
  line-height: 1.875rem;
  color: #919191;
  margin: 0.875rem 0 0;
}

.list_service .ul {
  margin: 3.875rem -0.75rem 0;
  display: flex;
  flex-wrap: wrap;
}

.list_service .ul li {
  flex: 1 0 0;
  padding: 0 0.75rem;
  position: relative;
}

.list_service .ul li .num {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background: #1857a4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  margin: 0 auto;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2.1875rem;
}

.list_service .ul li .content {
  border-radius: 0.9375rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  padding: 3.75rem 0.9375rem 1.875rem;
  text-align: center;
  height: 100%;
}

.list_service .ul li .name {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #1857A4;
}

.list_service .ul li .text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #919191;
}

.list_service_two .name {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #000000;
  margin-top: 0.875rem;
}

.list_service_two .ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.3125rem;
}

.list_service_two .ul li {
  width: 20%;
  padding: 1.4375rem 0;
  text-align: center;
}

.list_service_two .ul li .icon img {
  height: 8.375rem;
  border-radius: 50%;
  width: 8.375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_service_two .ul li:hover .icon img {
  transform: rotateY(180deg);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_service_three .left {
  padding-right: 0;
}

.list_service_three .name {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #353535;
  margin-bottom: 0.25rem;
}

.list_service_three .text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #919191;
}

.list_service_three .right {
  padding-left: 1.875rem;
}

.list_service_three .right .over,
.list_service_three .right .over img {
  height: 100%;
  object-fit: cover;
}

.list_service_four .content {
  background: url(../img/38.png) no-repeat;
  background-size: cover;
  padding: 6.25rem 14.5rem 5.625rem;
  text-align: center;
}

.list_service_four .content .text {
  font-size: 1rem;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-top: 1.25rem;
}

.beian {
  background: #2b323a;
  padding: 1.25rem 0;
}

.beian .text {
  text-align: center;
  color: #A7A7A7;
}

footer {
  background: #2b323a;
  padding: 4.6875rem 0 3.4375rem;
  border-bottom: 1px solid rgba(81, 81, 81, 0.3);
}

footer .flex_f {
  display: flex;
}

footer .left {
  width: 50%;
}

footer .left ul {
  display: flex;
  justify-content: space-between;
}

footer .name {
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-bottom: 0.625rem;
  color: #FFFFFF;
}

footer .text {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #939393;
}

footer a:hover {
  color: #fff;
}

footer .center {
  width: 26%;
  padding-left: 6rem;
}

footer .center .logo {
  margin-bottom: 1.75rem;
}

footer .center .logo img {
  height: 2.875rem;
}

footer .center .ewm {
  display: inline-block;
  text-align: center;
}

footer .center .ewm img {
  height: 7rem;
}

footer .center .ewm p {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #E9ECF1;
  margin-top: 0.375rem;
}

footer .right {
  width: 24%;
  padding-left: 2rem;
}

footer .right .tel.address {
  margin-top: 0.625rem;
}

footer .right .tel.address div {
  font-size: 1.2rem;
}

footer .right .tel.margin {
  padding: 1rem 0;
  margin: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

footer .right .tel div {
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #FFFFFF;
}

footer .right .tel p {
  font-size: 1rem;
  line-height: 1.625rem;
  color: #FFFFFF;
}

footer .right a {
  display: flex;
  align-items: center;
  margin: 0.875rem 0;
  color: #fff;
}

footer .right a:hover {
  color: #c80f0f;
}

footer .right a .iconfont {
  font-size: 1.25rem;
  display: block;
}

.list_history_two .swiper-button-prev,
.list_history_two .swiper-button-next {
  background-size: 1.25rem 1.25rem;
  top: 39.5%;
  margin-top: 0;
}

.list_history_two .padding {
  display: flex;
  position: relative;
  padding: 0 4rem;
  background: url(../img/39.png) no-repeat;
  background-size: contain;
  background-position: center center;
  margin-top: 4rem;
}

.list_history_two .padding::before {
  content: "";
  position: absolute;
  top: 43.5%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 3rem;
  background: #1857a4;
  border-radius: 3.125rem;
}

.list_history_two .padding::after {
  content: "";
  position: absolute;
  top: 43.5%;
  transform: translateY(-50%);
  left: 3.5%;
  width: 93%;
  border: 0.5px dashed #fff;
  border-radius: 3.125rem;
}

.list_history_two .padding .swiper-slide:last-child>div {
  width: 100%;
}

.list_history_two .padding .swiper-slide>div {
  width: 160%;
}

.list_history .year,
.list_history_two .year {
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #282828;
}

.list_history .text,
.list_history_two .text {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #7F7F7F;
  height: 9.0625rem;
  position: relative;
  padding-left: 1.375rem;
  margin-left: 1.5rem;
  text-align: justify;
  flex-wrap: wrap;
}

.list_history .text::before,
.list_history_two .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #1857a4;
}

.list_history .text::after,
.list_history_two .text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -0.19rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #1857a4;
}

.list_history ul li,
.list_history_two ul li {
  width: 14%;
  flex-wrap: wrap;
  height: 31.25rem;
}

.list_history ul li>div,
.list_history_two ul li>div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.list_history ul li>div::before,
.list_history_two ul li>div::before {
  content: "";
  position: absolute;
  top: -2.625rem;
  left: 1.125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1px solid #fff;
}

.list_history ul li>div::after,
.list_history_two ul li>div::after {
  content: "";
  position: absolute;
  top: -2.25rem;
  left: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
}

.list_history ul li>div>div,
.list_history_two ul li>div>div {
  width: 100%;
}

.list_history ul li:nth-child(odd),
.list_history_two ul li:nth-child(odd) {
  padding-top: 15.625rem;
}

.list_history ul li:nth-child(odd) .text,
.list_history_two ul li:nth-child(odd) .text {
  display: flex;
  align-items: flex-end;
  margin-top: 0.625rem;
}

.list_history ul li:nth-child(even),
.list_history_two ul li:nth-child(even) {
  position: relative;
  left: 0;
}

.list_history ul li:nth-child(even)>div,
.list_history_two ul li:nth-child(even)>div {
  position: relative;
}

.list_history ul li:nth-child(even)>div::before,
.list_history_two ul li:nth-child(even)>div::before {
  top: auto;
  bottom: -2.625rem;
}

.list_history ul li:nth-child(even)>div::after,
.list_history_two ul li:nth-child(even)>div::after {
  bottom: -2.25rem;
  top: auto;
}

.list_history ul li:nth-child(even) .text,
.list_history_two ul li:nth-child(even) .text {
  margin-bottom: 0.625rem;
  order: 1;
}

.list_history ul li:nth-child(even) .text::after,
.list_history_two ul li:nth-child(even) .text::after {
  top: auto;
  bottom: 0;
}

.list_history ul li:nth-child(even) .year,
.list_history_two ul li:nth-child(even) .year {
  order: 2;
}

.list_news.cjwt .ul li {
  background: transparent;
  padding: 0 15px;
}

.list_news.cjwt .ul li:hover {
  box-shadow: none;
}

.list_news.cjwt .ul li:hover>div {
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_news.cjwt .ul li>div {
  background: #e9ecf1;
  padding: 2rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.fix_ul li:hover .right_div.img {
  min-width: 7.5rem !important;
  height: 7.5rem;
}

.fix_ul li:hover .right_div.img img {
  filter: brightness(1) invert(0);
}

.list_about_two .swiper_about2 .swiper-slide {
  padding: 1.875rem;
  background: #fff;
}

.center_fix .modal-dialog {
  max-width: 650px;
}

.center_fix .modal-header .close {
  opacity: 1;
}

.center_fix .modal-header .close .iconfont {
  color: #fff;
}

.center_fix .modal-content {
  border: none;
}

.center_fix .modal-body {
  background: url(../img/500.jpg) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 4;
}

.center_fix .modal-body::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.178);
  z-index: -1;
}

.center_fix.active {
  display: block;
  opacity: 1;
}

.center_fix .margin {
  margin: 0.375rem 0 0.875rem;
}

.center_fix .flex {
  justify-content: center;
}

.center_fix .modal-body {
  padding: 3rem 2rem 1rem;
}

.center_fix .modal-header {
  position: absolute;
  top: 0.625rem;
  right: 1.5rem;
  z-index: 888;
  border-bottom: none;
}

.center_fix .tel {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  color: #c80f0f;
  margin-bottom: 1rem;
}

.center_fix .title {
  font-size: 1.875rem;
}

.center_fix form {
  text-align: center;
  margin: 1.5rem 0 1rem;
}

.center_fix form .zhizi_td1 {
  width: 24rem;
  display: inline-block;
  position: relative;
}

.center_fix form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 3.125rem;
  line-height: 3.125rem;
  padding: 0 1.25rem;
  height: 3.125rem;
  background: transparent;
  color: #fff;
}

.center_fix form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.center_fix form>div {
  display: flex;
  justify-content: flex-end;
}

.center_fix form button {
  width: 10.9375rem;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  border: none;
  line-height: 3.125rem;
  color: #fff;
  border-radius: 3.75rem;
  background: -moz-linear-gradient(50% 98.7% 90deg, #d35f5f 0%, #c60000 100%);
  background: -webkit-linear-gradient(90deg, #d35f5f 0%, #c60000 100%);
  background: -webkit-gradient(linear, 50% 98.7%, 50% 3.54%, color-stop(0, #d35f5f), color-stop(1, #c60000));
  background: -o-linear-gradient(90deg, #d35f5f 0%, #c60000 100%);
  background: -ms-linear-gradient(90deg, #d35f5f 0%, #c60000 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#D35F5F', endColorstr='#C60000' ,GradientType=0)";
  background: linear-gradient(0deg, #d35f5f 0%, #c60000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#C60000', endColorstr='#D35F5F', GradientType=0);
}

.center_fix .flex .more {
  margin-left: 1rem;
}

.center_fix .flex .more:nth-child(1) {
  margin-left: 0;
}

.modal-open {
  padding-right: 0 !important;
}

.modal {
  top: 50%;
  left: 50%;
  max-width: 650px;
  height: auto;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.flex_pro >div {
    width: 25%;
    margin: 0.9375rem 0;
}
.flex_pro {
    flex-wrap: wrap;
    justify-content: flex-start;
}
 
 .channel_case .sum>div {
     display: none;
 }
 
  .channel_case .sum>div.active {
     display: block;
 }
 .list_video{
     padding: 3.6875rem 0;
 }
 .list_video .video{
     text-align: center;
     /*height: 45.7313rem;*/
     width: 100%;
 }
  .list_video .video video{
     height: 100%;
     width: 100%;
 }
 #pro2 .en_title img{
     width:100%;
 }
/* .phone_show_990, .phone_show_767 {*/
/*    display: none !important;*/
/*}*/
    .video-container {
      position: relative;
      margin: 0 auto;
    }

    .video-container video {
      width: 100%;
      height: 100%;
      display: block;
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background 0.3s;
    }

    .play-btn:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    .play-btn:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-left: 24px solid white;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      margin-left: 6px;
    }

    .play-btn.hidden {
      display: none;
    }
