.bg-color {
  background: #fff;
}
.nav-bar{
  position:fixed;
  top:0;
  left:0;
  width: 100%;
  z-index: 10000;
  overflow-x:hidden;
  transition: 350ms 0s all ease;
}
.nav-bar .warpper{
  display:flex;
  justify-content: space-between;
  align-items:center;
}
.nav-bar .logo{
  height: 55px;
  max-width:900px;
  overflow: hidden;
}
.nav-bar .logo img {
  vertical-align: middle;
  max-width:100%;
  max-height:100%;
}
.logo .logo_w{
  display: inline-block;
}
.logo .logo_b{
  display:none;
}

.nav-bar ul {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-bar ul li {
  position:relative;
  overflow:hidden;
  margin:0 20px;
}
.nav-bar ul li a {
  position: relative;
  display: block;
  font-size:2rem;
  color: #fff;
  font-weight: bold;
  line-height: 100px;
  overflow:hidden;
}
.nav-bar li:before{
  content:"";
  width:100%;
  height:4px;
  background:#cf1a1a;
  position:absolute;
  left:0;
  bottom:0;
  transform-origin:100%;
  -webkit-transform-origin:100%;
  -webkit-transition:-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transition:-webkit-transform .32s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1);
  transition:transform .6s cubic-bezier(.4,0,.2,1),-webkit-transform .6s cubic-bezier(.4,0,.2,1);
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  visibility:hidden\9;
}
.nav-bar li:hover:before,.nav-bar li.active:before{
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform-origin: 0;
  -webkit-transform-origin: 0;
  visibility: visible \9;
}

.head_right{
  display:flex;
  justify-content: flex-end;
  align-items: center;
}
.search{
  border-radius: 50%;
  background:#cf1a1a;
  width: 42px;
  height: 42px;
  display:flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 300ms 0s all ease;
}
.lang{
  background:#cf1a1a;
  line-height: 42px;
  border-radius: 22px;
  display:flex;
  justify-content: center;
  align-items: center;
  cursor:pointer;
  transition: 300ms 0s all ease;
  width: 100px;
  margin-left: 12px;
}
.search:hover,
.lang:hover{
  background:#ed2e2e;
}
.lang span{
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  margin-left: 4px;
}

.searchshow{
  display:none;
}
.close_seach{
  cursor: pointer;
  width: 42px;
  height: 42px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.close_seach .close_css{
  fill:#ffffff;
}
.searchshow>div{
  display:flex;
  justify-content: flex-end;
  align-items: center;
  border: 1px solid #cf1a1a;
}
.searchshow form{
  display:flex;
  align-items: center;
  justify-content: flex-end;
}
.searchshow form input[type=submit]{
  background:#cf1a1a url("../images/search.png") no-repeat center;
  width: 42px;
  height: 42px;
}
.searchshow form input[type=text]{
  box-sizing: border-box;
  line-height: 42px;
  width: 150px;
  color: #fff;
  padding:0 15px;
  font-size: 1.5rem;
  background: none;
}
.searchshow form input[type=text]::placeholder{
  font-size: 1.5rem;
  color: #ddd;
}

.headfix{
  background:#fff;
}
.headfix .logo .logo_w{
  display:none;
}
.headfix .logo .logo_b{
  display: inline-block;
}
.headfix ul li a{
  color: #2f2f2f;
}
.headfix .searchshow form input[type=text] {
  color: #2f2f2f;
}
.headfix .close_seach .close_css{
  fill:#cf1a1a;
}





.banner {
  position: relative;
  height: 49vw;
}
.banner #bannerSwiper {
  height: 100%;
}
.banner .swiper-slide{
  background-repeat: no-repeat;
  background-position:center;
  background-size:cover;
}
.banner .swiper-slide a{
  display:flex;
  justify-content: center;
  align-items: center;
  height:calc(100% - 200px);
  margin:0 auto;
  margin-top: 100px;
}
.banner .swiper-slide a img{
  max-width: 100%;
  max-height:75%
}
.banner_btn{
  position:absolute;
  z-index: 1000;
  display:flex;
  justify-content: center;
  align-items: center;
  left:50%;
  transform: translateX(-50%);
  bottom:1.5vw;
}

.banner_btn .swiper-button-prev,
.banner_btn .swiper-button-next{
  margin-top: 0;
  position:relative;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  left:0;
  right:inherit;
}
.banner_btn .swiper-button-prev{
  background:url("../images/jt_l.png") no-repeat left center;
  padding-left:30px;
}
.banner_btn .swiper-button-next{
  background:url("../images/jt_r.png") no-repeat right center;
  padding-right:30px;
}
#bannerpagination{
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  font-size: 3rem;
  text-align: center;
  margin: 0 35px;
}
#bannerpagination span.swiper-pagination-current{
  font-size: 4rem;
  color: #fff;
}
.banner .swiper-button-next:after, .banner .swiper-button-prev:after{
  display:none;
}


#main {
  overflow: hidden;
}

/*title*/
.title{
  text-align: center;
  padding-top: 3vw;
  padding-bottom: 2vw;
}
.title h2{
  font-size: 2rem;
  color: #cf1a1a;
  text-transform: uppercase;
  font-weight: bold;
}
.title h3{
  font-weight: bold;
  line-height: 3.4rem;
  font-size: 3.4rem;
  color: #2f2f2f;
  text-transform: uppercase;
}
.title small{
  font-size: 1.6rem;
  color: #5f5f5f;
  display:block;
  text-align: center;
}

.img_jz,.img_cover{
  display:block;
  position:relative;
  overflow:hidden;
}
.img_jz img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.img_cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 首页产品 */
.product-main{
  padding-bottom: 3vw;
}
.product-main ul{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-main ul li{
  margin-bottom: 1vw;
  width: 32%;
}
.product-main ul li a{
  display:block;
  border:20px solid #f5f5f5;
  background:#fff;
  transition: 350ms 0s all ease;
}
.product-main ul li:hover a{
  border:20px solid #cf1a1a;
}
.product-main ul li a>b{
  display:block;
  width: 100%;
  height: 14vw;
}
.product-main ul li p{
  text-align: center;
  font-size: 1.4rem;
  line-height: 4rem;
  color: #2f2f2f;
  display:block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
  padding:0 10px;
  box-sizing: border-box;
}


/*公司简介*/
.company-main{
  background:url("../images/aboutbg.jpg") no-repeat center/cover;
}
.title_white h3,
.title_white small{
  color: #fff;
}
.company-main .warpper{
  background:#fff;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.company-left{
  width: 50%;
  box-sizing: border-box;
  padding-left:3vw;
  padding-right: 3vw;
}
.company-left>h3{
  font-weight: bold;
  font-size: 2.8rem;
  color: #323232;
  text-transform: uppercase;
}
.com-content{
  font-size: 1.6rem;
  line-height: 26px;
  color: #323232;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.btn_style{
  display:block;
  width: 134px;
  height: 42px;
  line-height: 42px;
  background:#cf1a1a;
  border-radius: 21px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 2vw;
  overflow: hidden;
  color: #fff;
  font-size: 1.6rem;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;

}
.btn_style::before,
.btn_style::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn_style::before {
  background: #ed2e2e;
}
.btn_style::after {
  background: #b61212;
}
.btn_style:hover {
  color: #fff;
}
.btn_style:hover::before,
.btn_style:hover::after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btn_style:hover::after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}





.companyul{
  display:flex;
}
.companyul li{
  width: 25%;
}
.companyul li h3{
  font-size: 4rem;
  color: #cf1a1a;
  font-weight: bold;
}
.companyul li h5{
  font-size: 1.6rem;
  font-weight: bold;
  color: #323232;
  text-transform: uppercase;
}
.companyul li p{
  font-size: 1.4rem;
  color: #323232;
}

.company-img{
  width: 50%;
  height: 549px;
  position:relative;
  overflow:hidden;
}
.swiper-com{
  width: 100%;
  height: 100%;
}
.company-img .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-img .swiper-button-prev,
.company-img .swiper-button-next{
  background: rgba(0, 0, 0, 0.7);
  width: 50px;
  height: 105px;
}
.company-img .swiper-button-next:hover,
.company-img .swiper-button-prev:hover{
  background: #cf1a1a;
}
.company-img .swiper-button-prev,
.company-img .swiper-button-next{
  color: #fff!important;
}
.company-img .swiper-button-prev{
  left:0;
}
.company-img .swiper-button-next{
  right:0;
}
.company-img .swiper-button-next:after,
.company-img .swiper-button-prev:after{
  font-size: 18px!important;
}



/*case*/
.pb5{
  padding-bottom: 4vw;
}
.index-case .btn_style{
  margin:0 auto;
}
.index-case-main{
  display:flex;
  justify-content: space-between;
  height: 590px;
  margin-bottom: 2vw;
}
.index-case-main a{
  width: 100%;
  height: 100%;
  display:block;
  position:relative;
  overflow:hidden;
}
.index-case-main a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 300ms 0s all ease;
}
.index-case-main a p{
  position:absolute;
  left:0;
  bottom:0;
  width: 100%;
  line-height: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
  color: #fff;
  font-size: 1.6rem;
  box-sizing: border-box;
  padding:0 10px;
  background: rgba(0, 0, 0, 0.6);
  transition: 350ms 0s all ease;
}
.index-case-main a:hover img{
  transform: scale(1.05);
}
.index-case-main a:hover p{
  background:#cf1a1a;
}

.case_left{
  width: 24%;
}
.case_mid{
  width: 50%;
}
.case_left a{
  height: 49%;
}
.case_left a:first-child{
  margin-bottom: 3%;
}


/*news*/
.index-news{
  background:#f5f5f5;
}
.swiper-news{position:relative;overflow:hidden;}
.swiper-news .swiper-slide a{
  display:block;
  background:#fff;
}
.swiper-news .swiper-slide a>b{
  width: 100%;
  height: 337px;
}
.swiper-news .swiper-slide a>b img{
  transition: 350ms 0s all ease;
  transform: scale(1);
}
.swiper-news .swiper-slide a:hover>b img {
  transform: scale(1.05);
}
.news_text{
  box-sizing: border-box;
  padding:20px;
  width: 100%;
  height: 200px;
}
.news_text>h4{
  font-weight: bold;
  font-size: 1.8rem;
  color: #2f2f2f;
  transition: 350ms 0s all ease;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.swiper-news .swiper-slide a:hover .news_text>h4 {
  color: #cf1a1a;
}
.news_text>small{
  display:block;
  font-size: 1.4rem;
  color: #5f5f5f;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
  overflow: hidden;
  margin-bottom:30px;
}
.news_text>p{
  font-size: 1.6rem;
  color: #373737;
}
.swi-newsbtn{
  margin:0 auto;
  margin-top: 10px;
  position:relative;
  width: 180px;
  height: 60px;
}
.swi-newsbtn .swiper-button-prev,
.swi-newsbtn .swiper-button-next{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:#fff;
  transition: 350ms 0s all ease;
}
.swi-newsbtn .swiper-button-prev:after,
.swi-newsbtn .swiper-button-next:after{
  color: #383838;
  font-size: 17px;
  font-weight: bold;
  transition: 350ms 0s all ease;
}
.swi-newsbtn .swiper-button-prev:hover,
.swi-newsbtn .swiper-button-next:hover{
  background:#cf1a1a;
}
.swi-newsbtn .swiper-button-prev:hover:after,
.swi-newsbtn .swiper-button-next:hover:after{
  color:#fff;
}


/*footer*/
.footer {
  background: #222222;
}
.foot-nav{
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding:25px 0;
}

.foot-logo {
  display:block;
}
.foot-logo img {
  height: 50px;
}
.foot-nav-list {
  display:flex;
  justify-content: flex-end;
  align-items: center;
}
.foot-nav-list li {
  margin-left:40px;
}
.foot-nav-list li a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.foot-nav-list li a:hover,
.foot-nav-list li.active a {
  color: #cf1a1a;
}

.foot-link{
  border-top: 1px solid #464646;
  padding:2vw 0;
}
.foot-link .warpper>h2{
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1vw;
}
.foot-link ul{
  display:flex;
}
.foot-link ul li{
  margin-right:2vw;
}
.foot-link ul li{
  display:flex;
  align-items: center;
}
.foot-link ul li div {
  margin-left: 10px;
  min-width: 170px;
}
.foot-link ul li div p{
  color: #fff;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.foot-link ul li div h3{
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}






.foot {
  background: #515151;
  padding:20px 0;
  font-size: 1.4rem;
  color: #fff;
}
.foot a{
  font-size: 1.4rem;
  color: #fff;
}
.foot a:hover{
  text-decoration: underline;
}


















.pro-sider {
  float: left;
  width: 260px;
}
.pro-sider .in-title {
  height: 80px;
  background: url(../images/i-pro-title.jpg) no-repeat center;
  text-align: center;
  line-height: 1;
  overflow: hidden;
}
.pro-sider .in-title h3 {
  margin-top: 20px;
  font-size: 22px;
  color: #fff;
  margin-bottom: 5px;
}
.pro-sider .in-title em {
  font-size: 13px;
  color: #728dbc;
}
.pro-sider .pro-sider-ul {
  border: 1px solid #ededed;
  background: #fff;
  border-top: none;
  overflow: hidden;
}
.pro-sider .pro-sider-ul .ul-li {
  padding: 0 15px;
  height: 59px;
}
.pro-sider .pro-sider-ul .ul-li a {
  position: relative;
  height: 58px;
  line-height: 58px;
  font-size: 14px;
  color: #595959;
  display: block;
  padding-left: 10px;
  padding-right: 30px;
  border-bottom: 1px dashed #ededed;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sider .pro-sider-ul .ul-li a h2{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sider .pro-sider-ul .ul-li a div.icon {
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: #ededed url(../images/sider-bg-01.png) no-repeat center;
  border-radius: 50%;
  right: 8px;
  top: 50%;
  margin-top: -8px;
  font-size: 12px;
}
.pro-sider .pro-sider-ul .ul-li:hover,
.pro-sider .pro-sider-ul .ul-li.active {
  background: #268ae7;
}
.pro-sider .pro-sider-ul .ul-li:hover a,
.pro-sider .pro-sider-ul .ul-li.active a {
  border: none;
  color: #fff;
}
.pro-sider .pro-sider-ul .ul-li:hover div.icon,
.pro-sider .pro-sider-ul .ul-li.active div.icon {
  background: #0058b1 url(../images/sider-bg-02.png) no-repeat center;
}
.pro-sider .pro-sider-ul .ul-li:last-child a {
  border-bottom: none;
}
.pro-sider .pro-sider-tel {
  overflow: hidden;
  height: 100px;
  line-height: 1;
  font-size: 20px;
  color: #0058b1;
  border: 1px solid #ededed;
  border-top: none;
  padding-left: 80px;
  background: url(../images/sider-tel.png) no-repeat 25px center;
}
.pro-sider .pro-sider-tel span {
  display: block;
  margin: 30px 0 8px;
  font-size: 14px;
  color: #808080;
}
.pro-sider .pro-sider-tel em {
  letter-spacing: 2px;
  font-weight: bold;
}


.m-column-t {
  position: relative;
  text-align: center;
  font-size: 0;
}
.m-column-t .center {
  display: inline-block;
  font-size: 0;
}
.m-column-t .center h3 {
  color: #333;
  font-size: 30px;
}
.m-column-t .center p {
  color: #d2d2d2;
  font-size: 30px;
}
.m-column-t span {
  position: absolute;
  width: 415px;
  top: 50%;
  margin-top: -5px;
  height: 5px;
  border-bottom: 1px solid #d2d2d2;
  z-index: 1;
}
.m-column-t span.mcl {
  left: 0;
}
.m-column-t span.mcl em {
  float: right;
}
.m-column-t span.mcr {
  right: 0;
}
.m-column-t span em {
  display: block;
  height: 11px;
  border-left: 1px solid #d2d2d2;
}
.textLine {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textLine3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textHidden {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.domHidden {
  overflow: hidden;
}
.about-main {
  padding: 20px 0 70px;
  min-height: 170px;
}
.about-main .ab-content {
  float: right;
  width: 925px;
}
.about-main .ab-content .title {
  line-height: 50px;
}
.about-main .ab-content .title a {
  color: #333;
  padding: 0 5px;
}
.about-main .ab-content .title span.icon-home {
  color: #535353;
}
.about-main .ab-content .title em {
  color: #999;
}
.about-main .ab-content .ab-conBox {
  overflow: hidden;
  background: #fff;
  min-height: 55px;
  padding: 30px 45px 40px;
}
.about-main .ab-content .ab-conBox .de-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  line-height: 25px;
  margin-bottom: 8px;
}
.about-main .ab-content .ab-conBox .sub-co {
  font-size: 14px;
  color: #999;
  text-align: center;
  line-height: 18px;
}
.about-main .ab-content .ab-conBox .ab-detail {
  overflow: hidden;
  margin-top: 30px;
  font-size: 14px;
  color: #777373;
  line-height: 25px;
}
.ab-sild {
  float: left;
  width: 260px;
}
.ab-sild .title {
  position: relative;
  height: 50px;
  text-align: center;
  background: #f3c04b;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span {
  position: absolute;
  height: 3px;
  width: 30px;
  top: 50%;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span em {
  display: block;
  height: 7px;
  border-left: 1px solid #fff;
}
.ab-sild .title span.stl {
  left: 35px;
}
.ab-sild .title span.stl em {
  float: right;
}
.ab-sild .title span.str {
  right: 35px;
}
.ab-sild .sild-cate {
  background: #fff;
  margin-bottom: 20px;
}
.ab-sild .sild-cate .list {
  overflow: hidden;
}
.ab-sild .sild-cate .list li {
  position: relative;
  border-bottom: 1px solid #eee;
  height: 60px;
  line-height: 60px;
}
.ab-sild .sild-cate .list li a {
  display: block;
  padding-right: 35px;
  font-size: 14px;
  color: #333;
  padding-left: 20px;
}
.ab-sild .sild-cate .list li:last-child {
  border-bottom: none;
}
.ab-sild .sild-cate .list li:hover {
  border-color: #f3c04b;
  background: #f3c04b;
}
.ab-sild .sild-cate .list li:hover a {
  color: #fff;
}
.ab-sild .sild-cate .list li:hover:after {
  color: #fff;
}
.ab-sild .sild-cate .list li:after {
  font-weight: bold;
  right: 20px;
  top: 0;
  color: #999;
  position: absolute;
  content: "\e904";
  font-family: 'icomoon' !important;
}
.ab-sild .sild-cont {
  background: #fff;
}
.ab-sild .sild-cont .cont-list {
  padding: 20px;
}
.ab-sild .sild-cont .cont-list ul li {
  color: #333;
  padding: 5px 0;
  padding-left: 60px;
  font-size: 14px;
}
.ab-sild .sild-cont .cont-list ul li span {
  width: 60px;
  margin-left: -60px;
  display: block;
  height: 20px;
  line-height: 20px;
  float: left;
  color: #666;
}
.pro-center {
  background: #fff;
  padding-bottom: 25px;
}
.pro-center .pro-list {
  overflow: hidden;
  padding: 25px 18px 10px;
}
.pro-center .pro-list ul li {
  float: left;
  width: 200px;
  margin: 0 10px 20px;
  border: 1px solid #fff;
}
.pro-center .pro-list ul li:hover {
  border-color: #f3c04b;
}
.pro-center .pro-list ul li .img {
  overflow: hidden;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  font-size: 0;
  background: #eee;
}
.pro-center .pro-list ul li .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.pro-center .pro-list ul li .title {
  background: #f7f8fc;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.pro-center .pro-list ul li .title:hover {
  color: #f3c04b;
}
.page {
  font-size: 0;
  text-align: center;
}
.page .center {
  display: inline-block;
  overflow: hidden;
}
.page .center .page-span {
  float: left;
  font-size: 14px;
  color: #c3c3c3;
  line-height: 32px;
  margin-right: 30px;
}
.page .center .page-list {
  float: left;
  overflow: hidden;
}
.page .center .page-list ul li {
  float: left;
  width: auto;
  min-width: 30px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0 4px;
  padding: 0;
  border: none;
  background: transparent;
}
.page .center .page-list ul li a {
  min-width: 20px;
  padding: 0 5px;
  border: 1px solid #eee;
  display: block;
  color: #333;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.page .center .page-list ul li:hover a {
  color: #f3c04b;
}
.page .center .page-list ul li.active a {
  background: #f3c04b;
  color: #fff;
}
.news-center {
  background: #fff;
  padding-bottom: 25px;
}
.news-center .new-list {
  padding: 45px 45px 0px;
}
.news-center .new-list ul li {
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
}
.news-center .new-list ul li a {
  overflow: hidden;
  display: block;
  height: 90px;
  padding-bottom: 30px;
}
.news-center .new-list ul li a .img {
  float: left;
  width: 130px;
  height: 90px;
  background: #eee;
  line-height: 90px;
  font-size: 0;
  text-align: center;
}
.news-center .new-list ul li a .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.news-center .new-list ul li a .info {
  float: right;
  width: 690px;
}
.news-center .new-list ul li a .info h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  color: #333;
}
.news-center .new-list ul li a .info em {
  display: block;
  font-size: 12px;
  color: #999;
  line-height: 16px;
  margin-bottom: 10px;
}
.news-center .new-list ul li a .info p {
  font-size: 14px;
  line-height: 22px;
  color: #999;
  max-height: 44px;
  overflow: hidden;
}
.news-center .new-list ul li a:hover h3 {
  color: #f3c04b;
}
.message-c {
  background: #fff;
  padding: 40px 50px;
  overflow: hidden;
}
.message-c .p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-bottom: 35px;
}
.message-c .from input {
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0 5px;
  border: 1px solid #d2d2d2;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.message-c .from input[name=user],
.message-c .from input[name=phone] {
  width: 348px;
}
.message-c .from textarea {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  display: block;
  width: 728px;
  height: 130px;
  border: 1px solid #d2d2d2;
  padding: 5px;
  margin-bottom: 10px;
}
.message-c .from .code {
  overflow: hidden;
}
.message-c .from .code input[name=code] {
  width: 258px;
  float: left;
}
.message-c .from .code a {
  display: block;
  float: left;
  width: 80px;
  height: 38px;
  padding: 1px 0;
  margin-left: 10px;
}
.message-c .from .code a img {
  width: 80px;
  height: 38px;
}
.message-c .from .btn {
  padding-top: 25px;
}
.message-c .from .btn a {
  display: block;
  width: 362px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  background: #8fa4de;
}
.message-c .from .btn a:hover {
  background: #8397d0;
}
.contact-o {
  background: #fff;
  overflow: hidden;
  padding: 40px 0;
  text-align: center;
}
.contact-o iframe {
  width: 830px;
  height: 500px;
  margin: 0 auto;
}