@keyframes elementUpDown {
  0% {
    transform: translate(-50%, 10px);
  }
  25% {
    transform: translate(-50%, -10px);
  }
  50% {
    transform: translate(-50%, 10px);
  }
  75% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 10px);
  }
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid #ffffff8c;
  transition: all 0.5s ease;
}
header.on {
  background: #ffffff;
  box-shadow: 0px 1px 5px #c2c2c2;
}
header.on > div nav .nav_list ul li a {
  color: #000;
}
header.on > div nav .tools .search i {
  color: #000;
}
header.on > div nav .tools .language p {
  color: #000;
}
header > div {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  height: 110px;
  transition: all 0.5s ease;
  position: relative;
}
header > div > div {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div > div .logo img {
  width: 277px;
  transition: all 0.5s ease;
}
header > div > div nav {
  height: 100%;
}
header > div > div nav .nav_list {
  height: 100%;
  float: left;
}
header > div > div nav .nav_list > ul {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div > div nav .nav_list > ul > li {
  margin: 0 15px;
  padding: 0 15px;
  height: 100%;
  line-height: 110px;
  cursor: pointer;
}
header > div > div nav .nav_list > ul > li:hover {
  background-color: #063190;
}
header > div > div nav .nav_list > ul > li:hover a {
  color: #fff;
}
header > div > div nav .nav_list > ul > li:hover .sub {
  padding-bottom: 590px;
}
header > div > div nav .nav_list > ul > li:hover .sub2 {
  padding-bottom: 300px;
}
header > div > div nav .nav_list > ul > li a {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
header > div > div nav .nav_list > ul > li .sub {
  position: absolute;
  left: 0;
  top: 110px;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #fafafa;
  transition: all 0.5s ease;
}
header > div > div nav .nav_list > ul > li .sub .sub_sub2 {
  border-top: 1px solid #ced5da;
  width: 100%;
  height: 50px;
  background-color: #000;
}
header > div > div nav .nav_list > ul > li .sub2 {
  position: absolute;
  left: 0;
  top: 110px;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: url(../images/nav_bg.jpg) repeat-y center;
  transition: all 0.5s ease;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 {
  border-top: 1px solid #ced5da;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div {
  width: 1400px;
  margin: 0 auto;
  height: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left {
  width: 70%;
  height: 100%;
  box-sizing: border-box;
  background-color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .items {
  width: calc(100% - 420px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .items > div {
  width: 46%;
  line-height: 80px;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .items > div a {
  font-size: 18px;
  color: #333;
  line-height: 80px;
  font-weight: normal;
  text-align: left;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .items > div a i {
  color: #063190;
  font-weight: bold;
  padding-right: 10px;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .img {
  width: 340px;
  margin-right: 32px;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .img img {
  width: 100%;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .right {
  width: 30%;
  height: 100%;
  background: url(../images/nav_bg2.jpg) no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding: 0 30px 0 60px;
  background: url(../images/nav_bg3.jpg);
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .right.bg3 {
  background: url(../images/nav_bg3.jpg) no-repeat;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .right h3 {
  margin-top: 60px;
  margin-bottom: 16px;
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .right p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
header > div > div nav .tools {
  float: left;
  line-height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div > div nav .tools .language {
  padding-left: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div > div nav .tools .language p {
  padding-left: 10px;
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
header > div > div nav .tools .search {
  padding-left: 50px;
  position: relative;
  cursor: pointer;
}
header > div > div nav .tools .search:hover .erweima {
  display: block;
}
header > div > div nav .tools .search i {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
header > div > div nav .tools .search .erweima {
  display: none;
  position: absolute;
  top: 110px;
  right: 0;
  width: 150px;
}
header > div > div nav .tools .search .erweima img {
  width: 100%;
}
footer .top {
  width: 100%;
  height: 400px;
  background: url(../images/footer_bg.jpg) no-repeat;
  background-size: cover;
}
footer .top > div .left {
  width: 368px;
  float: left;
  margin-top: 56px;
}
footer .top > div .left img {
  width: 80%;
  display: block;
}
footer .top > div .left h3 {
  font-size: 24px;
  color: #ffffff8c;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 16px;
}
footer .top > div .left h3::after {
  margin-top: 14px;
  margin-bottom: 30px;
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  background-color: #0949d5;
}
footer .top > div .left p {
  font-size: 16px;
  color: #999;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
}
footer .top > div .left p i {
  font-size: 22px;
  margin-left: 10px;
  margin-right: 10px;
}
footer .top > div .right {
  margin-top: 50px;
  float: right;
  width: 70%;
  width: calc(100% - 500px);
}
footer .top > div .right .title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #ffffff80;
}
footer .top > div .right .title h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
footer .top > div .right .title h3 i {
  font-size: 30px;
  font-weight: normal;
}
footer .top > div .right .group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top > div .right .group .form-group {
  width: 31%;
}
footer .top > div .right .group .form-group input {
  width: 100%;
  line-height: 46px;
  height: 46px;
  font-size: 15px;
  color: #999;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  padding-left: 20px;
  background-color: #333;
}
footer .top > div .right .message_box {
  margin-top: 20px;
  width: 100%;
}
footer .top > div .right .message_box textarea {
  width: 100%;
  height: 100px;
  background-color: #333;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 15px;
  color: #999;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
footer .top > div .right .subBtn {
  margin-top: 10px;
}
footer .top > div .right .subBtn button {
  background-color: #063190;
  color: #fff;
  padding: 14px 30px;
  cursor: pointer;
}
footer .bottom {
  width: 100%;
  height: 62px;
  background-color: #1a1b1d;
  line-height: 62px;
}
footer .bottom > div p {
  font-size: 15px;
  color: #666;
  line-height: 62px;
  font-weight: normal;
  text-align: center;
}
footer .bottom > div p a {
  color: #666;
  padding-left: 10px;
}
.n_nav_list {
  width: 100%;
  height: 70px;
  line-height: 70px;
  border-bottom: 2px solid #f0f0f0;
  background-color: #fff;
  overflow: hidden;
}
.n_nav_list .n_nav_list_center .left {
  float: left;
}
.n_nav_list .n_nav_list_center .left .flex {
  overflow: hidden;
}
.n_nav_list .n_nav_list_center .left .flex li {
  position: relative;
  float: left;
  font-size: 18px;
  padding: 0 20px;
  cursor: pointer;
}
.n_nav_list .n_nav_list_center .left .flex li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: #0075cf;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.n_nav_list .n_nav_list_center .left .flex li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background: #dddddd;
  left: 0;
  top: 50%;
  margin-top: -6px;
}
.n_nav_list .n_nav_list_center .left .flex li a {
  font-size: 16px;
  color: #2d3f8b;
  font-weight: bold;
}
.n_nav_list .n_nav_list_center .right {
  float: right;
}
.n_nav_list .n_nav_list_center .right .home {
  overflow: hidden;
}
.n_nav_list .n_nav_list_center .right .home .index {
  color: #000;
  font-size: 15px;
}
.n_nav_list .n_nav_list_center .right .home span {
  font-size: 15px;
}
.n_nav_list .n_nav_list_center .right .home span a {
  color: #999;
}
.pageList {
  margin-top: 40px;
  margin-bottom: 80px;
}
.pageList ul {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageList ul li {
  display: inline-block;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  margin: 0 2px;
}
.pageList ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: normal;
  text-align: center;
}
.n_banner {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
  margin-top: 110px;
}
.n_banner .img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  animation: n_bannerScale 4s 1;
}
.n_banner .txt {
  position: absolute;
  width: 100%;
  z-index: 2;
}
.n_banner .txt P {
  margin-top: 160px;
  margin-bottom: 10px;
  font-size: 40px;
  color: #096db8;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 0 #fff;
}
.n_banner .txt h3 {
  font-size: 28px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #333;
}
.n_banner .txt .hx {
  width: 50px;
  height: 5px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.n_banner .txt .hx .jux {
  width: 50%;
  height: 100%;
  position: absolute;
  left: -50%;
  top: 0;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(#0c8e46), to(#0066e6));
  background-image: linear-gradient(to right, #0c8e46, #0066e6);
  -webkit-animation: juxmove 2s linear 0s both infinite;
  animation: juxmove 2s linear 0s both infinite;
}
@keyframes n_bannerScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes juxmove {
  0% {
    left: -50%;
  }
  75% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes juxmove {
  0% {
    left: -50%;
  }
  75% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.tanchu {
  width: 100%;
  height: 0;
  padding-bottom: 0;
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.tanchu .t_content {
  padding: 20px;
  background: #ffffff;
  box-sizing: border-box;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tanchu .t_content .img {
  width: 100%;
}
.tanchu .t_content .img img {
  width: 100%;
}
.tanchu .close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f17515;
  padding: 16px;
  cursor: pointer;
}
.n_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 26px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  margin-top: 100px;
  margin-bottom: 50px;
}
.n_title::before {
  display: block;
  content: "";
  width: 2px;
  height: 26px;
  background-color: #194989;
  margin-right: 10px;
}
.n_content {
  background-color: #fbfbfb;
  box-sizing: border-box;
  padding: 60px;
}
.n_content p {
  margin-bottom: 18px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
.n_content p strong {
  font-size: 18px;
}
.index .part02 > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part02 > div .left {
  width: 44%;
  background-image: url(../images/aboutbg.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 160px;
}
.index .part02 > div .left .title {
  margin-bottom: 40px;
}
.index .part02 > div .left .title h3 {
  font-size: 40px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
.index .part02 > div .left .a_content p {
  color: #666;
  font-size: 16px;
  line-height: 30px;
}
.index .part02 > div .left .youshi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 > div .left .youshi > div {
  width: 33%;
  box-sizing: border-box;
}
.index .part02 > div .left .youshi > div .youshi_top {
  margin-bottom: 16px;
}
.index .part02 > div .left .youshi > div .youshi_top p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.index .part02 > div .left .youshi > div .youshi_bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part02 > div .left .youshi > div .youshi_bottom h3 {
  font-size: 48px;
  color: #096db8;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  margin-right: 10px;
}
.index .part02 > div .left .youshi > div .youshi_bottom span {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.index .part02 > div .right {
  margin-top: 40px;
  width: 52%;
  overflow: hidden;
  border-radius: 30px 0 0 0;
}
.index .part02 > div .right img {
  width: 100%;
}
.index .part03 {
  margin-top: 30px;
  width: 100%;
  background: url(../images/youshi_bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.index .part03 .ct {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.index .part03 .ct .top {
  background: url(../images/youshi_title.png) no-repeat top center;
  text-align: center;
  padding-top: 60px;
  margin-top: 100px;
  padding-bottom: 30px;
}
.index .part03 .ct .top h3 {
  font-size: 40px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.index .part03 .ct .bottom {
  margin-top: 60px;
  padding-bottom: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .ct .bottom .left {
  width: 52%;
}
.index .part03 .ct .bottom .left .img {
  width: 90%;
  float: left;
}
.index .part03 .ct .bottom .left .img img {
  width: 100%;
}
.index .part03 .ct .bottom .right {
  width: 44%;
}
.index .part03 .ct .bottom .right .title h3 {
  font-size: 26px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
.index .part03 .ct .bottom .right .title p {
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff60;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.index .part03 .ct .bottom .right .txt {
  margin-top: 30px;
}
.index .part03 .ct .bottom .right .txt .item {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-bottom: 40px;
}
.index .part03 .ct .bottom .right .icons {
  padding-top: 40px;
  margin-top: 30px;
  border-top: 1px solid #ffffff60;
}
.index .part03 .ct .bottom .right .icons ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .ct .bottom .right .icons ul li {
  font-size: 16px;
  color: #ffffff80;
  line-height: 1;
  font-weight: normal;
  text-align: center;
}
.index .part03 .ct .bottom .right .icons ul li i {
  color: #ffffff60;
  font-size: 60px;
  display: block;
  margin-bottom: 10px;
}
.index .part03::after {
  width: 50%;
  height: 290px;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 120px;
  background: url(../images/index_youshi_bg.png) no-repeat;
  background-size: cover;
}
.index .part04 {
  width: 100%;
  background-image: url(../images/part04bg.jpg);
  background-repeat: no-repeat;
  background-position: right top;
}
.index .part04 > div {
  padding-bottom: 60px;
  overflow: hidden;
}
.index .part04 > div .left {
  width: 76%;
  overflow: hidden;
  float: left;
}
.index .part04 > div .left .title {
  margin-top: 100px;
}
.index .part04 > div .left .title h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 28px;
  color: #000;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
.index .part04 > div .left .title h3::before {
  content: "";
  display: block;
  height: 28px;
  width: 4px;
  background-color: #063190;
  margin-right: 10px;
}
.index .part04 > div .left .list {
  margin-top: 40px;
}
.index .part04 > div .left .list > div ul li {
  background: #096db8;
  padding: 16px;
  box-sizing: border-box;
}
.index .part04 > div .left .list > div ul li a {
  display: block;
  width: 100%;
}
.index .part04 > div .left .list > div ul li a .img {
  width: 100%;
}
.index .part04 > div .left .list > div ul li a .img img {
  width: 100%;
}
.index .part04 > div .left .list > div ul li a .txt {
  margin-top: 16px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
  padding: 14px;
}
.index .part04 > div .left .list > div ul li a .txt .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 > div .left .list > div ul li a .txt .tit .name {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.index .part04 > div .left .list > div ul li a .txt .tit .icon {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.index .part04 > div .right {
  width: 20%;
  float: right;
  position: relative;
}
.index .part04 > div .right .title {
  margin-top: 100px;
  margin-bottom: 90px;
}
.index .part04 > div .right .title h3 {
  font-size: 40px;
  color: #000;
  line-height: 1;
  font-weight: bold;
  text-align: right;
}
.index .part04 > div .right .desc p {
  font-size: 18px;
  color: #666;
  line-height: 1;
  font-weight: normal;
  text-align: right;
}
.index .part04 > div .right .desc h3 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 50px;
  color: #096db8;
  line-height: 1;
  font-weight: bold;
  text-align: right;
}
.index .part04 > div .right .desc h3 span {
  font-size: 15px;
  color: #666;
  line-height: 1;
  font-weight: normal;
  text-align: right;
}
.index .part04 > div .right .btn {
  position: absolute;
  right: 0;
  width: 130px;
  height: 50px;
  margin-top: 110px;
}
.index .part04 > div .right .btn .btnLeft {
  width: 48px;
  height: 50px;
  background-color: #063190;
  box-sizing: border-box;
  padding: 20px;
}
.index .part04 > div .right .btn .btnRight {
  width: 48px;
  height: 50px;
  background-color: #063190;
  box-sizing: border-box;
  padding: 20px;
}
.index .part04 > div .right .btn .swiper-button-next:after,
.index .part04 > div .right .btn .swiper-button-prev:after {
  font-size: 16px;
  color: #fff;
}
.index .part05 {
  margin-bottom: 100px;
}
.index .part05 .ct .top {
  background: url(../images/news_title.png) no-repeat top center;
  text-align: center;
  padding-top: 60px;
  margin-top: 100px;
  padding-bottom: 30px;
}
.index .part05 .ct .top h3 {
  font-size: 40px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.index .part05 .ct .bottom {
  margin-top: 30px;
  background-color: #fbfbfb;
  box-sizing: border-box;
  padding: 40px;
}
.index .part05 .ct .bottom .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
}
.index .part05 .ct .bottom .nav .left ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .ct .bottom .nav .left ul li {
  margin-right: 40px;
}
.index .part05 .ct .bottom .nav .left ul li a {
  font-size: 16px;
  color: #333;
}
.index .part05 .ct .bottom .nav .right a {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.index .part05 .ct .bottom .nav .right a i {
  font-size: 16px;
}
.index .part05 .ct .bottom .items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part05 .ct .bottom .items .left {
  width: 62%;
}
.index .part05 .ct .bottom .items .left .item {
  background-color: #fff;
  padding: 24px 18px;
  margin-bottom: 10px;
}
.index .part05 .ct .bottom .items .left .item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .ct .bottom .items .left .item a .date {
  text-align: right;
  width: 12%;
  border-right: 1px solid #a7a7a7;
  padding-right: 2%;
  box-sizing: border-box;
}
.index .part05 .ct .bottom .items .left .item a .date h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: right;
  margin-bottom: 8px;
}
.index .part05 .ct .bottom .items .left .item a .date p {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: right;
}
.index .part05 .ct .bottom .items .left .item a .text {
  width: 78%;
  margin-left: 2%;
}
.index .part05 .ct .bottom .items .left .item a .text h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-bottom: 12px;
}
.index .part05 .ct .bottom .items .left .item a .text p {
  font-size: 15px;
  color: #999;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.index .part05 .ct .bottom .items .left .item a .icon {
  width: 6%;
}
.index .part05 .ct .bottom .items .left .item a .icon i {
  font-size: 30px;
}
.index .part05 .ct .bottom .items .right {
  width: 34%;
  overflow: hidden;
  height: 0;
  padding-bottom: 406px;
  position: relative;
}
.index .part05 .ct .bottom .items .right .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.index .part05 .ct .bottom .items .right .img img {
  width: 100%;
}
.index .part05 .ct .bottom .items .right .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(31, 67, 116, 0.8);
  z-index: 3;
  padding: 10px 20px;
  box-sizing: border-box;
}
.index .part05 .ct .bottom .items .right .txt h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
.index .part05 .ct .bottom .items .right .txt p {
  margin-top: 4px;
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.about .main {
  width: 100%;
  padding-bottom: 10rem;
  background: url(../images/n_about_bg.jpg) bottom center no-repeat;
}
.about .main .company {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about .main .company .left {
  width: 48%;
}
.about .main .company .left .title {
  width: 100%;
}
.about .main .company .left .title .img {
  width: 70%;
}
.about .main .company .left .title .img img {
  width: 100%;
}
.about .main .company .left .title h3 {
  margin-top: 32px;
  margin-bottom: 20px;
  padding-left: 16px;
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  position: relative;
}
.about .main .company .left .title h3::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  margin-right: 10px;
  width: 3px;
  height: 32px;
  background-color: #2766b5;
}
.about .main .company .left .content p {
  font-size: 16px;
  color: #666;
  line-height: 2;
  font-weight: normal;
  text-align: left;
  margin-bottom: 30px;
}
.about .main .company .right {
  width: 47%;
}
.about .main .company .right .img {
  width: 100%;
}
.about .main .company .right .img img {
  width: 100%;
}
.about .cultrue {
  width: 100%;
  background: url("../images/cultrue_img.jpg") no-repeat center;
  overflow: hidden;
}
.about .cultrue .cultrue_center {
  display: flex;
  justify-content: flex-start;
  margin-top: 80px;
  margin-bottom: 80px;
}
.about .cultrue .cultrue_center .left {
  width: 30%;
  background-color: #2766b5;
  box-sizing: border-box;
  padding: 60px;
}
.about .cultrue .cultrue_center .left h3 {
  font-weight: normal;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Impact";
  color: #fff;
  opacity: 0.2;
  margin-bottom: 20px;
}
.about .cultrue .cultrue_center .left p {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-bottom: 20px;
}
.about .cultrue .cultrue_center .left img {
  float: left;
  width: 56%;
  display: block;
  text-align: center;
}
.about .cultrue .cultrue_center .right {
  width: 70%;
  padding: 80px;
  background-color: #fff;
}
.about .cultrue .cultrue_center .right p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  font-weight: normal;
  text-align: left;
  margin-bottom: 30px;
}
.product_list {
  width: 100%;
}
.product_list .main {
  width: 100%;
}
.product_list .main .w1400 .title {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.product_list .main .w1400 .title h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
.product_list .main .w1400 .title p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
.product_list .main .w1400 .title p span {
  font-weight: bold;
  display: block;
}
.product_list .main .w1400 .list {
  margin-top: 40px;
}
.product_list .main .w1400 .list ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product_list .main .w1400 .list ul li {
  width: 31%;
  margin-right: 3%;
  margin-bottom: 32px;
}
.product_list .main .w1400 .list ul li:nth-child(3n) {
  margin-right: 0;
}
.product_list .main .w1400 .list ul li a:hover .img img {
  transform: scale(1.1);
}
.product_list .main .w1400 .list ul li a:hover .txt {
  background-color: #264e93;
}
.product_list .main .w1400 .list ul li a:hover .txt .name h3 {
  color: #fff;
}
.product_list .main .w1400 .list ul li a:hover .txt .name span {
  color: #fff;
}
.product_list .main .w1400 .list ul li a:hover .txt .more {
  border: 1px solid #ffffff66;
}
.product_list .main .w1400 .list ul li a:hover .txt .more i {
  color: #fff;
}
.product_list .main .w1400 .list ul li a .img {
  width: 100%;
  overflow: hidden;
}
.product_list .main .w1400 .list ul li a .img img {
  width: 100%;
  transition: all 0.5s ease;
}
.product_list .main .w1400 .list ul li a .txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 32px 26px 20px;
  background-color: #f6f7fb;
  margin-top: 4px;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.product_list .main .w1400 .list ul li a .txt .name h3 {
  font-size: 18px;
  line-height: 1;
  color: #333;
  text-align: left;
  font-weight: bold;
  margin-bottom: 10px;
}
.product_list .main .w1400 .list ul li a .txt .name span {
  font-size: 18px;
  line-height: 1;
  color: #999;
  text-align: left;
  font-weight: normal;
}
.product_list .main .w1400 .list ul li a .txt .more {
  width: 36px;
  height: 36px;
  border: 1px solid #a6bcd7;
  border-radius: 20px;
  text-align: center;
  line-height: 36px;
}
.product_list .main .w1400 .list ul li a .txt .more i {
  font-weight: bold;
  color: #2d3f8b;
}
.products_detailed .main .top {
  width: 100%;
  background-color: #f7f7f7;
}
.products_detailed .main .top .ct {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 100px 40px;
  background-color: #fff;
}
.products_detailed .main .top .ct .left {
  width: 50%;
  position: relative;
}
.products_detailed .main .top .ct .left .bigImg {
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid #dddddd;
}
.products_detailed .main .top .ct .left .bigImg img {
  width: 100%;
}
.products_detailed .main .top .ct .left .smailImg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.products_detailed .main .top .ct .left .smailImg ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.products_detailed .main .top .ct .left .smailImg ul li {
  width: 20%;
  border: 1px solid #194989;
}
.products_detailed .main .top .ct .left .smailImg ul li img {
  width: 100%;
}
.products_detailed .main .top .ct .right {
  width: 44%;
  height: inherit;
  position: relative;
}
.products_detailed .main .top .ct .right .title h3 {
  font-size: 28px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
.products_detailed .main .top .ct .right .title::after {
  display: block;
  content: "";
  margin-top: 30px;
  width: 60px;
  height: 2px;
  background-color: #194989;
}
.products_detailed .main .top .ct .right .pro_content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.products_detailed .main .top .ct .right .tel {
  padding-top: 16px;
  border-top: 1px solid #999;
}
.products_detailed .main .top .ct .right .tel h2 {
  font-size: 24px;
  margin-bottom: 14px;
}
.products_detailed .main .top .ct .right .tel h2 i {
  font-size: 24px;
}
.products_detailed .main .top .ct .right .tel a {
  display: inline-block;
  padding: 12px 52px;
  background-color: #194989;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
  border-radius: 6px;
}
.products_detailed .main .top .ct .right .button .pre a {
  font-size: 16px;
  color: #333;
  line-height: 60px;
  font-weight: normal;
  text-align: left;
}
.products_detailed .main .top .ct .right .button .next a {
  font-size: 16px;
  color: #333;
  line-height: 60px;
  font-weight: normal;
  text-align: left;
}
.products_detailed .main .bottom {
  width: 100%;
}
.products_detailed .main .bottom .across {
  width: 100%;
  height: 80px;
  background-color: #194989;
  position: relative;
}
.products_detailed .main .bottom .across .name {
  float: left;
  font-size: 20px;
  color: #fff;
  line-height: 80px;
  font-weight: bold;
  text-align: left;
}
.products_detailed .main .bottom .across .title {
  position: absolute;
  left: 50%;
  top: 0;
  display: inline-block;
  padding: 0 60px;
  background-color: #d48600;
  font-size: 20px;
  color: #fff;
  line-height: 80px;
  font-weight: bold;
  text-align: left;
}
.news .main {
  overflow: hidden;
}
.news .main .news_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 26px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
.news .main .news_title::before {
  display: block;
  content: "";
  width: 2px;
  height: 26px;
  background-color: #194989;
  margin-right: 10px;
}
.news .main .news_list ul li {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 30px;
  box-sizing: border-box;
  border-bottom: 1px solid #e3e3e3;
  transition: all 0.5s ease;
  background-color: #fbfbfb;
}
.news .main .news_list ul li.active {
  background-color: #194989;
  box-shadow: 1px 1px 16px #b9b9b9;
}
.news .main .news_list ul li.active a .news_sub2 .news_sub2_sub1 h3 {
  color: #fff;
}
.news .main .news_list ul li.active a .news_sub2 .news_sub2_sub1 p {
  color: #fff;
}
.news .main .news_list ul li.active a .news_sub2_sub2 .vNum {
  color: #fff;
}
.news .main .news_list ul li.active a .news_sub2_sub2 .date {
  color: #fff;
}
.news .main .news_list ul li a .news_sub1 {
  width: 300px;
  height: 200px;
  overflow: hidden;
  float: left;
}
.news .main .news_list ul li a .news_sub1 img {
  width: 100%;
}
.news .main .news_list ul li a .news_sub2 {
  float: right;
  width: calc(100% - 360px);
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 21px;
  background-color: #194989;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub1 p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
  margin-bottom: 10px;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub2 {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub2 .vNum {
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub2 .vNum i {
  font-size: 24px;
  padding-right: 6px;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub2 .date {
  font-size: 14px;
}
.news_detailed .main .ct .detailed .sub1 h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.news_detailed .main .ct .detailed .sub2 .share {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 40px;
}
.news_detailed .main .ct .detailed .sub2 .share p {
  font-size: 14px;
  margin: 0 10px;
}
.news_detailed .main .ct .detailed .sub2 .news_content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.news_detailed .main .ct .detailed .sub2 .np {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}
.news_detailed .main .ct .detailed .sub2 .np div {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
}
.news_detailed .main .ct .detailed .sub2 .np div i {
  font-size: 24px;
}
.news_detailed .main .ct .detailed .sub2 .np div a {
  font-size: 16px;
  color: #000;
  line-height: 60px;
  font-weight: normal;
  text-align: left;
}
.contact {
  width: 100%;
}
.contact .main .ct {
  overflow: inherit;
}
.contact .main .ct .contact_list {
  position: relative;
}
.contact .main .ct .contact_list ul {
  display: flex;
  justify-content: space-between;
}
.contact .main .ct .contact_list ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact .main .ct .contact_list ul li .icon {
  background-color: #000;
  border-radius: 30px;
  margin-right: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .main .ct .contact_list ul li .icon i {
  color: #fff;
}
.contact .main .ct .contact_list ul li .icon .icon-dianhua1 {
  font-size: 20px;
}
.contact .main .ct .contact_list ul li .icon .icon-qq1 {
  font-size: 20px;
}
.contact .main .ct .contact_list ul li .txt h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1;
  color: #333;
}
.contact .main .ct .contact_list ul li .txt p {
  font-size: 15px;
  line-height: 1;
  color: #999;
}
.contact .main .ct .contact_list .add {
  position: absolute;
  top: 110px;
  z-index: 999;
  width: 100%;
  padding: 40px 0;
  box-shadow: 0px 0px 8px #cccccc;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: center;
}
.contact .main .ct .contact_list .add i {
  margin-right: 12px;
  font-size: 20px;
}
@media screen and (max-width: 1680px) {
  header > div nav .nav_list > ul > li:hover .sub {
    padding-bottom: 530px;
  }
  header > div nav .nav_list > ul > li .sub .sub_sub1 {
    height: 530px;
  }
  header > div nav .nav_list > ul > li .sub .sub_sub1 .left ul li a {
    font-size: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .w1400 {
    width: 1120px !important;
    overflow: inherit;
  }
  header > div > div {
    width: 1120px;
  }
  header > div > div .logo img {
    width: 210px;
    transition: all 0.5s ease;
  }
  header > div > div nav .nav_list > ul > li {
    margin: 0 5px;
    line-height: 100px;
  }
  header > div > div nav .tools {
    line-height: 100px;
  }
  header > div > div nav .nav_list > ul > li a {
    font-size: 15px;
  }
  .section1 .index_banner .item .inner .block_txt {
    left: 160px !important;
  }
  .mt-110 {
    margin-top: 80px;
  }
  .mt-100 {
    margin-top: 70px !important;
  }
  .mt-70 {
    margin-top: 50px;
  }
  header > div {
    height: 100px;
  }
  header > div nav .nav_list > ul > li {
    margin: 0 8px;
    padding: 0 8px;
    height: 100%;
    line-height: 100px;
  }
  header > div .logo img {
    width: 220px;
  }
  header > div nav .nav_list > ul > li:hover .sub {
    padding-bottom: 480px;
  }
  header > div nav .nav_list > ul > li .sub .sub_sub1 {
    height: 480px;
  }
  header > div nav .nav_list > ul > li .sub .sub_sub1 .left ul li a {
    font-size: 18px;
  }
  .banner .bottom {
    height: 100px;
  }
  .banner .top ul li .txt h3 {
    font-size: 28px;
  }
  .banner .top ul li .txt p {
    font-size: 16px;
  }
  .banner .bottom .left h3 {
    font-size: 16px;
  }
  .banner .bottom .right h3 {
    font-size: 16px;
  }
  header > div nav .nav_list > ul > li .sub .sub_sub1 .left ul li a {
    font-size: 16px;
  }
  header > div nav .nav_list > ul > li .sub .sub_sub1 .right .pro_desc p {
    font-size: 14px;
  }
  header > div nav .nav_list > ul > li .sub {
    top: 100px;
  }
  .section1 .index_banner .item .inner .block_txt h2 {
    font-size: 38px;
    margin-bottom: 20px !important;
  }
  .section1 .index_banner .item .inner .block_txt h3 {
    font-size: 24px !important;
  }
  header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div {
    width: 1120px;
  }
  header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .items > div a {
    font-size: 15px;
  }
  header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .img {
    width: 280px;
  }
  header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .left .items {
    width: calc(100% - 340px);
  }
  header > div > div nav .nav_list > ul > li:hover .sub2 {
    padding-bottom: 260px;
  }
  header > div > div nav .nav_list > ul > li:hover .sub2 .sub2_sub1 {
    height: 260px;
  }
  header > div > div nav .nav_list > ul > li:hover .sub2 .sub2_sub1 > div {
    height: 260px;
  }
  header > div > div nav .nav_list > ul > li .sub2 .sub2_sub1 > div .right h3 {
    font-size: 20px;
  }
  .n_banner {
    margin-top: 100px !important;
    height: 380px;
    background-position: center !important;
  }
  .n_banner > div {
    width: 100%;
    text-align: center;
    line-height: 380px;
  }
  .n_nav_list .n_nav_list_center .right .home span a {
    font-size: 14px;
  }
  .n_nav_list .n_nav_list_center .left .flex li a {
    font-size: 15px;
  }
  .index .part02 > div .left {
    padding-top: 40px;
    width: 47%;
    padding-bottom: 60px;
  }
  .index .part02 > div .left .title {
    margin-bottom: 26px;
  }
  .index .part02 > div .left .title h3 {
    font-size: 32px;
  }
  .index .part02 > div .left .a_content p {
    font-size: 14px;
  }
  .index .part02 > div .right {
    width: 49%;
  }
  .index .part02 > div .left .youshi > div .youshi_bottom h3 {
    font-size: 38px;
  }
  .index .part03 .ct .top h3 {
    font-size: 32px;
  }
  .index .part03 .ct .top {
    width: 50%;
    margin: 60px auto 0;
    background-size: contain;
  }
  .index .part03 .ct .bottom .right .title h3 {
    font-size: 22px;
  }
  .index .part03 .ct .bottom .right .txt .item {
    margin-bottom: 20px;
    font-size: 15px;
    color: #ffffff8c;
  }
  .index .part03 .ct .bottom .right .icons {
    padding-top: 20px;
  }
  .index .part03 .ct .bottom {
    margin-top: 40px;
    padding-bottom: 70px;
  }
  .index .part04 > div .right .title h3 {
    font-size: 32px;
  }
  .index .part04 > div .left .title h3 {
    font-size: 24px;
  }
  .index .part04 > div .left .title h3::before {
    height: 24px;
  }
  .index .part04 > div .right .desc p {
    font-size: 16px;
  }
  .index .part05 .ct .top h3 {
    font-size: 32px;
  }
  .index .part05 .ct .top {
    margin-top: 80px;
  }
  .index .part05 .ct .bottom {
    margin-top: 20px;
  }
  .index .part05 .ct .bottom .nav .right a {
    font-size: 14px;
  }
  .index .part05 .ct .bottom .items .left .item {
    padding: 16px 18px;
  }
  .index .part05 .ct .bottom .items .left .item a .text h3 {
    font-size: 16px;
  }
  .index .part05 .ct .bottom .items .left .item a .text p {
    font-size: 14px;
  }
  .index .part05 .ct .bottom .items .right {
    padding-bottom: 336px;
  }
  .index .part05 .ct .bottom .items .right .txt h3 {
    font-size: 16px;
  }
  .index .part05 .ct .bottom .items .right .txt p {
    font-size: 14px;
  }
  footer .top > div .right .title h3 {
    font-size: 20px;
  }
  footer .top > div .right .title h3 i {
    font-size: 22px;
  }
  footer .top > div .left h3 {
    font-size: 20px;
  }
  footer .top > div .left p {
    font-size: 14px;
  }
  footer .top > div .left img {
    margin-top: 40px;
  }
  .index .part03::after {
    bottom: 90px;
  }
  .about .main .company .left .content p {
    font-size: 14px;
  }
  .about .main .company .left .title h3 {
    font-size: 24px;
    margin-top: 20px;
  }
  .about .main .company .left .title h3::after {
    height: 24px;
  }
  .about .main {
    padding-bottom: 70px;
  }
  .about .cultrue .cultrue_center .left p {
    font-size: 24px;
  }
  .about .cultrue .cultrue_center .left h3 {
    font-size: 28px;
  }
  .about .cultrue .cultrue_center .right {
    padding: 80px 40px;
  }
  .product_list .main .w1400 .title p {
    font-size: 15px;
  }
  .product_list .main .w1400 .list ul li a .txt .name h3 {
    font-size: 16px;
  }
  .product_list .main .w1400 .list ul li a .txt .more {
    width: 30px;
    height: 30px;
    border: 1px solid #a6bcd7;
    border-radius: 20px;
    text-align: center;
    line-height: 30px;
  }
  .product_list .main .w1400 .list ul li a .txt {
    align-items: center;
  }
  .product_list .main .w1400 .list ul li a .txt {
    padding: 16px 26px 16px;
  }
  .products_detailed .main .top .ct .right .title {
    margin-top: 20px;
  }
  .products_detailed .main .top .ct .right .title h3 {
    font-size: 20px;
  }
  .products_detailed .main .top .ct .right .title::after {
    margin-top: 20px;
  }
  .products_detailed .main .top .ct .right .pro_content p {
    font-size: 14px;
  }
  .products_detailed .main .top .ct .right .tel h2 {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .products_detailed .main .top .ct .right .tel h2 i {
    font-size: 18px;
  }
  .n_title {
    font-size: 24px;
  }
  .news .main .news_title {
    font-size: 24px;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3 {
    font-size: 18px;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 p {
    font-size: 15px;
  }
  .news .main .news_list ul li a .news_sub1 {
    height: 176px;
  }
  .news_detailed .main .ct .detailed .sub1 h3 {
    font-size: 18px;
  }
  .news_detailed .main .ct .detailed .sub2 .news_content p {
    font-size: 14px;
  }
  .news_detailed .main .ct .detailed .sub2 .np div a {
    font-size: 14px;
  }
  .contact .main .ct .contact_list ul li .txt h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1366px) {
  .section1 .index_banner .item .inner .block_txt h2 {
    font-size: 38px !important;
    margin-bottom: 20px !important;
  }
  .section1 .index_banner .item .inner .block_txt h3 {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 992px) {
  .w1400 {
    width: 90% !important;
  }
  .contact .main .ct .contact_list ul {
    flex-wrap: wrap;
  }
  .contact .main .ct .contact_list ul li {
    width: 100%;
  }
  header {
    display: none;
  }
  .section1 {
    margin-top: 50px !important;
  }
  .m_header .m_title .head_icon img {
    width: 116px;
  }
  .section1 .index_banner .item {
    height: 40vh !important;
  }
  .mb-100 {
    margin-bottom: 30px !important;
  }
  .mt-60 {
    margin-top: 30px !important;
  }
  .mt-100 {
    margin-top: 40px !important;
  }
  .mt-90 {
    margin-top: 40px !important;
  }
  .section1 .index_banner .item .inner .block_txt {
    left: 20px !important;
    width: 70% !important;
    top: 10% !important;
  }
  .section1 .index_banner .item .inner .block_txt h2 {
    font-size: 18px !important;
  }
  .section1 .index_banner .item .inner .block_txt h3 {
    font-size: 14px !important;
  }
  .section1 .index_banner .item .inner .block_txt .more a {
    font-size: 12px !important;
    padding: 8px 30px !important;
  }
  .section1 .index_banner .slick-dots li {
    width: 6px !important;
    height: 6px !important;
  }
  .n_banner {
    margin-top: 50px !important;
    height: 200px;
  }
  .n_banner > div {
    line-height: 200px;
  }
  .n_banner > div img {
    width: 100%;
  }
  .n_nav_list .n_nav_list_center .left .flex li a {
    font-size: 13px;
  }
  .n_nav_list .n_nav_list_center .left .flex li {
    padding: 0 10px;
  }
  .n_nav_list {
    height: 50px;
    line-height: 50px;
  }
  .n_nav_list .n_nav_list_center .left {
    display: none;
  }
  .n_nav_list .n_nav_list_center .right {
    float: right;
    text-align: center;
    width: 100%;
  }
  .h-992 {
    display: none;
  }
  .index .part02 > div .left {
    width: 100%;
    padding-top: 20px;
  }
  .index .part02 > div .left .title {
    margin-bottom: 16px;
  }
  .index .part02 > div .left .title h3 {
    font-size: 18px;
    text-align: center;
  }
  .index .part02 > div .left .youshi > div .youshi_top p {
    font-size: 16px;
  }
  .index .part02 > div .left .youshi > div .youshi_bottom h3 {
    font-size: 26px;
  }
  .index .part02 > div .left .youshi > div .youshi_bottom span {
    font-size: 13px;
  }
  .index .part02 > div .left .youshi > div .youshi_top p {
    font-weight: bold;
  }
  .index .part02 > div .right {
    width: 100%;
  }
  .index .part03 .ct .top {
    margin-top: 40px;
    padding-top: 20px;
  }
  .index .part03 .ct .top h3 {
    font-size: 18px;
  }
  .index .part03 .ct .bottom .left {
    width: 100%;
  }
  .index .part03 .ct .bottom .left .img {
    width: 100%;
  }
  .index .part03 .ct .bottom .right {
    width: 100%;
  }
  .index .part03::after {
    height: 160px;
    top: 160px;
  }
  .index .part03 .ct .bottom {
    margin-top: 0px;
  }
  .index .part03 .ct .bottom .right .title h3 {
    font-size: 16px;
    margin-top: 20px;
  }
  .index .part03 .ct .bottom .right .txt {
    margin-top: 14px;
  }
  .index .part03 .ct .bottom .right .txt .item {
    font-size: 13px;
  }
  .index .part03 .ct .bottom .right .icons ul li i {
    font-size: 40px;
  }
  .index .part03 .ct .bottom .right .icons ul {
    padding: 0 30px;
  }
  .index .part04 > div .right .title h3 {
    font-size: 18px;
  }
  .index .part04 > div .right .title {
    margin-top: 50px;
  }
  .index .part04 > div .left .title {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .index .part04 > div .left .title h3 {
    font-size: 16px;
  }
  .index .part04 > div .left .list {
    margin-top: 30px;
  }
  .index .part04 > div .right .desc p {
    font-size: 14px;
  }
  .index .part04 > div .right .desc h3 {
    font-size: 30px;
  }
  .index .part04 > div .right .desc h3 span {
    font-size: 12px;
  }
  .index .part04 > div .right .btn {
    width: 84px;
    margin-top: 62px;
  }
  .index .part04 > div .right .btn .btnRight {
    padding: 15px;
    width: 20px;
  }
  .index .part04 > div .right .btn .btnLeft {
    padding: 15px;
    width: 20px;
  }
  .index .part05 .ct .top h3 {
    font-size: 18px;
  }
  .index .part05 .ct .top {
    width: 60%;
    margin: 50px auto 0;
    background-size: contain;
    padding-top: 24px;
    padding-bottom: 8px;
  }
  .index .part05 .ct .bottom {
    padding: 18px;
  }
  .index .part05 .ct .bottom .nav .right {
    display: none;
  }
  .index .part05 .ct .bottom .nav .left ul li a {
    font-size: 15px;
  }
  .index .part05 .ct .bottom .items .right {
    display: none;
  }
  .index .part05 .ct .bottom .items .left {
    width: 100%;
  }
  .index .part05 .ct .bottom .nav {
    margin-bottom: 20px;
  }
  .index .part05 .ct .bottom .items .left .item a .date {
    display: none;
  }
  .index .part05 .ct .bottom .items .left .item a .text h3 {
    font-size: 14px;
  }
  .index .part05 .ct .bottom .items .left .item a .text p {
    font-size: 13px;
    line-height: 1.5;
  }
  .index .part05 {
    margin-bottom: 50px;
  }
  footer .top > div .right {
    display: none;
  }
  footer .top > div .left img {
    width: 50%;
    margin-top: 0;
  }
  footer .top {
    height: 310px;
  }
  footer .top > div .left h3 {
    font-size: 15px;
  }
  footer .bottom > div a {
    font-size: 12px;
  }
  .n_banner .txt p {
    margin-top: 60px;
    font-size: 22px;
  }
  .n_banner .txt h3 {
    font-size: 16px;
  }
  .n_banner .img img {
    height: 210px;
  }
  .about .main .company .left {
    width: 100%;
  }
  .about .main .company {
    margin-top: 50px;
  }
  .about .main .company .left .title h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  .about .main .company .left .title h3::after {
    height: 20px;
  }
  .about .main .company .left .content p {
    font-size: 14px;
  }
  .about .main .company .right {
    width: 100%;
  }
  .about .main {
    background-size: 200%;
    padding-bottom: 92px;
  }
  .about .cultrue .cultrue_center .left {
    width: 100%;
    padding: 28px 30px 20px;
  }
  .about .cultrue .cultrue_center .right {
    width: 100%;
  }
  .about .cultrue .cultrue_center {
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .about .cultrue .cultrue_center .left h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .about .cultrue .cultrue_center .left p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about .cultrue .cultrue_center .left img {
    display: none;
  }
  .about .cultrue .cultrue_center .right {
    padding: 28px;
  }
  .about .cultrue .cultrue_center .right p {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
  }
  .contact .main .ct .contact_list .add {
    display: none;
  }
  .contact .main .ct .contact_list {
    margin-bottom: 40px;
  }
  .contact .main .ct .contact_list ul li .icon {
    width: 40px;
    height: 40px;
  }
  .contact .main .ct .contact_list ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .news .main .news_title {
    margin-top: 0px !important;
    margin-bottom: 20px !important;
  }
  .news .main .news_list ul li a .news_sub2 {
    margin-top: 20px;
    width: 100%;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3 {
    font-size: 15px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3::after {
    margin-top: 10px;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 p {
    font-size: 14px;
  }
  .news .main .news_list ul li a .news_sub1 {
    width: 100%;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub2 {
    margin-top: 20px;
  }
  .news .main .news_title {
    font-size: 18px;
  }
  .news .main .news_title::before {
    height: 18px;
  }
  .news_detailed .main .ct .detailed .sub1 h3 {
    font-size: 16px;
  }
  .news_detailed .main .ct .detailed .sub2 .share {
    margin-bottom: 20px;
  }
  .news_detailed .main .ct .detailed .sub2 .np {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .news_detailed .main .ct .detailed .sub2 .np div {
    width: 100%;
    margin-bottom: 10px;
  }
  .n_content p img {
    width: 100%;
  }
  .n_title {
    font-size: 18px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .n_content {
    padding: 14px;
  }
  .n_title::before {
    height: 18px;
  }
  .n_content p strong {
    font-size: 15px;
  }
  .n_content p {
    font-size: 14px;
  }
  .product_list .main .w1400 .title {
    margin-top: 50px;
  }
  .product_list .main .w1400 .title h3 {
    display: none;
  }
  .product_list .main .w1400 .list ul li {
    width: 100%;
  }
  .products_detailed .main .top .ct {
    padding: 50px 0px;
  }
  .products_detailed .main .top .ct .left {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .products_detailed .main .top .ct .left .bigImg {
    padding: 14px;
  }
  .products_detailed .main .top .ct .right {
    width: 100%;
    padding: 0 20px;
  }
  .products_detailed .main .top .ct .right .title h3 {
    font-size: 16px;
  }
  .products_detailed .main .top .ct .right .tel h2 {
    font-size: 16px;
  }
  .products_detailed .main .top .ct .right .tel a {
    padding: 5px 30px;
    font-size: 14px;
  }
  .products_detailed .main .top .ct .right .button .pre a {
    font-size: 14px;
    line-height: 40px;
  }
  .products_detailed .main .top .ct .right .button .next a {
    font-size: 14px;
    line-height: 40px;
  }
  .indexbg {
    display: none;
  }
}
