@charset "utf-8";
/*重置bootstrap*/
* {
  font-family: '微软雅黑';
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:visited,
a:checked {
  text-decoration: none;
}

a {
  -webkit-transition: color .4s ease;
  -moz-transition: color .4s ease;
  -o-transition: color .4s ease;
  transition: color .4s ease;
  color: #000;
}

a:hover {
  color: #ec6616;
}

ul,
ol {
  list-style: none;
}

/*常用css样式*/
.font-bold {
  font-weight: bold;
}

.text-white,
.text-white a {
  color: #fff;
}

.text-black {
  color: #323232;
}

.word-break,.paper-pro-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.padding-zero {
  padding: 0;
}
.margin-top-60{
	margin-top:60px;
}
#pages{
	margin-top:20px;
	clear:both;
	padding:10px 0;
}
#pages a, #pages span {
  border: 1px solid #e5e5e5;
  overflow: hidden;
  padding: 5px 10px;
}

#pages span {
  color: #fff;
  font-weight: bold;
  border: 1px solid #ec6618;
  background-color: #ec6618;
}
/* 导航 */
.navbar-brand {
  padding: 0;
}

#sun .fp-next {
  /* right: 150px; */
  background: url(../../images/right_control.png) 50% no-repeat;
}

#sun .fp-prev {
  /* left: 150px; */
  background: url(../../images/left_control.png) 50% no-repeat;
}

#sun .fp-controlArrow {
  width: 100px;
  height: 100px;
  margin-top: -50px;
  border: 0 none;
}

.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}

.fp-controlArrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -38px;
  cursor: pointer;
  border-style: solid;
}

.menue-nav-lg {
  position: absolute;
  left: -200px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.menue-nav-lg li {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  padding:5px 0;
}
.nav-bg-active .menue-nav-lg{
	left:0;
}
.nav-show {
  animation: run-nav .5s linear alternate forwards;
}

@keyframes run-nav {
  from {
    left: -200px;
  }

  to {
    left: 0;
  }
}

.nav {
  position: fixed;
  left: 30px;
  top: 30px;
  z-index: 9999;
  width: 150px;
}
.nav-bg-active{
	  background-image: url(../../images/nav-bg.png);
      animation: r-bg .5s;
      background-repeat: no-repeat;
      background-size: contain; 
	  background-color:#ec6618;
	  left:0 !important;
	}

	@keyframes r-bg{
from {background-position: -100% -100%}
to {background-position: center left;}
}
.hamburger {
  background-color: #0095aa;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding-top: 5px;
  margin:auto;
}

.hamburger .line {
  width: 30px;
  height: 5px;
  background-color: #ec6616;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-of-type(2) {
  width: 45px;
  animation: run-line 1s linear alternate infinite;
}

@keyframes run-line {
  from {
    width: 0;
  }

  to {
    width: 45px;
  }
}

.hamburger:hover {
  cursor: pointer;
}

/* #hamburger.is-active .line:nth-child(1) {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.is-active {
  background-color: #0095aa;
}

#hamburger.is-active .line:nth-child(3) {
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
} */
#hamburger{
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#hamburger.is-active{
  animation: smallbig 0.6s forwards;
}
.menue-nav-lg li {
  width: 150px;
}
#hamburger.is-active .line:nth-child(1),
#hamburger.is-active .line:nth-child(2),
#hamburger.is-active .line:nth-child(3){
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#hamburger.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}
@keyframes smallbig{
  0%, 100%{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50%{
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}
.menue-nav-lg .hide a {
  display: block;
  padding-left: 15px;
  color: #fff;
  line-height: 2em;
  font-size: 16px;
  word-break:keep-all; 
white-space:nowrap; 
overflow:hidden; 
text-overflow:ellipsis;
}

.menue-nav-lg .hide {
  display: none;
}

.menue-nav-lg .link {
  padding: 0 10px;
  display: block;
  width: 100%;
}

.sub-link {
  /* color: 16px; */
}

.menue-nav-lg .link {
  font-size: 18px;
  line-height: 2em;
  color: #fff;
}

.language {
  padding: 5px 0;
  background-color:#0095ab;
  text-align:center;
  margin-top:10px;
}

.menue-nav-lg a:hover {
  color: #ec6616;
  background-color: #fff;
}
.link-active{
	position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #ec6616;
	-webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.link-active .hide{
	display:block;
	line-height:32px;
}
.link-active .link{
	border-bottom:1px solid #f7f7f7;
}
.link-active i{
	transform:rotate(90deg);
-ms-transform:rotate(90deg); 
-moz-transform:rotate(90deg);
-webkit-transform:rotate(90deg);
-o-transform:rotate(90deg); 
-webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.logo {
  position: absolute;
  right: 20px;
  top: 50px;
  z-index: 9999;
}

.slide2,
.slide3,.slide4,.slide5,.slide6{
	height:100vh !important;
}
.slide2,
.slide3,.slide4,.slide5,.slide6,
.section2,.section3,.section4,.section5 {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.slide2 {
  background-image: url(../../images/banner2.jpg);
}

.slide3 {
  background-image: url(../../images/banner3.jpg);
}
.slide4 {
  background-image: url(../../images/banner4.jpg);
}
.slide5 {
  background-image: url(../../images/banner5.jpg);
}
.slide6 {
  background-image: url(../../images/banner6.jpg);
}
.section2 {
  background-image: url(../../images/section2.jpg);
}
.section3 {
  background-image: url(../../images/section3.jpg);
}
.section4 {
  background-image: url(../../images/section4.jpg);
}
.section5 {
  background-image: url(../../images/section5.jpg);
}
.s2-brand {
  font-size: 56px;
  margin-bottom: 50px;
}
@media(max-width:1367px){
	.s2-brand {
  font-size: 56px;
  margin-bottom: 20px;
}
}
.s2-item {
  width: 20%;
  float: left;
  letter-spacing: .5px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.s2-item:hover a{
	color:#ec6616;
}
.s2-item:hover{
	margin-top:-20px;
}
.s2-item img {
  width: 70px;
}

/* s4 */
.s4-news-right {
  height: 100vh;
  background-image: url(../../images/news-bg.jpg);
  position: absolute;
  right: 0;
  top: 0;
background-position: center;
background-size: cover;
  background-repeat: no-repeat;
}

.s4-news-item {
  font-size: 16px;
  line-height: 2em;
-webkit-transition: all .4s ease; 
-moz-transition: all .4s ease; 
-o-transition: all .4s ease; 
transition: all .4s ease; 
}
.s4-news-item:hover{
	padding-left:15px;
}
.s4-news-item a:hover{
	color:#ec6616 !important;
}
.s4-img {
  height: 150px;
  background-position: center;
  background-size: cover;
}

.s4-news-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.s4-more{
	margin-top:20px;
}


.slide1 video{
	width:100% !important;
}


.footer-b,
.footer-b a {
  color: #000 !important;
  -webkit-transition: color .4s ease;
  -moz-transition: color .4s ease;
  -o-transition: color .4s ease;
  transition: color .4s ease;
}
.hamburger-b{
	backgrounc-color:#0095aa;
}

.text-brand {
  color: #ec6616;
  padding-bottom: 5px;
}

/* s3 */
.s3-more a {
  color: #797979;
  padding-bottom: 10px;
  border-bottom: 1px solid #797979;
}

.s3-more {
  position: absolute;
  right: 15px;
  top: 20px;
}

.s3-item {
  border: 1px solid #ddd;
  height: 450px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media(min-width:768px) {
  .s3-item {
    margin-top: 50px;
  }

  .s3-item:hover {
    height: 500px;
    margin-top: 0;
  }
}

/* .s3-main {
  margin-top: 50px;
} */

.s3-title-t {
  font-size: 24px;
  padding-bottom: 10px;
}

.s3-title-d {
  font-size: 16px;
  color: #797979;
}

.s3-title {
  padding: 15px;
  position: absolute;
  border-top: 1px solid #ddd;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
  bottom: 0;
  left: 0;
}

.s3-bg {
  position: absolute;
  top: -100%;
  left: 0;
  background-color: rgba(22, 142, 157, .7);
  width: 100%;
  height: 100%;
  padding: 50px 15px;
}

.s3-bg-title {
  font-size: 24px;
}

.s3-bg-des {
  font-size: 16px;
  padding: 15px 0;
}

.s3-bg-list {
  line-height: 40px;
  font-size: 16px;
}

.s3-bg-list a {
  width: 60%;
  margin: auto;
  display: block;
  padding-top: 10px;
  border-bottom: 1px solid #fff;
}

.s3-item:hover .s3-bg {
  top: 0;
}

.s3-item:hover .s3-title {
  bottom: -100%;
}

.trans {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.nav-bg {
  z-index: 9999;
  position: fixed;
  width: 200px;
  height: 100%;
  left:-200px;
}


/* about关于我们 */
.bread {
  padding: 30px 0;
  color: #b0b0b0;
  font-size: 16px;
}

.bread a {
  color: #b0b0b0;
}

.bread-nav-item {
  font-size: 16px;
  padding: 15px 0;
  float: left;
  border: 1px solid #ddd;
  border-bottom: none;
  margin-right: -1px;
  position: relative;
  overflow: hidden;
  width: 12.5%;
  -webkit-transition: all .4s ease !important;
  -moz-transition: all .4s ease !important;
  -o-transition: all .4s ease !important;
  transition: all .4s ease !important;
  text-align: center;
}

.bread-nav {
  border-bottom: 1px solid #ddd;
}

.bread-nav-active,
.bread-nav-item:hover {
  background-color: #0095aa;
  padding: 22.5px 0px;
  margin-top: -15px;
}

.bread-nav-active a,
.bread-nav-item a:hover {
  color: #fff;
}

.bread-nav-item a {
  display: block;
  height: 100%;
  width: 100%;
}

.bread-nav a .bread-nav-active {
  color: #fff;
}

.about-intro {
  background-image: url(../../images/about-intro.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.page-about-title {
  font-size: 40px;
  font-weight: lighter;
  padding: 30px 0;
}

.page-about-container {
  background-color: rgba(236, 102, 22, .7);
  padding: 30px 50px;
}

.about-intro-i {
  font-size: 32px;
}

.about-intro-des {
  line-height: 1.75em;
  padding-top: 20px;
}

.about-honor-container {
  position: relative;
  display: table;
  overflow: hidden;
  width: 100%;
  height: 200px;
  padding: 5px;
  text-align: center;
  border: 1px #ddd solid;
  background-color:#fff;
}

.about-honor-container a {
  display: table-cell;
  width: 100%;
  height: 200px;
  vertical-align: middle;
}

.about-honor-container a img {
  max-width: 100%;
  max-height: 200px;
  margin: 0 auto;
}

.about-honor-name {
  border: 1px solid #ddd;
  border-top: none;
  padding: 10px 0;
  background-color:#fff;
}

.about-news-title {
  font-size: 16px;
}

.about-news-time {
  color: #323232;
  line-height: 24px;
}

.about-news-des {
  color: #b2b2b2;
  padding-top: 10px;
}

.about-news-item {
  overflow: hidden;
  margin-bottom: 15px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

/* 发展历程 */

.history {
  background-image: url(../../images/history.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 60px;
  margin-top: 80px;
}

.text-white {
  color: #fff;
}

.auCHistManSwiper-prev,
.auCHistManSwiper-next {
  z-index: 9999;
}

/* .abUs-comHist {
  padding: 50px 0 0;
} */

.abUs-comHist .p-title .t {
  color: #fff;
}

.abUs-comHist .p-title .s {
  background: #e50012;
}

/*大*/

.auCHist-man {
  width: 928px;
  padding: 0 0 246px;
  position: relative;
  margin: 80px auto 0;
}

.auCHist-man .swiper-container {
  padding: 69px 0 0;
}

.auCHist-man .auCHman-box {
  display: block;
  height: 72px;
  text-align: center;
  color: #fff;
  background: url(../../images/auCHist-bg.png) no-repeat center 68px;
  position: relative;
}

.auCHman-box .year {
  line-height: 28px;
  font-size: 16px;
}

.auCHman-box:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -4px;
  bottom: 0px;
}

.auCHman-box:after {
  content: "";
  display: block;
  width: 1px;
  height: 9px;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -1px;
  bottom: 11px;
}

.auCHman-box.cur .year {
  color: #fff;
  width: 77px;
  height: 77px;
  line-height: 77px;
  background: rgba(229, 0, 18, .75);
  border-radius: 100%;
  position: absolute;
  top: -53px;
  left: 50%;
  margin-left: -38.5px;
}

.auCHman-box.cur .year:after {
  content: "";
  display: block;
  width: 109px;
  height: 109px;
  background: rgba(229, 0, 18, .25);
  border-radius: 100%;
  position: absolute;
  top: -16px;
  left: -16px;
  z-index: -1;
}

.auCHman-box.cur:before,
.auCHman-box.cur:after {
  background: #e50012;
}

.auCHman-box.cur:after {
  height: 30px;
  z-index: 2;
}

.auCHistManSwiper-prev,
.auCHistManSwiper-next {
  display: block;
  width: 11px;
  height: 21px;
  position: absolute;
  top: 70px;
}

.auCHistManSwiper-prev {
  left: -58px;
  background: url(../../images/swiper2-l.png) no-repeat center center;
}

.auCHistManSwiper-next {
  right: -58px;
  background: url(../../images/swiper2-r.png) no-repeat center center;
}

.auCHist-man:before,
.auCHist-man:after {
  content: "";
  display: block;
  width: 26px;
  height: 24px;
  background: url(../../images/auCHist-orn1.png) no-repeat center center;
  position: absolute;
  top: 125px;
}

.auCHist-man:before {
  left: -103px;
}

.auCHist-man:after {
  right: -103px;
}

.auCHist-man .orn1,
.auCHist-man .orn2 {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, .3);
  position: absolute;
  top: 137px;
}

/*小*/

.auCHist-min {
  width: 1000px;
  position: relative;
  margin: -151px auto 0;
  z-index: 2;
}

#history .swiper-wrapper {
  padding-bottom: 0;
}


.auCHist-min .swiper-container .swiper-slide {
  padding: 0 10px;
}

.auCHmin-box {
  display: block;
  padding: 0 6.851851851851852% 0 53%;
  background: #fff url(../../images/auCHistMin-bg.jpg) no-repeat center center / cover;
  box-shadow: 0 4px 20px rgba(162, 162, 162, .24);
  position: relative;
}

.auCHmin-box .auCHmin-img {
  display: block;
  width: 50%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
}

.auCHmin-box .auCHmin-block {
  padding: 61px 0 51px;
  min-height: 284px;
}

.auCHmin-block li {
  padding: 0 0 0 37px;
  line-height: 29px;
  color: #666666;
  position: relative;
  margin: 9px 0 0;
}

.auCHmin-block li:first-child {
  margin: 0px;
}

.auCHmin-block li:before {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background: #afafaf;
  position: absolute;
  left: 0px;
  top: 14px;
}

@media all and (max-width:1100px) {

  /*1024 * 768 */
  .auChonor-swiper .swiper-pagination {
    margin: .8rem 0 0;
  }

  .abUs-comHist {
    padding: .5rem 0;
    background-size: cover;
  }

  .auCHist-man {
    width: 100%;
    padding: 0px;
    margin: 1rem 0 0;
  }

  .auCHman-box.cur .year {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    margin-left: -25px;
    top: -33px;
  }

  .auCHman-box.cur .year:after {
    width: 70px;
    height: 70px;
    top: -10px;
    left: -10px;
  }

  .auCHist-min {
    margin: 1.2rem 0 0;
  }

  .auCHist-min .swiper-container {
    padding: 0px 0 1rem;
  }
}

@media all and (max-width:1100px) {

  /*1024 * 768 */
  .Hnav .Hname {
    font-size: 14px;
  }

  .Hnav>li {
    margin: 0 0 0 .3rem;
  }

  .auCHistManSwiper-prev {
    left: 0px;
  }

  .auCHistManSwiper-next {
    right: 0px;
  }

  .auCHist-min {
    width: 100%;
    padding: 0 4%;
  }
}

.speed {
  font-size: 16px;
  line-height: 32px;
}

.tishi {
  padding: 50px;
  background-image: url(../../images/tishi.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 30px;
  font-size: 16px;
  position: relative;
}

.tishi-title {
  font-size: 24px;
}

.footer-nav-btn {
  position: absolute;
  background-color: #ec6616;
  padding: 10px 30px;
  bottom: -21px;
  left: 50%;
  margin-left: -67px;
  cursor: pointer;
}

.footer-nav-btn:hover,
.footer-nav-close:hover {
  background-color: #098c94;
}

.footer-nav-title {
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.footer-nav-list {
  padding: 10px 0;
}

.footer-nav-list a {
  color: #9d9d9d;
  display: block;
  border-right: 1px solid #ddd;
  padding: 0 15px;
}
.footer-nav-list:last-child a{
	border-right:none;
}
.footer-nav-c {
  overflow: hidden;
}

.footer-nav-close {
  background-color: #ec6616;
  padding: 10px 30px;
  width: 134px;
  margin: auto;
  cursor: pointer;
  margin-top: -20px;
}

.footer-nav {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  background-color: #fff;
  z-index: 999;
}

.footer-nav-active {
  bottom: 0 !important;
}

#abs {
  position: relative;
}

.all-footer {
  line-height: 24px;
  padding-top: 20px;
  color: #434343;
}

.all-footer a {
  color: #434343;
}

.chanye-info {
  padding: 20px 0;
  font-size: 16px;
  line-height: 1.75em;
  letter-spacing: .5px;
}

.chanye-item {
  height: 500px;
  position: relative;
  padding: 50px;
  background-color: #f7f7f7;
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.chanye-title {
  font-size: 32px;
  z-index: 999;
  padding-top: 20px;
}

.chanye-bgcolor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chanye-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 8px;
  background-color:#0095ab;
}

.chanye-btn {
  margin-top: 30px;
}

.chanye-btn a {
  color: #ff0;
}

#chanye .chanye-item:nth-of-type(2) .chanye-icon,
#chanye .chanye-item:nth-of-type(3) .chanye-icon {
  border-color: #ec6616;
}

#chanye .chanye-item:nth-of-type(2) a,
#chanye .chanye-item:nth-of-type(3) a,
#chanye .chanye-item:nth-of-type(6) a,
#chanye .chanye-item:nth-of-type(7) a{
  color: #ec6616;
}

#chanye .chanye-item:nth-of-type(1),#chanye .chanye-item:nth-of-type(4),#chanye .chanye-item:nth-of-type(5),#chanye .chanye-item:nth-of-type(8) {
  color: #fff;
}

.chanye-item:hover .chanye-icon {
  background-color: #0095aa;
}

.paper-container {
  background-image: url(../../images/paper.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  margin-top: 30px;
}

.paper-nav-item {
  float: left;
  padding: 10px 30px;
  font-size: 16px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, .8);
  background-image: url(../../images/paper-btn.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 7px 0;
  width: 18%;
  margin-right: 2%;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.paper-nav-item i {
  color: #ec6616;
  padding-right: 10px;
}

.paper-nav-active,
.paper-nav-item:hover {
  background-color: rgba(236, 102, 22, .6);
  background-image: url(../../images/paper-btn2.png);
}

.paper-nav-active a {
  color: #fff;
}

.paper-nav-item:hover a,
.paper-nav-item:hover i {
  color: #fff;
}

.paper-pro-img {
  position: relative;
  display: table;
  overflow: hidden;
  width: 100%;
  height: 200px;
  padding: 5px;
  text-align: center;
  border: 1px #ddd solid;
}

.paper-pro-img a {
  display: table-cell;
  width: 100%;
  height: 200px;
  vertical-align: middle;
}

.paper-pro-img a img {
  max-width: 100%;
  max-height: 200px;
  margin: 0 auto;
}

.paper-pro-title {
  border: 1px solid #ddd;
  border-top: none;
  font-size: 16px;
  padding: 10px 15px;
}

.paper-pro-item {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.paper-pro-item img {
  transition: all 0.6s;
}

.paper-pro-item:hover img {
  transform: scale(1.1);
}

.paper-pro-bg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(236, 102, 22, .7);
  padding: 20px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.pro-bg-title {
  font-size: 24px;
}

.pro-bg-des {
  padding-top: 20px;
  line-height: 1.75em;
}

.paper-pro-item:hover .paper-pro-bg {
  top: 0;
}

/* .投资者关系 */
.gudong-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
}

.gudong-title {
  font-size: 18px;
  padding: 10px 0;
}

.gudong-zhiwu {
  color: #8d8d8d;
}

.invest-list {
  padding: 5px 0;
}

.invest-list a {
  color: #323232;
}

.padding-left-zero {
  padding-left: 0;
}

.tishi-title span {
  font-size: 16px;
  font-weight: 400;
}

.gp-nav .col-xs-4 {
  padding-top: 10px;
}

#history {
  margin-top: 0;
}

/* 销售团队 */
.sale-team-name {
  font-size: 16px;
}

.sale-team-zhiwu {
  color: #666;
  padding-top: 5px;
}

.sale-team-tel {
  margin: 5px 0;
}

.sale-team-item {
  overflow: hidden;
  border: 1px solid #ddd;
  padding: 20px 15px;
  font-size: 16px;
  background-color:#f7f7f7;
}

.sale-team-list {
  margin-top: 30px;
  -webkit-transition: all .4s ease !important;
  -moz-transition: all .4s ease !important;
  -o-transition: all .4s ease !important;
  transition: all .4s ease !important;
}
.sale-team-list a{
  color:#ec6616;
}
.sale-team-list:hover a{
  color:#0095ab;
}
.sale-team-item:hover{
	border-color:#0095ab;
}
.sale-team-item {
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: all .4s ease !important;
  -moz-transition: all .4s ease !important;
  -o-transition: all .4s ease !important;
  transition: all .4s ease !important;
}
.sale-team-map{
	/* height:380px; */
	overflow:hidden;
}
/* 新闻news */
.cat-news {
  background: url(../../images/news-top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.cat-news-item {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.list-paper-item{
	width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  border:1px solid #ddd;
}
.cat-news-info {
  background-color: #fff;
  padding: 15px;
}

.cat-news-title {
  font-size: 18px;
}

.cat-news-brand {
  font-size: 32px;
}

.cat-news-d {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 50px;
}

.cat-news-time {
  padding: 5px 0;
}

.cat-news-title a,
.cat-news-time {
  color: #5a5a5a;
}

.cat-news-title a:hover {
  color: #ec6616;
}

.cat-news-des {
  color: #868686;
  height:60px;
  overflow:hidden;
}

.cat-xw-three {
  width: 30%;
  float: left;
  padding: 0 15px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.cat-xw-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 15px;
  height: 500px;
  position: relative;
}

#cat-news .cat-xw-three:nth-of-type(1) .cat-xw-bg {
  background-image: url(../../images/news-bg1.jpg);
}

#cat-news .cat-xw-three:nth-of-type(2) .cat-xw-bg {
  background-image: url(../../images/news-bg2.jpg);
}

#cat-news .cat-xw-three:nth-of-type(3) .cat-xw-bg {
  background-image: url(../../images/news-bg3.jpg);
}

.cat-xw-time {
  font-size: 18px;
}

.cat-xw-title {
  font-size: 24px;
  margin: 10px 0;
}

.cat-xw-des {
  font-size: 16px;
  line-height: 2em;
}

.cat-xw-btn {
  font-size: 16px;
  padding: 5px 25px;
  position: absolute;
  bottom: 20px;
  border: 1px solid white;
}

.cat-xw-btn:hover {
  background: white;
}

.cat-xw-btn:hover a {
  color: #ec6616;
}
.cat-xw-fouth{
  width:40%;
}
.cat-paper-item {
  width: 100%;
  height: 150px;
  
}

.cat-paper-info {
  background-color: #fff;
  padding: 15px 0;
}

.cat-paper-title {
  font-size: 18px;
}
.cat-paper-des{
  padding-top: 5px;
}
.cat-list-item{
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border:1px solid #ddd;
}
.list-news-item{
  margin-bottom: 30px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease !important;
}
.list-news-item:hover{
	margin-top:-10px;
  margin-bottom: 40px;
}

.show-news-info{
	font-size:16px;
	line-height:2em;
}
.tzzMenu tr td{
padding:10px;
border:1px solid #ddd;
}

.news-info{
	overflow:hidden;
	border-bottom:1px solid #f7f7f7;
	padding-bottom:10px;
	color:#555;
}
.next{
	font-size:16px;
	padding:10px 0;
	background-color:#f7f7f7;
	margin-top:15px;
}
/* 招聘 */
.cat-job-des{
  font-size: 16px;
  color:#5a5a5a;
  line-height: 2em;
  padding: 50px 0;
}
.jian{
	display:none;
}
.list-n{
	font-size:16px;
	overflow:hidden;
	padding:10px 0;
	border-bottom:1px solid #f5f5f5;
}
/* 文化阳光culture */
.culture-intro-des{
  font-size:16px;
  line-height: 2em;
  color:#484848;
}
.culture-list-time{
  font-size:12px;
  padding-top: 5px;
}
.culture-list{
  overflow:hidden;
  padding: 10px 0;
  margin-bottom:10px;
  border-bottom: 1px dashed #ddd;
}
.culture-three{
  padding:20px 0;
  background-color: #f7f7f7;
  margin: 50px 0;
}
.culture-three .col-sm-4{
  border-right: 1px solid #ddd;
}
.culture-three .col-sm-4:last-child{
  border-right:none;
}
.cul-img{
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cul-img-title{
  font-size:16px;
}
.cul-news-des{
  margin-top: 5px;
}
.culture-img-list{
  overflow: hidden;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
}
/* 董事高层 */
.dir-img{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.dir-item{
  margin-top: 30px;
}
.dir-title{
  font-size:16px;
  padding: 10px 0;
}
.dir-des{
  color:#494949;
}
/* 招股书 */
.read-item{
  padding:10px 0;
  font-size: 16px;
}
/* 财报 */

.fin-item {
  position: relative;
  display: table;
  overflow: hidden;
  width: 100%;
  height: 200px;
  padding: 5px;
  text-align: center;
  border: 1px #ddd solid;
}

.fin-item a {
  display: table-cell;
  width: 100%;
  height: 200px;
  vertical-align: middle;
}

.fin-item a img {
  max-width: 100%;
  max-height: 200px;
  margin: 0 auto;
}
.fin-title{
  border: 1px solid #ddd;
  border-top: none;
  padding: 10px 0;
}
.fin-list{
  margin-top: 30px;
}
.pdf-list,.list-n{
  padding:10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #ddd;
  overflow: hidden;
}
.pdf-list{
	font-size:16px;
}
.pdf-list i{
	font-size:2em;
}
.margin-top-60{
  margin-top: 60px;
}

.page-about{
	font-size:16px;
	line-height:2em;
	letter-spacing: .5px;
}
.page-about img{
	display:block;
	margin:auto;
}
.show-news-title{
	margin-bottom:30px;
}
.sale-team-network{
	height:300px;
	overflow:hidden;
}
.sale-network-item{
	background-repeat: no-repeat;
  background-position: bottom right;
  /* background-size: contain; */
  border:1px solid #ddd;
  background-color:#f7f7f7;
  padding:15px;
  border-radius:8px;
  min-height:335px;
}
.sale-network-name{
	font-size:24px;
}
#job-container{
	font-size:16px;
	line-height:2em;
	padding-top:30px;
}
.footer-nav{
	background-color:#fcfcfc;
	border-top:2px solid #ec6616;
}
.cat-paper-info{
	background-color:#fcfcfc;
	padding:10px;
	border:1px solid #ddd;
	overflow: hidden;
}
.home-code{
	max-width:120px;
	float:left;
}
/* 招聘 */
.border-none{
  border: none;
}
.job-brand{
  background-color: #0095aa;
  padding: 15px 0;
  overflow: hidden;
  font-size:16px;
}
.job-list{
  overflow:hidden;
  cursor: pointer;
  padding: 15px 0;
  border-bottom: 1px dotted #ddd;
  color:#717171;
}
.job-info{
  padding:15px 0;
  background-color: #f7f7f7;
  overflow: hidden;
  display: none;
}
.show-job{
  font-size:18px;
}
.show-job-info,.show-job-content{
  font-size:16px;
  line-height: 2em;
  overflow: hidden;
}
.show-job-info{
  background-color: #f7f7f7;
  padding: 15px 0;
}
.show-job-content{
  border-top: 1px dashed #f7f7f7;
  padding-top: 15px;
  margin-top: 15px;
}
/* 资质荣誉 */
#rongyu{
  position: relative;
  padding: 15px;
}
#rongyu .swiper-slide{
  padding: 20px 0;
}
.ry-line{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ec6616;
}
#rongyu .swiper-button-prev{
  left:0 !important;
}
#rongyu .swiper-button-prev,#rongyu .swiper-button-next{
  width: 30px !important;
  height: 20px !important;
  margin-top: -10px !important;
}
#rongyu .swiper-button-next{
  right:0 !important;
}
#rongyu .swiper-slide:nth-of-type(even){
  margin-top: 205px;
}
#rongyu .swiper-slide:nth-of-type(odd){
  margin-top: 10px;
}
.slide-num{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #ddd;
  line-height: 80px;
  margin-bottom: 20px;
  font-size:24px;
}
#rongyu .swiper-slide{
  border-left: 1px solid #ddd;
  padding-left: 20px;
  position: relative;
}
.sw-slide-c{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: #fff;
  position: absolute;
  left: 0;
  margin-left: -8px;
  margin-top: -8px;
}
#rongyu .swiper-slide:nth-of-type(even) .sw-slide-c{
  top: 0;
}
#rongyu .swiper-slide:nth-of-type(odd) .sw-slide-c{
  bottom: 0;
}
.sw-title{
  font-size:16px;
  line-height: 2em;
  height: 64px;
  overflow: hidden;
}
#copyright{
	padding:20px 0;
	line-height:2em;
	background-image: url(../../images/copyright.jpg);
      background-repeat: no-repeat;
      background-size: cover; 
}
#code img{
	max-width:120px;
}

/* 媒体新闻 */
.media-time{
  background-color:#ddd;
  padding:20px 0;
}
.media-time-year{
  font-size: 24px;
}
.media-list{
  overflow: hidden;
  margin-bottom: 30px;
  padding-top:15px;
}
.media-list:hover .media-time{
	background-color:#ec6616;
	color:#fff;
}
.media-list:hover{
	background-color:#f7f7f7;
}
/* 时间轴 */
.honor-list{
  font-size: 16px;
  overflow:hidden;
}
.honor-line{
  position: relative;
  height: 100px;
}
.honor-time{
  font-size: 18px;
}
.honor-line-y{
  position: absolute;
  width: 1px;
  height: 100px;
  left: 50%;
  background-color: #ec6616;
}
.time-icon{
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  /* background-color: #0095aa; */
  /* padding: 4px; */
  border: 4px double #0095aa;
  background-color: #fff;
}
.honor-img img{
	max-width:100px;
}
.honor-con img{
	display:none;
}
.honor-con{
	overflow: hidden;
  height:66px;
}
.honor-des{
	font-size:14px;
	color:#9b9b9b;
	padding-top:10px;
}
#scrollUp{
	position: fixed;
    right: 0;
    bottom: 20px;
    font-size: 32px;
	text-align:center;
	padding:10px 15px;
	background-color:#ec6616;
	color:#fff;
}
.animateNum{
	color:#ec6616;
	font-size:24px;
}
.page-bg{
	padding:20px;
	background-color:#f7f7f7;
}

iframe{
	width:100%;
	height:600px;
	border:none;
}
.zz{
  width:auto !important;
  margin-top: 10px;
  overflow: hidden;
}
.home-wechat{
    z-index: 9;
	/* width:120px; */
	cursor: pointer;
	float:right;
}
.home-wei{
	position: relative;
	
}
.home-wx{
	width:120px;
	position: absolute;
	top:-150px;
	display:none;
	left:50%;
	margin-left:-60px;
}
.home-wechat:hover .home-wx{
	display:block;
}
.home-copyright{
	position: absolute;
    bottom: 0;
    left: 0;
	z-index:999;
	width:100%;
}
.anm-num{
	font-size:32px;
	font-weight:bold;
}
.num-bg{
	padding:20px;
}
.num-bg-c{
	background-color:#fff;
	-webkit-box-shadow: 1px 0 20px #ccc;
    box-shadow: 1px 0 20px #ccc;
	overflow:hidden;
	border-radius:12px;
	padding:50px 15px 40px 15px;
	margin-bottom:30px;
}
#home-copy{
	padding-top:50px;
}
.s2-item-brand{
	font-size:28px;
	padding:30px 0;
	font-weight: lighter;
	cursor: pointer;
}
.s2-ic-1,.s2-ic-2,.s2-ic-3{
	padding:30px 0;
}
.s2-ic-3 .s2-item{
	width:25%;
}
.s2-ic{
	overflow:hidden;
	display:none;
}
#down{
	position: fixed;
	bottom:20px;
	right:20px;
	z-index: 999;
	width:40px;
	height:40px;
	border-radius:50%;	
	cursor: pointer;
}
#down:hover{
	background-color:#ec6616;
}
#home-copy #copyright{
	position: absolute;
    width: 100%;
    bottom: 0;
	padding:0;
}
.active .s3-main .col-sm-3:nth-child(1){
  animation: run-t .5s linear alternate forwards;
}
.active .s3-main .col-sm-3:nth-child(2){
  animation: run-t .8s linear alternate forwards;
}
.active .s3-main .col-sm-3:nth-child(3){
  animation: run-t 1s linear alternate forwards;
}
.active .s3-main .col-sm-3:nth-child(4){
  animation: run-t 1.2s linear alternate forwards;
}
@keyframes run-t {
  from {
    top: 200px;
  }
  to {
    top: 0;
  }
}
.active .s2-brand{
  animation: run-tp 1s linear alternate forwards;
}
@keyframes run-tp {
  from {
    padding-top: 200px;
  }
  to {
    padding-top: 0;
  }
}
.s1-bottom{
	position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 9;
}
.s2-pking{
	background-image:url(../../images/s2-pk.jpg);
}
.show-chanye{
	font-size:16px;
	line-height:2em;
	overflow:hidden;
}
.text-brand2{
	color:#0095aa;
}
table .active{
	background-color:#5b9bd5 !important;
	color:#fff;
}
table .active td{
	background-color:#5b9bd5 !important;
	color:#fff;
}
.cul-title{
	font-size:18px;
	padding:10px 0;
}
.cul-arr{
	margin-top:5px;
	padding-bottom:10px;
}
.cul-item{
	margin-bottom:30px;
}
.cul-info{
	padding:0 10px;
	background-color:#f7f7f7;
}
.cul-item:hover .cul-arr{
	padding-left:15px;
}
.cul-item:hover{
	margin-top:-15px;
	margin-bottom:45px;
}
.cul-item img,.cul-item,.cul-arr{
	-webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.cul-item:hover img {
  transform: scale(1.1);
}
.cult-img{
	overflow:hidden;
	height:150px;
}
.show-chanye-img{
	padding:100px 0;
	background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom:30px;
}
.show-chanye-des{
	background-color:rgba(255,255,255,.8);
	padding:30px;
	line-height:2em;
	font-size:16px;
}
.dir-des{
	font-size:14px;
	height:60px;
	overflow:hidden;
}
.tranedg i{
	transform:rotate(90deg);
-ms-transform:rotate(90deg); /* Internet Explorer */
-moz-transform:rotate(90deg); /* Firefox */
-webkit-transform:rotate(90deg); /* Safari 和 Chrome */
-o-transform:rotate(90deg);
-webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.honor-img img{
	max-height:60px;
	display:block;
	margin:auto;
}

.cat-cy-item .chanye-item:nth-of-type(1),
.cat-cy-item .chanye-item:nth-of-type(4),
.cat-cy-item .chanye-item:nth-of-type(5)  {
  color: #fff;
}

@media(max-width:768px){
	.logo img{
		max-height:50px;
	}
	.logo{
		top:0;
		right:0;
	}
	.s2-item{
		width:25%;
		margin-bottom:15px;
	}
	
	.s3-item{
		margin-bottom:30px;
	}
	.footer{
		position: static !important;
		color:#000 !important;
		padding:0 15px;
		margin-top:50px;
		text-align:center;
	}
	.footer a{
		color:#000 !important;
	}
	.padding-xs{
		padding:0;
	}
	.copyright a{
		display:block;
	}
	.nav-bg{
		left:-200px;
	}
	.nav-bg-active{
	  left:0;
	  background-color:#ec6618;
	}
	.footer-nav-btn,.footer-nav {
		display:none;
	}
	.paper-nav-item{
		width:46%;
		margin:0 2% 20px 2%;
	}
	.show-news-info,.news-info{
		padding-left:15px;		
		padding-right:15px;

	}
	.tishi{
		display:none;
	}
	.nav-bg{
		display:none;
	}
	.logo-xs{
		max-height:60px;
	}
	.link::after {
    content: '';
	}
	.bread-nav-item{
		width:33.33333%;
		word-break:keep-all; 
		white-space:nowrap; 
		overflow:hidden; 
		text-overflow:ellipsis;
		border-bottom:1px solid #ddd;
	}
	.bread-nav{
		border:none;
	}
	.copyright{
		padding-top:20px;
		border-top:1px solid #ddd;
		text-align:center;
	}
	body{
		padding-top:60px;
	}
	.bread{
		padding:20px 0;
	}
	.bread-nav-active, .bread-nav-item:hover{
		padding:15px 0;
		margin-top:0;
	}
	.menue-nav li:nth-of-type(11) a.sub-link{
		width:50%;
		padding:10px !important;
		float:left;
		word-break:keep-all; 
		white-space:nowrap; 
		overflow:hidden; 
		text-overflow:ellipsis;
	}
	.menue-header-m .menue-nav li .hide .sub-link .text{
		word-break:keep-all; 
		white-space:nowrap; 
		overflow:hidden; 
		text-overflow:ellipsis;
	}
	.list-n .col-xs-8{
		padding:0;
	}
	.list-n .col-xs-4{
		padding:0;
		font-size:12px;
	}
	.paper-pro-img,.paper-pro-img a{
		height:120px
	}
	.margin-top-60{
		margin-top:30px;
	}
	.container{
		padding:0 20px;
	}
	.slide1{
		background-image:url(../../images/m1.jpg)
	}
	.slide2{
		background-image:url(../../images/m2.jpg)
	}
	.slide3{
		background-image:url(../../images/m3.jpg)
	}
	.slide4{
		background-image:url(../../images/m4.jpg)
	}
	.slide5{
		background-image:url(../../images/m5.jpg)
	}
	.slide5{
		background-image:url(../../images/m6.jpg)
	}
	#copyright{
		background-size: contain;
		background-position: bottom;
	}
	.s4-img{
		height:200px;
	}
	.about-honor-container{
		height:120px;
	}
	.s2-item-brand{
		font-size:18px
	}
	#down{
		display:none;
	}
	#home-copy #copyright {
    position: static;
}
.zz,#ewm{
	display:none;
}
#copyright{
	background:none;
}
.cat-xw-fouth {
    width: 100%;
	margin-bottom:30px;
}
.cat-xw-bg{
	height:350px;
}
}
.cat-paper-item{
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.border-right{
  border-right: 1px solid #ddd;
}
.search-list{
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #ddd;
}
.search-form{
  width: 100%;
}
.search-form .form-control{
  width: 50% !important;
  float: left;
}
.search-form .btn{
  width: 20% !important;
  border: 4px;
}
a.ac{
  color: #ec6616;
}
.border-right ul{
  line-height: 24px;
}
#copyright #q{
  height: 35px;
}
#copyright .btn{
  margin-top: -3px;
}
#f-search{
  padding-left: 15px;
  padding-top: 6px;
}
.hr-brand{
  background-color: #ec6616;
  color:#fff;
  font-size: 18px;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.hr-brand-info{
  font-size: 14px;
  line-height: 1.5em;
  color: #333;
}
.hr-brand-info img{
  display: none;
}
#hr-more{
  cursor: pointer;
}
.dy-item{
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.dy-title{
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  color: #ec6616;
}
.dy-info{
  font-size: 14px;
  line-height: 1.75em;
  padding-top: 8px;
  min-height: 120px;
}
@media(max-width:768px){
  .auCHmin-box .auCHmin-img{
      height: auto !important;
  }
  .auCHmin-box .auCHmin-block {
    padding: 10px;
    min-height: 150px;
  }
  .honor-con{
    padding: 0;
    height: auto;
  }
  .honor-time{
    padding: 0px;
  }
  .honor-list{
    margin-bottom: 15px;
  }
}
.item-2472 .bread-nav-item{
	width:11.11111%;
}
.ry-active{
	color:#ec6618;
	/* font-weight:bold; */
	border-bottom:1px solid #ec6618;
}
.ry-container{
	overflow:hidden;
	font-size:16px;
}
/* .ry-container a{
	padding:8px 0;
} */
.honor-zong,.honor-keji,.honor-chuang{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 32px;
  color: #fff;
  height: 300px;
  line-height: 300px;
}
.honor-zong{
  background-color:#ed6615;
  background-image:url(../../images/h1.jpg);
}
.honor-keji{
  background-color:#0095ab;
  background-image:url(../../images/h2.jpg);
}
.honor-chuang{
 background-color:#ed6615;
 background-image:url(../../images/h3.jpg);
}
@media(max-width:768px){
	.honor-zong,.honor-keji,.honor-chuang{
		height:40px;
		line-height:40px;
	}
}
.honor-item{
  overflow: hidden;
  border: 1px solid #ddd;
  padding: 15px;
}
.zonghe{
  height: 330px;
  overflow: hidden !important;
  font-size:16px;
	line-height:2em;
}
.h-line{
  border-bottom: 1px dashed #ddd;
  clear: both;
  padding-top: 15px;
  margin-bottom: 15px;
}
.honor1{
  border-top: 2px solid #98dffb;
}
.honor2{
  border-top: 2px solid #d93a1d;
}
.honor3{
  border-top: 2px solid #6ed6fd;
}
.project-container {
  position: relative;
  display: table;
  overflow: hidden;
  width: 100%;
  height: 200px;
  padding: 5px;
  text-align: center;
  border: 1px #ddd solid;
}

.project-container a {
  display: table-cell;
  width: 100%;
  height: 200px;
  vertical-align: middle;
}

.project-container a img {
  max-width: 100%;
  max-height: 200px;
  margin: 0 auto;
}
.project-name{
  border: 1px solid #ddd;
  border-top: none;
  line-height: 40px;
  margin-bottom: 30px;
}
.s2-ic-2 .s2-item{
	width:16.666666%;
}
.cul-des{
	height:40px;
	overflow:hidden;
}
@media(max-width:768px){
	.slide2, .slide3, .slide4, .slide5{
		background-size: contain;
	}
	.fp-slides{
		background-color:#f37000;
	}
}