:root {
  --base-color: #044179;
  --two-color: #044179;
}
.banner_swiper .swiper-button-next,
.banner_swiper .swiper-button-prev {
  background: rgba(255, 255, 255, 0.4);
  border: 2px #f7f7f7 solid;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.banner_swiper .swiper-button-next::after,
.banner_swiper .swiper-button-prev::after {
  font-size: 24px;
  color: #fff;
}
.banner_swiper .swiper-pagination span {
  width: 50px;
  border-radius: 10px;
  background: #fff;
  opacity: 1;
}
.banner_swiper .swiper-pagination span.swiper-pagination-bullet-active {
  background: var(--base-color);
}
.head {
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
}
.head .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 31%;
}
.logo img{
  height: 70px;
}
.tle {
  width: 60%;
}
.tle ul {
  display: flex;
  justify-content: flex-end;
}
.tle li {
  height: 100px;
  float: left;
}
.tle li:nth-child(1) {
  height: 100px;
  /* padding-left: 80px; */
  display: flex;
  align-items: center;
}
.tle ul li:nth-child(1):before {
  content: '\f095';
    font-size: 30px;
    border: 2px var(--base-color) solid;
    width: 57px;
    height: 57px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: #fff;
    color: var(--base-color);
}
.tle li p,
.tle li span {
  font-size: 26px;
    line-height: 25px;
    font-weight: bold;
    color: var(--base-color);
}
.tle li p{
  font-size: 16px;
  font-weight: normal;
  color: #666;
}
.tle li:nth-child(2) {
  height: 100px;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.tle li:nth-child(3) {
  /* height: 68px;*/
  width: 22%;
  border-radius: 20px;
  background: var(--base-color);
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
.tle li:nth-child(3) div {
  text-align: left;
}
.tle li:nth-child(3) p {
  color: #fff;
  text-align: center;

  margin-top: 10px;
}
.tle li:nth-child(3)::before {
  content: '\f10b';
  font-size: 26px;
  margin: 10px 5px;
  color: #fff;
}
.tle li:nth-child(3) span {
  color: #fff;
  display: block;
  text-align: left;
}
/*nav*/
.ct {
  background: #fff;
  border-top: 1px solid rgb(235, 235, 235);
  height: 70px;
}
#topnav {
  background: #fff;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
}
.navbar {
  font: 14px/1.43 'Noto Sans SC', Arial, sans-serif;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 70px;
  color: #333;
}
.navbar .nav:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  color: '';
}
.navbar .nav > li {
  position: relative;
  float: left;
  width: 125px;
}
.navbar .nav > li:last-child {
  margin-right: 0px;
}
.navbar .nav > li > a {
  position: relative;
  display: block;
  text-align: center;
  height: 70px;
  line-height: 70px;
}
.navbar .nav > li > a:hover,
.navbar .nav > li > a:hover .subtitle,
.navbar .nav .active,
.navbar .nav .active .subtitle {
  color: var(--two-color);
}
.navbar .nav > li > a:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  background: var(--two-color);
}
.navbar .nav > li > a:hover:after,
.navbar .nav .active:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.navbar .nav a span {
  display: block;
  font-size: 16px;
}
.navbar .nav {
  width: 1250px;
  margin: 0 auto;
}
.navbar .nav .title {
}
.navbar .nav .subtitle {
  font-size: 9px;
  padding-top: 5px;
  text-transform: uppercase;
  color: #666;
}
.navbar .subnav {
  position: absolute;
  top: 70px;
  left: 50%;
  visibility: hidden;
  width: 170px;
  margin-left: -85px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
}
.navbar .nav > li:hover .subnav {
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.navbar .subnav li a {
  font-size: 14px;
  line-height: 50px;
  position: relative;
  display: block;
  overflow: hidden;
  height: 50px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  color: #666;
}
.navbar .subnav li a:hover {
  padding-left: 0px;
  color: #fff;
  background: var(--two-color);
}
.navbar .subnav li a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  visibility: hidden;
  width: 5px;
  height: 10px;
  margin-top: -5px;
  content: '';
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.navbar .subnav li a:hover:after {
  right: 15px;
  visibility: visible;
}
.navbar .nav > li.selected a:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.navbar .nav > li.selected a .title {
  color: var(--two-color);
}
.fixed-on #tmf3 .navbar .subnav {
  position: fixed;
  left: auto;
  margin-left: -40px;
}
/**/
.fullSlide {
  position: relative;
  margin: 0 auto;
}
.fullSlide .bd {
  position: relative;
  z-index: 0;
}
.fullSlide .bd li img {
  width: 100%;
  vertical-align: top;
}
.fullSlide .hd {
  position: relative;
  z-index: 1;
  margin-top: -61px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.fullSlide .hd ul {
  text-align: center;
  padding-top: 5px;
}
.fullSlide .hd ul li {
  cursor: pointer;
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 60px;
  height: 4px;
  margin: 5px;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  line-height: 9999px;
}
.fullSlide .hd ul .on {
  background: var(--two-color);
}
.fullSlide .prev,
.fullSlide .next {
  z-index: 1;
  display: block;
  width: 55px;
  height: 55px;
  position: relative;
  margin: -17% 0 0 3%;
  float: left;
  background: url(../img/arrow.png) 0 0 no-repeat;
  filter: alpha(opacity=40);
  opacity: 0.4;
}
.fullSlide .next {
  background-position: right 0;
  float: right;
  margin-right: 3%;
}
.fullSlide .prev:hover,
.fullSlide .next:hover {
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* index title */
.index_title {
  margin-bottom: 30px;
  padding-top: 40px;
  text-align: center;
}
.index_title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  letter-spacing: 4px;
}
.index_title h2 span {
  color: #333;
}
/* .index_title span {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--two-color);
  margin: 15px auto;
} */
.index_title > span {
  display: block;
  font-size: 16px;
  color: #afafaf;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.index_title p {
  color: #5f5f5f;
  font-size: 14px;
}

/*  section-product-area  */
.section-product-area {
  width: 100%;
  padding-bottom: 80px;
  overflow: hidden;
  background: #f7f7f7;
}
.product-area-class {
  text-align: center;
  width: 220px;
  float: left;
  border: 1px #f2f2f2 solid;
}
.product-area-list{
  width: 1000px;
  float: right;
}
.product-area-class h2{
  background: var(--base-color);
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 24px 0;
}
.product-area-class h2 span{
  color: #f7f7f7;
  font-size: 14px;
  display: block;
  opacity: .5;
}
.product-area-class .class-tel{
  background: var(--base-color);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 25px 0;
}
.product-area-class a {
  font-size: 16px;
  color: #333;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  border-bottom: 1px #f2f2f2 solid;
}
.product-area-class a span:nth-of-type(1) {
  display: block;
  width: 28px;
  height: 28px;
  transition: 0.2s 0.3s;
  overflow: hidden;
}
.product-area-class a span {
  margin-left: 10px;
}
.product-area-class a.active,
.product-area-class a:hover {
  color: var(--two-color);
}
.product-area-class a.active img,
.product-area-class a:hover img {
  filter: drop-shadow(28px 0 0 var(--two-color));
  transform: translateX(-28px);
  overflow: hidden;
}
.product_slide {
  background: #ffffff;
  transition: all 0.5s ease-out;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  margin: 5px;
}
.product_slide:hover {
  transition: all 0.5s;
  background: var(--two-color);
}
.product_swiper1,
.product_swiper2,
.product_swiper3,
.product_swiper4,
.product_swiper5,
.product_swiper6,
.product_swiper7{
  width: 100%;
  height: 730px;
}
.product_swiper1 .swiper-slide,
.product_swiper2 .swiper-slide,
.product_swiper3 .swiper-slide,
.product_swiper4 .swiper-slide,
.product_swiper5 .swiper-slide,
.product_swiper6 .swiper-slide,
.product_swiper7 .swiper-slide{
  height: calc((710px - 5px) / 2);
}
.slide_img {
  height: 230px;
  display: block;
  overflow: hidden;
  text-align: center;
  background: #fff;
}
.slide_img img {
  width: 100%;
  height: 100%;
    display: block;
    overflow: hidden;
    object-fit: contain;
    transition: all .3s;
}
.slide_img:hover img {
  transform: scale(1.05);
}
.slide_txt {
  text-align: center;
  padding: 10px 20px;
  border-top: 1px #f2f2f2 solid;
}
.slide_txt a {
  display: block;
  height: 40px;
  font-weight: bold;
  font-size: 18px;
  line-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.slide_txt p {
  width: 100%;
  line-height: 25px;
  height: 50px;
  font-size: 14px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}
.product_slide:hover a {
  color: #fff;
}
.product_slide:hover p {
  color: #fff;
}
/*  section-case-area */
.section-case-area {
  padding-bottom: 10px;
  overflow: hidden;
  width: 100%;
  background: url(../img/sction2.jpg) no-repeat center;
}

.section-case-area .item1 {
  margin-top: 80px;
}
.section-case-area .item1 img {
  vertical-align: top;
  transition: all 0.3s linear;
}
.section-case-area .item1 li {
  position: relative;
  float: left;
  margin-right: 20px;
  width: 396px;
  height: 334px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 55px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}
.section-case-area .item1 .item2 {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 60px;
  text-align: center;
  background: #fff;
  color: #000;
  overflow: hidden;
  border-top: 5px solid var(--two-color);
}
.section-case-area .item1 .item2 a {
  color: #000 !important;
  height: 60px;
}
.section-case-area .item1 .item2 a p {
  width: 120px;
  float: left;
  background: var(--two-color);
  height: 60px;
}
.section-case-area .item1 .item2 a p img {
  margin-top: 10px;
}
.section-case-area .item1 h3 {
  color: #000000;
  width: 20px;
  float: left;
  width: 100%;
  line-height: 60px;
  font-size: 18px;
}
.section-case-area .item1 li:hover .item2 {
  background: var(--base-color);
  border-top: 5px solid var(--base-color);
}
.section-case-area .item1 li:hover .item2 h3 {
  color: #ffffff;
}
.section-case-area .item1 li:hover img {
  transform: scale(1.05);
}

.section-case-area .more {
  margin-left: 20px;
  display: block;
  width: 200px;
  height: 40px;
  margin: 20px auto;
  border: 1px solid #333333;
  text-align: center;
  clear: both;
  line-height: 40px;
  border-radius: 20px;
  color: #333;
  font-size: 16px;
}
.section-case-area .more:hover {
  border: none;
  color: #fff;
  background: var(--two-color);
}

.section-why-area {
  width: 100%;
  overflow: hidden;
  height: 1006px;
  background: #f7f7f7;
}

.section-why-area ul {
  margin-top: 67px;
}
.section-why-area ul li {
  height: 290px;
  margin-right: 30px;
  padding: 10px;
  margin-bottom: 30px;
  float: left;
  width: 380px;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.section-why-area ul li div {
  position: relative;
  z-index: 8;
}
.section-why-area ul li::after {
  content: ' ';
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--two-color);
  z-index: 1;
  transition: all 0.3s;
}
.section-why-area ul li i{
  width: 60px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}
.section-why-area ul li img {
  color: #000;
  height: 60px;
  margin: 20px 0;
  overflow: hidden;
}
.section-why-area ul li p {
  margin-top: 0px;
  height: 40px;
  color: #000;
  font-size: 22px;
}
.section-why-area ul li span {
  margin-top: 10px;
  line-height: 30px;
  color: #000;
  font-size: 15px;
  display: block;
  width: 80%;
  margin: 10px auto 0;
}
.section-why-area ul li:hover::after {
  height: 100%;
}
.section-why-area ul li:hover *{
  color: #fff;
}
.section-why-area ul li:hover img{
  filter: drop-shadow(#ffffff 60px 0);
  transform: translateX(-60px);
}

/* section-client-area */
.section-client-area {
  width: 100%;
/*  padding-bottom: 80px;*/
  background: url(../img/sction4.jpg) no-repeat center;
  overflow: hidden;
}
.section-client-area ul {
  margin-top: 20px;
}
.section-client-area .client-box {
  background: #fff;
  transition: all 0.5s;
  float: left;
  width: 98%;
  height: 100px;
  border: 1px #f7f7f7 solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1%;
  padding: 1%;
}
.section-client-area .client-box img {
  display: block;
  margin: 0 auto;
  height: auto;
  text-align: center;
}
.swiperclient .swiper-wrapper{
  padding-bottom: 50px;
}
@keyframes test {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.section-client-area ul li:hover {
  animation: test 0.25s ease-in 3;
}
.section-info-area {
  background: #f7f7f7;
  width: 100%;
}
.index_new {
  margin-top: 20%;
  margin-left: 15%;
  width: 20%;
}
.index_new h2 {
  font-weight: bold;
  font-size: 48px;
}
.index_new a {
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  height: 50px;
  width: 180px;
  margin-top: 20px;
  display: block;
  border-radius: 20px;
  background: var(--two-color);
  color: #fff;
}
.index_new2 {
  width: 100%;
  margin: 40px 0 0;
  padding-bottom: 60px;
}
.section-info-area_slide {
  width: 400px;
}
.slide5_img {
  display: block;
  height: 255px;
  /*width: 400px;*/
  display: block;
  transition: all 0.5s;
  overflow: hidden;
}
.slide5_img img {
  transition: all 0.5s;
  height: 100%;
  width: 100%;
}
.slide5_img:hover img {
  transform: scale(1.1);
}
.slide5_txt {
  padding: 10px;
  background: #fff;
  border-top: 5px var(--two-color) solid;
}
.slide5_txt .news_bt {
  height: 40px;
  display: block;
  font-size: 18px;
  line-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.slide5_txt .news_bt:hover {
  color: var(--two-color);
}
.slide5_txt img {
  clear: both;
}
.slide5_txt .wz {
  margin-top: 11px;
  height: 80px;
  font-size: 13px;
  overflow: hidden;
  line-height: 25px;
  color: #333;
  margin-bottom: 11 px;
}
.slide5_line {
  padding-top: 0;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slide5_line p {
  font-size: 14px;
  float: left;
  line-height: 30px;
}
.slide5_line p span {
  font-size: 18px;
  float: left;
  color: #333333;
}
.slide5_line a {
  width: 15%;
  float: right;
  padding-right: 10px;
  text-align: right;
}
.footer {
  width: 100%;
  overflow: hidden;
  background: #2e384d;
  padding-top: 60px;
}
.foot_nav {
/*  height: 260px;*/
  overflow: hidden;
  width: 14%;
}
.foot_nav:nth-of-type(5){
  width: 24%;
}
.foot_nav:nth-of-type(6){
  width: 18%;
}
.foot_nav h2 {
  color: #fff;
  font-size: 18px;
}
.foot_nav h2 a {
  color: #fff;
  font-size: 15px;
}
.foot_nav ul {
  margin-bottom: 20px;
  margin-top: 20px;
}
.foot_nav ul li {
  line-height: 40px;
  color: #fff;
}
.foot_nav ul li a {
  font-size: 14px;
  color: #fff;
}
.foot_nav p {
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.foot_nav img {
  width: 99px;
  height: 99px;
}
.footer_cont {
  clear: both;
  overflow: hidden;
}
.footer_cont ul li {
  float: left;
  margin-right: 20px;
  color: #fff;
}
.footer_cont ul li p {
  font-size: 15px;
}
.foot {
  clear: both;
  border-top: 1px #3b4865 solid;
  margin-top: 20px;
}
.foot p {
  text-align: center;
  height: 50px;
  font-size: 15px;
  color: #fff;
  line-height: 50px;
}
.foot p a {
  color: #fff;
}
.zy_banner {
  width: 100%;
  height: 381px;
  display: none;
}
.other_bt {
}
.other_bt h2 {
  font-size: 30px;
  color: #000000;
  margin-bottom: 20px;
}
.other_bt > p {
  width: 220px;
  height: 8px;
  background: #a71717;
}
.other_bt span {
  display: block;
  font-size: 16px;
  margin-top: 20px;
}
.hy_cont {
  background: #f4f4f4;
  padding: 20px;
  overflow: hidden;
  margin-top: 20px;
}
.hy_cont .hy_cont_img {
  width: 45%;
  height: 421px;
  display: block;
  overflow: hidden;
  transition: all 0.5s;
}
.hy_cont .hy_cont_img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.hy_cont .hy_cont_img:hover img {
  transform: scale(1.1);
}
.hy_cont_txt {
  width: 45%;
}
.hy_cont_txt h3 {
  font-size: 30px;
  color: #000000;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.hy_cont_txt p {
  font-size: 16px;
  padding-top: 20px;
  height: 160px;
  line-height: 30px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 20px;
}
.hy_cont_txt ul {
  margin-top: 30px;
}
.hy_cont_txt ul li {
  float: left;
  height: 50px;
  margin-right: 20px;
  width: 200px;
  background: #a71717;
}
.hy_cont_txt ul li a {
  text-align: center;
  display: block;
  height: 50px;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
}
.hy_cont_txt ul li:hover {
  background: #2e384d;
}
.hy_cont_js {
  margin-bottom: 60px;
  background: #f4f4f4;
  padding: 20px;
  overflow: hidden;
  margin-top: 60px;
}
.hy_cont_bt2 {
  height: 60px;
  border-bottom: 2px solid #a71717;
  background: #fff;
}
.hy_cont_bt2 h3 {
  line-height: 60px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.hy_cont_js2 {
  padding-bottom: 20px;
  padding-top: 30px;
}
.hy_cont_fy {
  font-size: 18px;
  margin-top: 30px;
}
/*.hy_cont_fy p {
    font-size: 18px;
    margin-top: 30px;
}*/
.hy_cont_fy p:hover a {
  color: #a71717;
}
.Menu002662 {
  text-align: center;
  padding: 2% 0;
}
.Menu002662 .columnname {
  font-size: 48px;
  color: #333;
  padding-bottom: 2%;
  display: none;
}
.Menu002662 ul {
  position: relative;
}
.Menu002662 ul:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  background: #ccc;
  z-index: -1;
}
.Menu002662 ul li {
  margin: 0 4px;
  position: relative;
  padding: 8px;
  display: inline-block;
}
.Menu002662 ul li a {
  display: block;
  background: #e5e5e5;
  color: #333;
  padding: 8px 45px;
  line-height: 24px;
  font-size: 16px;
}
.Menu002662 ul li i {
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  opacity: 0;
}
.Menu002662 ul li i.i_1 {
  left: 0;
}
.Menu002662 ul li i.i_2 {
  right: 0;
}
.Menu002662 ul li i::before,
.Menu002662 ul li i::after {
  position: absolute;
  content: '';
  width: 13px;
  height: 12px;
}
.Menu002662 ul li i::before {
  top: 0;
}
.Menu002662 ul li i::after {
  bottom: 0;
}
.Menu002662 ul li i.i_1::before,
.Menu002662 ul li i.i_1::after {
  left: 0;
  border-left: 2px solid #009ba4;
}
.Menu002662 ul li i.i_2::before,
.Menu002662 ul li i.i_2::after {
  right: 0;
  border-right: 2px solid #009ba4;
}
.Menu002662 ul li i.i_1::before,
.Menu002662 ul li i.i_2::before {
  border-top: 2px solid #009ba4;
}
.Menu002662 ul li i.i_1::after,
.Menu002662 ul li i.i_2::after {
  border-bottom: 2px solid #009ba4;
}
.Menu002662 ul li a:hover,
.Menu002662 ul li.aon a {
  background: #009ba4;
  color: #fff;
  font-weight: bold;
}
.Menu002662 ul li:hover i,
.Menu002662 ul li.aon i {
  opacity: 1;
}
@media (max-width: 1024px) {
  .Menu002662 .columnname {
    font-size: 36px;
  }
  .Menu002662 ul:before {
    display: none;
  }
  .Menu002662 ul {
    display: block;
  }
  .Menu002662 ul li {
    float: left;
    width: 49%;
    margin: 0;
  }
  .Menu002662 ul li a {
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .Menu002662 .columnname {
    font-size: 26px;
  }
  .Menu002662 ul li a {
    font-size: 12px;
  }
}
/*
 .RighInfo001749 
 */
.RighInfo001749 {
  padding: 2% 0;
  line-height: 1.5;
}
.RighInfo001749 .videobox {
  float: right;
  margin: 0 0 5% 5%;
  width: 35%;
  position: relative;
}
.RighInfo001749 .videobox i {
  position: absolute;
  width: 3px;
  height: 90%;
  top: 5%;
  z-index: 99;
}
.RighInfo001749 .videobox i.i_1 {
  left: 5%;
}
.RighInfo001749 .videobox i.i_2 {
  right: 5%;
}
.RighInfo001749 .video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
}
/**/
.other_pro {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}
.other_nav {
  width: 100%;
  height: auto;
}
.other_nav ul .one {
  float: left;
  width: 19%;
  margin-left: 1%;
  position: relative;
}
/*.other_nav ul li:nth-child(1){
	float: left;
	width: 20%;
	margin-left: 1%;
}*/
.other_nav ul .one a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
  padding: 0 6px;
  text-align: center;
  display: block;
  height: 60px;
  line-height: 60px;
  border: none;
  border-bottom: 9px solid #e9e9e9;
}
.other_nav ul .one:hover > a {
  color: var(--two-color);
  border-bottom: 9px solid var(--two-color);
}
.other_nav ul .one.hover > a {
  color: var(--two-color) !important;
  border-bottom: 9px solid var(--two-color) !important;
}
.other_nav li.one .submenu {
  display: none;
  width: 100%;
  z-index: 555;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  position: absolute;
}
.other_nav li.one .submenu li {
  float: left;
  width: 100%;
  border-bottom: none !important;
}
.other_nav li.one .submenu li a {
  float: left;
  width: 100%;
  border-bottom: none !important;
}
.other_nav li.two:hover a {
  color: var(--two-color);
  font-size: 16px;
  font-weight: bold;
}
.other_nav li.two .curr {
  color: var(--two-color);
}
.other_pro_box {
  margin-top: 30px;
  overflow: hidden;
}
.section2_slide {
  background: #fff;
}
.pro_box_list {
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 30px;
  clear: both;
}
.pro_box_list ul{
  display: flex;
  flex-wrap: wrap;
/*  justify-content: space-between;*/
}
.pro_box_list li {
  float: left;
  margin: 10px;
}
.pro_box_list li .section1_slide {
  width: 290px !important;
  transition: all 0.5s ease-out;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
.pro_box_list li .section1_slide .slide_img{
height: 290px !important;
}
.pro_box_list h4 {
  font-size: 28px;
}
.pro_box_list .pro_h2 {
  margin-top: 20px;
  overflow: hidden;
}
.pro_box_list .pro_h2 p {
  float: left;
  width: 80%;
  font-size: 16px;
  line-height: 35px;
}
.pro_box_list .pro_h2 a {
  display: block;
  width: 15%;
  height: 40px;
  font-size: 15px;
  float: right;
  background: var(--two-color);
  color: #fff;
  text-align: center;
  line-height: 40px;
}
.other_pro {
  margin-bottom: 60px;
}
/**/
.cp_cont {
  padding: 20px;
  overflow: hidden;
  margin-top: 20px;
}
.cp_cont .cp_cont_img {
  width: 40%;
  height: 421px;
  display: block;
  overflow: hidden;
  transition: all 0.5s;
  background: #f0f3fa;
}
.cp_cont .cp_cont_img img {
  height: 100%;
  transition: all 0.5s;
}
.cp_cont_txt {
  background: #efefef;
  width: 55%;
  padding: 20px;
  height: 421px;
}
.cp_cont_txt h3 {
  padding-top: 30px;
  font-size: 30px;
  color: #000000;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.cp_cont_txt p {
  font-size: 16px;
  padding-top: 20px;
  height: 160px;
  line-height: 30px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 20px;
}
.cp_cont_txt ul {
  margin-top: 30px;
}
.cp_cont_txt ul li {
  float: left;
  height: 50px;
  margin-right: 20px;
  width: 200px;
  background: #a71717;
}
.cp_cont_txt ul li a {
  text-align: center;
  display: block;
  height: 50px;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
}
.cp_cont_txt ul li:hover {
  background: #2e384d;
}
.other_pro_cont {
  margin-top: 30px;
  overflow: hidden;
  width: 100%;
}
.xq_nav {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 5px solid #e7e7e7;
}
.xq_nav ul {
  display: flex;
  flex-direction: row;
}
.xq_nav ul li {
  width: 160px;
  height: 60px;
  line-height: 60px;
  position: relative;
}
.xq_nav ul li p {
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}
.xq_nav ul li.hover::after,
.xq_nav ul li:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  border-bottom: 5px solid #a71717;
}
.xq_nav ul li.hover p {
  color: #a71717;
}
.xq_box {
  margin-top: 30px;
}
.xq_list h5 {
  font-size: 20px;
  padding-left: 30px;
  background: url(../img/incon.png) no-repeat left center;
}
.xq_nr {
  margin-top: 20px;
}
.xq_nr p {
  font-size: 16px;
  line-height: 30px;
}
.xq_nr table {
  border-collapse: collapse;
  width: 100% !important;
  height: auto;
}
.xq_nr table td {
  border: 1px solid #cad3de;
  /*height: 30px !important;
    line-height: 60px  !important;*/
  text-align: center;
}
.xg_img {
  margin-top: 30px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.xg_img h5 {
  font-size: 20px;
  color: #0462a6;
}
/*在线留言*/
.online {
  margin-top: 30px;
  clear: both;
}
.online h4 {
  height: 50px;
  color: #fff;
  font-size: 16px;
  margin-left: 20px;
  text-align: center;
  background: #a71717;
  line-height: 50px;
  margin-right: 20px;
  margin-bottom: 10px;
}
/*Ã¥Å“Â¨Ã§ÂºÂ¿Ã§â€¢â„¢Ã¨Â¨â‚¬*/
.message {
  overflow: hidden;
  margin: 10px auto;
}
.message_box {
  width: 100%;
  margin: auto;
  margin-top: 10px;
  padding: 20px;
}
.message_box input {
  width: 48%;
  padding: 0 10px;
  height: 48px;
  line-height: 48px;
  background: #f1f1f1;
  margin-right: 2px;
  margin-bottom: 20px;
  border: none;
}
.message_box textarea {
  width: 97%;
  padding: 10px;
  background: #f1f1f1;
  height: 118px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #888;
  border: none;
}
.message_box .sub_btn {
  width: 220px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #ffffff;
  background: #a71717;
}
.btn_group {
  width: 220px;
  margin: auto;
}
.inp4 .Img1 {
  width: 120px;
  height: 38px;
  border-left: 1px solid #d1d1d1;
}
.inp4 input {
  width: 17%;
  height: 38px;
}
.inp4 span {
  margin-top: 13px;
  display: block;
  float: left;
}
.other_pro_cont {
  margin-bottom: 40px;
}
.about_cont {
  margin-top: 10px;
  margin-bottom: 60px;
}
.about_cont p {
  line-height: 30px;
  font-size: 16px;
}
.about_img1 {
  width: 1233px;
  margin-top: 30px;
  height: 454px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.5s;
}
.about_img1 img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.about_img1:hover img {
  transform: scale(1.1);
}
.about_slide p {
  height: 40px;
  line-height: 40px;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}
.about_box2 {
  margin-top: 40px;
  height: 706px;
  width: 100%;
  overflow: hidden;
  background: url(../img/aboutlc.jpg) no-repeat center;
}
.about_box3 {
/*  height: 778px;*/
  width: 100%;
  padding-bottom: 80px;
  overflow: hidden;
  background: url(../img/aboutry.jpg) no-repeat center;
}
.about-three {
  width: 100%;
  height: 845px;
  background: url(../img/aboutlc.jpg) no-repeat center;
  background-size: cover;
}
.about3-shodow {
  width: 100%;
  height: 100%;
}
.about3-red {
  background: #da3519;
  width: 68%;
  height: 377px;
  margin-top: 40px;
}
.about3-red .nian {
  margin-top: 70px;
  padding: 0 32px;
  height: 74px;
  line-height: 74px;
  color: #dc3517;
  font-size: 48px;
  background: #fff;
  display: inline-block;
}
.about3-red .txt {
  margin-top: 30px;
  padding: 0 96px 0 181px;
}
.about3-red .txt h2 {
  font-size: 20px;
  color: #fff;
  height: 60px;
  line-height: 30px;
}
.about3-red .txt p {
  font-size: 16px;
  color: #fff;
  height: 60px;
  line-height: 30px;
}
.about3-red .txt .zh {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 10px;
}
.about3-red .txt .en {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
}
.about3-fr {
  padding-top: -27px;
  text-align: center;
  width: 22%;
  height: 100%;
  position: relative;
}
.about3-fr .tit {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  line-height: 45px;
}
.about3-fr .en {
  font-size: 15px;
  color: #fff;
  line-height: 24px;
}
.about3-fr .gallery-thumbs {
  height: 100%;
}
.about3-fr .gallery-thumbs .swiper-slide {
  height: 80px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 80px;
  text-align: center;
}
.about3-fr .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  color: #cb3218;
  position: relative;
}
.about3-fr .gallery-thumbs .swiper-slide.swiper-slide-thumb-active:before {
  position: absolute;
  width: 27%;
  height: 1px;
  background: #cb3218;
  content: '';
  top: 50%;
  left: 0;
}
.about3-fr .swiper-button-next {
  width: 38px;
  height: 22px;
  margin-top: 0;
  right: 50%;
  bottom: -30px;
  background: url(../img/about-down.png) no-repeat center !important;
  background-size: 19px 11px;
  margin-right: -19px;
  top: auto;
}
.about3-fr .swiper-button-prev {
  width: 38px;
  height: 22px;
  margin-top: 0;
  left: 50%;
  top: -30px;
  background: url(../img/about3-up.png) no-repeat center !important;
  background-size: 19px 11px;
  margin-left: -19px;
  bottom: auto;
}
.about3-box {
  position: relative;
  height: 480px;
  margin-top: 50px;
}
.about-three .about-top {
  display: none;
}
.ry_box {
  margin-top: 40px;
}
.about_slide img {
  width: 295px;
}
.about_box1 {
  margin-bottom: 40px;
}
/*联系我们*/
.contact_us {
  overflow: hidden;
  margin-top: 40px;
}
.contact_txt {
  width: 40%;
}
.contact_txt h2 {
  font-size: 30px;
  padding-left: 30px;
  background: url(../img/ct.jpg) no-repeat left;
}
.contact_txt h2:before {
  width: 60px;
  height: 40px;
  background: #009ba4;
}
.contact_fs {
  border-top: 1px dashed #ccc;
  margin-top: 20px;
  padding-top: 20px;
}
.contact_fs p {
  line-height: 30px;
  font-size: 16px;
}
.contact_img {
  width: 50%;
}
.contact_img img {
  width: 100%;
}
.contact_ly {
  width: 100%;
  height: 700px;
  background: url(../img/contact_us.jpg) no-repeat center;
}
.about_box4 {
  overflow: hidden;
  margin-bottom: 80px;
}
.culture_one {
  width: 55%;
}
.culture_one {
  width: 65%;
}
.culture_img1 {
  height: 340px;
  width: 100%;
  display: block;
  overflow: hidden;
}
.culture_img1 img {
  height: 100%;
  width: 100%;
  transition: all 0.5s;
}
.culture_img1:hover img {
  transform: scale(1.1);
}
.culture_txt1 {
  width: 100%;
  padding: 20px;
  height: 140px;
  background: #f0f3fa;
}
.culture_txt1 h2 {
  font-size: 30px;
  text-align: center;
}
.culture_txt1 p {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
}
.culture_two {
  width: 32%;
}
.culture {
  overflow: hidden;
  margin-bottom: 30px;
}
.other_news {
  margin-top: 40px;
  overflow: hidden;
  margin-bottom: 40px;
}
.other_news li {
  margin-left: 38px;
  margin-bottom: 40px;
  width: 367px;
  float: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.other_news li:nth-child(1),
.other_news li:nth-child(4) {
  margin-left: 0px;
}
/**/
.other_nav2 {
  height: 80px;
}
.other_nav2 ul li {
  float: left;
  width: 24%;
  margin-left: 1%;
}
.other_nav2 ul li a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  padding: 0 6px;
  text-align: center;
  display: block;
  height: 89px;
  line-height: 89px;
  border: none;
  border-bottom: 9px solid #e9e9e9;
}
.other_nav2 ul li:hover a {
  color: var(--two-color);
  border-bottom: 9px solid var(--two-color);
}
.other_nav2 ul li.hover a {
  color: var(--two-color) !important;
  border-bottom: 9px solid var(--two-color) !important;
}
.ny-main {
  padding: 0 0 3%;
  z-index: 3;
}
.lcoual li {
  box-shadow: 0px 4px 26px #ccc;
  margin-top: 50px;
  height: 455px;
}
.lcoual li .pic {
  width: 45%;
  float: left;
  overflow: hidden;
}
.lcoual li .pic a {
  background: no-repeat center center;
  background-size: cover;
  display: block;
  overflow: hidden;
  height: 455px;
  transition: all 0.5s ease;
}
.lcoual li .pic:hover a {
  transform: scale(1.1);
}
.lcoual li .con {
  float: right;
  width: 55%;
  height: 455px;
  display: table;
  background: #fff;
  padding: 0 5%;
  transition: all 0.5s ease;
}
.tab-cell {
  display: table-cell;
  vertical-align: middle;
}
.lcoual li .con .p1 {
  font-size: 30px;
  background: url(../img/d1.png.html) repeat-x left center;
}
.lcoual li .con .p11 {
  font-size: 30px;
  background: url(../img/d2.png.html) repeat-x left center;
}
.lcoual li .con .p1 span {
  display: inline-block;
  padding-right: 20px;
  background: #fff;
  color: #333;
  transition: all 0.5s ease;
}
.lcoual li .con .p2 {
  opacity: 0.6;
  margin-top: 5px;
  text-transform: uppercase;
}
.lcoual li .con .p3 {
  margin-top: 20px;
  padding-top: 25px;
  position: relative;
  line-height: 25px;
  height: 150px;
  overflow: hidden;
}
.lcoual li .con .p3:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 2px;
  background: #0068b7;
}
.lcoual li .con .p6:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 2px;
  background: #fff !important;
}
.lcoual li .con .p4 {
  margin-top: 20px;
}
.lcoual li .con .p4 span {
  display: inline-block;
  border: 1px solid #ccc;
}
.lcoual li .con .p4 span a {
  position: relative;
  display: inline-block;
  line-height: 45px;
  padding: 0 35px;
  border: 1px solid #666;
  transition: all 0.5s ease;
  position: relative;
  left: -5px;
  top: -5px;
  text-decoration: none;
}
.lcoual li .con .p4 span a i {
  position: relative;
  z-index: 2;
}
.lcoual li .con .p4 span a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #0068b7;
  transition: all 0.5s ease;
}
.lcoual li .con .p4 span a:hover {
  background: #0068b7;
  color: #fff;
}
.lcoual li .con .p5 span a:hover {
  background: #fff;
  color: #0068b7 !important;
}
.lcoual li:nth-child(2n) .pic {
  float: right;
}
.lcoual li:nth-child(2n) .con {
  float: left;
  background: var(--two-color);
  color: #fff;
}
.p3 p {
  font-size: 16px;
  line-height: 30px;
}
.lcoual li:nth-child(2n) .con .p4 span a {
  color: #fff;
  border-color: #fff;
}
.lcoual li:nth-child(2n) .con .p1 span {
  background: var(--two-color);
  color: #fff;
}
.wrap2 {
  width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .wrap2 {
    width: 100%;
    padding: 0 2%;
  }
}
.ny-main {
  overflow: hidden;
  margin-bottom: 40px;
  margin-top: 40px;
}
.hz_box ul {
  margin-top: 20px;
}
.hz_box ul li {
  transition: all 0.5s;
  float: left;
  width: 243px;
  background: url(../img/main21.png) no-repeat center;
  height: 269px;
}
.hz_box ul li img {
  display: block;
  margin: 20px auto;
  margin-top: 78px;
  text-align: center;
}
.hz_box ul li:nth-child(6) {
  margin-left: 125px;
}
@keyframes test {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.hz_box ul li:hover {
  animation: test 0.25s ease-in 3;
}
.hz_box {
}
.shipin_main02 {
  overflow: hidden;
  margin-bottom: 50px;
  padding-top: 60px;
}
.n01 h2 {
  font-size: 24px;
  color: var(--two-color);
}
.n01 span#ffb {
  color: #999;
  margin-bottom: 20px;
  display: block;
  line-height: 35px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 10px;
}
.shipin_main02 .n01 {
  width: 100%;
}
.ncontent ul,
.ncontent li {
  list-style-position: inside !important;
}
.shipin_main02 .n02 {
  width: 25%;
}
.shipin_main02 h3 {
  font-size: 24px;
  font-weight: normal;
  color: #333;
  padding-bottom: 20px;
}
.nll01 {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 30px;
}
.nll01 ul {
  margin-top: 10px;
}
.nll01 li {
  line-height: 22px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 240px;
}
.nll01 .bottom {
  background: var(--two-color);
  color: #fff;
  padding: 7px 25px;
  margin-top: 20px;
  display: block;
  text-align: center;
}
.nll02 {
  border-bottom: 1px dashed #ddd;
  display: inline-block;
  padding-bottom: 20px;
}
.nll02 .cp02 {
}
.nll02 .cp02 a {
  float: left;
  background: #000;
  color: #fff;
  padding: 7px 20px;
  margin: 8px 10px 8px 0;
}
.nll02 .cp02 a:hover {
  background: var(--two-color);
  color: #fff;
}
.ncontent {
  font-size: 16px;
  line-height: 33px;
}
._detailPage_bottom {
  border-top: 1px solid #eee;
  margin-top: 30px;
}
._detailPage_bottom li {
  line-height: 50px;
  overflow: hidden;
  height: 50px;
  padding: 0 10px;
  border-bottom: 1px solid #eee;
}
._detailPage_bottom ._mark {
  font-weight: bold;
  float: left;
  margin-right: 10px;
}
._detailPage_bottom ._title {
  font-size: 14px;
  float: left;
  width: 68%;
}
._detailPage_bottom ._title:hover {
  color: var(--two-color);
}
._detailPage_bottom ._time {
  float: right;
  color: #bbb;
}
.bdsharebuttonbox .bds_more {
  float: none;
  padding-left: 2px;
  background: none;
}
.swiper-prodetail {
  background: #EDEDED;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-prodetail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

._prev,
._next {
  font-size: 16px;
}

/*人才招聘*/
.am-table {
  border: 1px #ccc solid;
}
.am-table thead,
.am-table td {
  font-size: 16px;
}
.am-table thead tr th {
  line-height: 50px !important;
}
.job_show h1 {
  text-align: left;
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #06c;
}
.job_show h2 {
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  margin: 10px 0;
  padding: 0;
  color: #06c;
}
.job_show .info {
  margin: 15px 0;
  padding: 0px;
  font-size: 14px;
}
.job_show .info ul {
  overflow: hidden;
}
.job_show .info ul li {
  float: left;
  width: 23.5%;
  border-left: 1px solid #dadada;
  padding-left: 1.5%;
  line-height: 30px;
}
.job_show .info ul li span {
  color: #999;
}
.job_show .intro a {
  color: var(--base-color);
}
.job_show .intro a:hover {
  color: #f30;
}
.job_show .prenext {
  margin-top: 30px;
  text-align: center;
  overflow: hidden;
}
.job_show .prenext p {
  font-weight: bold;
}
.job_show .prenext a {
  display: inline-block;
  margin: 0 10px 0 0;
  cursor: pointer;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 6px 20px;
  min-width: 100px;
  font-size: 16px;
}
.job_show .prenext a span {
  font-size: 18px;
  margin-right: 10px;
}
.job_show .prenext a em {
  font-style: normal;
  font-size: 18px;
}
.job_show .prenext a:hover {
  background: var(--base-color);
  border-color: var(--base-color);
  color: #fff;
}
.job_show .prenext a:hover span {
  color: #fff;
}
.job_show .prenext .pre {
  float: left;
}
.job_show .prenext .next {
  float: right;
}
.swiper-prodetail .swiper-pagination .swiper-pagination-bullet-active{
  background: #a71717;
}
.hot-box{
  position: relative;
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
}
.hot-box img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hot-box div{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(4, 65, 121, .6);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.2s;
  overflow: hidden;
}
.hot-box div *{
  color: #fff;
}
.hot-box div a{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.hot-box div a:nth-of-type(1){
  line-height: 25px;
  
  overflow: hidden;
}
.hot-box div a:nth-of-type(2){
  font-size: 16px;
  font-weight: normal;
  border: 1px #fff solid;
  border-radius: 6px;
  color: #fff;
  padding: 5px 10px;
  margin-top: 15px;
  margin-bottom: 0;
}
.hot-box div p{
  font-size: 16px;
  line-height: 25px;
  height: 50px;
  overflow: hidden;
}
.swiperhot .swiper-hot-next:after, 
.swiperhot .swiper-hot-prev:after{
  color: rgba(255, 255, 255, .5);
  font-size: 28px!important;
}
.swiperhot .swiper-hot-next:hover::after, 
.swiperhot .swiper-hot-prev:hover::after{
  color: rgba(255, 255, 255, 1);
  font-size: 32px!important;
}
.hot-box:hover div{
  height: 100%;
  padding: 40px;
}
.contact_us2{
  padding-bottom: 100px;
}
.contactlist{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: relative;
  margin-top: 40px;
}
.contactlist dl {
  padding: 40px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  margin: 1%;
  flex: 0 0 18%;
  background: #fff;
}
.contactlist dl dd h4{
  font-size: 18px;
  color: #000;
  margin-top: 15px;
  font-weight: bold;
}
.contactlist dl dd p{
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

