@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  font-size: 0;
}
/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}
@font-face {
  font-family: 'webfont';
  font-display: swap;
  src: url('//at.alicdn.com/t/webfont_f5vt5f2y09.eot'); /* IE9*/
  src: url('//at.alicdn.com/t/webfont_f5vt5f2y09.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('//at.alicdn.com/t/webfont_f5vt5f2y09.woff2') format('woff2'),
  url('//at.alicdn.com/t/webfont_f5vt5f2y09.woff') format('woff'), /* chrome、firefox */
  url('//at.alicdn.com/t/webfont_f5vt5f2y09.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('//at.alicdn.com/t/webfont_f5vt5f2y09.svg#Alibaba-PuHuiTi-Regular') format('svg'); /* iOS 4.1- */
}
/* 取消链接高亮  */
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* 图片自适应 */
img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}
/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Regular";
  color: #555;
  padding-top: 72px;
  overflow-x: hidden;
}
button:focus {
  outline: none;
}
em,
i {
  font-style: normal;
}
ul,
li {
  list-style-type: none;
}
.w100 {
  width: 100%;
}
.pr {
  position: relative;
}
.pa {
  position: absolute;
}
a:hover,
a:link,
a:visited {
  text-decoration: none;
}
.clearfix {
  zoom: 1;
}
input:focus,
textarea:focus {
  outline: none;
}
.overh {
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.ta {
  text-align: center;
}
.tr {
  text-align: right;
}
.tl {
  text-align: left;
}
.displaynone {
  display: none;
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}
.wen_hied {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
.f14px {
  font-size: 14px;
}
.f16px {
  font-size: 16px;
}
.book {
  border: 1px solid #000;
}
.db {
  display: block;
}
.dnb {
  display: inline-block;
}
.flight {
  font-weight: lighter;
}
.fbold {
  font-weight: bold;
}
.imghover {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
    transform: scale(1.2);
    transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    /* IE 9 */
    -moz-transform:  scale(1.2);
    /* Firefox */
    -webkit-transform:  scale(1.2);
    /* Safari 和 Chrome */
    -o-transform:  scale(1.2);
}
.tran {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.hovercolor {
  color: #8cca1d;
}
.zhong {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  justify-content: center;
  align-items: center;
}
.z {
  left: 50%;
  top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -moz-transform: translate(-50%, -50%);
    /* Firefox */
    -webkit-transform: translate(-50%, -50%);
    /* Safari 和 Chrome */
    -o-transform: translate(-50%, -50%);
}
.l0 {
  top: 50%;
      -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cen {
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateX(-50%);
}
.f48 {
  font-size: 48px;
}
.wen_hied {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.p15 {
  padding: 15px;
}
.lunbo {
  border-bottom: 3px solid #ffffff;
}
.lunbo .swiper-pagination-bullet {
  border-radius: 0%;
  background-color: #ffffff;
  opacity: 0.451;
  width: 49px;
  height: 4px;
}
.lunbo .swiper-pagination-bullet-active {
  opacity: 1;
}
.lunbo .zi-con {
  width: 100%;
  left: 0;
  right: 0;
  top: 50%;
      -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.lunbo .zi-con .lunbo-zi .p1 {
  padding-right: 60px;
}
.lunbo .zi-con .lunbo-zi .p2 {
  margin-top: 25px;
}
.lunbo .zi-con .lunbo-zi .p-cn {
  display: inline-block;
  font-size: 60px;
  color: #ffffff;
  text-shadow: 0.5px 0.866px 9.7px rgba(7, 0, 2, 0.92);
  font-weight: bold;
  line-height: 1;
}
.lunbo .zi-con .lunbo-zi .p-en {
  font-size: 25px;
  text-shadow: 0.5px 0.866px 9.7px rgba(7, 0, 2, 0.92);
  margin-top: 10px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}
.ziws {
  color: #201b18;
  font-size: 17px;
  padding: 0 20px;
  border-left: 1px solid #dcdcdc;
  line-height: 25px;
  margin-left: 20px;
  font-weight: bold;
}
.navs {
  background-color: #ffffff;
  padding: 10px 50px 10px 67px;
}
.dahang {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #dededc;
}
.nav1 li {
  display: inline-block;
  line-height: 50px;
  float: left;
  position: relative;
}
.nav1 li a {
  color: #000000;
  padding: 0 40px;
  display: block;
  font-size: 20px;
  font-weight: bold;
}
.nav1 li:after {
  content: '';
  width: 1px;
  height: 11px;
  background-color: #b5b5b5;
  position: absolute;
  top: 50%;
      -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  right: 0;
}
.nav1 li:last-child {
  padding-left: 20px;
  padding-right: 0;
}
.nav1 li:last-child:after {
  opacity: 0;
}
.nav1 li:last-child i {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
}
.nav1 li:hover a,
.nav1 li.active a {
  color: #d8251c;
}
.navs-con {
  display: none;
  position: fixed;
  top: 72px;
  width: 100%;
  left: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: rgba(63, 63, 64, 0.9);
  right: 0;
  z-index: 999;
  padding: 10px 87px 10px 0;
}
.navs-con .er-ul {
  float: left;
  width: 120px;
  text-align: center;
}
.navs-con .er-ul li {
  line-height: 32px;
}
.navs-con .er-ul li a {
  color: #ffffff;
  font-size: 18px;
  display: inline-block;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.navs-con .er-ul li a:hover {
  font-weight: bold;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.shuzi {
  box-shadow: 1.5px 2.598px 6px 0px rgba(131, 130, 130, 0.27);
  padding: 17px 0;
}
.about-ul1 li {
  float: left;
  text-align: center;
  color: #7e7e7e;
  width: 25%;
  line-height: 1;
  border-right: 1px solid #dcdcdc;
}
.about-ul1 li:last-child {
  border-right: none;
}
.about-ul1 li p {
  color: #555555;
  font-size: 20px;
}
.about-ul1 li p:nth-child(2) {
  margin-top: 5px;
}
.about-ul1 li sub {
  font-size: 24px;
  color: #d8251c;
}
.about-ul1 li:last-child {
  margin-right: 0px;
}
.about-ul1 li span {
  color: #d8251c;
  font-size: 55px;
}
.hd-con {
  padding: 30px 0 25px 0;
}
.hd-con .hd {
  color: #383838;
  font-size: 36px;
  font-weight: bold;
}
.hd-con .hd span {
  padding-bottom: 10px;
  border-bottom: 4px solid #00903e;
}
.hd-con .yao {
  color: #383838;
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
}
.hangye {
  margin-bottom: 60px;
}
.hangs {
  margin: 20px -10px;
}
.hangs .col-md-4 {
  padding: 0 10px;
}
.hangs .col-md-4 .bot1 {
  margin-top: 20px;
}
.hangs a {
  display: block;
}
.hangs a .hang-zi {
  width: 100%;
  left: 50%;
  top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -moz-transform: translate(-50%, -50%);
    /* Firefox */
    -webkit-transform: translate(-50%, -50%);
    /* Safari 和 Chrome */
    -o-transform: translate(-50%, -50%);
}
.hangs a .hang-zi .hp1 {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
}
.hangs a .hang-zi .hp2 {
  color: #ffffff;
  font-size: 18px;
}
.hangs a:hover img {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
    transform: scale(1.2);
    transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    /* IE 9 */
    -moz-transform:  scale(1.2);
    /* Firefox */
    -webkit-transform:  scale(1.2);
    /* Safari 和 Chrome */
    -o-transform:  scale(1.2);
}
.hangs a:hover .hang-zi .hp1,
.hangs a:hover .hang-zi .hp2 {
  color: #d8251c;
}
.ul4 > li {
  float: left;
  margin: 0 0.5%;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e1e1;
}
.zhuanzhu {
  background: #f8f8f8;
  padding-bottom: 30px;
}
.zhuanzhu .zhuanzhu-ul .swiper-slide {
  border-style: solid;
  border-width: 1px;
  border-color: #e2e1e1;
  text-align: center;
  background: #ffffff;
}
.zhuanzhu .zhuanzhu-ul .swiper-slide a {
  display: block;
  padding: 30px 0 38px 0;
}
.zhuanzhu .zhuanzhu-ul .swiper-slide a:hover img {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
  transform: rotateY(360deg);
}
.zhuanzhu .zhuanzhu-ul .swiper-slide a:hover .tit {
  color: #d8251c;
}
.zhuanzhu .zhuanzhu-ul .swiper-slide i {
  color: #d8251c;
  font-size: 60px;
}
.zhuanzhu .zhuanzhu-ul .swiper-slide .tit {
  color: #383838;
  font-size: 22px;
  font-weight: bold;
  margin: 0px 0 10px 0;
}
.zhuanzhu .zhuanzhu-ul .swiper-slide .zhu-yao {
  color: #383838;
  font-size: 16px;
  line-height: 25px;
  height: 50px;
  overflow: hidden;
}
.more {
  margin-top: 10px;
}
.more a,
.more span {
  color: #d8251c;
  line-height: 35px;
  border: 1px solid #d8251c;
  display: inline-block;
  padding: 0 36px;
  border-radius: 10px;
  font-size: 16px;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.more a:hover,
.more span:hover {
  border: 1px solid #00903e;
  color: #00903e;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.bao-ul .swiper-slide {
  border-style: solid;
  border-width: 1px;
  border-color: #e2e1e1;
  background: url(../img/6.jpg) no-repeat;
  background-size: 100% 100%;
  text-align: center;
}
.bao-ul .swiper-slide a {
  height: 310px;
  display: block;
  padding: 80px 10px 10px 10px;
}
.bao-ul .swiper-slide a:hover .bao-p1 {
  color: #d8251c;
}
.bao-ul .swiper-slide .bao-p1 {
  height: 60px;
  color: #000000;
  font-size: 18px;
  line-height: 30px;
}
.bao-ul .swiper-slide .bao-p2 {
  color: #413f3f;
  font-size: 12px;
  margin-top: 20px;
}
.bao {
  margin-bottom: 30px;
}
.bao .more {
  margin-top: 30px;
}
.new {
  background: #f8f8f8;
  padding-bottom: 30px;
}
.new .more {
  margin-top: 30px;
}
.new1-ul > li {
  width: 32%;
  margin: 0 1.5% 0 0;
  padding: 15px;
  background: #ffffff;
}
.new1-ul > li:last-child {
  margin: 0;
}
.new1-ul > li .new-hd {
  color: #343434;
  padding: 10px 0;
}
.new1-ul > li .new-hd .fl {
  font-size: 24px;
  font-weight: bold;
}
.new1-ul > li .new-hd .fr a {
  font-size: 16px;
  color: #d8251c;
  font-weight: bold;
  display: inline-block;
  line-height: 34px;
}
.imgp2{
  display: none;

}
.new1-ul > li .new-hd .fr a:hover {
  color: #00903e;
}
.new1-ul > li .tui-n {
  margin-top: 10px;
}
.new1-ul > li .tui-n .fl {
  width: 40%;
}
.new1-ul > li .tui-n .fr {
  width: 56%;
}
.new1-ul > li .tui-n .fr .biao-p {
  color: #343434;
  font-size: 18px;
  line-height: 25px;
  height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: justify;
}
.new1-ul > li .tui-n .fr .biao-p2 {
  height: 40px;
  color: #949393;
  line-height: 20px;
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 8px;
}
.new1-ul > li .tui-n a {
  display: block;
}
.new1-ul > li .tui-n a:hover img {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
    transform: scale(1.2);
    transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    /* IE 9 */
    -moz-transform:  scale(1.2);
    /* Firefox */
    -webkit-transform:  scale(1.2);
    /* Safari 和 Chrome */
    -o-transform:  scale(1.2);
}
.new1-ul > li .tui-n a:hover .fr .biao-p {
  color: #d8251c;
}
.new2-uls {
  margin-top: 10px;
}
.new2-uls li {
  border-bottom: 1px dashed #c2c2c2;
}
.new2-uls li:last-child {
  border-bottom: none;
}
.new2-uls li a {
  display: block;
  line-height: 44px;
}
.new2-uls li a .fl {
  color: #777777;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 80%;
}
.new2-uls li a .fl .ys {
  border-radius: 50%;
  background-color: #bfbfbf;
  display: inline-block;
  margin-right: 10px;
  width: 7px;
  height: 7px;
}
.new2-uls li a .fr {
  width: 20%;
  color: #777777;
  font-size: 14px;
}
.new2-uls li:hover a .fl,
.new2-uls li:hover a .fr {
  color: #d8251c;
}
.kefu-lunbo .swiper-slide {
  border: 1px solid #f1f1f1;
}
.kefu-lunbo .swiper-container {
  padding-bottom: 50px;
}
.kefu-lunbo .swiper-pagination-bullet {
  width: 49px;
  height: 4px;
  border-radius: 0;
  background-color: #aaaaaa;
  opacity: 0.451;
}
.kefu-lunbo .swiper-pagination-bullet-active {
  background: #d8251c;
  opacity: 1;
}
footer {
  background: #f8f8f8;
}
footer .foot-ul li {
  float: left;
}
footer .foot-ul li:nth-child(1),
footer .foot-ul li:nth-child(2) {
  width: 26%;
  margin-right: 1%;
}
footer .foot-ul li:nth-child(3) {
  width: 46%;
}
footer .foot-ul li:nth-child(4) {
  width: 100%;
  position: relative;
  top: -30px;
}
footer .foot-ul li > p {
  color: #333333;
  font-size: 20px;
  padding: 5px 0;
  border-bottom: 1px solid #e5e5e5;
}
footer .foot-ul li .foot {
  color: #666666;
  font-size: 16px;
  line-height: 30px;
  padding: 10px 0;
}
footer .foot-ul li .foot a {
  color: #666666;
  font-size: 16px;
  display: inline-block;
  padding-right: 19px;
}
footer .foot-ul li .foot a:hover {
  color: #d8251c;
}
.fos .fl {
  width: 80%;
  line-height: 30px;
}
.fos .fr {
  width: 20%;
}
.fos .fr p {
  margin-top: 5px;
}
.foot-top {
  padding: 50px 0 0px 0;
}
.foots {
  background: #eaeaea;
  color: #413f3f;
  font-size: 16px;
  line-height: 45px;
}
.ban-zi {
  top: 45%;
      -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  width: 100%;
  z-index: 4;
}
.ban-zi .tr {
  color: #ffffff;
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0.5px 0.866px 8.73px rgba(7, 0, 2, 0.35);
}
.ban-zi .zi1 {
  color: #ffffff;
  letter-spacing: 7px;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 0.5px 0.866px 9.7px rgba(7, 0, 2, 0.92);
}
.position {
  background: rgba(241, 233, 233, 0.7);
  line-height: 40px;
  position: relative;
  margin-top: -40px;
}
.position .posi-a {
  color: #000000;
  font-size: 16px;
}
.position .posi-a i {
  color: #d8251c;
  font-size: 20px;
}
.position .posi-a a {
  color: #000000;
  font-size: 16px;
}
.position .posi-a a:hover {
  color: #d8251c;
}
.position .posi-nav li {
  display: inline-block;
  position: relative;
}
.position .posi-nav li a {
  display: inline-block;
  min-width: 130px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 0 23.5px;
  background: #8c8a84;
}
.position .posi-nav li:hover a,
.position .posi-nav li.active a {
  background: #d8251c;
}
.us-title {
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}
.lius-d{
  font-size: 13px;
  line-height: 25px;
  margin-top: 10px;
  height: 300px;  
  overflow: hidden;
  text-align: justify;
  
}
.us-title::after {
  content: '';
  left: 0;
  top: 50%;
      -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #d8251c;
  position: absolute;
}
.us-about {
  background: url(../img/26.jpg) no-repeat;
  padding: 30px 0 40px 0;
  background-size: 100% 100%;
}
.us-about .us-con {
  padding: 30px 0;
  background: #ffffff;
}
.us-about .us-con1 {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 38px;
  margin-top: 20px;
}
.us-about .about-ul1 {
  background: #ffffff;
  padding-bottom: 30px;
}
.us-img .swiper-button-next {
  background-image: url(../img/2.png);
  width: 49px;
  height: 76px;
  right: 0;
  background-size: 100% 100%;
  margin-top: -24.5px;
}
.us-img .swiper-button-prev {
  background-image: url(../img/3.png);
  width: 49px;
  height: 76px;
  left: 0;
  margin-top: -24.5px;
  background-size: 100% 100%;
}
.ying {
  margin: 40px 0 50px 0;
}
.ying-ul > li {
  padding: 35px 0;
  border-bottom: 1px solid #eeeeee;
}
.ying-ul .fl {
  width: 10%;
  height: 130px;
  text-align: center;
  line-height: 130px;
  background: url(../img/13.jpg) no-repeat;
  background-size: 100% 100%;
}
.ying-ul .fl i {
  color: #d8251c;
  font-size: 50px;
}
.ying-ul .fr {
  width: 88%;
}
.ying-ul .fr .bixos {
  color: #d8251c;
  font-size: 26px;
  font-weight: bold;
}
.ying-ul .fr .yaos {
  color: #4a4a4a;
  margin-top: 10px;
  font-size: 18px;
  line-height: 35px;
}
.ying-ul .fr .more {
  position: relative;
  margin-top: -25px;
}
.ying-ul .fr .more a {
  border: 1px solid #00903e;
  color: #00903e;
}
.ying-ul .fr .more a:hover {
  color: #d8251c;
  border: 1px solid #d8251c;
}
.jaogou {
  background: url(../img/27.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 50px 0;
}
.contat {
  padding: 40px 0 50px 0;
}
.contat .us-title {
  position: relative;
}
.contat .us-title span {
  color: #00903e;
  font-size: 24px;
}
.contat .lianxis1-ul {
  margin-top: 20px;
}
.contat .lianxis1-ul li {
  margin: 7px 0;
  color: #4a4a4a;
  font-size: 16px;
}
.contat .lianxis1-ul li i {
  color: #00903e;
  font-size: 20px;
}
.contat .lianxis1-ul li span {
  font-weight: bold;
}
.contat .map-img {
  margin-top: 20px;
}
.map-img img{
  max-width: inherit;

}
.youx {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: bold;
  background: #f8f8f8;
  line-height: 40px;
  width: 90%;
  padding: 20px;
  margin-top: 20px;
}
.reds {
  color: #e00000;
}
.inp-ul > li {
  width: 32%;
  float: left;
  margin-right: 2%;
}
.inp-ul > li:nth-child(3) {
  margin-right: 0;
}
.inp-ul > li input::placeholder,
.inp-ul > li textarea::placeholder {
  font-size: 14px;
  color: #808181;
}
.inp-ul > li:last-child,
.inp-ul > li:nth-child(4),
.inp-ul > li:nth-child(5) {
  width: 100%;
  margin-right: 0;
}
.inp-ul > li input {
  width: 100%;
  height: 42px;
  margin-top: 15px;
  background: #fff;
  padding-left: 15px;
  border: 1px solid #dad7d7;
  border-radius: 5px;
}
.inp-ul > li {
  position: relative;
}
.inp-ul > li .red {
  position: absolute;
  color: #d8251c;
  top: 30px;
  left: 8px;
}
.inp-ul > li textarea {
  width: 100%;
  height: 160px;
  border: none;
  resize: none;
  margin-top: 20px;
  background: #fff;
  padding: 7px 15px;
  border: 1px solid #dad7d7;
  border-radius: 5px;
}
.tiajiaos {
  font-size: 16px;
  line-height: 46px;
  border-radius: 5px;
  padding: 0 40px;
  color: #d8251c;
  border: 1px solid #d8251c;
  background: transparent;
  margin: 0 10px;
}
.tiajiaos:hover {
  background: #d8251c;
  transition: 600ms ease-in-out;
  color: #fff;
}
.box {
  width: 32%;
}
.box .yanma {
  width: 103px;
  right: 0;
  top: 19px;
}
.zhuyis {
  color: #808181;
  font-size: 14px;
  line-height: 40px;
  margin-left: 20px;
  margin-top: 15px;
}
.btn-t {
  margin-top: 30px;
}
.liuyan {
  margin-top: 50px;
}
.new-ls {
  margin: 0 -10px;
}
.new-ls .col-md-4 {
  padding: 10px;
}
.bao-a {
  padding: 20px;
  border: 1px solid #e2dfdf;
  display: block;
}
.bao-a .shijians {
  color: #8d8d8d;
  font-size: 16px;
}
.bao-a .baos-title {
  color: #3c3c3d;
  font-size: 22px;
  line-height: 30px;
  height: 60px;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.bao-a .bao-yao {
  color: #8d8d8d;
  font-size: 16px;
  line-height: 30px;
  margin-top: 10px;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.bao-a:hover img {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
    transform: scale(1.2);
    transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    /* IE 9 */
    -moz-transform:  scale(1.2);
    /* Firefox */
    -webkit-transform:  scale(1.2);
    /* Safari 和 Chrome */
    -o-transform:  scale(1.2);
}
.bao-a:hover .baos-title {
  color: #d8251c;
}
.bao-a:hover .more span {
  color: #00903e;
  border: 1px solid #00903e;
}
.new-list {
  padding: 30px 0 60px 0;
}
.tui-hang a {
  display: block;
}
.tui-hang a .hang-img {
  width: 30%;
}
.tui-hang a .hang-cons {
  width: 68%;
}
.tui-hang a .hang-cons .tui-yaos {
  color: #8d8d8d;
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 90px;
  margin-top: 20px;
}
.tui-hang a .hang-cons .sj {
  color: #8d8d8d;
  font-size: 16px;
  margin-top: 20px;
}
.tui-hang a .hang-cons .titles {
  color: #3c3c3d;
  font-size: 22px;
  line-height: 30px;
  height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.tui-hang a:hover img {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
    transform: scale(1.2);
    transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    /* IE 9 */
    -moz-transform:  scale(1.2);
    /* Firefox */
    -webkit-transform:  scale(1.2);
    /* Safari 和 Chrome */
    -o-transform:  scale(1.2);
}
.tui-hang a:hover .titles {
  color: #d8251c;
}
.list-new {
  padding: 10px 0;
}
.list-new li {
  border-bottom: 1px dashed #c6c6c6;
}
.list-new li a {
  padding: 16px 0;
  display: block;
}
.list-new li a .fl {
  width: 80%;
  color: #4a4a4a;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 25px;
  height: 25px;
}
.list-new li a .fl span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #bfbfbf;
  margin-right: 10px;
}
.list-new li a .fr {
  width: 20%;
  color: #777777;
  font-size: 18px;
}
.list-new li:hover a .fl {
  color: #d8251c;
}
.list-new li:last-child {
  border-bottom: none;
}
.detall .bdsharebuttonbox {
  display: inline-block;
  position: relative;
  top: 18px;
}
.detall .bdsharebuttonbox a {
  margin: 0px 0px 0 0;
  padding: 0;
  font-size: 25px;
  background: transparent;
}
.detall .bdsharebuttonbox a:nth-child(1) {
  color: #f7c25b;
}
.detall .bdsharebuttonbox a:nth-child(2) {
  color: #73a2e1;
}
.detall .bdsharebuttonbox a:nth-child(3) {
  color: #f67666;
}
.detall .bdsharebuttonbox a:nth-child(4) {
  color: #36be3f;
}
.detall .bdshare-button-style2-16 a,
.bdshare-button-style2-16 .bds_more {
  margin: 0px 0px 0 0;
  background: transparent;
  padding: 0;
  font-size: 25px;
}
.xing-biao {
  color: #505050;
  font-size: 24px;
}
.cons-bian2 {
  color: #919191;
  font-size: 14px;
  margin: 10px 0;
}
.cs-cons1 {
  color: #262626;
  font-size: 18px;
  line-height: 32px;
  padding: 30px 0;
}
.cs-cons1 img {
  padding: 15px;
}
.xingsw {
  margin-top: 10px;
  border-top: 1px solid #e5e5e5;
}
.xingsw .row {
  margin-bottom: 45px;
}
.shang {
  margin-top: 20px;
  border-top: 1px solid #eeeeee;
  padding: 15px 0;
}
.shang > div {
  width: 50%;
}
.shang > div a {
  color: #777777;
  font-size: 16px;
}
.shang > div a:hover {
  color: #04968b;
}
.xingsw .more {
  margin: 40px 0;
}
.xingsw .more a:hover {
  border: 1px solid #00903e;
  color: #00903e;
}
.new-list-xiang {
  padding: 30px 0 10px 0;
}
.donmgcai-ul li {
  padding: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}
.donmgcai-ul li a {
  display: block;
}
.donmgcai-ul li a .hang-img {
  width: 16%;
}
.donmgcai-ul li a .hang-cons {
  width: 82%;
}
.donmgcai-ul li a .hang-cons .titles {
  color: #3c3c3d;
  font-size: 22px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
  height: 30px;
}
.donmgcai-ul li a .hang-cons .sj {
  font-size: 16px;
  color: #8d8d8d;
  margin-top: 10px;
}
.donmgcai-ul li a .hang-cons .tui-yaos {
  color: #8d8d8d;
  font-size: 16px;
  line-height: 30px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 60px;
}
.donmgcai-ul li a:hover img {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
    transform: scale(1.2);
    transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    /* IE 9 */
    -moz-transform:  scale(1.2);
    /* Firefox */
    -webkit-transform:  scale(1.2);
    /* Safari 和 Chrome */
    -o-transform:  scale(1.2);
}
.donmgcai-ul li a:hover .titles {
  color: #d8251c;
}
.xianzais {
  margin: 30px 0 0 0;
}
.xianzais a {
  display: inline-block;
  line-height: 55px;
  color: #ffffff;
  padding: 0 40px;
  border-radius: 5px;
  background: #d8251c;
  font-size: 16px;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.xianzais a i {
  color: #ffffff;
  font-size: 30px;
}
.xianzais a:hover {
  background: #00903e;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.heixin {
  padding: 30px 0 40px 0;
}
.heixin .col-md-6 {
  padding: 30px;
  height: 280px;
  border: 1px solid #e9e9e9;
}
.heixin .col-md-6 .hang-biao {
  color: #d8251c;
  font-weight: bold;
  font-size: 24px;
  position: relative;
}
.heixin .col-md-6 .hang-biao:after {
  position: absolute;
  content: '';
  width: 39px;
  height: 4px;
  background: #d8251c;
  bottom: -10px;
  left: 0;
}
.heixin .col-md-6 .core-cons {
  margin-top: 30px;
  color: #4e4d4d;
  font-size: 18px;
  line-height: 35px;
}
.heixin .col-md-6:nth-child(2) {
  background: url(../img/28.jpg) no-repeat;
  background-size: 100% 100%;
}
.heixin .col-md-6:nth-child(3) {
  background: url(../img/29.jpg) no-repeat;
  background-size: 100% 100%;
}
.fazhan {
  background-size: 100% 100%;
  background: url(../img/30.jpg) no-repeat;
 
  padding: 40px 0;
}
.fazhan .fazhan-ul {
  width: 80%;
  margin: auto;
}
.fazhan .fazhan-ul li {
  padding: 30px 0;
  height: 145px;
  position: relative;
}
.fazhan .fazhan-ul li:after {
  content: '';
  position: absolute;
  height: 100%;
  left: 0;
  z-index: 1;
  top: 0;
  width: 1px;
  background: #d2d2d2;
}
.fazhan .fazhan-ul li .yuan1 {
  display: inline-block;
  border-style: solid;
  border-width: 8px;
  width: 30px;
  height: 30px;
  left: -15px;
  z-index: 2;
  top: 50%;
      -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  border-color: #f0ecec;
  border-radius: 50%;
  background-color: #d7d4d4;
}
.fazhan .fazhan-ul li .nian {
  color: #4d4c4c;
  font-size: 34px;
  font-weight: bold;
  width: 15%;
  line-height: 85px;
  text-align: center;
}
.fazhan .fazhan-ul li .fr {
  background: url(../img/11.png) no-repeat;
  background-size: 100% 100%;
  width: 85%;
  color: #515151;
  font-size: 18px;
  padding: 25px 30px;
  min-height: 85px;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.fazhan .fazhan-ul li .img1 {
  bottom: -12px;
  left: -7.5px;
}
.fazhan .fazhan-ul li:last-child {
  padding-bottom: 0;
}
.fazhan .fazhan-ul li:last-child:after {
  height: 50%;
}
.fazhan .fazhan-ul li:last-child .img1 {
  display: none;
}
.fazhan .fazhan-ul li:hover .fr {
  background: url(../img/13.png) no-repeat;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
  color: #ffffff;
  background-size: 100% 100%;
  font-weight: bold;
}
.fazhan .fazhan-ul li:hover .yuan1 {
  border-style: solid;
  border-width: 8px;
  border-color: #f6cfcd;
  border-radius: 50%;
  background-color: #d8251c;
}
.fazhan .fazhan-ul li:hover .nian {
  color: #d8251c;
}
.culture {
  background: url(../img/31.jpg) no-repeat;
  background-size: 100% 100%;
  min-height: 800px;
  padding: 30px 0;
}
.culture .cul-top {
  padding: 25px 25px 40px 25px;
  background: #ffffff;
}
.culture .cul-top .cul-p1 {
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  padding: 20px 0;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 30px;
}
.culture .cul-top .cul-p1 .ps{
  font-size: 18px;
}
.culture .cul-yao {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 30px;
}
.culture .cul-yao .ps {
  color: #000000;
  font-weight: bold;
  margin: 10px 0;
}
.culture .cul-bot {
  margin-top: 30px;
}
.culture .cul-bot .cul-yao {
  margin-top: 10px;
}
.ha {
  padding: 20px 0;
}
.ha-ul li {
  margin: 0 100px;
  display: inline-block;
}
.ha-ul li a {
  display: block;
}
.ha-ul li a .imhg2 {
  display: none;
}
.ha-ul li a .zis {
  color: #3c3c3d;
  font-size: 20px;
  font-weight: bold;
}
.ha-ul li:hover a,
.ha-ul li.active a {
  display: block;
}
.ha-ul li:hover a .imhg1,
.ha-ul li.active a .imhg1 {
  display: none;
}
.ha-ul li:hover a .imhg2,
.ha-ul li.active a .imhg2 {
  display: inline-block;
}
.ha-ul li:hover .zis,
.ha-ul li.active .zis {
  color: #00903e;
}
.industry {
  padding: 30px 0;
}
.industry .top-industry {
  padding: 30px 25px 25px 25px;
  background: #ffffff;
}
.industry .top-industry .yas {
  font-size: 26px;
  color: #d8251c;
  font-weight: bold;
  margin-top: 10px;
}
.industry .top-industry .yaos-con {
  color: #3c3c3d;
  font-size: 18px;
  margin-top: 5px;
  line-height: 36px;
}
.industry1 {
  background: url(../img/33.jpg) no-repeat;
  background-size: cover;
}
.industry1 .top-industry > .fl {
  width: 49%;
}
.industry1 .top-industry > .fr {
  width: 49%;
}
.bot-industry {
  padding: 25px 25px 25px 25px;
  margin-top: 20px;
  background: #ffffff;
}
.industry-ul {
  margin-top: 20px;
}
.industry-ul li {
  padding: 30px 0;
  margin-top: 20px;
  border: 1px solid #eae8e8;
}
.industry-ul li > .fl {
  width: 8%;
  text-align: center;
  border-right: 1px solid #eae8e8;
}
.industry-ul li > .fr {
  width: 89%;
}
.industry-ul li > .fr .p1 {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
}
.industry-ul li > .fr .p2 {
  color: #4a4a4a;
  font-size: 18px;
  margin-top: 10px;
}
.tijia-t {
  padding-bottom: 30px;
}
.tijia-t .tiajiaos {
  padding: 0 60px;
  line-height: 46px;
}
.industry2 {
  background: url(../img/35.jpg) no-repeat;
  background-size: cover;
}
.industry2 .kefus {
  margin: 10px -0.5%;
}
.industry2 .kefus li {
  float: left;
  width: 19%;
  margin: 0.5%;
  border: 1px solid #e4e3e3;
}
.anlis-ul {
  margin-top: 20px;
}
.anlis-ul li {
  display: inline-block;
}
.anlis-ul li a {
  display: block;
  color: #4a4949;
  font-size: 18px;
  font-weight: bold;
  padding: 0 38px;
  line-height: 45px;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
  border: 1px solid #d6d3d3;
}
.anlis-ul li:hover,
.anlis-ul li.active {
  background: #00903e;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.anlis-ul li:hover a,
.anlis-ul li.active a {
  color: #ffffff;
}
.anlis-cons {
  margin-top: 10px;
}
.anlis-cons .bao-a .baos-title {
  height: 30px;
  line-height: 30px;
  -webkit-line-clamp: 1;
  color: #3c3c3d;
  font-size: 22px;
  margin-top: 15px;
  font-weight: normal;
}
.anlis-cons .bao-a .bao-yao {
  color: #8d8d8d;
  font-size: 16px;
  margin-top: 10px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
  height: 60px;
  -webkit-line-clamp: 12;
}
.biage-ul {
  text-align: left;
}
.industry3 {
  background: url(../img/38.jpg) no-repeat;
  background-size: cover;
}
.fu-p-con {
  padding: 15px;
  background: #f8f8f8;
  height: 100px;
}.zixuns1 table{
  border-right: 1px solid #dcdada;
}
.zixuns1 .biage-ul li{
  line-height: 40px;
  padding-left: 40px;

}
.fu-p-con li {
  width: 33.33%;
  float: left;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  line-height: 35px;
  position: relative;
  padding-left: 22px;
}
.fu-p-con li:after {
  position: absolute;
  content: '';
  width: 8px;
  height: 9px;
  background: url(../img/17.png) no-repeat;
  top: 50%;
   -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  
  
  left: 0px;
}
.industry3 .ying-ul .fl {
  width: 11%;
  margin-top: 56px;
}
.industry3 .ying-ul > li {
  background: #ffffff;
  margin-bottom: 10px;
  padding: 20px;
}
.industry3 .ying-ul > li .title {
  color: #000000;
  font-size: 24px;
}
.industry3 .ying-ul > li .fu-p {
  color: #d8251c;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 15px 0;
}
.presentation-con {
  padding: 20px 0 70px 0;
}
.presentation-con .presentation-a {
  padding: 35px 0;
  border-bottom: 1px solid #e5e5e5;
  display: block;
}
.presentation-con .presentation-a .pre-img {
  width: 30%;
}
.presentation-con .presentation-a .pre-cons {
  width: 65%;
}
.presentation-con .presentation-a .pre-cons .pre-p {
  color: #3c3c3d;
  font-size: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
}
.presentation-con .presentation-a .pre-cons .pre-yaos {
  color: #8d8d8d;
  font-size: 16px;
  line-height: 30px;
  height: 150px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin-top: 10px;
}
.presentation-con .presentation-a .pre-cons .date {
  font-size: 16px;
  color: #8d8d8d;
  margin-top: 10px;
}
.presentation-con .presentation-a:hover img {
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */

    transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    /* IE 9 */
    -moz-transform:  scale(1.2);
    /* Firefox */
    -webkit-transform:  scale(1.2);
    /* Safari 和 Chrome */
    -o-transform:  scale(1.2);
}
.presentation-con .presentation-a:hover .pre-p {
  color: #d8251c;
}
.zixuns {
  background: url(../img/44.jpg) no-repeat;
  background-size: cover;
}
.table {
  margin-bottom: 0px;
}
.biaoge {
  margin-top: 10px;
}
.biaoge .table thead tr {
  background: #96908d;
}
.biaoge .table thead tr th {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 32px;
}
.biaoge .table thead tr th:nth-child(1) {
  border-right: 1px solid #b8b4b2;
}
.biaoge .table tbody {
  border-bottom: 1px solid #dcdada;
}
.biaoge .table tbody tr td {
  color: #050505;
  font-size: 16px;
  vertical-align: middle;
  padding: 0;
}
.biaoge .table tbody tr td:nth-child(1) {
  font-weight: bold;
  border-right: 1px solid #dcdada;
  border-left: 1px solid #dcdada;
  text-align: center;
}
.biaoge .table tbody tr td .biage-ul li {
  border-bottom: 1px solid #dcdada;
}
.biaoge .table tbody tr td .biage-ul li:last-child {
  border-bottom: none;
}
.biaoge .table tbody tr td .biage-ul li:nth-child(odd) {
  background: #f9f9f9;
}
.biaoge .table tbody tr td .biage-ul li > div {
  width: 50%;
  border-right: 1px solid #dcdada;
  padding: 9px 40px;
}
.biaoge .table tbody tr:nth-child(2) {
  margin-top: 20px;
}
.ban img {
  height: 260px;
}
.zixuns .biaoge thead tr th:nth-child(1) {
  width: 20%;
}
.zixuns .biaoge tbody {
  border-bottom: 1px solid #dcdada;
}
.zixuns .biaoge tbody tr td:nth-child(1) {
  width: 20%;
}
.kecheng {
  background: url(../img/45.jpg) no-repeat;
  background-size: cover;
}
.kecheng .biaogek .table {
  border-left: 1px solid #dcdada;
  border-right: 1px solid #dcdada;
}
.kecheng .biaogek thead tr th {
  border-left: 1px solid #dcdada;
}
.kecheng .biaogek tbody {
  border-bottom: 1px solid #dcdada;
}
.kecheng .biaogek tbody tr:nth-child(odd) {
  background: #f9f9f9;
}
.kecheng .biaogek tbody tr td {
  padding: 9px 40px;
  border-left: 1px solid #dcdada;
  text-align: center;
  font-weight: 400;
}
.kecheng .biaogek tbody tr td:nth-child(1) {
  font-weight: bold;
}
.kecheng .biaogek tbody tr td a {
  color: #d8251c;
  font-size: 16px;
  line-height: 34px;
  border: 1px solid #d8251c;
  border-radius: 10px;
  padding: 0 38px;
  display: inline-block;
}
.kecheng .biaogek tbody tr td a:hover {
  color: #ffffff;
  background: #d8251c;
}
.training {
  background: url(../img/46.jpg) no-repeat;
  background-size: cover;
}
.training .bai {
  background: #ffffff;
  padding: 20px 25px;
}
.training .bai .training-biao {
  color: #3c3c3d;
  font-size: 18px;
  line-height: 40px;
  margin: 10px 0 20px 0;
}
.tixi > div {
  text-align: center;
  width: 49%;
  background: #f8f8f8;
  border: 1px solid #e2dfdf;
  padding: 16px 30px;
}
.tixi > div .nei {
  color: #d8251c;
  font-weight: bold;
  font-size: 22px;
  padding: 5px 0 15px 0;
  border-bottom: 1px solid #e2dfdf;
}
.tixi > div .nei-yao {
  color: #3c3c3d;
  font-size: 18px;
  line-height: 35px;
  margin: 20px 0;
}
.yous-ul li {
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}
.yous-ul li:last-child {
  border-bottom: none;
}
.yous-ul li > div {
  width: 48%;
}
.yous-ul li .left {
  width: 16%;
  text-align: center;
}
.yous-ul li .reg {
  width: 80%;
}
.yous-ul li .reg .you-p1 {
  color: #3c3c3d;
  font-size: 20px;
}
.yous-ul li .reg .you-p2 {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 30px;
  margin-top: 10px;
}
.suss-ul {
  margin: 30px 0 0 0;
  background: #f8f8f8;
  padding: 30px 10px;
}
.suss-ul li {
  float: left;
  width: 25%;
  border-right: 1px solid #eaeaea;
  text-align: center;
}
.suss-ul li:last-child {
  border-right: none;
}
.suss-ul li span {
  color: #3c3c3d;
  font-size: 55px;
}
.suss-ul li sub {
  font-size: 24px;
  color: #3c3c3d;
}
.suss-ul li .zit {
  color: #555555;
  font-size: 18px;
}
.tixi-beixun {
  margin: 10px 0 20px 0;
}
.big_shot1 {
  margin-top: 10px;
}
.teame {
  background: url(../img/48.jpg) no-repeat;
  background-size: cover;
}
.big_shot .swiper-slide {
  border: 1px solid #edebeb;
}
.big_shot .zhiwei {
  color: #262626;
  font-size: 16px;
  font-weight: bold;
  z-index: 2;
  bottom: 0;
  left: 0;
  height: 50px;
  right: 0;
  text-align: center;
  background: #f8f8f8;
  line-height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ka {
  color: #d8251c;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}
.tijia-t .inp-ul li {
  width: 24%;
  margin-right: 1.33%;
}
.tijia-t .inp-ul li:nth-child(3) {
  margin-right: 1.33%;
}
.tijia-t .inp-ul li:nth-child(4) {
  margin-right: 0%;
}
.tijia-t .inp-ul li:nth-child(5),
.tijia-t .inp-ul li:nth-child(6) {
  width: 100%;
}
.liucheng-ul {
  border: 1px solid #edebeb;
  margin-top: 20px;
}
.liucheng-ul li {
  width: 11.11111%;
  float: left;
  padding: 10px;
  cursor: pointer;
  border-left: 1px solid #edebeb;
  text-align: center;
}
.liucheng-ul li:first-child {
  border-left: none;
}
.liucheng-ul li:nth-child(even) {
  background: #f8f8f8;
}
.liucheng-ul li .hao {
  color: #d1cfcf;
  font-size: 30px;
}
.liucheng-ul li .tou {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
}
.liucheng-ul li .y-img1 {
  display: none;
}
.liucheng-ul li:hover .y-img {
  display: none;
}
.liucheng-ul li:hover .tou,
.liucheng-ul li:hover .hao {
  color: #d8251c;
}
.liucheng-ul li:hover .y-img1 {
  display: inline-block;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}.liucheng-ul li:hover .lius-d{
  font-weight: bold;

}
.tran-case {
  background: url(../img/52.jpg) no-repeat;
  background-size: cover;
}
.tran-case .bot-industry,
.tran-case .anlis-ul {
  margin-top: 0;
}
.tran-case .anlis-ul li {
  min-width: 180px;
  text-align: center;
}
.zhaop {
  background: url(../img/56.jpg) no-repeat;
  background-size: cover;
}
.zhaop .bai {
  background: #ffffff;
  padding: 25px;
}
.zhaop .bai .zhaop-top {
  background: #f8f8f8;
  padding: 15px;
}
.zhaop .bai .zhaop-top .fenglei-ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
}.zhaop .bai .zhaop-top .fenglei-ul li:nth-child(2) form,.zhaop .bai .zhaop-top .fenglei-ul li:nth-child(3) form{
overflow: hidden;
height: 50px;
border: 1px solid #dfdede;
background: #FFf;

}.zhaop .bai .zhaop-top .fenglei-ul li:nth-child(2) form input,.zhaop .bai .zhaop-top .fenglei-ul li:nth-child(3) form input{
  width: 100%;
  float: left;
  height: 50px;
  padding-left: 15px;

}.zhaop .bai .zhaop-top .fenglei-ul li:nth-child(2) form button,.zhaop .bai .zhaop-top .fenglei-ul li:nth-child(3) form button{
  width: 20%;
  float: right;
  background: transparent;
  opacity: 0;
  border: none;
  text-align: center;  height: 100%;
}
.zhaop .bai .zhaop-top .fenglei-ul li:last-child {
  margin-right: 0;
}
.zhaop .bai .zhaop-top .fenglei-ul li p {
  color: #3c3c3d;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.zhaop .bai .zhaop-top .fenglei-ul li select {
  width: 100%;
  height: 50px;
  border: 1px solid #dfdede;
  padding: 10px 20px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("../img/36.png") no-repeat right center #ffffff;
}

.zhaop .bai .zhaop-top .fenglei-ul li input {
  width: 100%;
  height: 50px;
  border: 1px solid #dfdede;
  padding: 10px 20px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.zhaop .bai .zhaop-top .fenglei-ul li select option {
  color: #3c3c3d;
  font-size: 16px;
}
.zhaop .bai .zhaop-top .fenglei-ul li .boxs {
  border: 1px solid #dfdede;
  position: relative;
  overflow: hidden;
}
.zhaop .bai .zhaop-top .fenglei-ul li .boxs:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 30px;
  top: 10px;
  left: 50%;
  z-index: 1;
  background: #dfdede;
}
.zhaop .bai .zhaop-top .fenglei-ul li .boxs select {
  width: 50%;
  border: none;
  float: left;
}
.sou-div {
  color: #3c3c3d;
  font-size: 16px;
  margin-top: 25px;
}
.sou-div a {
  color: #d8251c;
  display: inline-block;
  margin: 0 5px;
}
.sou-div a:hover {
  color: #00903e;
}
.recruit-ul li {
  width: 49%;
  float: left;
  padding: 33px;
  margin-top: 2%;
  border: 1px solid #e2dfdf;
}
.recruit-ul li:nth-child(even) {
  float: right;
}
.recruit-ul li a {
  display: block;
}
.recruit-ul li a .zhao-biao {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
}
.recruit-ul li a .zhao-biao span {
  font-size: 17px;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
}
.recruit-ul li a .more span {
  line-height: 40px;
}
.recruit-ul li a:hover .zhao-biao {
  color: #d8251c;
}
.zhaop-cons1 {
  color: #6a6a6a;
  font-size: 15px;
  margin: 10px 0;
}
.zhaop-xing {
  background: url(../img/57.jpg) no-repeat;
  background-size: cover;
}
.zhaop-xing .bai {
  background: #ffffff;
  padding: 25px;
}
.zhaop-xing .bai .more span {
  line-height: 40px;
}
.zhaop-xing .bai .yais {
  color: #6a6a6a;
  font-size: 18px;
  line-height: 35px;
  padding: 20px 0;
}
.zhaop-xing .bai .tanchu span {
  color: #ffffff;
  line-height: 40px;
  background: #d8251c;
  display: inline-block;
  padding: 0 36px;
  border-radius: 10px;
  font-size: 16px;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
  cursor: pointer;
}
.zhaop-xing .bai .tanchu span:hover {
  background: #00903e;
}
@media (min-width: 992px) {
  .modal-lg {
    width: 500px;
  }
}
.zhiwen-tan .modal-content {
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}
.zhiwen-tan .modal-header {
  padding: 0;
  border-bottom: none;
}
.zhiwen-tan .modal-body {
  padding: 15px 0;
}
.zhiwen-tan .modal-footer {
  border-top: none;
  padding: 0;
}
.zhiwen-tan .modal-footer button {
  color: #d8251c;
  line-height: 45px;
  border: 1px solid #d8251c;
  display: inline-block;
  padding: 0 51px;
  border-radius: 10px;
  background: transparent;
  font-size: 16px;
     transition: 400ms ease-in-out;
    -moz-transition:400ms ease-in-out; /* Firefox 4 */
   -webkit-transition:400ms ease-in-out; /* Safari and Chrome */
   -o-transition:400ms ease-in-out; /* Opera */
}
.zhiwen-tan .zhi-ul li p {
  color: #6e6e6e;
  font-size: 16px;
  margin: 10px 0;
}
.zhiwen-tan .zhi-ul li input {
  border: 1px solid #ebebeb;
  width: 100%;
  line-height: 45px;
  border-radius: 5px;
  padding-left: 15px;
  margin-bottom: 10px;
}
.zhiwen-tan .zhi-ul li .file {
  display: inline-block;
  border: 1px solid #ebebeb;
  width: 100%;
  line-height: 45px;
  border-radius: 5px;
  height: 45px;
  position: relative;
  margin-bottom: 10px;
  text-align: center;
  color: #6e6e6e;
  font-size: 16px;
}
.zhiwen-tan .zhi-ul li .file input {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 3;
}
.zhiwen-tan .zhi-ul li .zhuyi {
  font-size: 16px;
  color: #d8251c;
  text-align: center;
}
.logo {
  margin-top: 4px;
  width: 8%;
}
.zixuns .zhuyi,
.kecheng .zhuyi {
  margin-top: 10px;
  font-size: 16px;
}
.anlis-cons .bao-a .bao-yao1 {
  height: 120px;
  -webkit-line-clamp: 4;
}
.phone {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  display: none;
  top: 0;
  position: fixed;
  background: #fff;
  z-index: 999;
  width: 100%;
}
#wrapper {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.phone .index_a {
  width: auto;

}
.sidebar-menu.is-active + #wrapper {
  transform: translateX(-300px);
}
.color_dao i {
  display: inline-block;
  font-size: 23px;
  color: #00903e;
  line-height: 70px;
}
.sidebar-menu {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #e7e9eb;
  transition: right 0.5s;
  z-index: 99999;
}
.sidebar-menu.is-active {
  display: block;
  transition: right 0.5s;
}
.sidebar-menu__header {
  height: 50px;
  background: #d8251c;
  position: relative;
  display: block;
  padding: 15px 25px;
  height: 100%;
  width: 100%;
  color: #fff;
}
.sidebar-menu__title {
  color: #ccc;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}
.sidebar-menu__title > i {
  display: inline-block;
  float: right;
  font-size: 28px;
  line-height: inherit;
}
.sidebar-menu__title:active,
.sidebar-menu__title:focus,
.sidebar-menu__title:hover {
  color: #fff;
  text-decoration: none;
}
.sidebar-menu__title::first-letter {
  text-transform: uppercase;
}
.sidebar-menu__title::before {
  content: "\e907";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -10px;
  color: #fff;
  font-size: 20px;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  font-feature-settings: "liga" 1;
  font-variant-ligatures: discretionary-ligatures;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  all: unset;
}
.sidebar-menu__list {
  position: fixed;
  top: 50px;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 250px;
  list-style: none;
  background-color: #fff;
  transition: right 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.sidebar-menu__item {
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.colos {
  line-height: 70px;
}
.sidebar-menu__item:first-child {
  border-top: 0;
}
.sidebar-menu__item.sidebar-menu__item--back,
.sidebar-menu__item.sidebar-menu__item--back:hover,
.sidebar-menu__link.sidebar-menu__subtitle {
  background-color: #f12f25 !important;
}
.sidebar-menu__item.sidebar-menu__item--back .sidebar-menu__link {
  color: #fff !important;
}
.sidebar-menu__item:hover {
  background-color: #fff;
  cursor: pointer;
}
.sidebar-menu__item:hover > .sidebar-menu__link {
  color: #6e6e6e;
}
.phone_i {
  display: inline-block;
  line-height: 60px;
  padding: 0 15px;
}
.sidebar-menu__item:hover > .sidebar-menu__link .glyphicon-menu-right {
  color: #6e6e6e;
}
.sidebar-menu__item .sidebar-menu__list {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translateX(300px);
  transition: transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.sidebar-menu__item .sidebar-menu__list.is-active {
  transform: translateX(0);
}
.sidebar-menu__item .sidebar-menu__list .sidebar-menu__list {
  z-index: 2;
}
.sidebar-menu__item .sidebar-menu__list .sidebar-menu__list .sidebar-menu__list {
  z-index: 3;
}
.sidebar-menu__item .sidebar-menu__list .sidebar-menu__list .sidebar-menu__list .sidebar-menu__list {
  z-index: 4;
}
.sidebar-menu__link {
  display: block;
  padding: 10px 25px;
  color: #828282;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.sidebar-menu__link::first-letter {
  text-transform: uppercase;
}
.sidebar-menu__link:active,
.sidebar-menu__link:focus,
.sidebar-menu__link:hover {
  text-decoration: none;
}
.sidebar-menu__link span.glyphicon-menu-left {
  float: left;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  margin-right: 4px;
}
.sidebar-menu__link .glyphicon-menu-right {
  color: #bababa;
  float: right;
}
.searchbox {
  padding: 15px;
  box-shadow: 0 0 7px 0 #cfcfcf;
  background: #fff;
  position: fixed;
  left: 0;
  width: 100%;
  right: 0;
  top: 70px;
  border-top: 2px solid #d8251c;
  text-align: center;
  z-index: 44;
}
.searchbox.active {
  top: 70px;
}
.searchs {
  max-width: 600px;
  margin: 0 auto;
}
.searchs .sertext {
  display: block;
  padding: 0;
  outline: 0;
  padding-left: 12px;
  width: 78%;
  float: left;
  border: 1px solid #cdcdcd;
  color: #a2a2a2;
  font-size: 12px;
  height: 52px;
  line-height: 52px;
  transition: 0.4s;
}
.serbtn {
  padding: 0;
  margin: 0;
  border: none;
  outline: 0;
  width: 22%;
  float: right;
  height: 52px;
  text-align: center;
  line-height: 52px;
  background: #d8251c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.44s;
}
.ds {
  cursor: pointer;
}
.mobile-foot {
  display: none;
  background: #d8251c;
  padding: 8px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.mobile-foot a {
  color: #fff;
  height: 35px;
  line-height: 33px;
  border: 1px solid #fff;
  border-radius: 4px;
  text-align: center;
  width: 22%;
  padding: 0 15px;
  font-size: 15px;
  margin: 0 5px;
  transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  padding: 0px;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
/* 右侧悬浮 */
.rightfix {
  position: fixed;
  top: 50%;
  right: 0px;
  width: 40px;
  border-right: none;
      -ms-transform: translateY(-50%);
    /* IE 9 */
    -moz-transform: translateY(-50%);
    /* Firefox */
    -webkit-transform: translateY(-50%);
    /* Safari 和 Chrome */
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  z-index: 99;
  border: 1px solid #dee2e7;
  background: #fff;
}
.fix_ul li {
  font-size: 12px;
  background: #d8251c;
  text-align: center;
  float: none;
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 0px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.fix_ul li:last-child {
  border-bottom: none;
}
.fix_ul li p {
  color: #585555;
  font-size: 16px;
}
.fix_ul li i {
  font-size: 20px;
  color: #fff;
}
.right_div {

  transform:  scale(0);
  -ms-transform:  scale(0);
  /* IE 9 */
  -moz-transform:  scale(0);
  /* Firefox */
  -webkit-transform:  scale(0);
  /* Safari 和 Chrome */
  -o-transform:  scale(0);
  position: absolute;
  right: 20px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  top: 0px;
  background: #fff;
  padding: 10px;
  line-height: 30px;
  transition: all 0.4s ease-in-out;
  -moz-transition:all 0.4s ease-in-out; /* Firefox 4 */
 -webkit-transition:all 0.4s ease-in-out; /* Safari and Chrome */
 -o-transition:all 0.4s ease-in-out;
  min-width: 150px;
}
.fix_ul li:hover {
  background: #e83f37;
}
.fix_ul li:hover a {
  color: #000000;
}
.fix_ul li:hover .right_div {

    transform:  scale(1);
    -ms-transform:  scale(1);
    /* IE 9 */
    -moz-transform:  scale(1);
    /* Firefox */
    -webkit-transform:  scale(1);
    /* Safari 和 Chrome */
    -o-transform:  scale(1);
  right: 40px;

  transition: all 0.4s ease-in-out;
  -moz-transition:all 0.4s ease-in-out; /* Firefox 4 */
 -webkit-transition:all 0.4s ease-in-out; /* Safari and Chrome */
 -o-transition:all 0.4s ease-in-out; 
}
.fix_ul li:hover {
  background: #d8251c;
}
.fix_ul li:hover i {
  color: #fff;
}
.jions .zhaop-zhao {
  margin-top: 30px;
  font-size: 20px;
  color: #000000;
  font-weight: bold;
  line-height: 40px;
}
.jions .dian-ul {
  padding: 20px 0 20px 0;
}
.jions .dian-ul li {
  cursor: pointer;
  overflow: hidden;
}
.jions .dian-ul li .dian-top {
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}
.jions .dian-ul li .dian-top .fl {
  color: #d8251c;
  font-size: 22px;
  width: 70%;
}
.jions .dian-ul li .dian-top .fl i {
  font-size: 25px;
}
.jions .dian-ul li .dian-top .fr {
  width: 30%;
  color: #7b7a7a;
  font-size: 18px;
  line-height: 35px;
}
.jions .dian-ul li .zhaops-cons {
  font-size: 18px;
  color: #8c8c8c;
  line-height: 2;
  transition: 600ms ease-in-out;
  height: 0;
  opacity: 0;
  position: relative;
  top: -100%;
}
.jions .dian-ul li.active .zhaops-cons {
  top: 0%;
  opacity: 1;
  transition: 600ms ease-in-out;
  height: auto;
  padding: 10px 0 10px 0;
}
.jions .dian-ul li.active {
  border-bottom: 1px solid #eeeeee;
}
.jions .dian-ul li.active .fl,
.jions .dian-ul li.active .fl i {
  color: #00903e;
}
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}
.zhaos2 {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 2;
  padding: 30px 0 0px 0;
}
.yingpin {
  margin-top: 20px;
}
.yingpin a {
  color: #ffffff;
  font-size: 16px;
  background: #d8251c;
  padding: 0 40px;
  border-radius: 10px;
  display: inline-block;
  line-height: 45px;
}
.jions .zhaos1 {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 2;
  padding: 10px 0 30px 0;
}
.jions .jsl {
  margin: 20px 0;
}
.sp1 {
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
}
.danye {
  padding: 20px 0;
  color: #3c3c3d;
  font-size: 18px;
  line-height: 38px;
}
.ma-1{
  display: none;
}
@media (max-width: 1440px) {
  .logo {
    margin-top: 6px;
    width: 10%;
  }
}
@media (max-width: 1280px) {
  .nav1 li a {
    padding: 0 28px;
  }
  .industry .top-industry .yas {
    font-size: 19px;
  }
  .nav1 li a {
    font-size: 17px;
  }
  .navs-con .er-ul li a {
    font-size: 15px;
  }
  .navs-con .er-ul {
    width: 90px;
}
  .lunbo .zi-con .lunbo-zi .p-cn {
    font-size: 43px;
  }
  .lunbo .zi-con .lunbo-zi .p-en {
    font-size: 19px;
  }
  .industry .top-industry .yaos-con {
    font-size: 15px;
    line-height: 26px;
  }
  .industry-ul li > .fr .p1 {
    font-size: 20px;
  }
  .industry-ul li > .fr .p2 {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .industry-ul li {
    padding: 30px 10px;
  }
  .anlis-cons .bao-a .baos-title {
    font-size: 18px;
  }
  .anlis-cons .bao-a .bao-yao {
    font-size: 15px;
    line-height: 25px;
    height: 50px;
  }
  .presentation-con .presentation-a .pre-cons .pre-yaos {
    font-size: 14px;
    line-height: 25px;
    height: 100px;
    -webkit-line-clamp: 4;
  }
  .presentation-con .presentation-a .pre-cons .pre-p {
    font-size: 17px;
  }
  .presentation-con .presentation-a .pre-cons .date {
    font-size: 15px;
  }
  .logo {
    margin-top: 8px;
    width: 12%;
  }
  .ying-ul .fr .more {
    position: relative;
    margin-top: 0px;
  }
  .us-about .us-con1 {
    font-size: 14px;
    line-height: 31px;
  }
  .ying-ul .fl {
    width: 13%;
  }
  .ying-ul .fr {
    width: 86%;
  }
  .ban-zi .tr {
    font-size: 38px;
  }
  .nav1 li a {
    padding: 0 20px;
  }
  .navs-con .er-ul {
    width: 74px;
  }
  .navs-con .er-ul li a {
    font-size: 12px;
  }
  .navs-con .er-ul li {
    line-height: 32px;
  }
  .lunbo .zi-con .lunbo-zi .p-cn {
    font-size: 30px;
  }
  .lunbo .zi-con .lunbo-zi .p-cn {
    font-size: 30px;
  }
  .about-ul1 li span {
    font-size: 38px;
  }
  .about-ul1 li p {
    font-size: 16px;
  }
  .hd-con .hd {
    font-size: 29px;
  }
  .hangs a .hang-zi .hp1 {
    font-size: 22px;
  }
  .hangs a .hang-zi .hp2 {
    font-size: 16px;
  }
  .bao-ul .swiper-slide .bao-p1 {
    font-size: 16px;
  }
  .bao-ul .swiper-slide a {
    height: 280px;
  }
  .new1-ul > li .tui-n .fr .biao-p {
    font-size: 15px;
    line-height: 21px;
    height: 42px;
  }
  .new1-ul > li .tui-n .fr .biao-p2 {
    margin-top: 0;
    height: 40px;
  }
  .new2-uls li a .fl {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .bao-a .bao-yao {
    font-size: 14px;
  }
  .ban-zi .zi1 {
    font-size: 24px;
  }
  .industry .top-industry .yas {
    font-size: 15px;
  }
  .industry .top-industry .yaos-con {
    font-size: 13px;
    line-height: 21px;
  }
  .bao-a .baos-title {
    font-size: 16px;
  }
  .xing-biao {
    font-size: 20px;
  }
  .cs-cons1 {
    font-size: 15px;
    line-height: 26px;
    padding: 5px 0;
  }
  .xianzais a {
    line-height: 40px;
    padding: 0 26px;
  }
  .new-list-xiang {
    padding: 20px 15px;
  }
  .detall {
    margin: 0;
  }
  .kecheng .biaogek tbody tr td {
    font-size: 14px;
  }
  .position {
    display: none;
  }
  .ying-ul .fl {
    width: 16%;
  }
  .ying-ul .fr {
    width: 82%;
  }
  .ying-ul .fr .yaos {
    font-size: 16px;
    line-height: 31px;
  }
  .phone {
    display: block;
  }
  .dahang,
  .rightfix,
  footer {
    display: none;
  }
  .hangs a .hang-zi .hp1 {
    font-size: 17px;
  }
  .hangs a .hang-zi .hp2 {
    font-size: 13px;
  }
  .hangs .col-md-4 .bot1 {
    margin-top: 11px;
  }
  .lunbo img {
    height: 200px;
  }
  .hd-con .yao {
    font-size: 14px;
    line-height: 23px;
  }
  .zhuanzhu .zhuanzhu-ul .swiper-slide .tit {
    font-size: 22px;
  }
  .zhuanzhu .zhuanzhu-ul .swiper-slide .zhu-yao {
    font-size: 14px;
  }
  .new1-ul > li {
    width: 100%;
    margin-bottom: 15px;
  }
  .mobile-foot {
    display: block;
  }
  .map-con .col-md-6 {
    margin-bottom: 20px;
  }
  .box {
    width: 100%;
  }
  .fazhan .fazhan-ul li .nian {
    color: #4d4c4c;
    font-size: 21px;
  }
  .fazhan .fazhan-ul li .fr {
    font-size: 14px;
  }
  .ha-ul li {
    width: 32.33%;
    margin: 0;
    text-align: center;
  }
  .ha {
    padding: 20px 0;
  }
  .ha-ul li a .zis {
    font-size: 14px;
  }
  .recruit-ul li {
    padding: 15px;
  }
  .recruit-ul li a .zhao-biao {
    font-size: 18px;
  }
  .zhaop-cons1 {
    font-size: 13px;
    margin: 10px 0;
  }
  .recruit-ul li a .zhao-biao span {
    display: block;
    margin: 0;
  }
  .yous-ul li .reg .you-p1 {
    font-size: 18px;
  }
  .yous-ul li .reg .you-p2 {
    font-size: 14px;
    line-height: 22px;
  }
  .suss-ul li span {
    font-size: 34px;
  }
  .suss-ul li .zit {
    font-size: 13px;
  }
  .suss-ul li sub {
    font-size: 13px;
  }
  .big_shot .zhiwei {
    font-size: 15px;
  }
  .liucheng-ul li {
    width: 20%;
    border: 1px solid #edebeb;
  }
  .liucheng-ul {
    border: none;
  }
  .liucheng-ul li:first-child {
    border-left: 1px solid #edebeb;
  }
}.us-us1 {
  display: none;
}
.us-us1 li{
  width: 33.33%;
  float: left;  
  border-left: 1px solid #eee;  border-top:1px solid#eeeeee; 
  /* background: #d8251c;
 border-left: 1px solid #ff2e23;  border-top:1px solid#ff2e23;  */

}.us-us1 li a{
  font-size: 14px;    color: #191717;
  font-weight: bold;
  display: block;
  line-height: 30px;
  text-align: center;
}
.us-us1 li a:hover{
  color: #ff2e23; 
}

@media (max-width: 767px) {
  .ma-1{
    display: block;
  }
  

  .liuyan {
    margin-top: 20px;
}
  .sp1 {
  font-size: 15px;
}.zhaop-xing .bai .yais{
  font-size: 14px ;
  line-height: 24px;
}.zhaop-xing .bai .more span {
  line-height: 30px;
}
  .sou-div{
    margin-top: 10px;    font-size: 14px;
  }
  .zhaop-xing .bai .tanchu span {
 
    line-height: 25px;
 
    padding: 0 8px;

    font-size: 12px;
  }
  .zhaop .serbtn{
    float: none;
    position: relative;
    width: 40%;
    margin-top: 10px;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
  
  }.zhaop .bai .zhaop-top .fenglei-ul li select{
    height: 40px;
  }.zhaop .bai .zhaop-top .fenglei-ul li input{
    height: 40px;
  }
  .zhaop .bai .zhaop-top .fenglei-ul li p{
    margin: 10px 0;
  }
 
  .hangs>.col-md-4 img {
    height: 100px;
    
  }
  .zixuns1 .biage-ul li{
    padding-left: 5px;

  }
  .zixuns .zhuyi, .kecheng .zhuyi {

    font-size: 13px;
}
  .bao-ul .swiper-slide .bao-p1 {
    font-size: 14px;
  }
  .tixi > div .nei-yao {
    color: #3c3c3d;
    font-size: 14px;
    line-height: 27px;
  }
  .tixi > div .nei {
    padding: 10px 0;
    font-size: 15px;
  }
  .us-title {
    font-size: 18px;
  }
  .training .bai .training-biao {
    font-size: 14px;
    line-height: 25px;
  }
  .tixi > div {
    width: 50%;
    margin: 7.5px 0;
    padding: 3px 3px;
  
  }.tixi > div img{
    display: none;
  }
  .yous-ul li > div {
    width: 100%;
    margin: 7.5px 0;
  }
  .suss-ul {
    padding: 15px;
    margin-top: 10px;
  }
  .suss-ul li {
    width: 100%;
    border-right: none;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
  }
  .suss-ul li:last-child {
    border-bottom: none;
  }
  .training,
  .training .bai,
  .train-you {
    padding: 15px;
  }
  .recruit-ul li {
    width: 100%;
  }
  .zhaop .bai .zhaop-top .fenglei-ul li {
    width: 100%;
  }
  .tijia-t {
    padding: 15px;
  }
  .bot-industry {
    padding: 15px;
  }
  .bao-a {
    padding: 15px;
  }
  .tran-case {
    padding: 15px;
  }
  .anlis-ul li a {
    font-size: 14px;
    line-height: 30px;
    padding: 0 8px;
  }
  .anlis-ul li {
    margin-bottom: 10px;
  }
  .fazhan .fazhan-ul {
    width: 90%;
  }
  .heixin .col-md-6 {
    padding: 15px;
  }
  .heixin .col-md-6 .core-cons {
    font-size: 15px;
    line-height: 28px;
  }
  .fazhan {
    padding: 15px;
  }
  .heixin .col-md-6 .hang-biao {
    font-size: 19px;
  }
  .fazhan .fazhan-ul li .nian {
    width: 30%;
  }
  .inp-ul > li {
    width: 100%;
  }
  .about-ul1 li {
    width: 25%;
    margin-bottom: 10px;
  }
  .about-ul1 li span {
    font-size: 20px;
  }
  .lunbo .zi-con .lunbo-zi .p-cn {
    font-size: 18px;
  }
  .lunbo .zi-con .lunbo-zi .p-en {
    display: none;
  }
  .heixin {
    margin: 0 ;
  }
  .hangye,
  .zhuanzhu,
  .bao,
  .new,
  .kefu,
  .jaogou,
  .core {
    padding: 15px;
  }
  .hd-con {
    padding: 10px 0 10px 0;
  }
  .hangs .col-md-4 {
    padding: 7.5px 10px;
  }
  .hangye,
  .bao {
    margin: 0;
  }
  .new2-uls li a {
    line-height: 38px;
  }
  .lunbo img {
    height: 150px;
  }
  body {
    padding: 70px 0;
  }
  .hd-con .hd {
    font-size: 20px;
  }
  .us-about,
  .contat {
    padding: 15px;
  }
  .ying {
    margin: 15px;
  }
  .ying-ul .fl {
    width: 34%;
  }
  .ying-ul .fr {
    width: 64%;
  }
  .ying-ul .fr .bixos {
    font-size: 20px;
  }
  .ying-ul .fr .yaos {
    font-size: 13px;
    line-height: 23px;
  }
  .ying-ul .fr .more {
    margin-top: 8px;
  }
  .ying-ul .fr .more a {
    line-height: 30px;
    font-size: 13px;
    padding: 0 20px;
  }
  .ying-ul > li {
    padding: 15px 0;
  }
  .ban img {
    height: 100px;
  }
  .ban-zi .tr {
    font-size: 21px;
    text-align: center;
  }
  .presentation-con {
    padding: 15px;
  }
  .presentation-con .presentation-a .pre-cons .pre-yaos {
    height: 50px;
    -webkit-line-clamp: 2;
  }
  .presentation-con .presentation-a {
    padding: 15px 0;
  }
  .biaoge .table thead tr th {
    font-size: 16px;
    line-height: 30px;
  }
  .kecheng .biaogek tbody tr td {
    padding: 15px;
  }
  .industry .top-industry {
    padding: 15px 0;
  }
  .kecheng {
    padding: 15px;
  }
  .donmgcai-ul li a .hang-img {
    width: 100%;
    height: 140px;
  }
  .donmgcai-ul li a .hang-cons {
    width: 100%;
    margin-top: 10px;
  }
  .new-list {
    padding: 15px;
  }
  .donmgcai-ul li a .hang-cons .titles {
    font-size: 16px;
  }
  .donmgcai-ul li a .hang-cons .tui-yaos {
    font-size: 14px;
    line-height: 25px;
    height: 50px;
  }
  .donmgcai-ul li a .hang-cons .sj {
    font-size: 14px;
  }
  .donmgcai-ul li {
    padding: 10px 0;
  }
  .xing-biao {
    font-size: 16px;
  }
  .xianzais {
    margin: 11px 0;
  }
  .xianzais a i {
    font-size: 20px;
  }
  .xianzais a {
    font-size: 13px;
  }
  .shang > div {
    width: 100%;
    text-align: left;
    margin: 5px 0;
  }
  .shang > div a {
    font-size: 14px;
  }
  .xingsw .more {
    margin: 10px 0;
  }
  .more a,
  .more span {
    line-height: 30px;
    padding: 0 20px;
    font-size: 14px;
  }
  .fazhan .fazhan-ul li .fr {
    width: 68%;
    padding: 15px;
    height: 110px;
  }
  .jions {
    padding: 15px;
  }
  .jions .zhaop-zhao {
    margin-top: 10px;
    font-size: 16px;
    line-height: 28px;
  }
  .jions .dian-ul li .dian-top .fl {
    font-size: 16px;
  }
  .jions .dian-ul li .dian-top .fl i {
    font-size: 18px;
  }
  .jions .dian-ul li .dian-top .fr {
    width: 30%;
    font-size: 15px;
    line-height: 25px;
  }
  .jions .dian-ul li .dian-top {
    padding: 13px 0;
  }
  .jions .dian-ul li .zhaops-cons {
    font-size: 14px;
  }
  .jions .zhaos1 {
    color: #4a4a4a;
    font-size: 14px;
  }
  .teame {
    padding: 15px;
  }
  .teame .top-industry {
    padding: 15px;
  }
  .big_shot1 {
    margin-top: 10px;
  }
  .liucheng-ul li {
    width: 50%;
  }
  .new-ls .col-md-4 {
    padding: 7.5px 10px;
  }
  .bao-a .bao-yao {
    line-height: 20px;
    height: 40px;
    margin-top: 5px;
  }
  .bao-a .shijians {
    font-size: 14px;
  }
  .prxis {
    padding: 15px;
  }
  .big_shot .zhiwei {
    line-height: 32px;
    height: 32px;font-size: 12px;
  }
  .ka {
    font-size: 16px;
    margin: 10px 0;
  }
  .liucheng-ul li .tou {
    font-size: 14px;
    margin-top: 5px;
  }
  .tran-case .anlis-ul li {
    min-width: auto;
  }
  .biaoge .table tbody tr td .biage-ul li > div {
    padding: 15px;
  }
  .biaoge .table tbody tr td .biage-ul li > div {
    border-right: none;
    width: 100%;
    border-bottom: 1px solid #dcdada;
  }
  .biaoge .table tbody tr td {
    font-size: 12px;
  }
  .culture .cul-top {
    padding: 15px;
  }
  .culture .cul-top .cul-p1 {
    font-size: 17px;
    padding: 11px 0;
  }
  .culture .cul-yao {
    font-size: 15px;
    line-height: 23px;
  }
  .culture {
    background-size: cover;
    padding: 15px;
  }
  .industry1 .top-industry > .fl {
    width: 100%;
  }
  .industry1 .top-industry > .fr {
    width: 100%;
    margin-top: 10px;
  }
  .industry1 {
    padding: 15px;
  }
  .industry1 .top-industry {
    padding: 15px;
  }
  .industry-ul li > .fl {
    width: 26%;
  }
  .industry-ul li > .fr {
    width: 70%;
  }
  .industry-ul li > .fr .p1 {
    font-size: 16px;
  }
  .ban-zi .zi1 {
    font-size: 12px;
  }
  .industry3 {
    padding: 15px;
  }
  .industry3 .ying-ul > li {
    padding: 15px;
  }
  .industry3 .ying-ul .fl {
    width: 100%;
  }
  .industry3 .ying-ul > li .title {
    font-size: 16px;
  }
  .fu-p-con li {
    width: 100%;
    font-size: 13px;
    line-height: 26px;
  }
  .fu-p-con {
    height: auto;
  }
  .industry3 .ying-ul > li .fu-p {
    margin: 10px 0;
    font-size: 16px;
  }.industry3 .ying-ul > li{
    text-align: center;
  }
  .ying-ul .icons {
    background: url(../img/13.jpg) no-repeat center center;
    background-size: 100% 100%;
    width: 70px !important;
    height: 70px!important;    
    line-height: 70px;
  }
  .ying-ul .fr {
    width: 100%;
    margin-top: 10px;
    text-align: left;
  }
  .industry3 .ying-ul .fl {
    margin-top: 0;
  }
  .industry2 .kefus li {
    width: 46%;
    margin: 2%;
  }
  .industry2 .top-industry {
    padding: 15px;
  }
  .zixuns {
    padding: 15px;
  }
  .tui-hang a .hang-img {
    width: 43%;
    
  }  .tui-hang a .hang-img  img{
    height:100px ;
  }
  .tui-hang a .hang-cons {
    width: 54%;
 
  }
  .tui-hang a .hang-cons .titles {
    font-size: 17px;
  }.tui-hang a .hang-cons .sj{
    margin-top: 0;
  }
  .tui-hang a .hang-cons .tui-yaos {
    color: #9e9d9d;
    font-size: 14px;
    line-height: 25px;-webkit-line-clamp: 2;
    height: 50px;
    margin-top: 0;

  }
  .list-new li a .fl {
    font-size: 15px;
    width: 70%;
  }
  .list-new li a .fr {
    width: 24%;
    font-size: 14px;
    line-height: 25px;
  }
  .list-new li a {
    padding: 12px 0;
  }
  .tijia-t .inp-ul li {
    width: 100%;
    margin-right: 0%;
  }
  .phone .container>.fl{
    width: 66%;
    line-height: 70px;
  }
 
  .industry3 .ying-ul .fl{
    position: relative;
    left: 35%;
  }
  .industry3 .ying-ul > li .title{
    font-weight: bold;
  }.industry3 .ying-ul .fl img{
    width: 30px;
    height: 30px;
  }.about-ul1 li sub {
    font-size: 17px;
  
}.zhuanzhu .zhuanzhu-ul .swiper-slide a{
  padding: 20px 0 20px 0 ;
}.zhuanzhu .zhuanzhu-ul .swiper-slide .zhu-yao{
  height: 50px;
}.zhuanzhu .zhuanzhu-ul .swiper-slide a>img{
  width: 30px;
  height: 30px;
}.zhuanzhu .zhuanzhu-ul .swiper-slide .tit{
  font-size: 18px;
  margin: 10px 0;
}.bao-ul .swiper-slide a {
  height: 200px;    padding: 20px 10px 10px 10px;
}.bao-ul .swiper-slide .bao-p2 {
 
  margin-top: 14px;
}.kefu-lunbo .swiper-pagination-bullet{
  width: 4px;
}.zhaos2 {
padding:0;
  font-size: 14px;
}.ying-ul .icons{
  display: none;
}.industry-ul li {
  padding: 9px 10px;
}
.industry-ul li > .fr .p1 {
  font-size: 14px;
}.industry-ul li > .fr .p2 {
  font-size: 12px;
}.industry1 .top-industry > .fr{
  height: 140px;
  overflow: hidden;
}
.bao-a .overh{
  height: 120px;
}.anlis-cons .bao-a .baos-title {
  font-size: 16px;
}.anlis-cons .bao-a .bao-yao {
  font-size: 12px;     margin-top: 0px;
}.kecheng .biaogek tbody tr td {
  padding: 2px;
}.kecheng .biaogek tbody tr td a {
 
  font-size: 12px;
  line-height: 20px;

  border-radius: 10px;
  padding: 1px 22px;
}.biaoge .table tbody tr td .biage-ul li > div {
  padding: 5px;
}.biaoge .table thead tr th {
  font-size: 13px;
  line-height: 22px;
}.inp-ul > li input {

  height: 30px;
}.inp-ul > li .red {
  top: 24px;
}.tixi > div .nei-yao {

  font-size: 11px;
  line-height: 19px;    margin: 4px 0;
}
.yous-ul li .reg .you-p1 {
  font-size: 16px;
}.yous-ul li .reg .you-p2{
  margin-top: 10px;
}.yous-ul li {
  padding: 3px 0;
}.liucheng-ul li .hao {
  color: #d1cfcf;
  font-size: 13px;
}.liucheng-ul li .tou {
  font-size: 15px;
  margin-top: 0px;
}.liucheng-ul li{
  padding: 0;
}.tubiaos{

  overflow: hidden;
}.liucheng-ul li .tou{
  line-height: 17px;
}
.liucheng-ul li .hao{
  line-height: 17px;
}
.tubiaos img{
  width: 30px;
  height: 30px;
}.yous-ul li .reg .you-p2 {
  margin-top: 0px;
}.training .bai .training-biao{
  margin: 10px 0 0px 0;
}
.presentation-con .presentation-a .pre-cons .pre-yaos {
  font-size: 12px;
  line-height: 20px;
  height: 40px;
}.presentation-con .presentation-a {
  padding: 7px 0;
}.list-new li a {
  padding: 7px 0;
}.list-new li a .fl {
  font-size: 14px;

}.bao-a .baos-title{
  height: 30px;
}.bao-a {
  padding: 8px;
}.donmgcai-ul li a .hang-cons .titles {
  font-size: 14px;
}.donmgcai-ul li a .hang-cons .tui-yaos {
  font-size: 12px;

}.zhaos2 {

  font-size: 13px;
}.jions .zhaop-zhao {
  margin-top: 10px;
  font-size: 12px;
  line-height: 22px;
}.jions .dian-ul li .dian-top .fl {
  font-size: 14px;
}.jions .dian-ul li .dian-top .fr {

  font-size: 13px;
}.jions .dian-ul li .dian-top {
  padding: 5px 0;
}.jions .zhaos1 {

  font-size: 13px;
}.contat .lianxis1-ul li {
 
  font-size: 13px;
}.suss-ul li {
  width: 50%;
}.suss-ul li span {
  font-size: 19px;
}.suss-ul li .zit {
  font-size: 11px;
}.suss-ul li:nth-child(3){
  border-bottom:none;
}.liucheng-ul li{
  width: 33.33%; padding: 4px;
}.inp-ul > li textarea{
  height: 90px;
}.imgp2{
  display: block;

}
.imgp1{
  display: none;
}.lunbo img{
  height: auto;
}.about-ul1 li p {
  font-size: 12px;
}.about-ul1 li span {
  font-size: 16px;
}.hangye, .zhuanzhu, .bao, .new, .kefu, .jaogou, .core{
  padding: 5px 15px;
}.hd-con .yao {
  font-size: 13px;
  line-height: 23px;
}.hangs {
  margin: -1px -10px;
}.new1-ul > li .new-hd .fl {
  font-size: 16px;
}.new1-ul > li .new-hd .fr a {
  font-size: 14px;
 
  line-height: 22px;
}.new1-ul > li .tui-n {
   margin-top: 0px; 
}.new1-ul > li{
  padding: 5px 15px;
}
.imgs1 img{
  width: 30px;
  height: 30px;

}.ha {
  padding: 6px 0;
}.zhiwen-tan .zhi-ul li p {

  font-size: 12px;
}.zhiwen-tan .zhi-ul li input {
  border: 1px solid #ebebeb;
  width: 100%;
  line-height: 22px;
  margin-bottom: 0px;
}.zhiwen-tan .modal-body {
  padding: 6px 0;
}.zhiwen-tan .modal-footer button {
 
  line-height: 26px;
  
  padding: 0 36px;
}.zhaop .bai{
  padding: 15px;
}
.ha-ul li:hover{
  -webkit-tap-heighlight-color: transparent;
}

}


.colo-jian .swiper-button-next {
  background-image: url(../img/r.png) !important;
  right: 0;
  background-size: 100% 100%;
  width: 14px;
  height: 26px;
  margin-top: -13px;
}.colo-jian .swiper-button-prev {
  background-image: url(../img/l.png) !important;
  left: 0;
  background-size: 100% 100%;
  width: 14px;
  height: 26px;
  margin-top: -13px;
}


#page{ clear:both; height:40px; margin:0 auto; text-align:center; display: table; margin: 30px auto;}
#page li{ float:left; padding:5px 14px; border:1px solid #CCCCCC; margin-right:6px; color:#666; font-size:12px; list-style:none;}
#page li:hover{border:1px solid #8cca1d;}
#page li:hover a{color: #8cca1d;}
#page li a{ color: #666;display: inline-block;padding: 5px 14px;text-align: center;margin: -5px -14px -5px -14px;}
#page li.active{border:1px solid #8cca1d; background-color: #8cca1d; color:#FFFFFF}
#page li.active a{ color:#fff}
.biaoge .table{
  background: #fff;
}
@media(max-width:480px){
  #page li{padding:5px 5px;
  }#page{
    margin: 10px auto 0 auto;
  }.phone .container>.fl{
    width: 75%;
  }.phone .container>.fl img{
    height: 32px;
  }.ziws{
    margin-top: 20px;
    color: #201b18;
    font-size: 12px;
    padding: 0 8px;
    border-left: 1px solid #dcdcdc;
    line-height: 16px;
    margin-left: 10px;
    font-weight: bold;
  }.culture .cul-top .cul-p1 .ps {
    font-size: 15px;
  }.fazhan .fazhan-ul li {
    padding: 5px 0;
    height: 120px;

  }.fazhan .fazhan-ul li .yuan1{
    top: 43%;
  }
  .lius-d {
    font-size: 13px;
    line-height: 20px;
  }
}
