* {
  margin: 0;
  padding: 0;
}
body {
  color: #333333;
  font-size: 14px;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
}
.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clear {
  clear: both;
}
.text-primary {
  color: #14997E;
}
.mb10 {
  margin-bottom: 10px;
}
.text-gray-3 {
  color: #333;
}
.text-gray-6 {
  color: #666;
}
.text-gray-9 {
  color: #999;
}
.fz16 {
  font-size: 16px;
}
.fwb {
  font-weight: bold;
}
h3,
h4 {
  font-weight: normal;
}
i {
  font-style: normal;
}
.df {
  display: flex;
}
.dfc {
  display: flex;
  align-items: center;
}
.dfcc {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fx1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
a {
  color: #333333;
  text-decoration: none;
}
li {
  list-style: none;
}
.wrap {
  min-width: 1200px;
  margin: 0 auto;
  width: 87.5%;
}
.dec {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.overflow1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.overflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.overflow4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.top-head {
  background: #fff;
  position: relative;
  z-index: 100000;
}
.top-head .welcome {
  height: 52px;
  line-height: 52px;
  background: #F1F1F1;
}
.top-head .welcome .wrap {
  display: flex;
  justify-content: space-between;
}
.top-head .welcome .wrap > div:nth-child(1) {
  font-size: 14px;
  color: #333333;
}
.top-head .welcome .wrap > div:nth-child(2) {
  font-size: 14px;
  color: #6E6E6E;
  display: flex;
  align-items: center;
}
.top-head .welcome .wrap > div:nth-child(2) .iconfont {
  margin-right: 5px;
  font-size: 18px;
}
.top-head .tips {
  height: 120px;
  display: flex;
  justify-content: space-between;
}
.top-head .tips .left {
  display: flex;
  align-items: center;
  height: 100%;
}
.top-head .tips .left .text {
  margin-left: 15px;
}
.top-head .tips .left .text p:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
  color: #676B69;
}
.top-head .tips .left .text p:nth-child(2) {
  font-size: 14px;
  font-weight: bold;
  color: #0075C3;
}
.top-head .tips .right {
  display: flex;
  align-items: center;
}
.top-head .tips .right .search {
  width: 193px;
  height: 37px;
  border: 1px solid #CCCCCC;
  border-radius: 19px;
  position: relative;
}
.top-head .tips .right .search input {
  height: 100%;
  padding-left: 15px;
  width: 80%;
  box-sizing: border-box;
  border: none;
  outline: none;
  border-radius: 19px;
}
.top-head .tips .right .search .iconfont {
  font-size: 28px;
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 24px;
  display: inline-block;
}
.top-head .tips .right .tel {
  margin-left: 30px;
  display: flex;
  align-items: center;
}
.top-head .tips .right .tel .iconfont {
  color: #0075C3;
  font-size: 57px;
}
.top-head .tips .right .tel .tel-text {
  margin-left: 10px;
}
.top-head .tips .right .tel .tel-text p:nth-child(1) {
  font-size: 14px;
  color: #333333;
}
.top-head .tips .right .tel .tel-text p:nth-child(2) {
  font-size: 34px;
  font-weight: bold;
  color: #333333;
  margin-top: -5px;
}
.nav {
  height: 70px;
  line-height: 70px;
  background: #F1F1F1;
  width: 100%;
}
.nav ul {
  display: flex;
}
.nav ul li {
  font-size: 16px;
  color: #333;
  min-width: 156px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  z-index: 10000;
  margin: 0 18px;
}
.nav ul li::before {
  content: '';
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  left: 20px;
  top: -70px;
  background: #0075C3;
  z-index: 9;
  opacity: 0;
}
.nav ul li > a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.nav ul li.on::before {
  top: 0%;
  transition: all 0.3s;
  opacity: 1;
}
.nav ul li.on a {
  color: #fff;
}
.nav ul li:hover::before {
  top: 0%;
  transition: all 0.3s;
  opacity: 1;
}
.nav ul li:hover .sub {
  display: block!important;
}
.nav ul li:hover a {
  color: #fff;
}
.nav ul li:nth-child(1) {
  margin-left: 0;
}
.nav ul li .sub {
  background: #fff;
  min-width: 155px;
  position: absolute;
  top: 70px;
  left: 63%;
  transform: translateX(-50%);
  z-index: 1000000;
  display: none;
}
.nav ul li .sub > div {
  padding: 0 15px;
  overflow: hidden;
}
.nav ul li .sub > div a {
  height: 45px;
  line-height: 45px;
  display: block;
}
.nav ul li .sub > div:hover {
  background: #0075C3;
  position: relative;
  z-index: 100;
}
.nav ul li .sub > div:hover a {
  color: #fff;
  background: #0075C3;
}
.nav ul li .sub > div:nth-last-child(1) {
  border-bottom: none;
}
.nav ul li .sub > div a {
  color: #333;
}
.inner-banner {
  position: relative;
  width: 100%;
  height: 588px;
}
.inner-banner img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.banner {
  position: relative;
  width: 100%;
  height: 692px;
}
.banner .bd ul {
  height: 100%;
}
.banner .bd li {
  width: 100%;
  position: relative;
}
.banner .bd img {
  height: 692px;
  display: block;
  position: absolute;
  left: 50%;
  min-width: 100%;
  transform: translateX(-50%);
}
.banner .hd {
  text-align: center;
  position: absolute;
  bottom: 28px;
  width: 100%;
}
.banner .hd ul {
  width: 100%;
  text-align: center;
}
.banner .hd li {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #b5b5b5;
}
.banner .hd li.on {
  background: #14997E;
  width: 50rpx;
}
.com-tit {
  text-align: center;
}
.com-tit p:nth-child(1) {
  font-size: 36px;
  font-weight: bold;
  color: #1B2229;
}
.com-tit p:nth-child(2) {
  width: 27px;
  height: 2px;
  background: #025CBB;
  margin: 0 auto;
  margin-top: 10px;
}
.about {
  display: flex;
  margin-top: 65px;
  margin-bottom: 65px;
}
.about .left {
  width: 48.1%;
  position: relative;
  padding-bottom: 44px;
}
.about .left .a-top p:nth-child(1) {
  font-size: 34px;
  font-weight: bold;
  color: #333333;
}
.about .left .a-top p:nth-child(2) {
  font-size: 18px;
  color: #333333;
  margin-top: 5px;
}
.about .left .a-top p:nth-child(3) {
  font-size: 36px;
  font-weight: bold;
  color: #0075C3;
  margin-top: 12px;
}
.about .left .a-top p:nth-child(4) {
  font-size: 18px;
  color: #333333;
  line-height: 46px;
  margin-top: 10px;
}
.about .left .a-top .history {
  width: 100%;
  height: 110px;
  background: #FFFFFF;
  margin-top: 25px;
}
.about .left .a-top .history ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.about .left .a-top .history ul li {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 35px;
  box-sizing: border-box;
  height: 110px;
  border-left: 1px solid #efefef;
  position: relative;
}
.about .left .a-top .history ul li::before {
  content: '';
  display: block;
  width: 1px;
  height: 29px;
  background: #0075C3;
  position: absolute;
  left: -1px;
  top: 0;
}
.about .left .a-top .history ul li:nth-last-child(1) {
  border-right: none;
}
.about .left .a-top .history ul li > p:nth-child(1) {
  font-size: 54px;
  font-weight: 400;
  text-align: center;
  color: #0075C3 !important;
  line-height: 30px;
}
.about .left .a-top .history ul li > p:nth-child(1) span:nth-child(2) {
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  color: #333;
  line-height: 30px;
  position: relative;
  top: 0px;
  left: 5px;
}
.about .left .a-top .history ul li > p:nth-child(2) {
  font-size: 18px;
  text-align: center;
  color: #333333;
}
.about .left .hd {
  width: 118%;
  margin-top: 35px;
  position: relative;
  background: #fff;
  z-index: 10000;
}
.about .left .hd ul {
  display: flex;
  padding: 36px 0;
  box-shadow: -2px 4px 13px 0px #EAEAEA;
}
.about .left .hd ul li {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #EEEEEE;
}
.about .left .hd ul li.on {
  color: #025CBB;
}
.about .left .hd ul li.on p {
  color: #025CBB !important;
}
.about .left .hd ul li p:nth-child(1) {
  font-size: 38px;
}
.about .left .hd ul li p:nth-child(2) {
  font-size: 18px;
  color: #333333;
  margin-top: 15px;
}
.about .right {
  width: calc(51.9% - 50px);
  margin-left: 50px;
}
.about .right .bd {
  height: 100%;
  position: relative;
  z-index: -1;
}
.about .right ul {
  height: 100%;
}
.about .right ul li {
  width: 100%;
  height: 100%;
}
.about .right ul li .img {
  width: 100%;
  height: 100%;
}
.product {
  padding-top: 55px;
  background: #F2F2F2;
  padding-bottom: 56px;
}
.product .classify {
  margin-top: 18px;
}
.product .classify .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 10px;
}
.product .classify .list ul li {
  min-width: 144px;
  height: 42px;
  line-height: 42px;
  background: #FFFFFF;
  padding: 0 10px ;
  box-sizing: border-box;
  font-size: 16px;
  color: #333333;
  margin-right: 19px;
  text-align: center;
  margin-top: 30px;
}
.product .classify .list ul li:hover,
.product .classify .list ul li.on {
  background: #0075C3;
}
.product .classify .list ul li:hover a,
.product .classify .list ul li.on a {
  color: #fff;
}
.product .pro-list {
  margin-top: 6px;
}
.product .pro-list ul {
  display: flex;
  flex-wrap: wrap;
}
.product .pro-list ul li {
  width: calc(25% - 34px);
  margin-right: 40px;
  margin-top: 49px;
}
.product .pro-list ul li:hover .img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.product .pro-list ul li:hover .text {
  background: #0075C3;
}
.product .pro-list ul li:hover .text p {
  color: #fff !important;
}
.product .pro-list ul li:nth-child(4n) {
  margin-right: 0;
}
.product .pro-list ul li .img-wrap {
  width: 100%;
  overflow: hidden;
}
.product .pro-list ul li .img-wrap .img {
  width: 100%;
}
.product .pro-list ul li .img-wrap .img::before {
  content: '';
  display: block;
  padding-bottom: 77%;
}
.product .pro-list ul li .text {
  padding: 0 20px;
  height: 92px;
  background: #fff;
  padding-top: 1px;
}
.product .pro-list ul li .text p:nth-child(1) {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin-top: 15px;
}
.product .pro-list ul li .text p:nth-child(2) {
  font-size: 14px;
  color: #666666;
  margin-top: 12px;
}
.credit {
  padding-top: 60px;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 65px;
}
.advantage {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 55px;
}
.advantage .list {
  margin-top: 55px;
}
.advantage .list .top ul,
.advantage .list .bottom ul {
  display: flex;
  width: 100%;
}
.advantage .list .top ul li,
.advantage .list .bottom ul li {
  width: 50%;
  display: flex;
}
.advantage .list .top ul li .img-wrap,
.advantage .list .bottom ul li .img-wrap {
  width: 50%;
}
.advantage .list .top ul li .img-wrap .img,
.advantage .list .bottom ul li .img-wrap .img {
  width: 100%;
}
.advantage .list .top ul li .img-wrap .img::after,
.advantage .list .bottom ul li .img-wrap .img::after {
  content: '';
  display: block;
  padding-bottom: 77%;
}
.advantage .list .top ul li:hover .text,
.advantage .list .bottom ul li:hover .text {
  background: #0075C3;
}
.advantage .list .top ul li:hover .text p,
.advantage .list .bottom ul li:hover .text p {
  color: #fff !important;
}
.advantage .list .top ul li:hover .text::before,
.advantage .list .bottom ul li:hover .text::before {
  opacity: 1;
}
.advantage .list .top ul li .text,
.advantage .list .bottom ul li .text {
  width: 50%;
  height: 100%;
  background: #F9F9F9;
  padding: 30px 45px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.advantage .list .top ul li .text::before,
.advantage .list .bottom ul li .text::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 15px solid #0075C3;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  transform: rotate(90deg) translateY(-50%);
  position: absolute;
  left: -30px;
  top: 48%;
  opacity: 0;
}
.advantage .list .top ul li .text p:nth-child(1),
.advantage .list .bottom ul li .text p:nth-child(1) {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}
.advantage .list .top ul li .text p:nth-child(2),
.advantage .list .bottom ul li .text p:nth-child(2) {
  font-size: 16px;
  color: #333333;
  line-height: 36px;
  margin-top: 15px;
}
.advantage .list .bottom ul li .text::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 15px solid #0075C3;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  transform: rotate(270deg) translateY(-50%);
  position: absolute;
  left: auto;
  right: -30px;
  top: 48%;
}
.new .new-content {
  margin-top: 55px;
  display: flex;
}
.new .new-content .left {
  width: 49%;
  box-sizing: border-box;
}
.new .new-content .left li {
  background: #FFFFFF;
  box-shadow: -4px 5px 17px 0px #EAEAEA;
  padding: 22px;
}
.new .new-content .left li:hover,
.new .new-content .left li.active {
  background: #0075C3;
  box-shadow: 0 0 0 0 ;
  border-top: 1px solid #fff;
}
.new .new-content .left li:hover p,
.new .new-content .left li.active p {
  color: #fff !important;
}
.new .new-content .left li:hover p span,
.new .new-content .left li.active p span {
  color: #fff !important;
}
.new .new-content .left a {
  display: flex;
}
.new .new-content .left .img-wrap {
  width: 213px;
  height: 159px;
}
.new .new-content .left .img-wrap .img {
  width: 100%;
  height: 100%;
}
.new .new-content .left .text {
  width: calc(100% - 213px);
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new .new-content .left .text p:nth-child(1) {
  display: flex;
  justify-content: space-between;
}
.new .new-content .left .text p:nth-child(1) span:nth-child(1) {
  width: 70%;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}
.new .new-content .left .text p:nth-child(1) span:nth-child(2) {
  font-size: 14px;
  color: #666666;
}
.new .new-content .left .text p:nth-child(2) {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 36px;
  color: #666666;
  text-align: justify;
  margin-top: 10px;
}
.new .new-content .right {
  width: calc(51% - 35px);
  margin-left: 35px;
}
.new .new-content .right ul {
  display: flex;
  flex-wrap: wrap;
}
.new .new-content .right ul li {
  height: 135px;
  border: 1px solid #ECECEC;
  padding-right: 26px;
  box-sizing: border-box;
  width: 50%;
  border-bottom: none;
}
.new .new-content .right ul li:hover .time p {
  color: #0075C3 !important;
}
.new .new-content .right ul li:hover .text p:nth-child(1) {
  color: #0075C3 !important;
}
.new .new-content .right ul li:nth-child(2n+1) {
  border-right: none;
}
.new .new-content .right ul li:nth-last-child(1),
.new .new-content .right ul li:nth-last-child(2) {
  border-bottom: 1px solid #ECECEC;
}
.new .new-content .right ul li a {
  display: flex;
  height: 100%;
}
.new .new-content .right ul li a .time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100px;
}
.new .new-content .right ul li a .time p:nth-child(1) {
  font-size: 28px;
  color: #0A0908;
}
.new .new-content .right ul li a .time p:nth-child(2) {
  font-size: 14px;
  color: #5A5B5A;
}
.new .new-content .right ul li a .text {
  width: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new .new-content .right ul li a .text p:nth-child(1) {
  font-size: 16px;
  color: #333333;
}
.new .new-content .right ul li a .text p:nth-child(2) {
  font-size: 14px;
  color: #666666;
  line-height: 26px;
  margin-top: 10px;
}
.partner {
  margin-top: 55px;
  margin-bottom: 80px;
}
.partner .tit {
  font-size: 42px;
  font-weight: bold;
  color: #00A9A2;
}
.partner .list {
  margin-top: 40px;
}
.partner .list ul ul {
  display: flex;
  flex-wrap: wrap;
}
.partner .list ul ul li {
  width: calc(20% - 16px);
  height: 90px;
  background: #FFFFFF;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 19px 79px 0px rgba(223, 223, 223, 0.31);
  margin-bottom: 35px;
}
.partner .list ul ul li:nth-child(5n+1) {
  margin-left: 0;
}
.partner .list ul ul li:hover {
  position: relative;
  top: -5px;
}
.partner .list ul ul li img {
  max-width: 80%;
  max-height: 80%;
}
.partner .hd {
  margin-top: 15px;
}
.partner .hd ul {
  display: flex;
  justify-content: center;
}
.partner .hd ul li {
  width: 13px;
  height: 13px;
  background: #DDDDDD;
  border-radius: 50%;
  margin-right: 12px;
}
.partner .hd ul li.on {
  width: 41px;
  height: 13px;
  background: #0075C3;
  border-radius: 7px;
}
.footer {
  background: #2D2D2D;
  box-sizing: border-box;
  padding-bottom: 40px;
  padding-top: 50px;
}
.footer .wrap {
  position: relative;
}
.footer .f-tit {
  text-align: left;
  border-bottom: 1px solid #343434;
}
.footer .f-tit span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 30px;
  display: inline-block;
}
.footer .cont {
  display: flex;
}
.footer .cont .left {
  box-sizing: border-box;
  width: 30.3%;
}
.footer .cont .left .img {
  padding-bottom: 30px;
  border-bottom: 1px solid #343434;
}
.footer .cont .left .conts {
  font-size: 14px;
  color: #DEDEDE;
  line-height: 40px;
  margin-top: 7px;
}
.footer .cont .left .conts > div {
  position: relative;
  margin-top: 35px;
  height: 45px;
  display: flex;
}
.footer .cont .left .conts > div:hover p span:nth-child(1) {
  background: #0075C3;
}
.footer .cont .left .conts p {
  position: relative;
}
.footer .cont .left .conts p:nth-child(2) {
  width: 80%;
  margin-left: 18px;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer .cont .left .conts p span:nth-child(1) {
  width: 45px;
  height: 45px;
  transform: skew(-8deg);
  background: #404142;
  display: inline-block;
}
.footer .cont .left .conts p span:nth-child(2) {
  position: absolute;
  left: 13px;
  top: 48%;
  font-size: 18px;
  transform: translateY(-50%);
}
.footer .middle {
  width: 33.2%;
  box-sizing: border-box;
  padding-top: 22px;
  margin: 0 125px;
}
.footer .middle .list {
  width: 117%;
  margin-top: 27px;
}
.footer .middle .list ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .middle .list li {
  font-size: 16px;
  color: #FEFEFF;
  line-height: 55px;
  width: 25%;
}
.footer .middle .list li:hover {
  font-weight: 700;
}
.footer .middle .list li:nth-child(4n) {
  margin-right: 0;
}
.footer .middle .list li a {
  color: #FEFEFF;
}
.footer .tel-contact {
  margin-top: 5px;
}
.footer .tel-contact .tel p:nth-child(1) {
  font-size: 16px;
  color: #FFFFFF;
}
.footer .tel-contact .tel p:nth-child(2) {
  font-size: 42px;
  font-weight: bold;
  color: #FFFFFF;
  margin-top: 5px;
}
.footer .ewm {
  right: 0;
  width: 125px;
  margin-top: 35px;
  text-align: center;
}
.footer .ewm img {
  width: 125px;
  height: 125px;
}
.footer .ewm p {
  font-size: 18px;
  color: #9E9E9E;
  margin-top: 10px;
}
.ny-tip {
  height: 70px;
  line-height: 70px;
  background: #F8F8F8;
}
.ny-tip .wrap {
  display: flex;
  color: #3A3A3A;
}
.ny-tip .wrap a {
  color: #3A3A3A;
}
.ny-tip .iconfont {
  color: #707070;
  font-size: 20px;
  margin-right: 8px;
}
.common-left {
  width: 316px;
  float: left;
  box-sizing: border-box;
  padding-bottom: 20px;
}
.common-left .title {
  height: 78px;
  line-height: 78px;
  background: #0075C3;
  padding: 0 18px;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
}
.common-left .title > div:nth-child(1) span:nth-child(1) {
  font-size: 24px;
  color: #FFFFFF;
}
.common-left .title > div:nth-child(1) span:nth-child(2) {
  font-size: 12px;
  color: #FFFFFF;
  margin-left: 9px;
}
.common-left .title > div:nth-child(2) {
  color: #fff;
  font-size: 40px;
}
.common-left .nav-list {
  padding: 0 18px;
  background: #fff;
  padding-bottom: 30px;
}
.common-left .nav-list > ul {
  padding-top: 24px;
}
.common-left .nav-list > ul .li {
  height: 60px;
  overflow: hidden;
  margin-top: 24px;
  font-size: 16px;
}
.common-left .nav-list > ul .li:nth-child(1) {
  margin-top: 0;
}
.common-left .nav-list > ul .li a {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  box-sizing: border-box;
  font-size: 16px;
  color: #333333;
  padding: 0 24px;
  position: relative;
  background: #F0F0F0;
}
.common-left .nav-list > ul .li a span:nth-child(1) {
  width: 80%;
  display: inline-block;
}
.common-left .nav-list > ul .li a span:nth-child(2) {
  font-size: 30px;
  margin-left: 25px;
  position: absolute;
  right: 25px;
  color: #fff;
  display: inline-block;
  transform: rotate(270deg);
}
.common-left .nav-list > ul .li.active {
  height: auto;
}
.common-left .nav-list > ul .li.active > a {
  color: #fff;
  background: #0075C3;
}
.common-left .nav-list > ul .li.active span:nth-child(2) {
  transform: rotate(0deg);
}
.common-left .nav-list > ul .li > a:hover {
  color: #fff;
  background: #0075C3;
}
.common-left .nav-list > ul .li > a:hover span {
  color: #fff !important;
}
.common-left .nav-list > ul .li a {
  color: #333;
}
.common-left .nav-list > ul .li .sub {
  background: #F0F0F0;
  padding: 0 13px;
  padding-top: 10px;
  padding-bottom: 24px;
}
.common-left .nav-list > ul .li .sub li {
  line-height: 58px;
  box-sizing: border-box;
  margin-top: 12px;
}
.common-left .nav-list > ul .li .sub li:nth-child(1) {
  margin-top: 0;
}
.common-left .nav-list > ul .li .sub li a {
  height: 58px;
  font-size: 16px;
  line-height: 58px;
  background: #FFFFFF;
  color: #333;
}
.common-left .nav-list > ul .li .sub li a::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background: #EDEDED;
  border-radius: 50%;
  margin-right: 13px;
}
.common-left .nav-list > ul .li .sub li.active a {
  color: #0075C3;
  font-weight: 700;
}
.common-left .nav-list > ul .li .sub li.active a::before {
  background: #0075C3 !important;
}
.common-left .nav-list > ul .li .sub a:hover {
  color: #0075C3;
  font-weight: 700;
}
.common-left .nav-list > ul .li .sub a:hover::before {
  background: #0075C3 !important;
}
.common-left .contact {
  margin-top: 34px;
  background: #FFFFFF;
}
.common-left .contact .top-content {
  display: flex;
  height: 80px;
  border-bottom: 1px solid #f5f5f5;
  padding: 0 18px;
}
.common-left .contact .top-content > div:nth-child(1) {
  margin-right: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.common-left .contact .top-content > div:nth-child(1) span:nth-child(1) {
  width: 41px;
  height: 41px;
  background: #0075C3;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.common-left .contact .top-content > div:nth-child(2) {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.common-left .contact .top-content > div:nth-child(2) p:nth-child(1) {
  font-size: 16px;
  color: #333333;
}
.common-left .contact .top-content > div:nth-child(2) p:nth-child(2) {
  font-size: 22px;
  font-weight: bold;
  color: #0075C3;
}
.common-left .contact .bottom {
  font-size: 14px;
  color: #000000;
  line-height: 30px;
  height: 215px;
  box-sizing: border-box;
  padding: 20px 26px;
}
.common-right {
  width: calc(100% - 354px);
  background: #FFFFFF;
  float: left;
  padding-bottom: 56px;
  box-sizing: border-box;
  margin-left: 38px;
}
.common-right .tip {
  height: 70px;
  line-height: 70px;
  padding: 0 38px;
  border-bottom: 1px solid #f5f5f5;
}
.common-right .tip .iconfont {
  color: #707070;
  font-size: 24px;
  margin-right: 5px;
}
.common-title {
  display: flex;
  padding: 0 16px;
  padding-left: 0;
  height: 52px;
  font-size: 16px;
  line-height: 52px;
  color: #999;
}
.common-title a {
  color: #999;
}
.ny-news {
  margin-top: 64px;
  margin-bottom: 80px;
}
.new-list > ul {
  margin-bottom: 8px;
  padding: 0 30px;
  margin-top: 10px;
}
.new-list > ul li {
  font-size: 16px;
  padding: 30px;
  box-sizing: border-box;
  background: #FFFFFF;
  box-shadow: -4px 8px 57px 0px #EAEAEA;
  margin-top: 32px;
}
.new-list > ul li:hover {
  box-shadow: none;
  border: none;
  background: #0075C3;
  color: #fff !important;
}
.new-list > ul li:hover div {
  color: #fff !important;
}
.new-list > ul li:hover span {
  color: #fff !important;
}
.new-list > ul li:hover p {
  color: #fff !important;
}
.new-list > ul li:hover .img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.new-list > ul li a {
  display: flex;
  height: 100%;
}
.new-list > ul li .img-wrap {
  width: 213px;
  height: 159px;
  overflow: hidden;
}
.new-list > ul li .img-wrap .img {
  width: 100%;
  height: 100%;
}
.new-list > ul li .text {
  width: calc(100% - 223px);
  margin-left: 25px;
  height: 159px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new-list > ul li .text > div:nth-child(1) {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.new-list > ul li .text > div:nth-child(1) .tit {
  width: 80%;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}
.new-list > ul li .text > div:nth-child(1) .time {
  font-size: 14px;
  color: #666666;
}
.new-list > ul li .text > div:nth-child(2) {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 40px;
  margin-top: 16px;
  text-align: justify;
}
.inner-search {
  margin-bottom: 80px;
}
.inner-search .btn {
  display: flex;
  width: 515px;
  position: relative;
  margin-top: 59px;
}
.inner-search .btn input {
  width: 515px;
  height: 41px;
  opacity: 1;
  border: 2px solid #0075C3;
  border-radius: 22px;
  padding: 0 20px;
  box-sizing: border-box;
  outline: none;
}
.inner-search .btn button {
  width: 89px;
  height: 39px;
  opacity: 1;
  background: #0075C3;
  border-radius: 20px;
  border: none;
  color: #fff;
  position: absolute;
  right: 0;
}
.inner-search .new-list > ul {
  padding: 0;
}
.ny-product {
  margin-top: 64px;
  margin-bottom: 80px;
}
.ny-product .pro-list {
  margin-top: 6px;
  padding: 0 38px;
  margin-top: -6px;
}

.ny-product .pro-list ul {
  display: flex;
  flex-wrap: wrap;
}
.ny-product .pro-list ul li {
  width: calc(33% - 29px);
  margin-right: 40px;
  margin-top: 49px;
}
.ny-product .pro-list ul li:hover .img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.ny-product .pro-list ul li:hover .text::after {
  left: 0;
  transition: all 0.3s;
}
.ny-product .pro-list ul li:hover .text p {
  color: #fff !important;
}
.ny-product .pro-list ul li:nth-child(3n) {
  margin-right: 0;
}
.ny-product .pro-list ul li .img-wrap {
  width: 100%;
  overflow: hidden;
}
.ny-product .pro-list ul li .img-wrap .img {
  width: 100%;
}
.ny-product .pro-list ul li .img-wrap .img::before {
  content: '';
  display: block;
  padding-bottom: 77%;
}
.ny-product .pro-list ul li .text {
  padding: 0 20px;
  height: 92px;
  background: #fff;
  padding-top: 1px;
  box-shadow: 3px 6px 16px 0px #EFEFEF;
  position: relative;
  overflow: hidden;
}
.ny-product .pro-list ul li .text::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  background: #0075C3;
  z-index: 0;
}
.ny-product .pro-list ul li .text p {
  position: relative;
  z-index: 1;
}
.ny-product .pro-list ul li .text p:nth-child(1) {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin-top: 15px;
}
.ny-product .pro-list ul li .text p:nth-child(2) {
  font-size: 14px;
  color: #666666;
  margin-top: 12px;
}
.copy-right {
  width: 100%;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-top: 1px solid #343434;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  color: #CACACA;
  background: #2D2D2D;
}
.copy-right .wrap {
  display: flex;
  justify-content: space-between;
}
.copy-right a {
  color: #fff;
}
.copy-right .beian {
  margin: 0 5px;
}
.copy-right .map a {
  color: #848484;
  display: flex;
  align-items: center;
  height: 100%;
}
.copy-right .map a .iconfont {
  margin-right: 9px;
  font-size: 22px;
}
.ny-page {
  margin-top: 64px;
  margin-bottom: 80px;
}
.ny-page .content {
  margin-top: 10px;
  padding: 32px;
}
.ny-page .content img {
  max-width: 100%;
  height: auto;
}
.ny-contact {
  margin-top: 64px;
  margin-bottom: 80px;
}
.ny-contact .cont {
  padding: 35px;
  padding-bottom: 0;
}
.ny-contact .cont .cont-left {
  margin-right: 30px;
  display: flex;
  width: 100%;
}
.ny-contact .cont .cont-left .l-top {
  font-size: 16px;
  color: #333333;
  line-height: 35px;
  width: 43%;
}
.ny-contact .cont .cont-left .erwei {
  display: flex;
  margin-top: 5px;
  margin-left: 230px;
}
.ny-contact .cont .cont-left .erwei .t-img {
  text-align: center;
}
.ny-contact .cont .cont-left .erwei .t-img img {
  width: 136px;
  height: 136px;
}
.ny-contact .bottom .map {
  width: 100%;
  margin-top: 45px;
}
.ny-contact .bottom .map img {
  width: 100%;
  height: auto;
}
.ny-contact .bottom .message {
  margin-top: 45px;
  box-sizing: border-box;
  color: #999999;
}
.ny-contact .bottom .message h3 {
  font-size: 26px;
  font-weight: 700;
  color: #333333;
}
.ny-contact .bottom .message .en {
  font-size: 12px;
  color: #999999;
}
.ny-contact .bottom .message .input {
  display: flex;
  margin-top: 20px;
}
.ny-contact .bottom .message .input > div {
  width: calc(33% - 14px);
}
.ny-contact .bottom .message .input > div input {
  height: 100%;
  border: none;
  outline: none;
  margin-top: 14px;
  width: 100%;
  height: 45px;
  padding-left: 15px;
  box-sizing: border-box;
  background: #F7F7F7;
}
.ny-contact .bottom .message .input > div:nth-child(1),
.ny-contact .bottom .message .input > div:nth-child(2) {
  margin-right: 30px;
}
.ny-contact .bottom .message .input > div span {
  display: block;
  font-size: 14px;
  color: #666;
}
.ny-contact .bottom .message .input > div span i {
  color: #FF6731;
  margin-left: 3px;
}
.ny-contact .bottom .message .text-area {
  margin-top: 25px;
  width: 100%;
  height: 143px;
  box-sizing: border-box;
}
.ny-contact .bottom .message .text-area span {
  display: block;
  font-size: 14px;
  color: #666;
}
.ny-contact .bottom .message .text-area textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 15px;
  box-sizing: border-box;
  margin-top: 10px;
  background: #F7F7F7;
}
.ny-contact .bottom .message .btn-group {
  display: flex;
  justify-content: flex-start;
  margin-top: 70px;
}
.ny-contact .bottom .message .btn {
  width: 139px;
  height: 45px;
  background: #0075C3;
  line-height: 45px;
  color: #fff;
  text-align: center;
}
.ny-contact .bottom .message .reset {
  width: 139px;
  height: 45px;
  background: #D6D6D6;
  color: #fff;
  line-height: 45px;
  text-align: center;
  margin-left: 26px;
}
.ny-tit {
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
}
.ny-title {
  height: 50px;
  border-bottom: 1px solid #eeeeee;
  color: #282828;
  font-size: 12px;
  justify-content: space-between;
  margin: 20px auto;
}
.ny-title span {
  color: #14997E;
  display: inline;
}
.ny-about .cont {
  padding: 20px;
  line-height: 24px;
}
.ny-detail {
  margin-top: 64px;
  margin-bottom: 80px;
}
.ny-detail img {
  max-width: 100%;
  height: auto;
}
.ny-detail .detail {
  padding: 32px;
}
.ny-download {
  margin-top: 64px;
  margin-bottom: 80px;
}
.ny-download .list {
  padding: 32px;
}
.ny-download .list > ul {
  display: flex;
  flex-wrap: wrap;
}
.ny-download .list > ul li {
  width: calc(50% - 15px);
  height: 89px;
  margin-left: 27px;
  border: 1px solid #F2F2F2;
  padding: 24px 25px;
  margin-bottom: 28px;
  box-sizing: border-box;
}
.ny-download .list > ul li:nth-last-child(1),
.ny-download .list > ul li:nth-last-child(2) {
  margin-bottom: 0;
}
.ny-download .list > ul li:hover {
  border: none;
  box-shadow: 0px 1px 21px 0px rgba(224, 224, 224, 0.35);
}
.ny-download .list > ul li:hover a > div:nth-child(3) {
  background: #1D53BF;
}
.ny-download .list > ul li:hover a > div:nth-child(3) span {
  color: #fff;
}
.ny-download .list > ul li:nth-child(2n+1) {
  margin-left: 0;
}
.ny-download .list > ul li a {
  display: flex;
  align-items: center;
}
.ny-download .list > ul li a > div:nth-child(1) span {
  color: #FFBB63;
  font-size: 50px;
}
.ny-download .list > ul li a > div:nth-child(2) {
  margin-left: 10px;
  margin-top: 5px;
  width: 60%;
}
.ny-download .list > ul li a > div:nth-child(2) p:nth-child(1) {
  font-size: 16px;
  color: #333;
  width: 195px;
}
.ny-download .list > ul li a > div:nth-child(2) p:nth-child(2) {
  font-size: 12px;
  color: #B4AEAE;
}
.ny-download .list > ul li a > div:nth-child(3) {
  width: 47px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background: #F2F3F5;
  border-radius: 12px;
  margin-left: 70px;
}
.ny-download .list > ul li a > div:nth-child(3) span {
  color: #7E858C;
  font-size: 20px;
}
.page .cont,
.detail .cont {
  line-height: 33px;
  font-size: 16px;
  margin-top: 30px;
  color: #515151;
}
.detail {
  margin-top: 30px;
}
.detail .title {
  font-size: 24px;
  color: #333;
  text-align: center;
}
.detail .related {
  text-align: center;
  color: #666;
  font-size: 16px;
  line-height: 40px;
  margin-top: 10px;
}
.detail .other {
  margin-top: 55px;
}
.detail .other li {
  line-height: 30px;
}
.detail .other li:hover a {
  color: #0075C3;
}
.paging {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 56px 0 0 0;
}
.paging li {
  height: 57px !important;
  border-bottom: none !important;
}
.paging li a,
.paging li span {
  display: block;
  width: 57px;
  height: 57px;
  line-height: 57px;
  margin: 0 5px;
  text-align: center;
  box-sizing: border-box;
  color: #242422;
  font-size: 14px;
  border: 1px solid #E2E2E2;
}
.paging li.active a,
.paging li:hover a {
  background: #0075C3 !important;
  color: #fff !important;
}
.paging li.active a a,
.paging li:hover a a {
  color: #fff !important;
}
.paging li.active a span,
.paging li:hover a span {
  color: #fff !important;
}
.paging li span {
  color: #737373;
}
.paging li.prev {
  transform: rotate(180deg);
}
.paging li.prev span {
  border: none;
  font-size: 20px;
  position: relative;
  left: -7px;
}
.paging li.next span {
  border: none;
  font-size: 20px;
  position: relative;
  left: -7px;
}
.crumbs {
  height: 58px;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888888;
  font-family: "微软雅黑";
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888888;
  font-family: "微软雅黑";
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888888;
  font-family: "微软雅黑";
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888888;
  font-family: "微软雅黑";
}
@media screen and (max-width: 1680px) {
  .banner {
    height: calc(100vh - 242px) !important;
  }
  .banner img {
    height: calc(100vh - 242px) !important;
  }
  .about .left .a-top .history ul li > p:nth-child(1) {
    font-size: 45px;
  }
  .about .left .a-top p:nth-child(4) {
    line-height: 42px;
  }
  .about .left .hd ul {
    padding: 31px 0;
  }
  .about .left .a-top p:nth-child(4) {
    font-size: 17px;
  }
  .about .left .hd {
    margin-top: 30px;
  }
  .about .left .a-top .history {
    height: 100px;
  }
  .about .left .a-top .history ul li {
    height: 100px;
  }
  #certify {
    width: 1400px!important;
  }
  #certify .swiper-slide {
    width: 280px!important;
    height: 392px!important;
  }
  #certify .btn-list > div {
    left: 3.25vw !important;
  }
  #certify .btn-list .next {
    left: auto!important;
    right: 3.25vw !important;
  }
  .footer .middle {
    margin: 0 70px;
  }
  .ny-contact .cont .cont-left .erwei {
    margin-left: 170px;
  }
}
@media screen and (max-width: 1580px) {
  #certify {
    width: 1200px!important;
  }
  #certify .swiper-slide {
    width: 260px!important;
    height: 364px!important;
  }
  .footer .middle {
    margin: 0 60px;
  }
}
@media screen and (max-width: 1400px) {
  #certify {
    width: 1150px!important;
  }
  #certify .swiper-slide {
    width: 240px!important;
    height: 336px!important;
  }
  .footer .tel-contact .tel p:nth-child(2) {
    font-size: 30px;
  }
}


.fluxslider .images {
  position: static !important;
}
.fluxslider {
  position: static !important;
}
.fluxslider .surface {
  position: static !important;
}
.fluxslider .images > div {
  background-position-x: center !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.ny-page table,.ny-detail table{
	border-collapse: collapse;
    border-spacing: 0;
} 
.ny-page img {
  max-width: 100%;
  height: auto !important;
}

.ny-contact .about-content .map img {
  width: 100%;
  height: auto !important;
}
.ny-detail img {
  max-width: 100%;
  height: auto !important;
}