﻿@charset "utf-8";

@font-face {
  font-family: "DMSans-Regular";
  src: url("../font/DMSans-Regular.woff2") format("woff2"),
    url("../font/DMSans-Regular.woff") format("woff"),
    url("../font/DMSans-Regular.ttf") format("truetype"),
    url("../font/DMSans-Regular.eot") format("embedded-opentype"),
    url("../font/DMSans-Regular.svg") format("svg"),
    url("../font/DMSans-Regular.otf") format("opentype");
}

html {
  font-size: 62.5%;
}

body {
  margin: 0px;
  font-size: 12px;
  color: #91989f;
  font-family: Arial, Helvetica, sans-serif, Microsoft YaHei;
  cursor: default;
  background: url(../images/header.png);
}

* {
  padding: 0px;
  margin: 0px;
  -moz-box-sizing: border-box;
  /*Firefox3.5+*/
  -webkit-box-sizing: border-box;
  /*Safari3.2+*/
  -o-box-sizing: border-box;
  /*Opera9.6*/
  -ms-box-sizing: border-box;
  /*IE8*/
  box-sizing: border-box;
}

body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
i,
b,
em,
span,
form,
fieldset,
legend,
input,
textarea,
select,
button,
th,
td {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif, Microsoft YaHei;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  list-style: none;
  font-weight: normal;
  color: #555;
}

input,
select,
button {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif, Microsoft YaHei;
  border: 0;
  background: none;
  outline: none;
  vertical-align: middle;
}

button {
  overflow: visible
}

img {
  border: none;
}

li {
  list-style: none;
}

a {
  color: #91989f;
  text-decoration: none;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

a:hover {
  color: #005caf;
}

.clear {
  overflow: hidden;
  clear: both;
  height: 0px;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.con {
  width: 1520px;
  max-width: 94%;
  margin: 0 auto;
}

.container {
  width: 1520px;
  max-width: 94%;
  margin: 0 auto;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: url(../images/bk.png) center top / auto 5px repeat-x;
  transition: all .5s;
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.header.on {
  box-shadow: 0 0 10px #aaa;
  background: url(../images/topbg.jpg) center top / cover repeat-x
}

.header .container {
  position: relative;
}

.header .logo {
  float: left;
  margin: 5px 0;
  transition: all .5s;
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.header .logo img {
  width: auto;
  height: 110px;
  display: block;
}

.header .logo .img2 {
  display: none
}

.header.on .logo .img1 {
  display: none
}

.header.on .logo .img2 {
  display: block
}

.header .an {
  position: absolute;
  top: 50%;
  right: 15px;
  height: 18px;
  width: 30px;
  display: none;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.header .an span {
  width: 30px;
  height: 2px;
  background-color: #555;
  display: block;
  position: absolute;
  transition: all .5s;
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.header .an span.a1 {
  top: 0;
  left: 0;
}

.header .an span.a2 {
  top: 8px;
  left: 0;
}

.header .an span.a3 {
  top: 16px;
  left: 0;
}

.header .an.n span.a2 {
  display: none;
}

.header .an.n span.a1 {
  top: 8px;
  width: 30px;
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.header .an.n span.a3 {
  top: 8px;
  width: 30px;
  transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.header .right {
  float: right;
  margin-top: 40px
}

.header .right ul li {
  line-height: 36px;
  width: 36px;
  float: left;
  font-size: 20px;
  color: #fff;
  position: relative;
  background: #993300;
  border-radius: 18px;
  text-align: center;
  margin: 0 5px
}

.header .right ul li i {
  font-size: 20px;
}

.header .right ul li a {
  color: #fff;
}

.header .right ul li .w_x {
  position: absolute;
  width: 120px;
  left: 50%;
  margin-left: -60px;
  top: 60px;
  display: none;
}

.header .right ul li:hover .w_x {
  display: block;
}

.search {
  width: 100%;
  padding: 30px 5%;
  background-color: #f7f7f7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
  box-sizing: border-box;
}

.search .an_sj {
  width: 5%;
  line-height: 52px;
  color: #555;
  float: right;
  text-align: right;
}

.search input.w_z {
  width: 90%;
  height: 52px;
  border-radius: 0;
  font-size: 18px;
  line-height: 52px;
  color: #555;
  float: left;
  -webkit-appearance: none;
}

.search button.s_c {
  width: 5%;
  height: 52px;
  font-size: 18px;
  line-height: 52px;
  text-align: center;
  float: left;
  -webkit-appearance: none;
  font-weight: bold;
}

.search i {
  font-size: 18px;
}

.header .right .wx {
  display: none;
}

.header .right .wx i {
  font-size: 18px;
}

.header .right .wx .e_j {
  position: absolute;
  width: 120px;
  left: 50%;
  margin-left: -60px;
  top: 60px;
  background: #fff;
  display: none
}

.header .right .wx .e_j img {
  width: 100%;
  display: block;
}

.header .right .wx .e_j p {
  line-height: 1.8;
  color: #333;
  text-align: center;
  font-size: 14px;
}

.header .right .wx:hover .e_j {
  display: block;
}

.header .right .yy i {
  font-size: 20px;
}

.header .right .yy .x_l {
  width: 100px;
  top: 60px;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  background: #fff;
  line-height: 40px;
  display: none;
  z-index: 99;
}

.header .right .yy .x_l a {
  color: #333;
  display: block;
  font-size: 14px;
  text-align: center;
  width: 100%;
  border-radius: 0;
  margin-left: 0;
}

.header .right .yy .x_l a:hover {
  background: #993300;
  color: #fff;
}

.header .nav {
  float: right;
}

.header .nav i {
  font-size: 12px;
  color: #aaa;
  line-height: 54px;
  text-align: right;
  position: absolute;
  width: 50%;
  height: 54px;
  right: 0px;
  top: 50%;
  display: none;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.header .nav ul li {
  line-height: 120px;
  float: left;
  position: relative;
  padding: 0 25px;
  transition: all .5s;
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.header .nav ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
}

.header.on .nav ul li a {
  color: #000;
}

.header .nav ul li span {
  width: 0;
  height: 2px;
  background: #993300;
  position: absolute;
  left: 50%;
  bottom: 0;
  transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}

.header .nav ul li:hover span {
  width: 100%;
}

.header .nav ul li.on span {
  width: 100%;
}

.header.on .nav ul li span {
  background: #993300
}


.nav .y_j {
  position: relative;
}

.nav .e_j {
  width: 180px;
  background-color: rgba(255, 255, 255, .85);
  position: absolute;
  top: 90px;
  left: 0;
  display: none;
  z-index: 9999;
}

/*.header.on .nav .e_j{box-shadow:0 2px 2px #aaa;}*/
.header .nav ul li .e_j a {
  display: block;
  font-size: 14px;
  color: #000;
  line-height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 10px;
}

.nav .e_j .ejy {
  position: relative
}

.nav .e_j .s_j {
  width: 150px;
  background-color: rgba(255, 255, 255, .5);
  position: absolute;
  top: 0px;
  left: 150px;
  display: none;
  z-index: 9999;
}

.header .nav .e_j a:hover {
  background-color: #993300;
  color: #fff;
}

@media (min-width:1024px) {

  .header .nav .e_j {
    display: none !important;
  }

  .header .nav ul li:hover .e_j {
    display: block !important;
  }

  .head_h {
    height: 68px;
    display: none
  }
}

@media (max-width:102px) {
  .header .nav ul li {
    margin: 0 15px;
  }

  .header .nav ul li a {
    font-size: 15px;
  }
}

@media (max-width:1200px) {
  .header .nav ul li {
    margin: 0 20px;
  }

  .header .nav ul li a {
    font-size: 16px;
  }
}

@media only screen and (max-width:1024px) {
  .head_h {
    height: 60px;
    display: block
  }

  .header {
    border: 0;
    height: 60px;
    background: url(../images/topbg.jpg) center top / cover repeat-x;
    width: 100%
  }

  .header .container {
    padding: 0;
    height: 60px;
    width: 94%
  }

  .header .right .yy .x_l {
    top: 42px;
  }

  .header .logo {
    margin: 10px auto;
  }

  .header.on .logo {
    margin: 10px auto;
  }

  .header .logo img {
    height: 40px;
  }

  .header .logo .img2 {
    display: block;
  }

  .header .logo .img1 {
    display: none;
  }

  .header .right .lx {
    margin-top: 11px;
    margin-left: 0px;
    margin-right: 50px;
  }

  .header .an {
    display: block;
    right: 10px;
  }

  .header .an span {
    background-color: #333
  }

  .header.on .an span {
    background-color: #333
  }

  .header .right {
    margin-top: 16px;
    margin-right: 45px;
  }

  .header .right ul li {
    line-height: 30px;
    width: 30px;
    margin: 0 5px;
  }

  .header .nav ul {
    width: 100%;
  }

  .header.on .nav {
    width: 100%
  }

  .header .nav {
    width: 100%;
    padding: 15px 5%;
    background-color: #993300;
    height: 100%;
    position: fixed;
    top: 60px;
    right: -100%;
    z-index: 9999;
    overflow: auto;
    transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    margin-top: 0;
    box-sizing: border-box;
  }

  .header .nav.on {
    right: 0;
  }

  .header.on .nav ul li a {
    font-size: 16px;
    color: #fff;
  }

  .header .nav i {
    display: block;
  }

  .header .nav ul li {
    line-height: 60px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    float: none;
    margin: 0;
    padding: 0
  }

  .header .nav ul li::after {
    background: rgba(0, 0, 0, 0);
  }

  .header.on .nav ul li {
    line-height: 60px;
  }

  .header .nav .e_j {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: none;
    position: relative;
    display: none;
    top: auto;
    left: auto;
    margin: 0;
    padding-bottom: 10px;
  }

  .header .nav ul li .e_j a {
    color: #aaa;
    font-size: 16px;
  }

  .header .nav ul li .e_j a:hover {
    color: #fff
  }

  .header .nav .e_j a {
    border-top: 0;
    font-size: 12px;
    color: #aaa;
    line-height: 32px;
  }

  .header .nav .e_j a:hover {
    background: none;
  }

  .header .nav ul li:hover .e_j {
    display: none;
  }

  .header .nav ul li a {
    font-size: 16px;
    color: #fff;
  }

  .header .nav ul li:hover span {
    width: 0;
  }

  .header .nav ul li.on span {
    width: 0;
  }
}

.ban .swiper-slide {
  width: 100%;
  height: 100vh;
}

.ban .swiper-pagination {
  bottom: 70px !important;
}

.ban .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 0;
  opacity: 1;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background: rgba(255, 255, 255, 0.6)
}

.ban .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #993300;
  border: #993300 1px solid;
}

.ban .swiper-slide .bg1 {
  position: absolute;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  left: 0px !important;
  top: 0px;
  z-index: 5;
}

.ban .swiper-slide .bg1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 7.6s linear;
  -moz-transition: transform 7.6s linear;
  -o-transition: transform 7.6s linear;
  -ms-transition: transform 7.6s linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
}

.ban .swiper-slide.swiper-slide-active .bg1 img {
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -o-transform: scale(1.0);
  -ms-transform: scale(1.0);
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.ban .swiper-slide .word {
  position: absolute;
  left: 50%;
  margin-left: -640px;
  width: 1280px;
  height: 286px;
  top: 55%;
  margin-top: -83px;
  z-index: 10;
  text-align: center;
}

.ban .swiper-slide .word.l1 h4 {
  text-align: right;
}

.ban .swiper-slide .word.l1 h3 {
  text-align: right;
}

.ban .swiper-slide .word h4 {
  display: block;
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
  letter-spacing: 0px;
  transform: translateY(20px);
  filter: alpha(opacity=0);
  /* IE */
  -moz-opacity: 0;
  /* 老版Mozilla */
  -khtml-opacity: 0;
  /* 老版Safari */
  opacity: 0;
  /* 支持opacity的浏览器*/
  transition: all .2s linear .4s;
  -webkit-transition: all .2s linear .4s;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
}

.ban .swiper-slide .word h3 {
  font-size: 50px;
  font-family: VarelaRound-Regular;
  font-weight: bold;
  color: #fff;
  line-height: 55px;
  margin: 15px 0 15px 0;
  transform: translateY(20px);
  filter: alpha(opacity=0);
  /* IE */
  -moz-opacity: 0;
  /* 老版Mozilla */
  -khtml-opacity: 0;
  /* 老版Safari */
  opacity: 0;
  /* 支持opacity的浏览器*/
  transition: all .2s linear .2s;
  -webkit-transition: all .2s linear .2s;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.65);
}


.ban .swiper-slide .word a.xq {
  display: block;
  width: 200px;
  height: 50px;
  font-size: 16px;
  background: url(../images/anbj.png) center no-repeat;
  color: #fff;
  box-sizing: border-box;
  padding: 0 30px;
  line-height: 50px;
  position: absolute;
  bottom: 20px;
  right: 50%;
  margin-right: -100px;
  transform: translateY(20px);
  filter: alpha(opacity=0);
  /* IE */
  -moz-opacity: 0;
  /* 老版Mozilla */
  -khtml-opacity: 0;
  /* 老版Safari */
  opacity: 0;
  /* 支持opacity的浏览器*/
  transition: all .2s linear .6s;
  -webkit-transition: all .2s linear .6s;
  text-align: center;
}

.ban .swiper-slide .word.l1 a.xq {
  bottom: 0;
  right: 0%;
  margin-right: 0px;
}

.ban .swiper-slide .word a.xq i {
  margin-left: 8px;
}

.ban .swiper-slide .word a.xq:after {
  content: '';
  display: block;
  width: 15px;
  height: 14px;
  background: url(../images/rights.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -7px;
}


.ban .swiper-slide.swiper-slide-active .word h4 {
  transform: translateY(0);
  filter: alpha(opacity=100);
  /* IE */
  -moz-opacity: 1;
  /* 老版Mozilla */
  -khtml-opacity: 1;
  /* 老版Safari */
  opacity: 1;
  /* 支持opacity的浏览器*/

}

.ban .swiper-slide.swiper-slide-active .word h3 {
  transform: translateY(0);
  filter: alpha(opacity=100);
  /* IE */
  -moz-opacity: 1;
  /* 老版Mozilla */
  -khtml-opacity: 1;
  /* 老版Safari */
  opacity: 1;
  /* 支持opacity的浏览器*/
}

.ban .swiper-slide.swiper-slide-active .word a.xq {
  transform: translateY(0);
  filter: alpha(opacity=100);
  /* IE */
  -moz-opacity: 1;
  /* 老版Mozilla */
  -khtml-opacity: 1;
  /* 老版Safari */
  opacity: 1;
  /* 支持opacity的浏览器*/
}


.tit {
  margin-bottom: 50px;
  text-align: center
}

.tit h2 {
  font-size: 40px;
  color: #040000;
  font-weight: 700;
  position: relative;
}

.tit h2.heading_section::after {
  width: 265px;
  position: relative;
  height: 1px;
  background: #050000;
  content: "";
  justify-content: center;
  margin: 25px auto 0;
  text-transform: uppercase;
  display: block;
}

.tit h2.heading_section::before {
  width: 45px;
  height: 37px;
  content: "";
  display: block;
  background: #fff url(../images/ico.png) no-repeat;
  margin: 0 auto;
  border-radius: 100%;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -22px;
  z-index: 1;
}

.tit2 {
  margin-bottom: 50px;
  text-align: center
}

.tit2 h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.tit2 h2.heading_section::after {
  width: 265px;
  position: relative;
  height: 1px;
  background: #fff;
  content: "";
  justify-content: center;
  margin: 25px auto 0;
  text-transform: uppercase;
  display: block;
}

.tit2 h2.heading_section::before {
  width: 45px;
  height: 37px;
  content: "";
  display: block;
  background: url(../images/ico.png) no-repeat;
  margin: 0 auto;
  border-radius: 100%;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -22px;
  z-index: 1;
}

.sy_gsjj {
  padding: 80px 0;
  overflow: hidden;
  background: url(../images/jjbj.png) left bottom no-repeat;
}

.sy_gsjj .con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sy_gsjj .tp {
  width: 45%;
  float: right;
  position: relative;
}

.sy_gsjj .tp .box {
  position: absolute;
  left: -25px;
  width: 100%;
  height: 100%;
  border: #993300 10px solid;
  bottom: -25px;
  box-sizing: border-box;
  z-index: 1;
}

.sy_gsjj .tp img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 3;
}

.sy_gsjj .w_z {
  float: left;
  width: 50%;
  position: relative;
}

.sy_gsjj .w_z h3 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
}

.sy_gsjj .w_z .en {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  font-size: 80px;
  text-transform: uppercase;
  font-family: ariblk;
  line-height: 1.1;
  font-weight: bold;
  color: rgba(0, 0, 0, .04);
  font-style: normal;
}

.sy_gsjj .w_z .nr {
  font-size: 15px;
  line-height: 30px;
  color: #333;
}

.sy_gsjj .tit strong {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #993300;
  margin: 20px 0 30px;
}

.sy_gsjj .more {
  display: block;
  width: 180px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  color: #993300;
  font-size: 16px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  border-radius: 2px;
  background-color: transparent;
  border: 1px solid #993300;
  margin-top: 25px;
}

.sy_gsjj .more::after {
  content: '';
  width: 0;
  height: 100%;
  background-color: #993300;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
  z-index: -1;
}

.sy_gsjj .more:hover::after {
  width: 100%;
}

.sy_gsjj .more:hover {
  color: #fff;
}

.sy_gsjj .more::after {
  content: '';
  width: 0;
  height: 100%;
  background-color: #993300;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
  z-index: -1;
}



.sy_cpfw {
  padding: 90px 0;
  background: url(../images/ywbj.jpg) center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.sy_cpfw .con {}

.sy_cpfw .con span {
  color: #993300;
}

.sy_cpfw .con .nr {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
}

.sy_cpfw .con .a_n {
  width: 200px;
  height: 50px;
  line-height: 50px;
  margin: 50px auto 0;
  text-align: center;
  position: relative;
  background: rgba(0, 0, 0, 0.4)
}

.sy_cpfw .con .a_n span {
  width: 0;
  height: 100%;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  position: absolute;
  left: 0;
  top: 0;
  background: #993300
}

.sy_cpfw .con .a_n:hover span {
  width: 100%;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.sy_cpfw .con .a_n a {
  font-size: 18px;
  color: #fff;
  display: block;
  z-index: 5;
  position: relative;
  border: #993300 1px solid;
}


.sy_pxjs {
  padding: 80px 0;
  background: url(../images/kcbj.png) right bottom no-repeat
}

.home-item {
  overflow: hidden;
  position: relative;
}

.hitem {
  float: left;
  width: 33.3333%;
  padding: 15px 15px 0;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 15px
}

.itembox {
  display: block;
  width: 100%;
  padding-top: 65%;
  position: relative;
  background: #f0f0f0;
  border-radius: 10px;
}

.itembox img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
}

.itembox .home-gradient-overlay {
  border-radius: 10px;
}

.itembox .itembox-txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  padding: 20px;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
}

.itembox .itembox-txt h3 {
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  margin: 0 0 10px;
  font-family: Roboto-Medium;
}

.itembox .itembox-txt h4 {
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 20px;
  line-height: 1.2;
}

.itembox .itembox-txt p {
  font-size: 16px;
  color: #993300;
  position: relative;
}

.itembox .itembox-txt p:after {
  content: '';
  width: 22px;
  height: 22px;
  background: url(../images/arr_org.png) no-repeat center;
  background-size: 16px;
  position: absolute;
  left: 94px;
  top: 50%;
  transform: translateY(-50%);
}

.itembox:hover .itembox-txt {
  bottom: 0;
}

.itembox:hover img {
  filter: brightness(1.2);
}

.itembox .home-gradient-overlay {
  border-radius: 10px;
}

.home-gradient-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .4) 37%, rgba(0, 0, 0, .2) 60%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
}


.index-contact {

  min-width: 1200px;

  padding: 60px 0;

  background-image: url(../images/benifits-bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  background-position: center top;

  position: relative;

}


.index-contact .cover {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background: rgba(0, 0, 0, 0.5);

  z-index: 1;

}

.index-contact .s {
  float: left;
  position: relative;
  z-index: 100;
  width: 45%;
}

.index-contact h6 {

  font-size: 30px;

  color: #fff;

  line-height: 40px;

}

.index-contact p {

  line-height: 32px;

  font-size: 16px;

  color: #eee;
  margin-bottom: 6px;

}

.index-contact .btn {

  display: block;

  width: 200px;

  margin-top: 25px;

  border: 1px #fff solid;

  text-align: center;

  border-radius: 3px;

}

.index-contact .btn:hover a {
  background: #ff5700;
  color: #fff;
}

.index-contact .btn a {

  display: block;

  height: 48px;

  line-height: 48px;

  font-size: 18px;

  color: #fff;

}

.sy_lx {
  width: 80%;
  margin: 0 auto;
  background: #123162;
  padding-top: 10px;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index-contact .tit h1 {
  color: #fff
}

.index-contact .tit {
  text-align: left;
}

.index-contact .tit h3 {
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
}

.index-contact .left {
  width: 50%;
  float: right;
}

.index-contact .left input.w_z {
  width: 49%;
  height: 45px;
  font-size: 14px;
  line-height: 45px;
  margin-bottom: 15px;
  margin-right: 1%;
  color: #fff;
  padding: 0 5px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

.index-contact input::-webkit-input-placeholder {
  /* WebKit browsers */

  color: #fff;

}

.index-contact input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */

  color: #fff;

}

.index-contact input::-moz-placeholder {
  /* Mozilla Firefox 19+ */

  color: #fff;

}

.index-contact input:-ms-input-placeholder {
  /* Internet Explorer 10+ */

  color: #fff;

}

.index-contact .left textarea {
  width: 100%;
  height: 80px;
  border-radius: 5px;
  padding: 5px;
  outline: none;
  resize: none;
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 30px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
}

.index-contact .left input.a_n {
  width: 100%;
  height: 45px;
  background-color: #993300;
  font-size: 16px;
  color: #fff;
  line-height: 45px;
  border-radius: 5px;
}

.tit h1 {
  font-size: 45px;
  color: #fff;
  font-weight: bold;
}




/* start footer */
.footer_bg {
  background: url(../images/navbg.png);
  width: 100%;
  padding: 35px 0 0;
}

.footer {
  margin: 0 auto;
  padding: 20px 0;
  z-index: 999;
}

.footer .zuo3 {}

.footer .zuo3 ul li {
  float: left;
  padding-right: 80px;
  min-width: 50px;
}

.footer .zuo3 ul li:last-child {
  padding: 0;
}

.footer .zuo3 ul li .tit1 a {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  opacity: 1;
  line-height: 36px;
  display: block
}

.footer .zuo3 ul li .line {
  margin-bottom: 20px;
  height: 2px;
  margin-top: 10px
}

.footer .zuo3 ul li .line span {
  width: 15px;
  height: 1px;
  background: #fff;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  display: block
}

.footer .zuo3 ul li:hover .line span {
  width: 50px;
  height: 1px;
}

.footer .zuo3 ul li a {
  width: 100%;
  display: block;
  line-height: 28px;
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  text-transform: capitalize;
}

.footer .zuo3 ul li a:hover {
  opacity: 1;
}

.dzwz {
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  float: left;
}

.dzwz p {
  line-height: 28px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.dzwz p i {
  color: #fff;
  text-align: center;
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer .zuo3 ul li.yx {
  width: 300px;
  padding-right: 0;
  float: right;
}

.footer .searchIpt2 {
  width: 300px;
  height: 50px;
  position: relative;
}

.searchIpt2 .search_txt {
  width: 222px;

  padding: 0 0 0 10px;

  line-height: 50px;

  background: #fff;

  color: #666;

  border: 0;

  height: 50px;

  float: left;
  border-radius: 25px;

}

.searchIpt2 .search_btn {
  width: 50px;
  background: #fff;
  border: 0;
  float: right;
  color: #333;
  height: 50px;
  cursor: pointer;
  border-radius: 25px;
  position: relative;
}

.searchIpt2 i {
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  text-align: center;
  color: #333;
}

.searchIpt2 .search_btn:hover {
  background: #c11724;
  color: #fff;
}

.searchIpt2 .search_btn:hover i {
  color: #fff;
}

.searchIpt2 .search_btn i:hover {
  color: #fff;
}

.footer_bg .dybox {
  margin-top: 5px;
}

.footer_bg .dybox p {
  color: #fff;
}

.footer_bg .dybox h3 {
  margin-bottom: 15px;
}

.footer_bg .dy {
  margin-top: 10px;
  width: 300px;
  overflow: hidden;
}

.footer_bg .dy input.w_z {
  width: 85%;
  height: 35px;
  border-radius: 0;
  font-size: 12px;
  line-height: 35px;
  color: #fff;
  float: left;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.15);
  padding-left: 15px;
  box-sizing: border-box;
}

.footer_bg .dy button.s_c {
  width: 15%;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  float: left;
  -webkit-appearance: none;
  font-weight: bold;
  background: #993300;
}

.footer_bg .dy i {
  font-size: 18px;
  color: #fff;
}

.footer .zuo3 ul li.yx .tb {
  padding-top: 20px
}

.footer .zuo3 ul li.yx .tb a {
  width: 30px;
  margin-right: 10px;
  position: relative;
  float: left;
}

.footer .zuo3 ul li.yx .tb a i {
  font-size: 20px;
}

.footer .zuo3 ul li.yx .tb a .wx {
  width: 120px;
  position: absolute;
  left: 50%;
  margin-left: -60px;
  background: #fff;
  top: -120px;
  display: none;
}

.footer .zuo3 ul li.yx .tb a:hover .wx {
  display: block;
}

.footer .zuo3 ul li.yx .tb a img {
  width: 100%;
}

.footer .weix {
  width: 120px;
  float: right;
  text-align: center;
  line-height: 30px;
}

.footer .weix img {
  width: 100%;
}

.footer_btm {
  margin: 30px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.copy {
  width: 1200px;
  margin: 0 auto;
  line-height: 50px;
  text-align: center
}

.copy p {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
}

.copy p a {
  color: #ffffff;
  -webkit-transition: 0.9s;
  -moz-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
}







.nban {
  height: 460px;
  width: 100%;
  position: relative;
}

.nban .w_z {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 100px;
}

.nban .w_z h2 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: bold;
}

.nban .w_z h4 {
  font-size: 18px;
  color: #fff;
}

.nban .w_z h4 a {
  color: #fff;
}

.ny_kc {
  padding: 40px 35px;
  position: relative;
  z-index: 5;
  margin: -60px auto 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15)
}

.ny_kcxq {}

.ny_kcxq h1 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #111;
  margin-bottom: 40px;
}

.ny_kcxq .nr {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  width: 50%;
  float: right;
}

.ny_kcxq .t_p {
  width: 45%;
  float: left;
}

.ny_kcxq .t_p img {
  width: 100%;
}




.ny_box {
  padding: 40px 35px;
  position: relative;
  z-index: 5;
  margin: -60px auto 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15)
}

.ny_about {}

.ny_about .a_n {
  height: 50px;
  line-height: 50px;
  margin: 50px auto 0;
  text-align: center;
  position: relative;
  background: #993300;
  display: inline-block;
  padding: 0 20px;
  border-radius: 10px;
}

.ny_about .a_n a {
  font-size: 18px;
  color: #fff;
  display: block;
  z-index: 5;
  position: relative;
}

.ny_about .a_n i {
  margin-left: 10px;
  font-size: 18px;
}

.ny_about .a_n:hover {
  background: #7e2b01;
}

.ny_about h1 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.ny_about .nr {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}
.ny_about .nr img,.ny_about .nr video{max-width: 100%;}
.ny_about .t_p {
  margin: 30px 0 0;
}

.ny_about .t_p ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.ny_about .t_p li {
  width: 100%;
}

.ny_about .t_p li img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover
}


.ny_ryzz {
  padding: 0px 0 60px;
}

.sy_ryzz .container {
  width: 1200px;
}

.honors-sw-hook .swiper-wrapper li.swiper-slide-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  z-index: 10;
}

.honors-sw-hook .swiper-wrapper li img {
  display: block;
  max-width: 100%;
  border: 1px solid #cccccc;
  padding: 8px;
  margin: 0 auto;
  width: auto;
  box-sizing: border-box;
}

.honors-wraper {
  position: relative;
  padding: 0;
}

.honors-sw-hook {
  position: relative;
  overflow: hidden;
  padding: 20px 0 20px;
}

.honors-sw-hook .swiper-wrapper li {
  -webkit-transition: all .7s ease;
  -o-transition: all .7s ease;
  -moz-transition: all .7s ease;
  transition: all .7s ease;
  width: 20%;
  -webkit-transition: transform 1.0s;
  -moz-transition: transform 1.0s;
  -ms-transition: transform 1.0s;
  -o-transition: transform 1.0s;
  text-align: center;
  box-sizing: border-box;
}

.honors-sw-hook .swiper-wrapper li.swiper-slide-active {
  color: #993300;
  font-weight: bold;
}

.honors-sw-hook .swiper-wrapper li p {
  padding-top: 10px;
  font-size: 16px;
}

.honors-sw-hook .swiper-wrapper li img {
  display: block;
  width: 100%;
  border: 1px solid #cccccc;
  padding: 8px;
}

.swiper-btn {
  display: block;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(../images/arror.png);
  z-index: 99;
}

.honor-prev {
  left: 0;
  background-position: 0 0;
}

.honor-next {
  right: 0;
  background-position: right 0;
}

@media (min-width: 1024px) {
  .honors-wraper {
    margin-top: 25px;
  }

  .honors-sw-hook {
    padding: 40px 0;
  }

  .honors-sw-hook .swiper-wrapper li {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    margin-right: 25px;
  }

  .honors-sw-hook .swiper-wrapper li.swiper-slide-active {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    z-index: 10;
  }

  .honors-sw-hook .swiper-wrapper li p {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    padding-top: 18px;
  }

  .honors-sw-hook .swiper-wrapper li.swiper-slide-active p {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -moz-transform: scale(0.9);
  }

  .honors-sw-hook .swiper-wrapper li.my-slide-left,
  .honors-sw-hook .swiper-wrapper li.my-slide-right {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    z-index: 9;
    -moz-transform: scale(1);
    -o-transform: scale(1);
  }

  .honors-sw-hook .swiper-wrapper li.my-slide-left p,
  .honors-sw-hook .swiper-wrapper li.my-slide-right p {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 9;
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
  }

  .honors-sw-hook .swiper-wrapper li.my-slide-left {
    right: 2%;
  }

  .honors-sw-hook .swiper-wrapper li.my-slide-right {
    left: 2%;
  }

  .swiper-btn {
    display: block;
  }

  .honor-prev {
    left: -30px;
  }

  .honor-next {
    right: -30px;
  }

  .swiper-btn:hover {
    background-image: url(../images/arrorho.png);
  }
}

.ny_tpzs {
  padding-bottom: 60px;
  margin-top: 60px;
}

.sy_xy {
  margin-bottom: 50px;
}

.swiper-yxxy {
  margin: 0 auto;
  padding-bottom: 50px;
}

.swiper-yxxy .swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-yxxy .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-yxxy .swiper-slide .w_z {
  width: 90%;
  padding: 20px 5%;
  background-color: rgba(145, 152, 159, .8);
  position: absolute;
  bottom: 30px;
  left: 0;
  color: #fff;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.swiper-yxxy .swiper-slide .w_z h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.swiper-yxxy .swiper-slide:hover .w_z {
  background-color: rgba(6, 88, 162, .9);
  bottom: 50px;
}

.ny_tpzs .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #993300;
}

.ny_tpzs .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #91989f;
  opacity: 1;
}




.swiper-xwzs {
  margin: 0 auto;
}

.swiper-xwzs .swiper-slide {
  position: relative;
  background: #f6f6f6
}

.zxzx .swiper-button-prev {
  background: url(../images/jtdl.png) center no-repeat;
  width: 39px;
  height: 39px;
  margin-top: 0;
  left: -45px;
}

.zxzx .swiper-button-next {
  background: url(../images/jtdr.png) center no-repeat;
  width: 39px;
  height: 39px;
  margin-top: 0;
  right: -45px;
}

.zxzx {
  position: relative;
  padding: 50px 0 80px;
  margin: 0 auto;
}

.swiper-xwzs .swiper-slide .tp {
  width: 100%;
  position: relative;
  padding-top: 51%
}

.swiper-xwzs .swiper-slide .tp img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
}

.swiper-xwzs .swiper-slide .rq {
  position: absolute;
  z-index: 100;
  -webkit-transition: transform .3s ease-in-out, background-color .2s ease-in-out;
  transition: transform .3s ease-in-out, background-color .2s ease-in-out;
  background-color: #993300;
  width: 58px;
  padding-top: 13px;
  padding-bottom: 13px;
  color: #fff;
  left: 0;
  top: 0
}

.swiper-xwzs .swiper-slide .rq .month {
  font-size: 12px;
  line-height: 16px;
  display: block;
  text-align: center
}

.swiper-xwzs .swiper-slide .rq .day {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 2px;
  display: block;
  text-align: center
}

.swiper-xwzs .swiper-slide .rq .year {
  font-size: 12px;
  line-height: 16px;
  color: #eee;
  -webkit-transition: color .1s ease-in-out;
  transition: color .1s ease-in-out;
  display: block;
  text-align: center
}

.swiper-xwzs .swiper-slide:hover .rq {
  background: #802c02;
  transform: translateY(-5px);

  -wbkit-transform: translateY(-5px);

  -o-transform: translateY(-5px);

  -moz-transform: translateY(-5px);

  transition: all 0.3s;

  -wbkit-transition: all 0.3s;

  -o-transition: all 0.3s;

  -moz-transition: all 0.3s;
}

.swiper-xwzs .swiper-slide:hover h3 {
  color: #802c02;
}

.swiper-xwzs .swiper-slide .text {
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

.swiper-xwzs .swiper-slide h3 {
  font-size: 18px;
  color: #222;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 15px;
  font-weight: bold;
}

.swiper-xwzs .swiper-slide p {
  line-height: 1.9;
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.swiper-xwzs .swiper-slide:hover {
  box-shadow: 0px 0px 10px #999;
  transform: translateY(-5px);

  -wbkit-transform: translateY(-5px);

  -o-transform: translateY(-5px);

  -moz-transform: translateY(-5px);

  transition: all 0.3s;

  -wbkit-transition: all 0.3s;

  -o-transition: all 0.3s;

  -moz-transition: all 0.3s;
}





.ny_td {
  margin: 60px auto;
}

.ny_td ul li {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ny_td ul li .t_p {
  width: 35%;
  padding: 0 5%;
}

.ny_td ul li .t_p img {
  width: 100%;
  display: block;
}

.ny_td ul li .w_z {
  width: 50%;
  padding: 0 5%;
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  text-align: center;
}

.ny_td ul li:nth-child(2n)::before {
  position: absolute;
  left: 0;
  width: 70%;
  height: 100%;
  background: url(../images/bjxy.png) left bottom no-repeat #993300;
  content: "";
  top: 0;
  z-index: -1;
}

.ny_td ul li .w_z h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.ny_td ul li:nth-child(2n) .w_z {
  color: #fff;
}

.ny_td ul li:nth-child(2n) .w_z h3 {
  color: #fff;
}

.ny_box2 {
  padding: 40px 35px;
  position: relative;
  z-index: 5;
  margin: -60px auto 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15)
}

.sy_kc {
  display: none
}


.ny_tsjs {}

.ny_tsjs .t_p {
  width: 50%;
  margin: 0 auto
}
.nban .w_z .con i{margin: 0 5px;}
.ny_tsjs .t_p img {
  width: 100%;
  display: block;
}

.ny_tsjs .w_z {
  margin-bottom: 30px;
}

.ny_tsjs .w_z .nr {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
.ny_tsjs .w_z .nr img,.ny_tsjs .w_z .nr video{max-width: 100%;}
.ny_ckap {}

.ny_ckap .bk {
  border: #ccc 1px solid;
}

.ny_ckap .bk li {
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  color: #222;
  border-bottom: #ccc 1px solid;
  overflow: hidden;
}

.ny_ckap .bk li.top {
  line-height: 40px;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  padding: 15px 0;
  background: #993300;
}

.ny_ckap .bk li.bg {
  background: #f3f3f3;
}

.ny_ckap .bk li.bg span {
  font-weight: bold;
}

.ny_ckap .bk li span {
  width: 14.285%;
  display: block;
  float: left;
  border-right: #ccc 1px solid;
  padding: 12px 6px;
  box-sizing: border-box;
}

.ny_ckap .bk li span:last-child {
  border: none;
}

.ny_lx {
  padding: 0px 0;
  overflow: hidden;
}

.ny_lx .xxpl {
  width: 45%;
}

.ny_lx .tit {
  text-align: left;
  margin-bottom: 35px;
}

.ny_lx .tit h1 {
  color: #222;
  font-size: 30px
}

.ny_lx .tit h1::after {
  left: 0;
  margin-left: 0;
}

.ny_lx .xxpl li {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ny_lx .xxpl li i {
  font-size: 30px;
  color: #fff;
}

.ny_lx .xxpl li .t_b {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #993300;
  border-radius: 32px;
}

.ny_lx .xxpl li .w_z {
  width: calc(100% - 90px);
}

.ny_lx .xxpl li .w_z h3 {
  font-size: 14px;
  color: #444;
}

.ny_lx .xxpl li .w_z p {
  font-size: 20px;
  color: #222;
}

.ny_lx .zxly {
  width: 45%;
  padding-left: 50px;
  border-left: #eee 1px solid;
  box-sizing: border-box;
}

.ny_lx .zxly h3 {
  font-size: 20px;
  color: #654b2f;
  margin: 10px 0 5px;
  position: relative;
  padding-top: 10px;
  text-transform: uppercase;
}

.ny_lx .zxly h4 {
  font-size: 28px;
  color: #333;
  margin-bottom: 50px;
}

.ny_lx .zxly input.w_z {
  width: 100%;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  margin-bottom: 15px;
  border: 1px solid #e7e7e7;
  padding: 0 15px;
  box-sizing: border-box;
  background: #fff;
}

.ny_lx .zxly input.w_z.no {
  margin-right: 0;
}

.ny_lx .zxly input.a_n {
  width: 180px;
  height: 50px;
  background-color: #993300;
  font-size: 18px;
  color: #fff;
  line-height: 40px;
  margin-right: 40px;
}

.ny_lx .zxly textarea {
  width: 100%;
  height: 66px;
  padding: 15px;
  border: 1px solid #e7e7e7;
  outline: none;
  resize: none;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.d_t {}








@media only screen and (max-width:1024px) {

  .container {
    width: 94%;
    margin: 0 auto;
    -moz-box-sizing: border-box;
    /*Firefox3.5+*/
    -webkit-box-sizing: border-box;
    /*Safari3.2+*/
    -o-box-sizing: border-box;
    /*Opera9.6*/
    -ms-box-sizing: border-box;
    /*IE8*/
    box-sizing: border-box;
  }

  .ban .swiper-slide {
    width: 100%;
    height: 18rem;
  }

  .ban .swiper-slide .bg1 {
    height: 100%;
    min-height: 100%;
  }

  .ban .swiper-pagination {
    bottom: 10px !important;
  }

  .ban .swiper-slide .word {
    left: 5%;
    margin-left: 0px;
    width: 90%;
    height: 140px;
    margin-top: -70px;
  }

  .ban .swiper-slide .word h3 {
    font-size: 30px;
    line-height: 35px;
    margin: 10px 0 5px 0;
  }

  .ban .swiper-slide .word h4 {
    font-size: 18px;
    margin-top: 10px;
  }

  .ban .swiper-slide .word a.xq {
    width: 160px;
    height: 40px;
    padding: 0 0px;
    line-height: 40px;
    position: absolute;
    bottom: 0px;
    right: 50%;
    margin-right: -80px;
  }

  .tsbj {
    padding-top: 30px;
  }

  .tit h2 {
    font-size: 32px;
  }

  .tit h2.heading_section::before {
    width: 35px;
    height: 30px;
    background: #fff url(../images/ico.png) center / 100% no-repeat;
    bottom: -12px;
    margin-left: -19px;
  }

  .ts {
    display: none;
  }

  .sy_gsjj .w_z {
    width: 100%;
  }

  .sy_gsjj .con {
    flex-wrap: wrap;
  }

  .sy_gsjj {
    padding: 30px 0;
  }

  .tit {
    margin-bottom: 30px;
  }

  .sy_gsjj .tp {
    width: 100%;
    margin-top: 25px;
  }

  .sy_gsjj .tp .box {
    display: none;
  }


  .sy_kc {
    width: 100%;
    overflow: hidden;
    display: block;
  }

  .sy_kc .ts_kc {
    width: 100%;
    background-color: #f5f5f5;
    padding: 15px 0;
  }

  .sy_kc .ts_kc .j_s {
    text-align: center;
    position: relative;
  }

  .sy_kc .ts_kc .j_s .kc_bj img {
    width: 100%
  }

  .sy_kc .ts_kc .j_s .wenz {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
  }

  .sy_kc .ts_kc .j_s .s_z {
    width: 66px;
    height: 66px;
    margin: 0 auto;
  }

  .sy_kc .ts_kc .j_s h3 {
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .sy_kc .ts_kc .j_s p {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    text-indent: 24px;
    margin-bottom: 10px;
    padding: 0 10px;
    height: 88px;
    color: #eee
  }

  .sy_kc .ts_kc .j_s a {
    width: 80px;
    height: 24px;
    border: 1px solid #fff;
    font-size: 12px;
    line-height: 24px;
    color: #fff;
    display: block;
    margin: 0 auto 15px;
  }

  .swiper-kc {
    width: 100%;
    margin: 0 auto;
  }

  .swiper-kc .swiper-slide {
    width: 60%;
    background-color: #fff;
  }

  .tit2 h2 {
    font-size: 32px;
  }

  .tit2 h2.heading_section::before {
    width: 35px;
    height: 30px;
    background: #993300 url(../images/icob.png) center / 100% no-repeat;
    bottom: -12px;
    margin-left: -19px;
  }

  .sy_cpfw .con .nr {
    font-size: 16px;
  }

  .swiper-yxxy .swiper-slide .w_z h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .swiper-yxxy .swiper-slide .w_z p {
    font-size: 14px;
  }

  .sy_msfc {
    padding: 30px 0;
  }

  .sy_cpfw .con {
    font-size: 30px;
    max-width: 90%;
  }

  .sy_cpfw {
    padding: 50px 0;
  }

  .sy_pxjs {
    padding: 40px 0 20px;
  }

  .hitem {
    width: 50%;
    padding: 0 15px 0;
    margin-bottom: 25px;
  }

  .index-contact {
    min-width: 90%;
    padding: 30px 0;
    background-attachment: inherit;
  }

  .tit h1 {
    font-size: 32px;
  }

  .index-contact .s {
    width: 100%;
  }

  .index-contact .left {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .copy {
    width: 90%;
    line-height: 1.5;
    padding: 10px 0;
  }

  .footer_bg {
    background: #111 url(../images/bjxy3.png) right bottom / 70% no-repeat;
    padding: 25px 0 0;
  }

  .footer .zuo3 ul li {
    display: none;
  }

  .footer .zuo3 ul li.lx {
    display: block;
    width: 100%;
    padding-right: 0;
  }

  .footer .zuo3 ul li.yx {
    width: 100%;
    display: block;
    margin-top: 20px;
  }

  .dzwz p {
    line-height: 25px;
    font-size: 15px;
  }

  .footer .zuo3 ul li.yx .tb {
    padding-top: 0px;
  }

  .ban .swiper-slide .word a.xq {
    display: none
  }

  .tit h1 {
    font-size: 2.3rem;
  }

  .nban {
    height: 220px;
  }

  .nban .w_z h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .ny_about h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .ny_box {
    padding: 30px 25px 10px;
    margin: -60px auto 30px;
  }

  .ny_td {
    margin: 30px auto;
  }

  .ny_td ul li .w_z {
    width: 54%;
    padding: 0 3%;
    font-size: 16px;
  }

  .ny_td ul li .t_p {
    width: 35%;
    padding: 0;
  }

  .ny_td ul li .w_z h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .ny_kc {
    padding: 30px 25px 10px;
    margin: -60px auto 30px;
  }

  .zxzx .swiper-button-prev {
    display: none
  }

  .zxzx .swiper-button-next {
    display: none
  }

  .ny_ryzz {
    padding: 0px 0 30px;
  }

  .ny_tpzs {
    padding-bottom: 30px;
    margin-top: 30px;
  }

  .zxzx {
    padding: 30px 0 40px;
  }

  .ny_ckap .bk li.top {
    line-height: 30px;
    font-size: 20px;
    padding: 12px 0;
  }

  .ny_ckap {
    overflow-x: auto;
  }

  .ny_ckap .bk {
    width: 1200px;
  }

  .ny_kcxq h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .ny_kcxq .t_p {
    width: 100%;
  }

  .ny_kcxq .nr {
    margin-top: 25px;
    margin-bottom: 30px;
    width: 100%;
  }
  .ny_kcxq .nr img,.ny_kcxq .nr video{max-width: 100%;}
  .ny_lx .xxpl {
    width: 100%;
  }

  .ny_lx .zxly {
    width: 100%;
    padding-left: 0px;
    margin-top: 25px;
    margin-bottom: 25px;
    border-left: 0;
  }

  .ny_lx .tit {
    margin-bottom: 25px;
  }








}

@media only screen and (max-width:600px) {
  .search button.s_c {
    width: 10%;
  }

  .search input.w_z {
    width: 80%;
  }

  .search .an_sj {
    width: 10%;
  }

  .con {
    max-width: 92%;
  }

  .tit {
    margin-bottom: 30px;
  }

  .tit h2 {
    font-size: 2.3rem;
  }

  .ban .swiper-slide .word h3 {
    font-size: 1.8rem;
    text-align: center !important;
    line-height: 1.2;
  }

  .ban .swiper-slide .word h4 {
    font-size: 1.2rem;
    display: none
  }

  .sy_cpfw .con .nr {
    font-size: 15px;
  }

  .sy_cpfw .con .a_n a {
    font-size: 16px;
  }

  .sy_cpfw .con .a_n {
    width: 180px;
    height: 40px;
    line-height: 40px;
    margin: 30px auto 0;
  }

  .index-contact .tit h3 {
    font-size: 18px;
  }

  .index-contact p {
    line-height: 28px;
  }

  .index-contact .left input.w_z {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .copy p {
    font-size: 14px;
  }

  .sy_kc .ts_kc .j_s p {
    height: 66px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ban .swiper-slide .word {
    height: 80px;
    margin-top: -40px;
  }

  .hitem {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .itembox .itembox-txt h3 {
    font-size: 18px;
  }

  .itembox .itembox-txt h4 {
    font-size: 14px;
  }

  .swiper-yxxy .swiper-slide .w_z {
    padding: 10px 15px;
    bottom: 10px;
    height: 40px;
  }

  .swiper-yxxy .swiper-slide .w_z h3 {
    font-size: 16px;
  }

  .nban {
    height: 14rem;
  }

  .nban .w_z {
    bottom: 5rem;
  }

  .ny_box {
    margin: -30px auto 30px;
    padding: 30px 20px 10px;
  }

  .ny_about h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .ny_about .t_p ul {
    flex-wrap: wrap;
  }

  .ny_about .t_p li {
    width: 100%;
    margin-bottom: 15px;
  }

  .ny_about .t_p {
    margin: 20px 0 10px;
  }

  .ny_td ul li {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .ny_td ul li .t_p {
    width: 60%;
    margin-bottom: 10px;
  }

  .ny_td ul li .w_z {
    width: 100%;
    padding: 0 5%;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .ny_td ul li .w_z h3 {
    font-size: 20px;
  }

  .ny_td ul li:nth-child(2n)::before {
    width: 100%;
  }

  .ny_kc {
    padding: 30px 15px 10px;
    margin: -30px auto 30px;
  }

  .nban .w_z h2 {
    font-size: 26px;
  }

  .nban .w_z h4 {
    font-size: 14px;
  }

  .nban .w_z {
    bottom: 4rem;
  }

  .ny_about .a_n {
    height: 40px;
    line-height: 40px;
    margin: 30px auto 0;
    padding: 0 15px;
  }

  .ny_about .a_n a {
    font-size: 16px;
  }

  .ny_about .a_n i {
    margin-left: 6px;
    font-size: 16px;
  }

  .ny_kcxq h1 {
    font-size: 20px;
  }

  .ny_lx .tit h1 {
    font-size: 2.3rem;
  }

  .ny_lx .xxpl li {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .ny_lx .xxpl li .t_b {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .ny_lx .xxpl li i {
    font-size: 20px;
  }

  .ny_lx .xxpl li .w_z {
    width: calc(100% - 50px);
  }

  .ny_lx .xxpl li .w_z p {
    font-size: 16px;
  }

  .ny_lx .zxly input.a_n {
    width: 160px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    margin-right: 0px;
  }
}
	/*分页样式*/
  .xiaocms-page { padding:14px 0 10px;clear: both;text-align: center;font-size: 14px;}
  .xiaocms-page a { display:inline-block; height:32px; line-height:32px; background:#fff; border:1px solid #e3e3e3; text-align:center; color:#333; padding:0 10px;margin-left: 1px;}
  .xiaocms-page a:hover { background:#f1f1f1; color:#000; text-decoration:none; }
  .xiaocms-page span { display:inline-block; height:32px;padding:0 10px; line-height:32px; background:#993300; border:1px solid #993300; color:#fff; text-align:center;margin-left: 1px; }