@charset "UTF-8";
html {
  overflow-y: scroll;
}

body {
  font-family: "lucida Grande", Verdana, "Microsoft YaHei";
}

a {
  color: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: inherit;
}

a:hover, a:focus {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

b, dt {
  font-weight: normal;
}

p {
  margin: 0;
}

h3, h4 {
  margin: 0;
  font-weight: normal;
}

video {
  max-width: 100%;
}

@supports (display: flex) {
  body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  #content-wrap {
    flex: 1;
  }
}
.container-fluid {
  max-width: 1030px;
}

.mat-20 {
  margin-top: -20px;
}

.mat20 {
  margin-top: 20px;
}

.no-padding {
  padding: 0;
}

.text-indent {
  text-indent: 2em;
}

.high-line {
  line-height: 1.75;
}

.mw100 {
  max-width: 100%;
}

/* img center and middle */
.img-middle {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

/* only one line */
.nowrapline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* webkit line */
/* primary color */
/* top */
#top {
  color: #fff;
  background: rgba(0, 0, 0, 0.85);
  /*position: absolute;*/
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.top-head {
  position: relative;
  display: table;
  width: 100%;
  padding: 15px 0;
}
@media (min-width: 992px) {
  .top-head {
    padding: 20px 0;
  }
}

.top-logo,
.top-btncollapse {
  display: table-cell;
  vertical-align: middle;
}

.top-logo img {
  max-width: 100%;
}
.top-logo .m-logo,
.top-logo .b-logo {
  display: none;
}
@media (min-width: 400px) {
  .top-logo .s-logo {
    display: none;
  }
  .top-logo .m-logo {
    display: inline;
  }
}
@media (min-width: 640px) {
  .top-logo .m-logo {
    display: none;
  }
  .top-logo .b-logo {
    display: inline;
  }
}

/* top btncollapse */
.top-btncollapse {
  padding-left: 20px;
}

#btn-collapse {
  float: right;
  top: 0;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
}
@media only screen and (min-width: 540px) {
  #btn-collapse {
    font-size: 26px;
  }
}

@media only screen and (min-width: 992px) {
  .top-head {
    float: left;
    width: auto;
  }

  .top-btncollapse {
    display: none;
  }
}
/* top nav */
.top-nav > li {
  position: relative;
  text-align: center;
}

.top-nav li a {
  display: block;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .top-nav {
    display: none;
    position: absolute;
    z-index: 3;
    right: 0;
    width: 160px;
    max-width: 100%;
    color: #fff;
    background: rgba(38, 38, 38, 0.8);
    padding: 5px 0;
  }

  .top-nav > li > a {
    line-height: 30px;
  }
  .top-nav > li > a:hover {
    color: #f5c767;
  }
}
@media (min-width: 992px) {
  .top-nav {
    display: block !important;
    float: right;
    padding: 20px 0;
  }
  .top-nav > li {
    float: left;
  }
  .top-nav > li > a {
    position: relative;
    display: block;
    text-align: center;
    line-height: 40px;
    padding: 0 8px;
  }
  .top-nav > li > a:hover, .top-nav > li > a.act, .top-nav > li > a.hover {
    color: #f5c767;
  }
}
@media (min-width: 1200px) {
  .top-nav > li > a {
    padding: 0 18px;
  }
}
/* top 二级导航 */
.top-nav li ul {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 3;
  font-size: 13px;
  color: #fff;
  background: #f5c767;
  padding: 4px 0;
}
.top-nav li ul a {
  line-height: 30px;
  padding: 0 2px;
}
.top-nav li ul a:hover {
  color: #fff;
  background: #232323;
}
@media (max-width: 991px) {
  .top-nav li ul {
    display: none !important;
  }
}

/* 轮播图 */
.swiper-img .swiper-slide img {
  margin: 0 auto;
}

.slide-img-big {
  display: none;
}

.slide-img-small {
  display: block;
}

@media (min-width: 640px) {
  .slide-img-big {
    display: block;
  }

  .slide-img-small {
    display: none;
  }
}
.wrapper {
  margin: 20px 0;
}

/*主要标题*/
.main-title {
  position: relative;
  text-align: center;
  font-size: 1.4em;
  line-height: 1;
  margin-bottom: 20px;
  overflow: hidden;
}
.main-title:after, .main-title:before {
  content: "";
  position: absolute;
  top: 78%;
  width: 3.5em;
  height: 1px;
  background: #dcdcdc;
}
.main-title:before {
  right: calc(50% + 3.5em);
}
.main-title:after {
  left: calc(50% + 3.5em);
}
@media (min-width: 768px) {
  .main-title {
    font-size: 1.6em;
  }
}
@media (min-width: 992px) {
  .main-title {
    font-size: 1.7em;
  }
}
.main-title a {
  color: #f5c767;
  display: inline-block;
}
.main-title a[href]:hover {
  color: #f0ad1f;
}
.main-title h3 {
  font-size: 1em;
}
.main-title h4 {
  font-size: 0.8em;
  margin-top: 0.2em;
  font-family: "Bell MT";
  text-transform: capitalize;
}

/*首页 公司简介*/
.about-img img {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
}
@media (min-width: 640px) {
  .about-img {
    float: left;
    max-width: 45%;
    margin-right: 20px;
  }
  .about-img img {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .about-img {
    max-width: 35%;
  }
}

.about-text .title {
  font-size: 16px;
  font-family: arial;
  color: #f5c767;
  padding-bottom: 8px;
  border-bottom: 1px solid #a7a7a7;
  margin-bottom: 8px;
}

/*查看更多按钮*/
.btn-more {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #ffd564;
  padding: 4px 8px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-more:hover {
  background: #ffc731;
}

/*首页 产品展示*/
.main-chwidth .row {
  margin-left: -5px;
  margin-right: 5px;
}
.main-chwidth .col-xs-6 {
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 640px) and (max-width: 767px) {
  .main-chwidth .col-xs-6 {
    width: 33.33333333%;
  }
}
@media only screen and (max-width: 639px) {
  .main-chwidth .col-xs-6:nth-child(n+5) {
    display: none;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .main-chwidth .col-xs-6:nth-child(n+7) {
    display: none;
  }
}

.prolink {
  position: relative;
  display: block;
  max-width: 245px;
  margin: 0 auto;
}
.prolink .imgbox {
  position: relative;
  height: 0;
  padding-top: 82%;
}
.prolink .textbox {
  padding: 5px;
}
.prolink .linktitle {
  font-size: 13px;
  margin: 5px 0;
  color: #212121;
}
.prolink .text {
  font-size: 12px;
  color: #242424;
  line-height: 1.5;
  height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (min-width: 450px) {
  .prolink .text {
    font-size: 13px;
  }
}
.prolink .btn-more {
  margin-top: 10px;
}
.prolink:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.prolink:hover .btn-more {
  background: #f2b537;
}

/*首页 合作流程*/
.flow-wrapper {
  padding: 20px 0;
  color: #fff;
  background: #404040;
  background: url(../img/flowwrapper-bg.jpg) no-repeat center/cover;
}
.flow-wrapper .main-title a {
  color: #fff;
}

.main-flow {
  text-align: center;
}
.main-flow .textbox {
  display: inline-block;
  text-align: left;
  position: relative;
  max-width: 620px;
  margin: 20px 35px;
}
.main-flow .textbox:before, .main-flow .textbox:after {
  position: absolute;
  font-family: Ebrima;
  font-size: 50px;
}
.main-flow .textbox:before {

  left: -30px;
  top: -25px;
}
.main-flow .textbox:after {
  content: "\”";
  right: -30px;
  bottom: -30px;
}
.main-flow .title {
  font-size: 15px;
  margin-bottom: 10px;
  margin-top:20px;
}
.main-flow .text {
  line-height: 1.5;
  height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/*首页  车间展示*/
.main-device .btn-more-wrap {
  text-align: center;
  margin: 20px 0 10px;
}
.main-device .btn-more {
  font-size: 14px;
  color: #fff;
  background: #a1a1a1;
  padding: 0.5em 2em;
}
.main-device .btn-more:hover {
  background: #888888;
}

.shadelink {
  position: relative;
  display: block;
  max-width: 245px;
  margin: 0 auto;
  overflow: hidden;
}
.shadelink .imgbox {
  position: relative;
  height: 0;
  padding-top: 82%;
}
.shadelink .img-shade {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  color: #fff;
  background: rgba(59, 59, 59, 0.55);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.shadelink .img-shade .title,
.shadelink .img-shade .text {
  line-height: 1.5;
}
.shadelink .img-shade .title {
  font-size: 16px;
  margin-bottom: 5px;
}
.shadelink .img-shade .text {
  max-height: 7.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.shadelink:hover .img-shade {
  top: 0;
}
.shadelink .s-title {
  display: none;
  text-align: center;
  font-size: 12px;
  padding: 0.4em 2px;
  color: #fff;
  background: rgba(59, 59, 59, 0.55);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.shadelink:hover .s-title {
  background: rgba(59, 59, 59, 0.88);
}
@media (max-width: 479px) {
  .shadelink .s-title {
    display: block;
  }
  .shadelink .img-shade {
    display: none;
  }
}

/*首页 联系我们*/
.main-contact {
  color: #585858;
}

.contact-title {
  font-size: 15px;
  margin-bottom: 12px;
}

.contact-text {
  line-height: 1.75;
  margin-bottom: 20px;
}

.main-contact .contact-list {
  margin: 20px 0;
}
.main-contact .contact-list li {
  margin: 5px 0;
}
.main-contact .contact-list li .glyphicon {
  color: #636363;
  margin-right: 10px;
}

/*联系表单*/
.contact-form {
  max-width: 650px;
  margin: 0 auto;
}
.contact-form label {
  font-weight: normal;
}
.contact-form .form-control {
  border: 1px dashed #999;
  border-radius: 2px;
}
.contact-form textarea {
  width: 100%;
  resize: vertical;
}
.contact-form input[type=submit] {
  width: 120px;
  color: #fff;
  background: #ffd564;
  padding: 4px 10px;
  border-radius: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.contact-form input[type=submit]:hover {
  background: #ffc731;
  text-transform: 0 1px 1px rgba(0, 0, 0, 0.4);
}

/*非主页页面*/
.main-page {
  margin: 20px 0 30px;
}

@media (max-width: 767px) {
  .main-page {
    margin-top: 0;
  }
}
@media only screen and (min-width: 850px) and (max-width: 991px) {
  .page-aside-wrap {
    width: 30%;
  }

  .page-section-wrap {
    width: 70%;
  }
}
/*侧栏*/
.page-aside {
  box-shadow: 4px 0 4px rgba(0, 0, 0, 0.26);
}

/*aside标题*/
.aside-title {
  color: #fff;
  font-size: 18px;
  line-height: 43px;
  text-align: center;
  background: #f6c674;
  background: url(../img/aside-title-bg.jpg) no-repeat center/cover;
}

/*侧栏列表*/
.aside-list {
  color: #9f9f9f;
  text-align: center;
  margin-bottom: 30px;
}
.aside-list li a {
  display: block;
  line-height: 34px;
  margin: 0 10px;
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aside-list li a:hover, .aside-list li a.act {
  color: #2f2f2f;
}

.aside-contact > img {
  width: 100%;
}
.aside-contact ul {
  color: #232323;
  font-size: 14px;
  line-height:24px;
  padding: 5px;
}
.aside-contact ul li {
  margin: 5px 0;
}

/*section标题*/
.section-title {
  border-bottom: 3px solid #d3d3d3;
}
.section-title .title-text {
  display: inline-block;
  color: #f5c767;
}
.section-title .title-text .zh {
  font-size: 17px;
  line-height: 20px;
}
.section-title .title-text .en {
  font-size: 13px;
  font-family: arial;
  text-transform: uppercase;
}
.section-title .pos {
  float: right;
  font-size: 12px;
  color: #5f5f5f;
  line-height: 40px;
}
.section-title .pos a.act, .section-title .pos a[href]:hover {
  color: #f5c767;
}

/*section内容部分*/
.section {
  margin: 20px 0;
}

/*详情页*/
.section-x .titlebox {
  margin-bottom: 15px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed #707070;
}
.section-x .titlebox .title {
  color: #212121;
  font-size: 16px;
  font-weight:bold;
}
.section-x .titlebox .time {
  color: #a3a3a3;
  font-size: 12px;
  margin-top: 10px;
}
.section-x .section-x-imgbox {
  text-align: center;
  margin: 10px 0;
}
.section-x .section-x-imgbox img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.section-x .text {
  font-size: 13px;
  color: #151515;
  line-height: 2;
  margin: 10px 0;
}

/*产品展示页*/
.section-chwidth .row {
  margin-left: -5px;
  margin-right: -5px;
}
.section-chwidth .col-xs-6 {
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 640px) and (max-width: 767px) {
  .section-chwidth .col-xs-6 {
    width: 33.33333333%;
  }
}
@media (min-width: 768px) and (max-width: 850px) {
  .section-chwidth .col-xs-6 {
    width: 50%;
  }
}

/*新闻中心页*/
.imgnewslink {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.imgnewslink .imgbox img {
  max-width: 100%;
}
.imgnewslink .newstext {
  position: relative;
  overflow: hidden;
}
.imgnewslink .title {
  color: #212121;
  font-size: 15px;
  margin: 5px 0;
}
.imgnewslink .text {
  color: #242424;
  line-height: 1.5;
  max-height: 6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.imgnewslink .time {
  font-size: 12px;
  color: #262626;
  margin-top: 5px;
}
.imgnewslink:hover {
  background: #e2e2e2;
}
@media (max-width: 479px) {
  .imgnewslink {
    padding: 10px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  }
  .imgnewslink .newstext {
    margin-top: 5px;
  }
  .imgnewslink .imgbox {
    text-align: center;
    background: none !important;
  }
}
@media (min-width: 480px) {
  .imgnewslink {
    height: 175px;
  }
  .imgnewslink .imgbox {
    float: left;
    width: 220px;
    height: 100%;
    overflow: hidden;
  }
  .imgnewslink .imgbox img {
    display: none;
  }
  .imgnewslink .newstext {
    position: relative;
    float: left;
    width: calc(100% - 220px);
    height: 100%;
    padding: 5px 10px 5px 15px;
  }
  .imgnewslink .title {
    margin-top: 0;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .imgnewslink .text {
    max-height: 7.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
  .imgnewslink .time {
    position: absolute;
    bottom: 5px;
  }
}

/*联系我们页*/
.p-contact-list {
  color: #151515;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 15px;
}
.p-contact-list li {
  margin-bottom: 5px;
}

/*小屏产品分类下拉按钮*/
#s-btn-drop {
  cursor: pointer;
  line-height: 35px;
  padding: 0 15px;
  color: #fff;
  background: #f5c767 linear-gradient(135deg, #ffcc5a 50%, #ffe17c 0);
}
#s-btn-drop b.glyphicon {
  margin-right: 8px;
}
#s-btn-drop span.glyphicon {
  float: right;
  top: 0;
  line-height: 35px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
#s-btn-drop.nodrop {
  display: none;
  cursor: auto;
}
#s-btn-drop.nodrop span.glyphicon {
  display: none;
}
#s-btn-drop.act span.glyphicon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*小屏下拉列表*/
.drop-list {
  display: none;
  text-align: center;
  color: #737373;
}
.drop-list a {
  display: block;
  padding: 0 15px;
  line-height: 30px;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.drop-list a:hover {
  color: #1e1e1e;
}

/*小屏面包屑导航*/
.s-know {
  font-size: 12px;
  color: #8e8e8e;
  padding: 5px;
  border: 1px solid #b7b7b7;
  margin: 15px;
  margin-bottom: 0;
}
.s-know a[href]:hover {
  color: #f5c767;
}

/* 大屏底部  */
.foot {
  color: #fff;
  background: #000;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .foot {
    padding: 20px 0;
  }
}
.foot a:hover {
  color: #999;
}

.foot-content {
  text-align: center;
}

/*小屏底部*/
.foot-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  background: #000;
  font-size: 13px;
}

.ffixedlink {
  width: 25%;
  float: left;
  line-height: 30px;
  padding: 5px 0;
  text-align: center;
}
.ffixedlink:hover {
  background: #1a1a1a;
}
.ffixedlink + .ffixedlink {
  border-left: 1px solid #fff;
}

@media (max-width: 767px) {
  /*小屏底部fixed导航距离*/
  body {
    padding-bottom: 40px;
  }
}


.text-3 form input{ margin:0 0 10px; padding: 0 20px; width: 100%; height: 38px; color: #333; background:#e6e6e6; border:none; border-radius:10px; }
.text-3 form textarea{margin:0 0 10px; padding: 0 20px; width: 100%; max-width: 100%; min-width: 100%; height: 108px; line-height: 38px; color: #333; background:#e6e6e6; border:none; border-radius:10px; }
.text-3 form button{ display: block;width: 150px; font-size: 18px; color: #fff; line-height: 38px; background: #f76f0c; border:none;border-radius:10px; }



.zycx{ width:100%; padding: 50px 0; background: #f7f7f7;}
.formHead{ width:100%; overflow: hidden; background: #0b4380;}
.formHead li{ float:left; padding:0 5px; width:16.66%; text-align:center; font-size:16px; color:#fff; height:40px; line-height:40px; overflow:hidden; border-right: 1px #fff solid; box-sizing: border-box;}
.formHead li:nth-child(2){ width: 23.32%;}
.formHead li:nth-child(5){ width: 10%;}
.formHead li:last-child{ border: none;}
.bigbd{ width:100%; position:relative; height:390px;}
#bd{ position:absolute; height:100%; width:100%; overflow:hidden; background:#fff; top:0; left:0; min-height:390px; border-bottom: 1px #0b4380 solid;}
.outside{ width:100%;}
.outside li{ height:32px; overflow: hidden;}
.outside li div{ width:16.66%; float:left; height:32px; line-height:31px; padding:0 3px; font-size:16px; color:#000; border-left: 1px #0b4380 solid; border-bottom: 1px #0b4380 solid; box-sizing: border-box; text-align: center; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.outside li div:last-child{ border-right: 1px #0b4380 solid; box-sizing: border-box;}
.outside li div:nth-child(2){ width: 23.32%;}
.outside li div:nth-child(5){ width: 10%;}

.lxwm{ padding-top:20px;}
.lxwm form .box{margin-bottom:16px;}
.lxwm form span{width:30%;line-height:32px;}
.lxwm form input{width:70%;height:32px;line-height:32px;border:1px solid #0b4380;padding:0 6px;background:none;}
.lxwm form textarea{width:70%;height:32px;line-height:32px;border:1px solid #0b4380;padding:0 10px;background:none;}
.lxwm form textarea{height:142px;padding:10px;resize:none;line-height:25px;}