/*样式初始化及公共样式部分*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-style: normal;
  color: #111111;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #111111;
}
a:hover {
  color: #036eb8;
}
.cl {
  clear: both;
  height: 0px;
}
body {
  margin: 0 auto;
  background-color: #fff;
  font-family: "Microsoft YaHei";
  min-width: 1360px;
  overflow-x: hidden;
}
img,
span,
a {
  display: block;
  max-width: 100%;
}
.page {
  width: 98%;
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
}
/* header */
.header {
  width: 100%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 999;
}
.header .page {
  width: 96%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.header .logo {
  display: flex;
  margin-right: 8%;
}
.header .logo img {
  max-height: 66px;
}
.header .logo .text {
  margin-left: 5px;
}
.header .logo .text p {
  font-size: 15px;
  font-weight: bold;
  line-height: 28px;
  margin-top: 6px;
}
.header .logo .text span {
  font-size: 15px;
}
/* nav */
.nav {
  flex: 1;
  display: flex;
  align-items: center;
}
.nav-list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-list > li {
  display: flex;
  padding: 0 15px;
  align-items: center;
  position: relative;
}
.nav-list > li::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #036eb8;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
}
.nav-list > li > a {
  width: 100%;
  line-height: 105px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  position: relative;
}
.nav-list > li .erji2 {
  width: 200%;
  position: absolute;
  top: 100%;
  left: -50%;
  z-index: 999;
  display: flex;
  white-space: nowrap;
  opacity: 0;
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0;
  transition: all 0.6s;
}
.nav-list > li .erji2 ul {
  width: 100%;
  text-align: center;
}
.nav-list > li .erji2 ul li {
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  transition: 600ms ease;
  margin-bottom: 1px;
}
.nav-list > li .erji2 ul li a {
  line-height: 45px;
  font-size: 15px;
  color: #fff;
}
.nav-list > li .erji2 ul li:hover {
  background-color: #036eb8;
}
.nav-list > li .erji2 ul li:hover a {
  color: #fff;
}
.nav-list > li .erji2 ul li:last-child {
  border: none;
}
.nav-list > li:hover::after {
  width: 100%;
  transition: all 0.3s linear;
}
.nav-list > li:hover .erji2 {
  opacity: 1;
  transform: perspective(600px) rotateX(0);
  transition: all 0.6s;
}
.nav-list .active > a {
  color: #036eb8;
}
.nav-list .active::after {
  width: 100%;
}
.top-tel {
  padding-left: 50px;
  margin-left: 15px;
  background: url(../images/top-tel.png) no-repeat left center;
  background-size: 40px;
}
.top-tel p {
  font-size: 14px;
}
.top-tel span {
  font-size: 22px;
  font-weight: bold;
  color: #036eb8;
}
.index_banner {
  position: relative;
  overflow: hidden;
}
.index_banner img {
  width: 100%;
}
.index_banner .swiper-btn {
  transition: 0.3s all ease-in-out;
}
.index_banner .swiper-btn .iconfont {
  width: 50px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 50px;
  border-radius: 5px 0 0 5px;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.index_banner .swiper-btn .iconfont:hover {
  opacity: 0.6 !important;
}
.index_banner .swiper-btn .banner-next {
  transform: scaleX(-1);
}
.index_banner:hover .swiper-btn {
  padding: 0 20px;
}
.index_banner:hover .swiper-btn .iconfont {
  opacity: 0.3;
}
/* 搜索 */
.search {
  width: 40px;
  height: 70px;
  margin-left: 50px;
  margin-right: 15px;
  background: url(../images/search.png) no-repeat right center;
  background-size: contain;
  position: relative;
}
.search .box {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 20px 40px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  transform: scaleY(0);
  opacity: 0;
  transition: all 0.3s linear;
  transition-delay: 0.1s;
  z-index: 9999;
}
.search .sear-w {
  display: flex;
  overflow: hidden;
  position: relative;
}
.search .sear-w input {
  width: 100%;
  min-width: 400px;
  height: 45px;
  border-radius: 22px;
  padding-left: 35px;
  padding-right: 80px;
  color: #666;
  border: 1px solid #e2e2e2;
}
.search .sear-w input:focus {
  outline: none;
}
.search .sear-w button {
  width: 24px;
  height: 24px;
  border: none;
  cursor: pointer;
  background: url(../images/search-icon.png);
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.search .keywo {
  display: flex;
  margin-top: 25px;
  padding: 0 20px;
  justify-content: center;
}
.search .keywo .text {
  font-size: 15px;
  color: #666;
}
.search .keywo a {
  font-size: 15px;
  color: #666;
  margin-left: 15px;
}
.search .keywo a:hover {
  color: #0ea79f;
}
.search:hover .box {
  transform: scaleY(1);
  opacity: 1;
  transition: all 0.3s linear;
}
/*网站标题*/
.wz-bt {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.wz-bt em {
  font-size: 41px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #036eb8;
  opacity: 0.21;
  text-transform: uppercase;
}
.wz-bt p {
  font-size: 36px;
  position: relative;
  font-weight: bold;
  margin-top: -33px;
}
.wz-bt p i {
  font-weight: bold;
  color: #036eb8;
}
.wz-bt span {
  font-size: 18px;
  line-height: 32px;
  margin-top: 8px;
  opacity: 0.67;
  padding-bottom: 20px;
  position: relative;
}
.wz-bt span::after {
  content: '';
  width: 25px;
  height: 3px;
  background-color: #ff9a00;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.char-w {
  background-color: #f9f9f9;
  position: relative;
  z-index: 111;
}
.char-w .char {
  width: 100%;
  background-color: #e8edf8;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.char-w .page {
  display: flex;
  width: 94%;
  max-width: 1520px;
}
.char-w .text {
  white-space: nowrap;
  padding-left: 3%;
  margin-right: 15px;
}
.char-w .text p {
  font-size: 20px;
  line-height: 32px;
  margin-top: 40px;
  padding-bottom: 10px;
  opacity: 0.86;
  position: relative;
  margin-left: -15px;
}
.char-w .text p::after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #036eb8;
  position: absolute;
  left: 15px;
  bottom: 0;
}
.char-w .text span {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.8;
  line-height: 35px;
}
.char-w .list {
  flex: 1;
  display: flex;
}
.char-w .list li {
  flex: 1;
  cursor: pointer;
}
.char-w .list li .box {
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.char-w .list li p {
  font-size: 24px;
  color: #036eb8;
}
.char-w .list li span {
  font-size: 14px;
  padding: 0 20px;
  color: #666;
  margin-top: 30px;
  font-weight: lighter;
}
.char-w .list li i {
  display: block;
  width: 60px;
  height: 60px;
  margin: 40px 0 20px;
  background: url(../images/char-icon.png);
  transition: all 0.2s linear;
  background-position-y: -135px;
}
.char-w .list li:nth-child(1) i {
  background-position-x: -20px;
}
.char-w .list li:nth-child(2) i {
  background-position-x: -120px;
}
.char-w .list li:nth-child(3) i {
  background-position-x: -220px;
}
.char-w .list li:nth-child(4) i {
  background-position-x: -320px;
}
.char-w .list li:nth-child(5) i {
  background-position-x: -420px;
}
.char-w .list li:nth-child(6) i {
  background-position-x: -520px;
}
.char-w .list .on .box {
  background-color: #fff;
}
.char-w .list .on i {
  background-position-y: -37px;
  transition: all 0.2s linear;
}
.pro-w {
  padding: 300px 0 70px;
  background-color: #f9f9f9;
}
.pro-w .pro-tabs {
  width: 1180px;
  background-color: #fff;
  height: 50px;
  margin: 50px auto 50px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.pro-w .pro-tabs ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.pro-w .pro-tabs ul li {
  flex: auto;
  height: 42px;
  line-height: 42px;
  margin: 4px;
  border-radius: 21px;
  text-align: center;
}
.pro-w .pro-tabs ul .swiper-slide-thumb-active {
  background-color: #e50014;
}
.pro-w .pro-tabs ul .swiper-slide-thumb-active a {
  color: #fff;
}
.pro-w .con-box {
  max-width: 1520px;
  margin: 0 auto;
}
.pro-w .con-box .swiper-slide {
  min-height: 450px;
  padding: 0 300px 0 3%;
}
.pro-w .con-box .swiper-slide .box {
  min-height: 370px;
  background-color: #fff;
  padding: 40px 240px 75px 90px;
  position: relative;
}
.pro-w .con-box .swiper-slide .box .tit {
  font-size: 28px;
  font-weight: bold;
}
.pro-w .con-box .swiper-slide .box .tit i {
  font-size: 14px;
  font-weight: normal;
  opacity: 0.92;
}
.pro-w .con-box .swiper-slide .box ul {
  display: flex;
  flex-wrap: wrap;
}
.pro-w .con-box .swiper-slide .box ul li {
  margin-right: 30px;
  margin-top: 30px;
}
.pro-w .con-box .swiper-slide .box ul li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pro-w .con-box .swiper-slide .box .more {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: url(../images/arrow.png) no-repeat center;
  background-color: #036eb8;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 35px;
}
.pro-w .con-box .swiper-slide .box .more:hover {
  background-color: #e50014;
}
.pro-w .con-box .swiper-slide .pic {
  position: absolute;
  top: 25px;
  right: 0;
}
.intr {
  padding: 60px 0 122px;
  background: url(../images/intr-bg.png) no-repeat center top;
}
.intr .con {
  margin-top: 88px;
  display: flex;
  align-items: center;
}
.intr .con .pic {
  width: 47%;
}
.intr .con .pic video {
  width: 100%;
}
.intr .con .text {
  flex: 1;
  margin-right: 5%;
}
.intr .con .text h1 {
  font-size: 40px;
}
.intr .con .text span {
  font-size: 32px;
  font-weight: bold;
  opacity: 0.6;
  margin: 20px 0;
}
.intr .con .text i {
  font-size: 18px;
  color: #333;
  line-height: 2;
}
.intr .con .text .more {
  display: flex;
  margin-top: 40px;
}
.intr .con .text .more a {
  width: 160px;
  line-height: 45px;
  border: 1px solid #036eb8;
  text-align: center;
  margin-right: 25px;
}
.intr .btm {
  display: flex;
  margin-top: 64px;
}
.intr .btm li {
  flex: auto;
  text-align: center;
  background: url(../images/intr-line.png) no-repeat right center;
}
.intr .btm li:last-child {
  background: none;
}
.intr .btm li p {
  display: flex;
  justify-content: center;
}
.intr .btm li span {
  font-size: 70px;
  font-weight: bold;
  color: #036eb8;
}
.intr .btm li i {
  font-size: 43px;
  color: #036eb8;
}
.intr .btm li em {
  font-size: 26px;
  color: #555;
}
.wel-wrap {
  border-bottom: 1px solid #fff;
}
.wel-wrap .page {
  width: 100%;
  max-width: 1920px;
}
.wel-wrap .list {
  display: flex;
}
.wel-wrap .list li {
  flex: 1;
  height: 930px;
  border-right: 0.5px solid #fff;
  background: url(../images/list-pic1.jpg) no-repeat top center;
  animation: scroll1 15s 0.3s infinite linear;
  animation-play-state: paused;
  position: relative;
  overflow: hidden;
}
.wel-wrap .list li:nth-child(1) {
  background-image: url(../images/list-pic1.jpg);
}
.wel-wrap .list li:nth-child(2) {
  background-image: url(../images/list-pic2.jpg);
}
.wel-wrap .list li:nth-child(3) {
  background-image: url(../images/list-pic3.jpg);
}
.wel-wrap .list li:nth-child(4) {
  background-image: url(../images/list-pic4.jpg);
}
.wel-wrap .list li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.55;
  position: absolute;
  top: 0;
  left: 0;
}
.wel-wrap .list li * {
  transition: all 0.2s linear;
}
.wel-wrap .list li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 11;
}
.wel-wrap .list li p {
  font-size: 30px;
  font-weight: lighter;
  color: #fff;
  padding-left: 52px;
  text-transform: capitalize;
}
.wel-wrap .list li span {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin: 65px 0 95px;
  padding-left: 52px;
}
.wel-wrap .list li .more {
  width: 115px;
  line-height: 35px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin: 0 auto;
}
.wel-wrap .list li:hover {
  animation-play-state: running;
}
.wel-wrap .list li:hover * {
  transition: all 0.2s linear;
}
.wel-wrap .list li:hover::after {
  opacity: 0;
}
.wel-wrap .list li:hover p {
  opacity: 0;
}
.wel-wrap .list li:hover span {
  opacity: 0;
}
.wel-wrap .list li:hover .more {
  background-color: #036eb8;
  border-color: #036eb8;
}
@keyframes scroll1 {
  0% {
    background-position-x: center;
  }
  25% {
    background-position-x: right;
  }
  50% {
    background-position-x: center;
  }
  75% {
    background-position-x: left;
  }
  100% {
    background-position-x: center;
  }
}
.app-w {
  padding: 80px 0 90px;
  background-color: #111;
}
.app-w .wz-bt p {
  color: #fff;
  font-size: 34px;
  font-weight: normal;
  margin-top: -45px;
  padding-bottom: 10px;
  background: url(../images/app-bt.png) no-repeat center bottom;
}
.app-w .wz-bt p i {
  font-size: 54px;
  color: #ff9a00;
}
.app-w .app-tab {
  background-color: #fff;
  margin-top: 45px;
  padding: 45px 60px;
}
.app-w .app-tab li {
  height: 100%;
  text-align: center;
  cursor: pointer;
}
.app-w .app-tab li p {
  font-size: 24px;
}
.app-w .app-tab li span {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}
.app-w .app-tab li i {
  display: block;
  margin: 20px auto 0;
  width: 40px;
  height: 35px;
  border-top: 1px solid #9c9c9c;
  position: relative;
  overflow: hidden;
}
.app-w .app-tab li i::after {
  content: '';
  width: 35px;
  height: 35px;
  background: url(../images/arrow.png) no-repeat center;
  background-color: #036eb8;
  border-radius: 50%;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transition: all 0.2s linear;
}
.app-w .app-tab .my-slide-thumb-active i {
  border-top: none;
}
.app-w .app-tab .my-slide-thumb-active i::after {
  bottom: 0;
  transition: all 0.3s linear;
}
.app-w .app-con {
  margin-top: 50px;
}
.app-w .app-con li {
  opacity: 0 !important;
  display: flex;
  padding: 0 90px;
  justify-content: space-between;
}
.app-w .app-con li .text {
  max-width: 500px;
}
.app-w .app-con li em {
  font-size: 60px;
  color: #036eb8;
  font-weight: bold;
  position: relative;
}
.app-w .app-con li em::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: #036eb8;
  position: absolute;
  left: 50px;
  bottom: 25px;
}
.app-w .app-con li p {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
}
.app-w .app-con li p i {
  font-size: 15px;
  color: #838383;
  font-weight: normal;
  text-transform: capitalize;
}
.app-w .app-con li span {
  font-size: 14px;
  line-height: 1.875;
  color: #777777;
  margin-top: 15px;
}
.app-w .app-con .swiper-slide-active {
  opacity: 1 !important;
}
.adv {
  height: 836px;
  background: url(../images/adv-bg.png) no-repeat top center;
}
.adv .page {
  display: flex;
  width: 100%;
  max-width: 1920px;
}
.adv .lf {
  width: 50%;
}
.adv .lf .adv-tab {
  width: 450px;
}
.adv .lf .adv-tab li {
  opacity: 0 !important;
}
.adv .lf .adv-tab .swiper-slide-active {
  opacity: 1 !important;
}
.adv .lf .adv-tab .num {
  margin-top: 100px;
  font-size: 30px;
  color: #fff;
}
.adv .lf .adv-tab .num i {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
}
.adv .lf .adv-tab .text {
  margin-top: 140px;
}
.adv .lf .adv-tab .text p {
  font-size: 42px;
  color: #fff;
  margin-bottom: 30px;
}
.adv .lf .adv-tab .text span {
  font-size: 18px;
  line-height: 2;
  color: #fff;
}
.adv .lf .adv-tab .more {
  margin-top: 80px;
  width: 220px;
  line-height: 60px;
  padding-right: 40px;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
  color: #fff;
  cursor: pointer;
}
.adv .lf .adv-tab .more::before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 180px;
}
.adv .lf .adv-tab .more::after {
  content: '';
  width: 0px;
  height: 0px;
  border: 5px solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.adv .lf .adv-tab .more:hover {
  background-color: #fff;
  color: #036eb8;
}
.adv .lf .adv-tab .more:hover::before {
  background-color: #ccc;
}
.adv .lf .adv-tab .more:hover::after {
  border-color: transparent transparent transparent #036eb8;
}
.adv .rg {
  width: 50%;
}
.adv .rg .box {
  width: 590px;
  margin: 0 auto;
  padding-top: 100px;
}
.adv .rg .box .tit {
  text-align: center;
}
.adv .rg .box .tit p {
  font-size: 36px;
  margin-bottom: 20px;
}
.adv .rg .box .tit span {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}
.adv .rg .box .con-box {
  position: relative;
  margin-top: 30px;
}
.adv .rg .box .con-box .adv-con {
  width: 400px;
  height: 400px;
  border: 1px solid #a1a1a1;
  border-radius: 50%;
  margin: 0 auto;
  padding: 20px;
}
.adv .rg .box .con-box .adv-con li {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ccc;
}
.adv .rg .box .con-box .btn {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.adv .rg .box .con-box .btn > div {
  width: 55px;
  height: 55px;
  background: url(../images/adv-prev.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.adv .rg .box .con-box .btn > div:hover {
  background: url(../images/adv-prev2.png);
}
.adv .rg .box .con-box .btn .adv-prev {
  left: 0;
}
.adv .rg .box .con-box .btn .adv-next {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
.adv .rg .box .con-box .circle-line {
  width: 398px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.adv .rg .box .con-box .rotate img {
  animation: rotate2 0.5s both linear;
}
@keyframes rotate2 {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
/* 新闻 */
.news-w {
  padding: 85px 0 30px;
  background: url(../images/news-bg.jpg) no-repeat top center;
}
.news-w .page {
  max-width: 1400px;
}
.news-w .tit {
  text-align: center;
}
.news-w .tit p {
  background: url(../images/intr-bt.png) no-repeat center;
  font-size: 35px;
  font-weight: bold;
}
.news-w .tit span {
  font-size: 25px;
  margin-top: 10px;
  text-transform: uppercase;
  opacity: 0.8;
}
.news-w .news-cen {
  margin-top: 40px;
}
.news-w .news-cen ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.news-w .news-cen ul li {
  width: 30%;
  margin-bottom: 2%;
}
.news-w .news-cen ul li .pic {
  overflow: hidden;
}
.news-w .news-cen ul li .pic img {
  transition: all 0.3s linear;
}
.news-w .news-cen ul li .row {
  display: flex;
  margin-top: 20px;
}
.news-w .news-cen ul li .row .date {
  width: 85px;
  padding-left: 10px;
  border-right: 2px solid #bbb;
  white-space: nowrap;
}
.news-w .news-cen ul li .row .date p {
  font-size: 16px;
  color: #333333;
  line-height: 1;
}
.news-w .news-cen ul li .row .date span {
  font-size: 55px;
  color: #333;
  line-height: 1;
  margin-top: 7px;
}
.news-w .news-cen ul li .row .text {
  flex: 1;
  padding-left: 10px;
  overflow: hidden;
}
.news-w .news-cen ul li .row .text p {
  font-size: 18px;
  color: #333;
  margin-top: 15px;
  font-weight: bold;
}
.news-w .news-cen ul li .row .text span {
  font-size: 14px;
  color: #666;
  line-height: 34px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-w .news-cen ul li:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.news-w .news-cen ul li:hover .row .text p {
  color: #036eb8;
}
.honor-w {
  padding-bottom: 86px;
}
.honor-w .page {
  max-width: 1400px;
  padding: 2px 25px;
}
.honor-w .tit {
  display: flex;
  align-items: center;
}
.honor-w .tit p {
  font-size: 34px;
  font-weight: bold;
}
.honor-w .tit p i {
  font-size: 22px;
  font-weight: normal;
  text-transform: uppercase;
}
.honor-w .tit .line {
  flex: 1;
  height: 1px;
  background-color: #5f5f5f;
  margin: 8px 40px 0;
}
.honor-w .tit .more {
  width: 155px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #5f5f5f;
  font-size: 14px;
  transition: all 0.2s;
}
.honor-w .tit .more:hover {
  background-color: #225392;
  color: #fff;
  transition: all 0.2s;
}
.honor-w .box {
  position: relative;
  margin-top: 45px;
}
.honor-w li .pic {
  overflow: hidden;
  border: 1px solid #ccc;
}
.honor-w li img {
  transition: all 0.3s linear;
}
.honor-w li p {
  width: 80%;
  margin: 0 auto;
  margin-top: 18px;
  font-size: 14px;
  line-height: 35px;
  background-color: #f1f1f1;
  text-align: center;
}
.honor-w li:hover img {
  transform: scale(1.15);
  transition: all 0.3s linear;
}
.honor-w li:hover p {
  background-color: #225392;
  color: #fff;
}
.honor-w .btn {
  position: absolute;
  width: 100%;
  top: 36%;
  left: 0;
  z-index: 9;
}
.honor-w .btn .swiper-prev,
.honor-w .btn .swiper-next {
  width: 39px;
  height: 39px;
  background: url(../images/hon-prev.png);
  position: absolute;
  cursor: pointer;
}
.honor-w .btn .swiper-prev {
  left: 0;
  transform: translateX(-50%);
}
.honor-w .btn .swiper-next {
  right: 0;
  transform: scaleX(-1) translateX(-50%);
}
.links {
  width: 100%;
  background-color: #036eb8;
}
.links * {
  color: #fff;
}
.links a:hover {
  text-decoration: underline;
  color: #fff;
}
.links .page {
  max-width: 1200px;
}
.links .text {
  display: flex;
  height: 80px;
  align-items: center;
}
.links .text p {
  padding-left: 35px;
  font-size: 18px;
}
.links .text p img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.links .text ul {
  display: flex;
}
.links .text ul li {
  margin-right: 15px;
}
.links .text ul li a {
  font-size: 16px;
}
.links .text a {
  font-size: 14px;
  margin: 0 0 0 auto;
}
.footer {
  background: #222;
  background-image: url(../images/foot-bg.png);
  padding-top: 80px;
}
.footer .page {
  max-width: 1200px;
  padding-bottom: 25px;
}
.footer .footer-main .footer-cont {
  display: flex;
  justify-content: space-between;
}
.footer .footer-main .footer-cont .footer-wechat {
  width: 130px;
}
.footer .footer-main .footer-cont .footer-wechat p {
  text-align: center;
  margin-top: 10px;
  color: #fff;
  font-size: 17px;
}
.footer .footer-main .footer-cont .footer-lianxi {
  width: 40%;
}
.footer .footer-main .footer-cont .footer-lianxi .footer-lianxi-title h1 {
  color: #fff;
  font-family: arial;
  font-size: 28px;
}
.footer .footer-main .footer-cont .footer-lianxi .footer-lianxi-title span {
  width: 50px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin-top: 25px;
  margin-bottom: 35px;
}
.footer .footer-main .footer-cont .footer-lianxi h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li {
  color: #ddd;
  line-height: 40px;
  font-size: 18px;
  padding-left: 30px;
  background: url(../images/foot-icon.png) no-repeat left;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(1) {
  background-position-y: -2px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(2) {
  background-position-y: -64px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(3) {
  background-position-y: -123.5px;
}
.footer .footer-main .footer-cont .footer-service {
  width: 25%;
}
.footer .footer-main .footer-cont .footer-service .footer-service-title h1 {
  color: #fff;
  font-family: arial;
  font-size: 28px;
}
.footer .footer-main .footer-cont .footer-service .footer-service-title span {
  width: 50px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin-top: 25px;
  margin-bottom: 35px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div {
  display: flex;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div > img {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 15px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div .footer-tell h1 {
  font-size: 30px;
  font-family: arial;
  color: #0ea79f;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div .footer-tell p {
  color: #fff;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a {
  background: #0ea79f;
  display: flex;
  align-items: center;
  width: 150px;
  padding: 12px 0px;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  margin-top: 25px;
  transition: all 0.2s linear;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a img {
  margin-right: 8px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a:hover {
  background-color: #036eb8;
  transition: all 0.2s linear;
}
.footer .footer-main .footer-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.footer .footer-main .footer-nav-row .footer-nav {
  width: 55%;
}
.footer .footer-main .footer-nav-row .footer-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-main .footer-nav-row .footer-nav ul li a {
  color: #fff;
  font-size: 17px;
}
.footer .footer-main .footer-nav-row .footer-nav ul li a:hover {
  color: #036eb8;
}
.footer .footer-main .footer-nav-row .footer-jishu {
  width: 20%;
}
.footer .footer-main .footer-nav-row .footer-jishu a {
  color: #fff;
  font-size: 15px;
}
.footer .footer-main .footer-nav-row .footer-jishu a:hover {
  color: #036eb8;
}
.footer-copying {
  border-top: 1px solid #393939;
  padding: 15px 0px;
  background-color: #222222;
}
.footer-copying .footer-copying-main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-copying .footer-copying-main p {
  font-size: 16px;
  color: #898989;
  margin-right: 10px;
}
.footer-copying .footer-copying-main a {
  color: #898989;
  font-size: 16px;
}
.footer-copying .footer-copying-main a:hover {
  color: #036eb8;
}

