/* Main CSS Document */
@charset "utf8";
/* reset */
* {
  margin: 0;
  padding: 0;
}
html,
body {
  font-family: '微软雅黑', '\5fae\8f6f\96c5\9ed1', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
  outline: 0;
  -webkit-text-size-adjust: none; /* Chrome 浏览器中设置小于 12px 的字体 */
  color: #333;
}
body {
  min-width: 1200px;
  background: #fff;
  -webkit-user-select: none;
  user-select: none;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.static {
  position: static;
}
.iconfont {
  font-size: inherit;
  text-rendering: auto;
}
a {
  color: #333;
}
a,
a:link,
a:visited,
a:active,
a:hover {
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
span,
em,
i,
u {
  text-decoration: none;
}
ul,
dl,
li,
dd,
dt {
  list-style: none;
}
td,
th,
div {
  word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5 {
  font-size: 18px;
  font-weight: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
  font-weight: normal;
}
fieldset,
img {
  border: 0 none;
}
img {
  color: transparent;
  font-size: 0;
  vertical-align: top;
  /*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
  -ms-interpolation-mode: bicubic;
}
.img-hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.img-hover:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blur {
  filter: url(blur.svg#blur);
  /* FireFox, Chrome, Opera */
  -webkit-filter: blur(4px);
  /* Chrome, Opera */
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius=4, MakeShadow=false);
  /* IE6~IE9 */
}
input,
select,
textarea,
button {
  outline: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*resize: vertical;*/
  resize: none;
}
button,
input[type='button'],
input[type='submit'] {
  cursor: pointer;
}
input[type='search'] {
  -webkit-appearance: textfield;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
textarea {
  overflow-y: auto;
}

.common-module-title {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  color: #0057ff;
  padding: 40px 0 10px;
}
.common-module-title span {
  display: block;
  font-size: 18px;
  color: #a6a6a6;
  margin-top: 28px;
  line-height: 1.5em;
}
.common-module-title a {
  display: block;
  text-align: center;
  color: #0158ff;
  font-size: 18px;
  font-style: italic;
  margin-top: 20px;
}
.common-module-title a:hover {
  text-decoration: underline;
}
.common-module-title img {
  margin-left: 10px;
  vertical-align: middle;
}

.sinput select,
.sinput textarea,
.sinput input[type='text'],
.sinput input[type='password'],
.sinput input[type='datetime'],
.sinput input[type='datetime-local'],
.sinput input[type='date'],
.sinput input[type='month'],
.sinput input[type='time'],
.sinput input[type='week'],
.sinput input[type='number'],
.sinput input[type='email'],
.sinput input[type='url'],
.sinput input[type='search'],
.sinput input[type='tel'],
.sinput input[type='color'] {
  display: inline-block;
  line-height: 16px;
  padding: 2px 5px;
  font-size: 12px;
  color: #555;
}
.sinput input[type='text'],
.sinput input[type='password'] {
  height: 16px;
}
.sinput input[type='checkbox'] {
  margin: 3px 6px 3px 4px;
  -webkit-appearance: checkbox;
  box-sizing: border-box;
}
.sinput input[type='radio'] {
  margin: 3px 6px 3px 4px;
  -webkit-appearance: radio;
  box-sizing: border-box;
}
.sinput textarea,
.sinput select,
.sinput input[type='text'],
.sinput input[type='password'],
.sinput input[type='datetime'],
.sinput input[type='datetime-local'],
.sinput input[type='date'],
.sinput input[type='month'],
.sinput input[type='time'],
.sinput input[type='week'],
.sinput input[type='number'],
.sinput input[type='email'],
.sinput input[type='url'],
.sinput input[type='search'],
.sinput input[type='tel'],
.sinput input[type='color'] {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
.sinput textarea:focus,
.sinput input[type='text']:focus,
.sinput input[type='password']:focus,
.sinput input[type='datetime']:focus,
.sinput input[type='datetime-local']:focus,
.sinput input[type='date']:focus,
.sinput input[type='month']:focus,
.sinput input[type='time']:focus,
.sinput input[type='week']:focus,
.sinput input[type='number']:focus,
.sinput input[type='email']:focus,
.sinput input[type='url']:focus,
.sinput input[type='search']:focus,
.sinput input[type='tel']:focus,
.sinput input[type='color']:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.none {
  display: none !important;
}
/*下拉二级菜单样式*/
.combobox,
.selbox {
  display: block;
  position: relative;
}
.combobox .comcon,
.selbox .selcon {
  display: none; /*position:absolute;*/
}
.combobox .hover,
.selbox .hover {
  /*这里可以稍稍做点修改 通常在单样式里做特效修改*/
}
/*清楚浮动*/
.clearfix {
  zoom: 1;
} /*ie浏览器 */
/*.clearfix:after{content:' ';display:block;clear:both;height:0;visibility:hidden;} .标准浏览器*/
.clearfix:before,
.clearfix:after {
  clear: both;
  content: '\0020';
  display: block;
  height: 0;
  visibility: hidden;
}
/*窗体大小*/
.w-1200 {
  width: 1200px;
}
.mauto {
  margin: 0 auto;
}
.l {
  float: left;
}
.r {
  float: right;
}
*[data-trans='t'] {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: transform 600ms, opacity 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  -webkit-transition: transform 600ms, opacity 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
*[data-trans='b'] {
  transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
  transition: transform 600ms, opacity 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  -webkit-transition: transform 600ms, opacity 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
*[data-trans='l'] {
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  opacity: 0;
  visibility: hidden;
  transition: transform 600ms, opacity 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  -webkit-transition: transform 600ms, opacity 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
*[data-trans='r'] {
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  opacity: 0;
  visibility: hidden;
  transition: transform 600ms, opacity 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  -webkit-transition: transform 600ms, opacity 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
*[data-trans='t'].action,
*[data-trans='b'].action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
*[data-trans='l'].action,
*[data-trans='r'].action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
/*让position:fixed在IE6下可用! 兼容全能代码，勿删除*/
.fixed-top /* 头部固定 */ {
  position: fixed;
  bottom: auto;
  top: 0px;
  -webkit-transform: translateZ(0);
}
.fixed-bottom /* 底部固定 */ {
  position: fixed;
  bottom: 0px;
  top: auto;
}
.fixed-left /* 左侧固定 */ {
  position: fixed;
  right: auto;
  left: 0px;
}
.fixed-right /* 右侧固定 */ {
  position: fixed;
  right: 0px;
  left: auto;
}
/* 上面的是除了IE6的主流浏览器通用的方法 */
* html, * html body /* 修正IE6振动bug */ {
  background-image: url(about:blank);
  background-attachment: fixed;
}
* html .fixed-top /* IE6 头部固定 */ {
  position: absolute;
  bottom: auto;
  _top: expression(eval(document.documentElement.scrollTop));
}
* html .fixed-right /* IE6 右侧固定 */ {
  position: absolute;
  right: auto;
  _left: expression(
    eval(document.documentElement.scrollLeft + document.documentElement.clientWidth-this.offsetWidth)- (
        parseInt(this.currentStyle.marginLeft, 10) ||0
      )- (parseInt(this.currentStyle.marginRight, 10) ||0)
  );
}
* html .fixed-bottom /* IE6 底部固定  */ {
  position: absolute;
  bottom: auto;
  _top: expression(
    eval(
      document.documentElement.scrollTop +
        document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop, 10) ||0)- (parseInt(
              this.currentStyle.marginBottom,
              10
            )
            ||0)
    )
  );
}
* html .fixed-left /* IE6 左侧固定 */ {
  position: absolute;
  right: auto;
  _left: expression(eval(document.documentElement.scrollLeft));
}
/* 弹出窗口 */
.modal_backdrop {
  width: 100%;
  background: #000;
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
  z-index: 100001;
  display: none;
}
.modal_backdrop-black {
  background: #000;
}
.modal_backdrop-write {
  background: #fff;
}
.modal_backdrop-transparent {
  background: transparent;
}
.modal_tbox {
  left: 0;
  width: 100%;
  z-index: 100002;
}
.modal_tbox .tconbox {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  position: absolute;
  display: none;
}
.modal_tbox .tconbox .tcon-close {
  right: 45px;
  top: 45px;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  cursor: pointer;
  display: block;
  background: url(/public/images/close.png) no-repeat left top;
  background-size: cover;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  transition: none;
}
.modal_tbox .tconbox .tcon-close:hover {
  background-position: right top;
}
.modal_tbox .tconbox .tcon-til {
  padding: 20px 45px 0;
  line-height: 80px;
  font-size: 24px;
  font-weight: bold;
  color: #f60;
}
.modal_tbox .tconbox .tcon-con {
  padding: 0 45px;
}
/* 加载处理窗口 */
.modalbg_loading-box {
  z-index: 100003;
}
.modal_loading-box {
  z-index: 100004;
}
.modal_tbox .loading-box {
  width: 64px;
  height: 20px;
  box-shadow: none;
}
.modal_tbox .loading-box .ball-beat > div {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal_tbox .loading-box .msg {
  line-height: 60px;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
/* 复制弹窗 */
.modal_tbox .mcopy-box {
  width: 701px;
  height: auto;
  background: #fff;
}
.modal_tbox .mcopy-box .tcon-close {
  right: 24px;
  top: 24px;
  width: 16px;
  height: 16px;
}
.modal_tbox .mcopy-box .tcon-con {
  padding: 0;
}
.modal_tbox .mcopy-box .tcon-con .d-dd {
  margin: 35px 0;
  padding: 0 35px;
  width: 280px;
  text-align: center;
  display: inline-block;
  float: left;
}
.modal_tbox .mcopy-box .tcon-con .d-til {
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 24px;
}
.modal_tbox .mcopy-box .tcon-con .d-con .con {
  font-size: 16px;
}
.modal_tbox .mcopy-box .tcon-con .d-con .img {
  margin: 25px 0 15px;
}
.modal_tbox .mcopy-box .tcon-con .d-1 .d-con .con {
  line-height: 34px;
}
.modal_tbox .mcopy-box .tcon-con .d-1 .d-con .btn {
  margin: 0 auto;
  width: 160px;
  line-height: 44px;
  font-size: 18px;
  display: block;
  color: #fff;
  background: #0158ff;
}
.modal_tbox .mcopy-box .tcon-con .d-2 {
  border-left: 1px solid #ddd;
}
.modal_tbox .mcopy-box .tcon-con .d-2 .d-con .con {
  position: relative;
}
.modal_tbox .mcopy-box .tcon-con .d-2 .d-con .con input[type='text'] {
  padding: 0 70px 0 10px;
  width: 100%;
  height: 34px;
  border: 1px solid #ddd;
  outline: 0 none;
}
.modal_tbox .mcopy-box .tcon-con .d-2 .d-con .con input[type='submit'] {
  right: 0;
  top: 0;
  width: 60px;
  height: 34px;
  border: none;
  outline: 0 none;
  color: #fff;
  background: #0158ff;
  position: absolute;
}
.modal_tbox .mcopy-box .tcon-con .d-2 .d-con .til {
  line-height: 22px;
  font-size: 16px;
  color: #0158ff;
}
.modal_tbox .mcopy-box .tcon-con .d-2 .d-con .til span {
  font-size: 14px;
  display: block;
  color: #666;
}
/* 分页样式 */
.mpage_boxs {
  padding-top: 40px;
  font-size: 0;
  text-align: center;
}
.mpage_boxs ul {
  display: inline-block;
}
.mpage_boxs li {
  line-height: 42px;
  font-size: 16px;
  display: inline-block;
  float: left;
}
.mpage_boxs a,
.mpage_boxs span {
  margin-right: 5px;
  padding: 0 20px;
  border: 1px solid #ddd;
  text-decoration: none;
  display: block;
  background: #fff;
  overflow: hidden;
}
.mpage_boxs a {
  cursor: pointer;
  color: #0158ff;
}
.mpage_boxs a:hover {
  border-color: #0158ff;
  color: #fff;
  background: #0158ff;
}
.mpage_boxs span {
  color: #999;
}
.mpage_boxs .cur a {
  border-color: #0158ff;
  color: #fff;
  background: #0158ff;
}
/* .hd-boxs */
.hd-boxs {
  padding-top: 15px;
  width: 100%;
  z-index: 99999;
}
.hd-on {
  height: 75px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #fff;
}
/* LOGO及动画 */
.hd-logo {
  position: absolute;
}
.hd-logo a {
  display: block;
  position: relative;
}
.hd-logo a img {
  position: absolute;
  display: block;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  width: 200px;
  height: 55px;
}
.hd-on .hd-logo img {
  margin-top: 10px;
  zoom: 0.9;
}
.hd-logo .logo_an {
  width: 76px;
  margin-left: 3px;
  display: none;
}
.hd-on .hd-logo .logo_an {
  animation: logo-rotate 1.5s infinite linear;
  -webkit-animation: logo-rotate 1.5s infinite linear;
}
@keyframes logo-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
/* logo及动画结束 */
.hd-boxs .hd-language {
  float: right;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  margin-left: 20px;
  position: relative;
}
.hd-boxs .hd-language .search-btn {
  cursor: pointer;
  transform: scale(0.8, 0.8);
  transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  -o-transition: transform 0.2s;
}
.hd-boxs .hd-language .search-btn:hover {
  transform: scale(1, 1);
}
.hd-boxs .hd-language .lge-btn {
  display: flex;
  cursor: pointer;
  font-size: 15px;
  color: #3e3a39;
  padding: 20px 0;
}
.hd-boxs .hd-language .lge-btn img {
  margin-left: 6px;
  vertical-align: middle;
}
.hd-boxs .hd-language .lge-btn span {
  color: #0158ff;
  vertical-align: middle;
}
.hd-boxs .hd-language .con {
  left: 0;
  top: 60px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #999;
  background: #fff;
  position: absolute;
  display: none;
}
.hd-boxs .hd-language .con a {
  padding-left: 15px;
  line-height: 40px;
  display: block;
  font-size: 13px;
}
.hd-boxs .hd-language .con a:hover {
  color: #fff;
  background: #0158ff;
}
.hd-boxs .hd-search-con {
  height: 80px;
  display: none;
}
.hd-boxs.hd-on .hd-search-con {
  background: rgba(255, 255, 255, 1);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.2);
}
.hd-boxs.hd-on .hd-search-con .hd-search-c {
  background: none;
}
.hd-boxs .hd-search-con .hd-search-c {
  width: 900px;
  overflow: hidden;
  height: 80px;
  margin-left: 290px;
  white-space: nowrap;
  background: #fff;
  border-radius: 10px;
  padding: 0 20px;
}
.hd-boxs .hd-search-con .hidden {
  display: none !important;
}
.hd-boxs .hd-search-con .hd-search-c .hsc-item {
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #1d1a1a;
}
.hd-boxs .hd-search-con .hd-search-c .hsc-item span {
  vertical-align: middle;
}
.hd-boxs .hd-search-con .hd-search-c .hsc-item a {
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
}
.hd-boxs .hd-search-con .hd-search-c .hsc-item a:hover {
  color: #0158ff;
}

.hd-search {
  width: 880px;
  line-height: 38px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #797675;
}
.hd-search input {
  border: none;
  outline: 0 none;
  background: transparent;
  vertical-align: middle;
}
.hd-search input[type='text'] {
  padding: 0 48px 0 10px;
  width: 100%;
  height: 38px;
  font: 400 16px Arial !important;
  color: #797675;
}
.hd-search input[type='text']::-webkit-input-placeholder {
  color: #797675;
}
.hd-search input[type='text']::-moz-placeholder {
  color: #797675;
}
.hd-search input[type='text']::-ms-input-placeholder {
  color: #797675;
}
.hd-search input[type='submit'] {
  right: 0;
  top: 0;
  width: 35px;
  height: 38px;
  text-indent: -99999px;
  background: url(/public/images/hd-search.png) no-repeat left center;
  background-size: 25px 25px;
  position: absolute;
}
.hd-search input[type='submit']:hover {
  background-size: 28px 28px;
}

.hd-mnav {
  float: right;
  position: relative;
}
.hd-mnav .nav-bar {
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  opacity: 0;
  background: #0158ff;
  position: absolute;
}
.hd-mnav ul li {
  padding: 0 6px;
  display: inline-block;
  position: relative;
}
.hd-mnav ul li .childrenMenu {
  display: none;
  position: absolute;
  background: #fff;
  top: 70px;
  left: 50%;
  width: 200px;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  text-align: center;
}
.hd-mnav ul li .childrenMenu a {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  margin: 0;
}
.hd-mnav ul li:hover .childrenMenu {
  display: block;
}
.hd-mnav ul li a {
  margin-left: 15px;
  padding-right: 5px;
  display: block;
  color: #3e3a39;
}
.hd-mnav ul li a:hover {
  color: #0158ff;
}
.hd-mnav ul li a:hover span::before {
  background: #0158ff;
}
.hd-mnav ul li span {
  padding-bottom: 12px;
  line-height: 75px;
  font-size: 18px;
  display: block;
  position: relative;
}
.hd-mnav ul li span:before {
  content: ' ';
  left: -15px;
  bottom: 0;
  padding: 0 15px;
  width: 100%;
  height: 2px;
  display: none;
  background: #0158ff;
  position: absolute;
}
.hd-mnav ul .on span:before {
  display: block;
}
.hd-on .hd-mnav .nav-bar,
.hd-on .hd-mnav ul li span:before {
  background: #0158ff;
}
.hd-on .hd-mnav ul li a {
  color: #333;
}
.hd-on .hd-mnav ul .on a,
.hd-on .hd-mnav ul li a:hover {
  color: #0158ff;
}
.hd-on .hd-mnav ul li a:hover span::before {
  background: #0158ff;
}
/* .bd-boxs */
.bd-mtil {
  margin: 0 auto;
  width: 160px;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  background: #f16b18;
}
/* 底部 */
.ft-boxs {
  position: relative;
  /* padding-bottom: 90px; */
  color: #6b6b6b;
  background: url(/public/images/ft_bg.jpg) no-repeat center center / cover;
  padding-top: 30px;
  height: 492px;
  margin-top: 2px;
}
.ft-boxs a {
  color: #6b6b6b;
}
.ft-boxs .hotkeyword {
  height: 290px;
}
.ft-boxs .hotkeyword a {
  line-height: 1em;
}
.ft-dd {
  display: inline-block;
}
.ft-d1 {
  float: right;
  height: 300px;
}
.ft-d1 dl dd {
  width: 230px;
  display: inline-block;
  float: right;
}
.ft-d1 dl dd:last-child {
  width: 200px;
}
.ft-d1 dl dd:nth-child(2) {
  width: 150px;
}
.ft-d1 dl dd:nth-child(3) {
  width: 250px;
}
.ft-d1 dl dd ul li a {
  font-size: 14px;
  line-height: 28px;
  display: inline-block;
  color: #6b6b6b;
}
.ft-d1 dl dd ul li a:hover {
  color: #0158ff;
}
.ft-d1 dl dd .til {
  margin-bottom: 20px;
  line-height: 20px;
  font-size: 20px;
  display: block;
}
.ft-d2 {
  float: left;
}
.ft-d2 a {
  display: block;
  color: #888;
  padding-left: 10px;
  margin-bottom: 50px;
}
.ft-d2 .contactUs {
  margin-top: 15px;
  width: 330px;
  word-break: break-word;
  line-height: 20px;
  text-align: left;
}
.ft-d2 .contactUs p {
  margin-bottom: 5px;
}
.ft-d2 .contactUs img {
  margin-right: 10px;
  vertical-align: middle;
}
.ft-links {
  padding: 5px 0 5px;
}
.ft-links ul {
  margin-left: -15px;
}
.ft-links ul li {
  margin-left: 15px;
  line-height: 32px;
  display: inline-block;
  float: left;
  color: #6b6b6b;
}
.ft-links ul li:first-child {
  margin-right: -15px;
}
.ft-copyright {
  line-height: 80px;
}
.qrcodeDiv {
  display: inline-block;
  margin-top: 15px;
  margin-left: 70px;
}
.qrcodeDiv .qr-list {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-right: 10px;
}
.qrcodeDiv .qr-list:hover div {
  display: block;
}
.qrcodeDiv .qr-list div {
  display: none;
  position: absolute;
  transform: translate(-50%, -100%);
  top: 0;
  left: 50%;
}

.ft-copyright .l span {
  margin-left: 10px;
}
.ft-copyright .l span img {
  margin-right: 14px;
  vertical-align: text-bottom;
}

.ft-copyright .r span {
  margin-right: 30px;
}
.ft-copyright .r span img {
  margin-right: 14px;
  vertical-align: text-bottom;
}
.fx-boxs {
  width: 100%;
  z-index: 99999;
}
.fx-tool {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 62px;
}
.fx-tool ul {
  margin-top: -6px;
}
.fx-tool ul li {
  margin-top: 6px;
  display: list-item;
  /* background-color: #0158ff; */
  padding: 10px;
  float: left;
}
.fx-tool ul li > a {
  width: 42px;
  height: 42px;
  line-height: 60px;
  font-size: 42px;
  text-align: center;
  display: block;
  color: #fff;
}
.fx-tool .l-1 {
  display: none;
}
.fx-tool .l-2 {
  position: relative;
}
.fx-tool .l-2 .l-con {
  top: 0;
  right: 60px;
  width: 0;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  color: #fff;
  background: #0158ff;
  position: absolute;
  overflow: hidden;
}
.fx-tool .l-2:hover .l-con {
  padding-left: 20px;
  width: 230px;
  transition: width 0.2s;
  -moz-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  -o-transition: width 0.2s;
}
.fx-tool .l-2 img {
  width: 42px;
  height: 42px;
  display: inline-block;
}
.fx-tool .l-2.l-2-2:hover .l-con {
  width: 350px;
}
.fx-tool .l-3 {
  position: relative;
}
.fx-tool .l-4 {
  position: relative;
}
.fx-tool .l-4 .l-con {
  right: 90px;
  bottom: 0;
  display: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: absolute;
}
.fx-tool .l-4 .l-con:before {
  content: ' ';
  right: -15px;
  bottom: 28px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 20px solid #fff;
  border-bottom: 10px solid transparent;
  position: absolute;
}
/* 留言 */
.fx-liuyan {
  right: 90px;
  bottom: -70px;
  padding: 15px 22px;
  width: 330px;
  display: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #ededed;
  position: absolute;
}
.fx-liuyan:before {
  content: ' ';
  right: -15px;
  bottom: 94px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 20px solid #ededed;
  border-bottom: 10px solid transparent;
  position: absolute;
}
.fx-liuyan .ly-til {
  margin: -15px -22px 0;
  padding: 15px 15px 15px 20px;
  line-height: 30px;
  font-size: 18px;
}
.fx-liuyan .ly-til h3 {
  font-size: 22px;
  float: left;
  color: #0158ff;
}
.fx-liuyan .ly-til a {
  width: 30px;
  float: right;
  text-align: center;
  display: block;
  color: #0158ff;
}
.fx-liuyan .ly-til .con {
  line-height: 30px;
  font-size: 20px;
}
.fx-liuyan .ly-con {
  margin: 0 -20px -15px;
  padding: 0 15px 15px;
  border-top: none;
}
.fx-liuyan .ly-con .c-til {
  margin-bottom: 15px;
  line-height: 24px;
  font-size: 18px;
  overflow: hidden;
}
.fx-liuyan .f-dl {
  margin-top: -5px;
}
.fx-liuyan .f-dd {
  margin-top: 5px;
  display: block;
  position: relative;
}
.fx-liuyan .f-submit {
  margin-top: 10px;
}
.fx-liuyan .f-dd i {
  left: 0;
  top: 0;
  width: 42px;
  line-height: 42px;
  font-size: 22px;
  text-align: center;
  display: block;
  color: #999;
  position: absolute;
}
.fx-liuyan .f-dd input,
.fx-liuyan .f-dd textarea {
  width: 100%;
  font-size: 16px;
  font-family: '微软雅黑', '\5fae\8f6f\96c5\9ed1', Arial, Helvetica, sans-serif;
  border: none;
  outline: 0 none;
}
.fx-liuyan .f-dd input[type='text'] {
  padding-left: 42px;
  height: 42px;
}
.fx-liuyan .f-dd textarea {
  border: 10px solid #fff;
  line-height: 24px;
  height: 100px;
}
.fx-liuyan .f-dd input[type='submit'] {
  height: 42px;
  font-size: 18px;
  border: none;
  outline: 0 none;
  color: #fff;
  background: #0158ff;
}
/* 当前位置 */
.bd-position {
  line-height: 70px;
  color: #999;
  position: relative;
}
.bd-position a {
  color: #999;
}
.bd-position a:hover {
  color: #0158ff;
}

/* TAB */
.bd-tabbox {
}
.bd-tabbox .bt-til {
  position: relative;
}
.bd-tabbox .bt-til ul {
  text-align: center;
}
.bd-tabbox .bt-til ul li {
  display: inline-block;
  margin-top: 15px;
  margin-right: 20px;
}
.bd-tabbox .bt-til ul li:nth-child(3n) {
  margin-right: 0;
}
.bd-tabbox .bt-til ul li a {
  padding: 0 10px;
  width: 320px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  text-align: center;
  color: #595757;
  border: 1px solid #595757;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  white-space: nowrap;
  text-overflow: ellipsis; /* IE/Safari */
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis; /* Opera */
  -moz-binding: url('ellipsis.xml#ellipsis'); /*FireFox*/
  display: block;
  overflow: hidden;
}
.bd-tabbox .bt-til ul .on a {
  border-color: #0158ff;
  color: #fff;
  background: #0158ff;
}
.bd-tabbox .bt-con {
  padding: 30px 0 60px;
}
.bd-tabbox .bd-con {
  width: 100%;
  display: none;
  float: left;
}
.bd-tabbox .bt-con ul {
  margin: -30px 0 0 -30px;
}
.bd-tabbox .bt-con ul li {
  margin: 0 0 30px 35px;
  display: inline-block;
  float: left;
}
.bd-tabbox .bt-con ul li a {
  width: 400px;
  transition: all 0.2s linear;
  display: block;
}
.bd-tabbox .bt-con ul li a:hover img {
  width: 95%;
}
.bd-tabbox .bt-con ul li .img {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bd-tabbox .bt-con ul li .img::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  width: 105px;
  height: 6px;
  background: #231815;
  transition: all 0.2s;
}
.bd-tabbox .bt-con ul li a:hover .img::after {
  width: 100%;
  background: #0158ff;
}
.bd-tabbox .bt-con ul li .img img {
  width: 90%;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.bd-tabbox .bt-con ul li .til {
  padding: 0 10px;
  height: 65px;
  line-height: 65px;
  font-size: 20px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis; /* IE/Safari */
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis; /* Opera */
  -moz-binding: url('ellipsis.xml#ellipsis'); /*FireFox*/
  display: block;
  overflow: hidden;
}
.bd-tabbox .bt-con ul li a:hover {
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}
.bd-tabbox .bt-con ul li a:hover .til {
  color: #0158ff;
}
/* 公共样式 */
.bd-mbox .bm-til {
  padding: 0px 0 30px;
  font-size: 0;
  text-align: center;
}
.bd-mbox .bm-til .til {
  padding: 0 40px;
  line-height: 70px;
  font-size: 44px;
  display: inline-block;
  position: relative;
}
.bd-mbox .bm-til .til:before,
.bd-mbox .bm-til .til:after {
  content: ' ';
  top: 32px;
  width: 173px;
  height: 12px;
  display: block;
  position: absolute;
}
/* .bd-mbox .bm-til .til:before {
	left: -147px;
	background: url(/public/images/bm-til-bg.png) no-repeat center top;
}
.bd-mbox .bm-til .til:after {
	right: -147px;
	background: url(/public/images/bm-til-bg.png) no-repeat center top;
} */
.bd-mbox .bm-til .til i {
  margin: 0 20px;
  font-weight: bold;
}
.bd-mbox .bm-til .til b {
  color: #0158ff;
}

.bd-mbox.hotkeyTitle .bm-til {
  position: relative;
  padding-top: 20px;
  padding-bottom: 5px;
}
.bd-mbox.hotkeyTitle .bm-til .til {
  font-size: 22px;
}
.bd-mbox.hotkeyTitle .bm-til .change-btn {
  position: absolute;
  right: 0;
  top: 46px;
  color: #0158ff;
  cursor: pointer;
  z-index: 2;
  line-height: 20px;
  height: 20px;
  font-size: 14px;
  width: 60px;
  text-align: center;
  -webkit-transition: font-size linear 0.2s;
  -moz-transition: font-size linear 0.2s;
  -ms-transition: font-size linear 0.2s;
  -o-transition: font-size linear 0.2s;
  transition: font-size linear 0.2s;
}
.bd-mbox.hotkeyTitle .bm-til .change-btn:hover {
  font-size: 16px;
}

.bd-mbox .bm-til .ftil {
  line-height: 44px;
  font-size: 20px;
  color: #595757;
}
/* 案例 */
.bd-anli {
}
.bd-anli .bm-con {
  padding-bottom: 70px;
}
.bd-anli .bm-con ul {
  margin: -18px 0 0 -18px;
}
.bd-anli .bm-con ul li {
  margin: 18px 0 0 18px;
  float: left;
}
.bd-anli.bd-anli-index .bm-con ul li {
  margin-left: 0;
}
.bd-anli .bm-con ul li a {
  width: 388px;
  display: block;
}
.bd-anli .bm-con ul li .img {
  height: 272px;
  display: block;
  overflow: hidden;
  border: 1px solid #eee;
  box-sizing: content-box;
}
.bd-anli .bm-con ul li .til {
  padding: 0 15px;
  height: 60px;
  line-height: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -moz-binding: url(ellipsis.xml#ellipsis);
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  background: #eee;
  overflow: hidden;
}
.bd-anli .bm-con ul li a:hover .til {
  color: #fff;
  background: #0158ff;
}
/* 关于 */
.bd-guanyu {
  height: 1410px;
  background: url(/public/images/bd-guanyu-bg.jpg) no-repeat center top;
}
.bd-guanyu .bm-til {
  padding-top: 70px;
}
.bd-guanyu .bm-con {
  position: relative;
}
.bd-guanyu .c-about {
  padding-left: 650px;
  height: 460px;
  position: relative;
}
.bd-guanyu .c-about .til {
  padding-top: 15px;
  margin-bottom: 30px;
  line-height: 40px;
  font-size: 36px;
  text-indent: 10px;
  display: block;
  color: #0158ff;
}
.bd-guanyu .c-about .til img {
  margin-right: 15px;
  color: #95c11a;
  vertical-align: middle;
}
.bd-guanyu .c-about .con {
  line-height: 33px;
  font-size: 18px;
  word-break: break-word;
  text-align: justify;
}
.bd-guanyu .c-about .player-boxs {
  left: 0;
  top: 0;
  width: 600px;
  height: 460px;
  position: absolute;
}
.bd-guanyu .c-tab {
  left: 650px;
  top: 415px;
  position: absolute;
}
.bd-guanyu .c-tab ul {
  margin-left: -20px;
}
.bd-guanyu .c-tab ul li {
  margin-left: 20px;
  display: inline-block;
  float: left;
}
.bd-guanyu .c-tab ul li a {
  padding: 0 45px;
  line-height: 40px;
  font-size: 18px;
  border: 1px solid #777;
  display: block;
}
.bd-guanyu .c-tab ul .on a {
  border-color: #0158ff;
  color: #fff;
  background: #0158ff;
}
.bd-guanyu .c-con {
  padding-top: 30px;
}
.bd-guanyu .bd-con {
  display: none;
}
.bd-guanyu .c-con ul {
  margin-left: -24px;
}
.bd-guanyu .c-con ul li {
  margin-left: 24px;
  display: inline-block;
  float: left;
}
.bd-guanyu .c-con ul li a {
  width: 282px;
  height: 200px;
  display: block;
  overflow: hidden;
}

.bd-guanyu .bm-con {
  padding-bottom: 70px;
}
.bd-guanyu .bm-con dl {
  margin-left: -100px;
}
.bd-guanyu .bm-con dl dd {
  margin-left: 100px;
  width: 221px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
.bd-guanyu .bm-con dl dd a {
  color: #231815;
}
.bd-guanyu .bm-con dl dd a:hover {
  color: #333;
}
.bd-guanyu .bm-con dl dd .img {
  width: 200px;
  height: 200px;
  display: inline-block;
  background: url(/public/images/bm-1.bg.png) no-repeat;
}
.bd-guanyu .bm-con dl dd .con {
  line-height: 60px;
  font-size: 44px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.bd-guanyu .bm-con dl dd a:hover .con {
  color: #0158ff;
}
.bd-guanyu .bm-con dl dd .con sup {
  font-size: 22px;
  font-weight: normal;
}
.bd-guanyu .bm-con dl dd .til {
  line-height: 30px;
  font-size: 20px;
}
.bd-guanyu .bm-con dl .d-1 .img {
  background-position: left top;
}
.bd-guanyu .bm-con dl .d-1 a:hover .img {
  background-position: left bottom;
}
.bd-guanyu .bm-con dl .d-2 .img {
  background-position: -200px top;
}
.bd-guanyu .bm-con dl .d-2 a:hover .img {
  background-position: -200px bottom;
}
.bd-guanyu .bm-con dl .d-3 .img {
  background-position: -400px top;
}
.bd-guanyu .bm-con dl .d-3 a:hover .img {
  background-position: -400px bottom;
}
.bd-guanyu .bm-con dl .d-4 .img {
  background-position: -600px top;
}
.bd-guanyu .bm-con dl .d-4 a:hover .img {
  background-position: -600px bottom;
}
/* 实力展示 */
.bd-shili {
  background: #f0f0f0;
}
.bd-shili .bm-til {
  padding-top: 70px;
}
.bd-shili .bm-con {
  padding-bottom: 90px;
}
.bd-shili .bm-con dl dd {
  width: 400px;
  display: inline-block;
  vertical-align: top;
}
.bd-shili .bm-con dl dd p {
  width: 400px;
  height: 260px;
  display: block;
}
.bd-shili .bm-con dl dd p img {
  width: 400px;
  height: 260px;
}
.bd-shili .bm-con dl dd .box {
  width: 400px;
  height: 260px;
}

.bd-shili .bm-con dl dd .box .til {
  font-weight: bold;
  padding: 56px 0 0 32px;
  font-size: 20px;
  color: #0158ff;
}
.bd-shili .bm-con dl dd .box .til img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
}
.bd-shili .bm-con dl dd .box .con {
  padding: 18px 32px 0 32px;
  font-size: 16px;
  color: #252525;
  line-height: 30px;
}

/* 推荐报价 */
.bd-arbaojia {
  padding: 30px 0 50px;
  background: #f5f5f5;
}
.bd-arbaojia .d-dd {
  display: inline-block;
}
.bd-arbaojia .d-1 {
  width: 550px;
  float: left;
}
.bd-arbaojia .d-1 ul li {
  width: 100%;
  display: inline-block;
  float: left;
}
.bd-arbaojia .d-1 ul li a {
  padding: 15px 0;
  display: block;
  position: relative;
}
.bd-arbaojia .d-1 ul li .time {
  margin-top: -15px;
  padding-top: 15px;
  height: 76px;
  border-top: 1px solid #bbb;
  color: #999;
  position: relative;
}
.bd-arbaojia .d-1 ul li:first-child .time {
  border-color: #f5f5f5;
}
.bd-arbaojia .d-1 ul li .time:before {
  content: '\e600';
  right: 15px;
  top: 25px;
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
}
.bd-arbaojia .d-1 ul li .time .day {
  margin-top: 5px;
  line-height: 46px;
  font-size: 40px;
  font-weight: bold;
}
.bd-arbaojia .d-1 ul li .time .year {
  line-height: 20px;
  font-size: 12px;
}
.bd-arbaojia .d-1 ul li .til {
  left: 70px;
  bottom: 20px;
  width: 480px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis; /* IE/Safari */
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis; /* Opera */
  -moz-binding: url('ellipsis.xml#ellipsis'); /*FireFox*/
  display: inline-block;
  position: absolute;
  overflow: hidden;
}
.bd-arbaojia .d-1 ul li a:hover .til {
  text-decoration: underline;
}
.bd-arbaojia .d-2 {
  width: 570px;
  float: right;
}
.bd-arbaojia .d-2 .d-til {
  margin-top: 10px;
  line-height: 70px;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  color: #0158ff;
}
.bd-arbaojia .d-2 .d-con {
  line-height: 44px;
  font-size: 20px;
  text-align: center;
  color: #999;
}
.bd-arbaojia .d-2 dl dd {
  margin-top: 15px;
  height: 50px;
  background: #fff;
  position: relative;
}
.bd-arbaojia .d-2 dl dd .til {
  left: 15px;
  top: 0;
  line-height: 50px;
  color: #666;
  position: absolute;
}
.bd-arbaojia .d-2 dl dd input {
  width: 100%;
  height: 50px;
  font-size: 18px;
  border: none;
  outline: 0 none;
}
.bd-arbaojia .d-2 dl dd input[type='text'] {
  padding: 0 15px 0 110px;
}
.bd-arbaojia .d-2 dl dd input[type='submit'] {
  color: #fff;
  background: #0158ff;
}
/* 德国工艺 */
.bd-gongyi {
  background: url(/public/images/bd-gongyi-bg.jpg) no-repeat center bottom;
  height: 930px;
  position: relative;
}
.bd-gongyi .bm-con {
  padding-top: 150px;
}
.bd-gongyi .bm-con dl {
  display: block;
  column-count: 2;
  -moz-column-count: 2; /* Firefox */
  -webkit-column-count: 2; /* Safari 和 Chrome */
}
.bd-gongyi .bm-con dl dd {
  width: 542px;
  margin-top: 12px;
}
.bd-gongyi .bm-con dl dd.d-1 {
  margin-top: 0;
}
.bd-gongyi .bm-con dl dd.d-2 {
  margin-top: 0;
}
.bd-gongyi .bm-con dl dd a {
  width: 542px;
  border-radius: 10px;
  display: block;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bd-gongyi .bm-con dl dd .box {
  left: 0;
  top: 0;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  background: #0158ff;
  position: absolute;
}
.bd-gongyi .bm-con dl dd .til {
  padding: 15px 0 10px;
  line-height: 30px;
  font-size: 22px;
  word-break: break-word;
}
.bd-gongyi .bm-con dl dd .con {
  word-break: break-word;
  line-height: 26px;
  font-size: 15px;
}
.bd-gongyi .bm-con dl dd a:hover .box {
  z-index: 20;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.bd-gongyi .bm-con .r {
  text-align: right;
}

.bd-gongyi .gongyi-logo {
  width: 286px;
  height: 286px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -163px;
  margin-top: -163px;
  z-index: 99;
}
.bd-gongyi .d-3 .til {
  width: 380px;
}
.bd-gongyi .d-3 .box .con {
  width: 380px;
}
.bd-gongyi .d-4 .til {
  margin-left: 95px;
}
.bd-gongyi .d-4 .box .con {
  margin-left: 95px;
  line-height: 22px;
}

/* 证书样式 */
.certificate ul li {
  width: 290px;
  display: inline-block;
  margin-left: 8px;
  margin-bottom: 15px;
}
.certificate ul li:nth-child(4n + 1) {
  margin-left: 0;
}
.certificate ul li img {
  border: 1px solid #bbb5b7;
  width: 290px;
  transition: all 0.35s;
}
.certificate ul li:hover img {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
}

/* faq */
.faq-list {
  position: relative;
  background: url(/public/images/faq_bg.jpg);
  padding-bottom: 50px;
}
.faq-list ul {
  display: flex;
  justify-content: space-between;
  height: 300px;
}
.faq-list ul li {
  width: 370px;
  height: 300px;
  position: relative;
  border: 1px solid #0158ff;
  background: rgba(255, 255, 255, 0.2);
}
.faq-list ul li::before {
  position: absolute;
  width: 50px;
  height: 50px;
  content: '';
  display: block;
  background: url(/public/images/faq-icon.png);
  background-size: 50px 50px;
  top: -25px;
  left: 50%;
  margin-left: -25px;
}
.faq-list ul li:hover h3 {
  font-weight: bold;
}
.faq-list ul li h3 {
  text-align: center;
  font-size: 22px;
  color: #0158ff;
  margin-top: 60px;
  padding: 0 20px;
}
.faq-list ul li p {
  text-align: center;
  padding: 0 20px;
  position: absolute;
  top: 176px;
  font-size: 16px;
  color: #383634;
}
.faq-list .go-faq-btn {
  text-align: center;
  display: block;
  padding: 10px 20px;
  width: 170px;
  background: #0158ff;
  color: #fff;
  margin: 0 auto;
  font-size: 22px;
  margin-top: 50px;
}
.faq-list .go-faq-btn:hover {
  font-weight: bold;
}

.sharethis-inline-share-buttons {
  margin: 10px 0;
}

/* Custom Case */
.bd-custom-case,
.bd-custom-case2 {
  text-align: center;
  padding-bottom: 50px;
}
.bd-custom-case .ctm-case-ftl,
.bd-custom-case2 .ctm-case-ftl {
  color: #bfbfbf;
  font-size: 19px;
  padding: 26px 0;
  width: 750px;
  text-align: center;
  margin: 0 auto;
  line-height: 24px;
}
.bd-custom-case .bd-banner,
.bd-custom-case2 .bd-banner {
  display: inline-block;
  position: relative;
  width: 1200px;
}
.bd-custom-case .ctm-case-banner,
.bd-custom-case2 .ctm-case-banner2 {
  width: 1200px;
  height: 312px;
}
.bd-custom-case .ctm-case-banner .ctm-text,
.bd-custom-case2 .ctm-case-banner2 .ctm-text {
  height: 62px;
  width: 390px;
  line-height: 62px;
  background-color: #eaf1ff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 20px;
  color: #1f1f1f;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  cursor: pointer;
}
.bd-custom-case .ctm-case-banner .swiper-slide:hover .ctm-text,
.bd-custom-case2 .ctm-case-banner2 .swiper-slide:hover .ctm-text {
  background-color: #0158ff;
  color: #ffffff;
}
.bd-custom-case .ctm-case-banner img,
.bd-custom-case2 .ctm-case-banner2 img {
  width: 390px;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
}
/* .bd-custom-case .swiper-pagination,.bd-custom-case2 .swiper-pagination {
	position: absolute;
	z-index: 999;
	bottom: 10px;
	width: 100%;
	text-align: center;
} */
/* .bd-custom-case .swiper-button-prev,.bd-custom-case2 .swiper-button-prev{
	position: absolute;
	top: 50%;
	left: -30px;
	width: 22px;
	height: 42px;
	background:url('/public/images/arrow_bk_left.png');
  transform: translate(0,-50%);
	z-index: 999;
	cursor: pointer;
}
.bd-custom-case .swiper-button-next,.bd-custom-case2 .swiper-button-next{
	position: absolute;
	top: 50%;
	right: -30px;
	width: 22px;
	height: 42px;
	background:url('/public/images/arrow_bk_right.png');
  transform: translate(0,-50%);
	z-index: 999;
	cursor: pointer;
} */

/* Manufacturer Advantage */
.bd-manu {
  margin: 0 auto;
  padding-top: 80px;
  max-width: 1200px;
  text-align: center;
}
.bd-manu .manu-items {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  margin: 40px 0;
}
.bd-manu .manu-items .item {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 206px;
  height: 76px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 18px;
}
.bd-manu .manu-items .item.active {
  background-color: #f2f5f1;
}
.bd-manu .manu-items .item.active::before {
  position: absolute;
  content: '';
  background-image: url(/public/images/manu_item_active.png);
  background-repeat: no-repeat;
  width: 206px;
  height: 95px;
  background-position: 96px 84px;
}
.bd-manu .manu-items .item img {
  position: absolute;
  top: -20px;
  left: -20px;
  object-fit: cover;
  /* margin: 0 14px; */
}
.bd-manu .manu-items .item .txt {
  text-align: center;
  line-height: 18px;
  margin-left: 10px;
}
.bd-manu .manu-items .item img {
  width: 43px;
  height: 43px;
}
/* .bd-manu .manu-items .item:nth-child(1) img{
	width: 43px;
	height: 42px;
}
.bd-manu .manu-items .item:nth-child(2) img{
	width: 34px;
	height: 42px;
}
.bd-manu .manu-items .item:nth-child(3) img{
	width: 40px;
	height: 42px;
}
.bd-manu .manu-items .item:nth-child(4) img{
	width: 46px;
	height: 38px;
} */
.bd-manu .manu-item-datas .data {
  display: none;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 332px;
}
.bd-manu .manu-item-datas .data.active {
  display: flex;
}
.bd-manu .manu-item-datas .data .txt {
  background-color: #f2f5f1;
  height: 332px;
  text-align: left;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.bd-manu .manu-item-datas .data .txt .tl {
  font-size: 30px;
  padding: 30px 100px;
  font-weight: bold;
}
.bd-manu .manu-item-datas .data .txt .tcont {
  font-size: 18px;
  /* padding: 0 180px 20px 100px; */
  padding: 0 30px;
  line-height: 30px;
  color: #6b6b6b;
}
.bd-manu .manu-item-datas .data .pic img {
  width: 568px;
  height: 332px;
  object-fit: cover;
}

/* Why Work With Haina */
.bd-work {
  padding-top: 80px;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.bd-work .work-items {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 0;
  margin: 30px 0;
}
.bd-work .work-items .item {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid #cccccc;
}
.bd-work .work-items .item:last-child {
  border-right: none;
}
.bd-work .work-items .item .tl {
  font-size: 20px;
  color: #0158ff;
  font-weight: bold;
  margin: 30px 0 20px 0;
}
.bd-work .work-items .item .des {
  font-size: 16px;
  color: #cccccc;
  width: 300px;
  line-height: 20px;
}

/* Our Certifications */
.bd-certification {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}
.certification_index {
  width: 100%;
  min-width: 1200px;
  height: 500px;
}
.certification_index .swiper-slide {
  width: 350px;
  height: 500px;
}
.certification_index .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Diaper Video */
.bd-diaper-video {
  text-align: center;
  margin: 60px 0;
}
.bd-diaper-video .diaper-video-pics {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  font-size: 0;
  margin-top: 30px;
}
.bd-diaper-video .diaper-video-pics .pic {
  text-align: center;
  display: inline-block;
  width: 390px;
  height: 312px;
  cursor: pointer;
  margin-left: 10px;
}
.bd-diaper-video .diaper-video-pics .pic:first-child {
  margin-left: 0;
}
.bd-diaper-video .diaper-video-pics .pic img {
  display: block;
  width: 390px;
  height: 250px;
}
.bd-diaper-video .diaper-video-pics .pic .txt {
  width: 390px;
  font-size: 20px;
  height: 62px;
  line-height: 62px;
  background-color: #eeeeee;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 20px;
  color: #0158ff;
}
.bd-diaper-video .diaper-video-pics .pic.active .txt {
  background-color: #0158ff;
  color: #ffffff;
}

/* banner 含文字 */
.bd-banner-txt {
  position: relative;
  margin-top: 100px;
  width: 100%;
  height: 440px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 80px;
}
.bd-banner-txt .banner-txt-box {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.bd-banner-txt img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.bd-banner-txt::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* background-color: rgba(255,255,255, .5); */
}
.bd-banner-txt .tl {
  position: relative;
  z-index: 3;
  font-size: 50px;
  line-height: 60px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  user-select: text;
  width: 1200px;
}
.bd-banner-txt .des {
  position: relative;
  z-index: 3;
  padding: 0 60px;
  font-size: 28px;
  color: #ffffff;
  line-height: 40px;
  user-select: text;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* Quality Assurance */
.bd-quality-assurance {
  width: 100%;
  /* background-image: url(/public/images/quality_bg.jpg); */
  background: #eeeeee;
  background-repeat: no-repeat;
  background-position: center center;
  object-fit: cover;
  text-align: center;
}
.bd-quality-assurance .tmp-tl {
  padding-top: 80px;
}
.bd-quality-assurance .list {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.bd-quality-assurance .list .item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.bd-quality-assurance .list .item .txt {
  padding: 0 30px;
  margin: 0 30px;
  text-align: left;
  width: 50%;
}
.bd-quality-assurance .list .item .txt .tl {
  font-size: 24px;
  font-weight: bold;
  color: #0158ff;
  margin-bottom: 30px;
}
.bd-quality-assurance .list .item .txt .des {
  font-size: 20px;
  color: #231815;
  line-height: 28px;
  color: #8f8c8c;
}
.bd-quality-assurance .list .item .img {
  width: 50%;
}
.bd-quality-assurance .list .item .img img {
  width: 604px;
  height: 352px;
  object-fit: cover;
}
.bd-quality-assurance .list .item.even .txt {
  order: 1;
}
/* Quality Assurance2 */
.bd-quality-assurance2 {
  width: 100%;
  text-align: center;
}

.bd-quality-assurance2 .list {
  width: 1200px;
  margin: 40px auto 0 auto;
  padding-bottom: 20px;
  font-size: 0;
  text-align: left;
}
.bd-quality-assurance2 .list .item {
  position: relative;
  display: inline-flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 600px;
  margin-bottom: 10px;
  padding: 20px 14px 0 14px;
  background-color: #f2f2f4;
  box-sizing: border-box;
}
.bd-quality-assurance2 .list .item::after {
  position: absolute;
  right: 40px;
  bottom: 10px;
  font-size: 240px;
  font-weight: bold;
  z-index: 0;
  color: #002d7c;
  opacity: 0.1;
}
.bd-quality-assurance2 .list .item:nth-child(1):after {
  content: '1';
}
.bd-quality-assurance2 .list .item:nth-child(2):after {
  content: '2';
}
.bd-quality-assurance2 .list .item:nth-child(3):after {
  content: '3';
}
.bd-quality-assurance2 .list .item:nth-child(4):after {
  content: '4';
}
.bd-quality-assurance2 .list .item:nth-child(5):after {
  content: '5';
}
.bd-quality-assurance2 .list .item:nth-child(6):after {
  content: '6';
}
.bd-quality-assurance2 .list .item.full {
  width: 100%;
  flex-flow: row nowrap;
}
.bd-quality-assurance2 .list .item .img img {
  width: 572px;
  height: 362px;
  object-fit: cover;
}
.bd-quality-assurance2 .list .item .cont {
  padding: 20px;
  height: 270px;
}
.bd-quality-assurance2 .list .item.full .cont {
  padding: 40px 20px 40px 40px;
}
.bd-quality-assurance2 .list .item .cont .tl {
  font-size: 30px;
  color: #0057ff;
  margin: 20px 0 30px 0;
  font-weight: bold;
}
.bd-quality-assurance2 .list .item .cont .des {
  font-size: 20px;
  color: #231815;
  line-height: 26px;
}

/* why-choose-us */
.bd-why-choose-us {
  text-align: center;
  color: #6b6b6b;
}
.bd-why-choose-us .des {
  font-size: 20px;
  color: #8f8c8c;
  margin: 20px 0;
  line-height: 24px;
}
.bd-why-choose-us .list {
  width: 1200px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.bd-why-choose-us .list .item {
  width: 568px;
  /* padding: 20px; */
  text-align: left;
  margin-bottom: 20px;
}
.bd-why-choose-us .list .item img {
  width: 568px;
  height: 360px;
  object-fit: cover;
}
.bd-why-choose-us .list .item .des {
  font-size: 20px;
  color: #6b6b6b;
}
.bd-why-choose-us .list .item .des .tl {
  font-size: 22px;
  font-weight: bold;
  line-height: 26px;
}
.bd-why-choose-us .list .item .des .txt {
  margin-top: 10px;
  color: #9e9ea5;
}

/* FAQ */
.bd-faq-new {
  text-align: center;
  width: 1200px;
  margin: 40px auto;
}
.bd-faq-new .tmp-tl {
  text-align: center;
}
.bd-faq-new .cont {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
.bd-faq-new .cont img {
  width: 600px;
}
.bd-faq-new .cont .ques {
  width: 600px;
  padding-left: 50px;
}
.bd-faq-new .cont .ques .item {
  text-align: left;
  margin-bottom: 40px;
  cursor: pointer;
}
.bd-faq-new .cont .ques .item:last-child {
  margin-bottom: 0;
}
.bd-faq-new .cont .ques .item .tl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  color: #009b4d;
  line-height: 20px;
}
.bd-faq-new .cont .ques .item .tl::before {
  content: '';
  position: relative;
  top: 0;
  padding-right: 12px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(/public/images/faq.png);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.bd-faq-new .cont .ques .item.active .tl::before {
  background-image: url(/public/images/faq_select.png);
}
.bd-faq-new .cont .ques .item .txt {
  display: none;
  color: #b4b4b4;
  text-align: left;
  padding-left: 50px;
  overflow: hidden;
  line-height: 24px;
  margin-top: 10px;
}

/* Our History */
.bd-our-history {
  text-align: center;
  margin: 50px 0;
  width: 100%;
  height: 429px;
  background-image: url(/public/images/our_history_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  object-fit: cover;
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.bd-our-history .timeline {
  width: 1404px;
  height: 4px;
  margin-top: 100px;
}
.bd-our-history .tmp-tl {
  color: #ffffff;
  font-size: 45px;
  margin: 60px 0;
}
.bd-our-history .our-history-banner {
  position: relative;
  width: 1200px;
  height: 250px;
  margin-top: -125px;
}
.bd-our-history .our-history-banner .cont {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  width: 200px;
  height: 250px;
}
.bd-our-history .our-history-banner .cont .txt {
  order: 1;
  width: 100%;
  height: 97px;
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
}
.bd-our-history .our-history-banner .cont i {
  order: 2;
  width: 10px;
  height: 10px;
  background-color: #f1a400;
  border-radius: 50%;
  margin-top: -4px;
}
.bd-our-history .our-history-banner .cont .date {
  order: 3;
  color: #f1a400;
  height: 97px;
  display: flex;
  align-items: center;
}
.bd-our-history .our-history-banner .cont.even .txt {
  order: 3;
}
.bd-our-history .our-history-banner .cont.even .date {
  order: 1;
}
.bd-our-history .bd-our-history-banner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.bd-our-history .bd-our-history-banner .swiper-button-prev {
  /* display:none; */
  position: absolute;
  top: 40%;
  left: -15px;
  width: 23px;
  height: 43px;
  background: url('/public/images/arrow_bk_left_white.png');
  transform: translate(0, -50%);
  z-index: 999;
  cursor: pointer;
}
.bd-our-history .bd-our-history-banner .swiper-button-next {
  position: absolute;
  top: 40%;
  right: -15px;
  width: 23px;
  height: 43px;
  background: url('/public/images/arrow_bk_right_white.png');
  transform: translate(0, -50%);
  z-index: 999;
  cursor: pointer;
}

/* Our Team */
.bd-our-team {
  width: 1200px;
  margin: 60px auto;
  text-align: center;
}
.bd-our-team .list {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-flow: row wrap;
}
.bd-our-team .list .item {
  width: 600px;
  margin-top: 20px;
}
.bd-our-team .list .item img {
  width: 580px;
  height: 400px;
  display: inline-block;
  object-fit: cover;
}
.bd-our-team .list .item .txt {
  padding: 20px 0;
  font-size: 30px;
  color: #0158ff;
  font-weight: bold;
}

/* 视频弹窗 */
.about-video {
  cursor: pointer;
}
.video-box {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}
.video-box iframe {
  position: absolute;
  width: 900px;
  height: 550px;
  z-index: 9999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #666;
}

.videoList {
  height: 350px;
}

/* Manufacturing */
.bd-maunfact {
  margin: 0 auto;
  width: 1200px;
  text-align: center;
  margin-bottom: 100px;
}
.bd-maunfact .tabs {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #aaaaaa;
  margin: 30px 0;
  text-align: center;
}
.bd-maunfact .tabs .tab {
  width: 240px;
  height: 100px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #6c6867;
  cursor: pointer;
}
.bd-maunfact .tabs .tab:not(:last-child)::after {
  position: relative;
  right: -60px;
  width: 14px;
  height: 14px;
  content: ' ';
  background-image: url(/public/images/star.png);
}
.bd-maunfact .tabs .tab.active {
  color: #0158ff;
  border-bottom: 4px solid #0158ff;
}
.bd-maunfact .tabs .tab .idx {
  font-size: 50px;
}
.bd-maunfact .tabs .tab .tl {
  font-size: 20px;
  padding-left: 8px;
}
.bd-maunfact .conts {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.bd-maunfact .conts .cont {
  display: none;
}
.bd-maunfact .conts .cont {
  display: none;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.bd-maunfact .conts .cont .img img {
  width: 600px;
  /* height: 344px; */
  height: 420px;
  object-fit: cover;
}
.bd-maunfact .conts .cont.active {
  display: flex;
}
.bd-maunfact .conts .cont .txt {
  padding: 30px;
}
.bd-maunfact .conts .cont .txt .tl {
  font-size: 30px;
  font-weight: bold;
  color: #0158ff;
  margin-bottom: 30px;
}
.bd-maunfact .conts .cont .txt .t {
  font-size: 20px;
  line-height: 30px;
  color: #8f8c8c;
}

.play-video-btn {
  width: 100%;
  height: 100%;
  position: relative;
}
.play-video-btn::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: ' ';
  background: url(/public/images/videoPlay.png) center center no-repeat;
  cursor: pointer;
}
.product-video-btn {
  position: absolute;
  z-index: 2;
  width: 600px;
  height: 430px;
}

/* --------------首页产品推荐----------------- */
.bd-machine {
  text-transform: uppercase;
  position: relative;
  padding: 80px 0;
  background: url('/public/images/hot-machine-bg.jpg') no-repeat center center;
  background-size: cover;
  text-align: center;
  width: 100%;
}
.bd-machine .mae-title {
  position: relative;
  z-index: 2;
  font-size: 45px;
  color: #0158ff;
  font-weight: bold;
  height: 80px;
  margin-bottom: 35px;
}
.bd-machine .mae-title span {
  color: #ff9600;
}
.bd-machine .mae-title::before {
  content: ' ';
  width: 122px;
  height: 5px;
  background: #0158ff;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -61px;
}
.bd-machine .mae-desc {
  text-align: center;
  color: #828282;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 60px;
  line-height: 1.5em;
  min-height: 70px;

  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.bd-machine .mae-banners {
  min-width: 1200px;
  max-width: 1350px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.product-catetory-banner .swiper {
  height: 450px;
}
.product-catetory-banner .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.product-catetory-banner .swiper .swiper-slide img {
  transition: 300ms;
  width: 300px;
  height: 225px;
  object-fit: contain;
}
.product-catetory-banner .swiper .swiper-slide.swiper-slide-active {
  z-index: 9;
}
.product-catetory-banner .swiper .swiper-slide.swiper-slide-active img {
  width: 580px;
  height: 450px;
}
/* 产品分类 */
.bd-machine .product-catetory-type {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.bd-machine .product-catetory-type::after {
  top: 22px;
  content: ' ';
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #979797;
}
.bd-machine .product-catetory-type .swiper-slide {
  position: relative;
  padding-top: 80px;
  font-size: 15px;
  color: #9c9c9c;
  cursor: pointer;
}
.bd-machine .product-catetory-type .swiper-slide::before {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -23px;
  content: '';
  display: block;
  width: 46px;
  height: 46px;
  background: url(/public/images/catetory-type.png);
}
.bd-machine .product-catetory-type .swiper-slide.swiper-slide-active {
  color: #252626;
}
.bd-machine .product-catetory-type .swiper-slide.swiper-slide-active::before {
  background: url(/public/images/catetory-type-active.png);
}
/* --------------首页产品推荐结束----------------- */
/*
相关资源
 */
.bd-related-resources {
  text-align: center;
  width: 1200px;
  margin: 40px auto;
}
.bd-related-resources .cont {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
.related-resource-l {
  width: 670px;
  text-align: left;
  padding: 0 15px;
}
.related-resource-l .pd7s8DCategory, .pd7s8DFile {
  font-weight: 600;
  color: #676767;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
}
.related-resource-l .pd7s8Box {
  padding: 30px 40px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .3);
  background-color: #fff;
  margin-bottom: 15px;
}
.related-resource-l .pd7s8Box > a {
  display: block;
  position: relative;
  padding-left: 110px;
}
.related-resource-l .pd7s8Box > a:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: url("../images/download_icon.png") center no-repeat #f4f4f4;
  border-radius: 100%;
  transition: all .3s;
}
.related-resource-l .pd7s8Box>a:hover:before{transform:rotate(360deg)}
/*.pd7s8DCategory, .pd7s8Title, .pd7s1Link a {*/
/*  font-weight: 600;*/
/*  color: #676767;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 2px;*/
/*  font-size: 15px;*/
/*}*/
.related-resource-l .pd7s8DTitle {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.paddBottom15 {
  padding-bottom: 15px;
}
.related-resource-r {
  width: 470px;
  text-align: left;
  padding: 0 15px;
}
.related-resource-r .pd7s8DFile {
  font-size: 14px;
  font-weight: 600;
  color: #676767;
}
.related-resource-r .pd7s8Text {
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  color: #333;
}
.related-resource-r .commonBtn{
  display: inline-block;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none !important;
  background: #0057ff;
  border: 1px solid #0057ff;
  transition: all .3s;
}
