/* 1600px  大于1680px */
/* 1320px  大于1400px */
/* 1170px  大于1200px */
/* 970px */
/* 768px */
/* 100% */
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
}

/* 分页 */
.pager {
  margin-bottom: 60px;
}

@media (max-width:768px) {
  .pager {
    padding: 0;
    margin-bottom: 1em;
    
  }
}


.pager .pagination {
  margin: 0;
}

.pager .pager {
  margin: 0;
}

.pager li {
  margin: 0 .4em;
  display: inline-block;
}

.pager li:first-child>a,
.pager li:last-child>a,
.pager li:first-child>span,
.pager li:last-child>span {
  padding: .5em 1.2em;
}

.pager li>a,
.pager li>span {
  background: none;
  border: 1px solid #e6e6e6;
  border-radius: 0.25em;
  padding: .5em .93em;
  font-size: 14px;
  background-color: #fff;

}

.pager li>a:hover,
.pager li>a:focus {
  text-decoration: none;
  background-color: rgba(230, 0, 18, .60);
  color: #fff;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  background-color: #e60012;
  border-color: #e60012;
}

/* 头部 */
.Header-wrapper {
  width: 100%;
  position: fixed;
  z-index: 99990;
  top: 0;
  left: 0;
  background: transparent;
  user-select: none;
  box-shadow: none;
  transition: all .4s ease;
}


@media (max-width:1170px) {
  .Header-wrapper {
    display: none;
  }
}




.Header-wrapper>.contain {
  width: 100%;
  padding-left: 60px;
}

.Header-logo-stock {
  float: left;
  position: relative;
  z-index: 999;
}

.Header-logo-stock a {
  display: flex;
  align-items: center;
  height: 88px;
}

.Header-logo {
  width: 162px;
  height: 88px;
  display: flex;
  align-items: center;
}

.Header-logo img {
  max-width: 100%;
  width: 62px;
  height: 54px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.Header-logo img.s {
  opacity: 1;
}

.Header-logo img.h {
  opacity: 0;
}

.Header-stock {
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: all .4s ease;
  padding-left: 16px;
  margin-left: 16px;
  line-height: 1;
  font-size: 0;
}

.Header-stock span,
.Header-stock p {
  line-height: inherit;
  line-height: 1;
  font-size: 15px;
  line-height: 18px;
}

.Header-search {
  float: right;
}

.Header-search-click {
  width: 80px;
  height: 88px;
  cursor: pointer;
  background: url('../images/common/searchW.svg') no-repeat center /23px auto;
  position: relative;
  z-index: 999;
}

.Header-search-click.active {
  background: url('../images/common/close.svg') no-repeat center/20px auto !important;
}

.Header-search-item {
  display: none;
  position: absolute;
  width: 100%;
  height: 88px;
  line-height: 88px;
  top: 0;
  left: 0;
  z-index: 99;
  text-align: right;
}

.Header-search-item .contain {
  width: 100%;
  padding-right: 320px;
}

.Header-search-item.active {
  display: block;
}

.Header-search-item input,
.Header-search-item button {
  display: inline-block;
  vertical-align: middle;
}

.Header-search-item input[type="text"] {
  width: 0px;
  height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #666;
  background: transparent;
}

.Header-search-item.active input[type="text"] {
  animation: HeaderSearch 0.8s ease both;
}

@keyframes HeaderSearch {
  0% {
    width: 0;
  }

  100% {
    width: 520px;
  }
}

.Header-search-item button {
  width: 50px;
  height: 40px;
  background: url('../images/common/search.svg') no-repeat center /23px auto;
  cursor: pointer;
  margin-right: 0;
}

body.onSearch .Header-navbar {
  visibility: hidden;
  opacity: 0;
}

.Header-lang {
  float: right;
  position: relative;
  z-index: 999;
  padding-right: 30px;
}

.Header-lang::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  right: 0;
  top: 50%;
  margin-top: -15px;
}

.Header-lang-menu {
  display: flex;
  align-items: center;
  height: 88px;
}

.Header-lang-menu span {
  display: block;
  padding: 0 5px;
  color: #fff;
  font-size: 18px;
}

.Header-lang-menu i {
  font-size: 22px;
  color: #fff;
}

.Header-lang.active .Header-lang-menu span {
  color: #e60012;
}

.Header-lang.active .Header-lang-menu i {
  color: #e60012;
}

/* 多个语言 */
.Header-lang-more {
  display: none;
  z-index: 9;
  width: 140px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.Header-lang-more:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: transparent transparent #efefef transparent;
  position: absolute;
  top: -8px;
  left: 50%;
  margin: 0 0 0 -8px;
}

.Header-lang-more a {
  display: block;
  font-size: 16px;
  color: #666;
  text-align: center;
  padding: 10px 0;
}

.Header-lang-more a span {
  display: inline-block;
}

.Header-lang-more a:hover {
  color: #fff;
  background: #e60012;
}

.Header-lang.active .Header-lang-more {
  display: block;
  animation: langInUp .4s ease-out;
}

@keyframes langInUp {
  0% {
    transform: translateY(20px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.Header-navbar {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  visibility: visible;
  opacity: 1;
}

.Header-navbar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

body.PC .Header-navbar {
  display: block !important;
  border-bottom: 1px solid rgba(225, 225, 225, 0.3);
}

.Header-navbar li {
  margin: 0 20px;
  z-index: 9;
}

.Header-navbar li:last-child {
  margin-right: 0;
}

.Header-navbar li:first-child {
  margin-left: 0;
}

.Header-navbar li>a {
  color: #fff;
  position: relative;
  line-height: 88px;
  display: block;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.Header-navbar li>a>b {
  margin-left: 1px;
}

.Header-navbar li>a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 3px;
  background: #fff;
  z-index: 1;
  opacity: 0.9;
}

.Header-navbar li.active>a::after,
.Header-navbar li>a:hover::after {
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}


.Header-navbar li:hover>a::after {
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}


.Header-menu {
  /* position: relative; */
  position: inherit !important;
  height: 88px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  transition: color .4s ease;
}

.Header-navbar li:hover .Header-menu,
.Header-navbar li.active .Header-menu {
  color: #e60012 !important;
}

.Header-arrow {
  display: none;
}

/* -- */
.Header-drop {
  display: none;
  position: absolute;
  background: #eee;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.Header-drop::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #eee;
  left: 0;
  top: 0;
  z-index: 2;
}

.Header-drop-case {
  width: 100%;
}

.Header-case .contain {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 68px 0;
  min-height: 470px;
  width: 1400px;
}

.Header-case .contain::after {
  content: "";
  position: absolute;
  width: calc(100vw - 288px + (1400px - 100vw)/2);
  height: 100%;
  right: calc((1400px - 100vw)/2);
  top: 0;
  background: #fff url('../images/common/dropBg.png') no-repeat right bottom -204px/632px auto;
}

.Header-case-menu {
  width: 288px;
  position: relative;
  z-index: 6;
}

.Header-case-menu .link {
  width: 100%;
  cursor: pointer;
  margin-top: 5px;
  display: flex;
  height: 50px;
  color: #333;
  align-items: center;
  transition: all .6s ease;
  position: relative;
  padding-left: 20px;
}

.Header-case-menu .link:first-child {
  margin-top: 0;
}

.Header-case-menu .link span {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}

.Header-case-menu .link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #e60012;
  z-index: 1;
  opacity: 0;
  transition: all .4s ease;
}

.Header-case-menu .link::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 18px;
  top: 50%;
  margin-top: -9px;
  right: 8px;
  transform: scale(0);
  background: url('../images/common/dropIcon.png') no-repeat center/100% auto;
  z-index: 2;
  opacity: 0;
  transition: all .4s ease;
}

.Header-case-menu .link.active {
  color: #fff;
}

.Header-case-menu .link.active::before {
  width: calc(100% + 32px);
  opacity: 1;
}

.Header-case-menu .link.active::after {
  opacity: 1;
  transform: scale(1);
}

.Header-case-mix {
  width: calc(100% - 288px);
  padding-left: 90px;
  position: relative;
  z-index: 6;
}

.Header-case-items {
  width: 100%;
  display: none;
}

.Header-case-items.active {
  display: block;
}

.Header-case-ul {
  display: flex;
  flex-wrap: wrap;
  margin: -40px 0 0 -50px;
}

.Header-case-li {
  width: calc(25% - 50px);
  margin: 40px 0 0 50px;
}

.Header-case-items:nth-child(2) .Header-case-ul,
.Header-case-items:nth-child(4) .Header-case-ul {
  margin: -20px 0 0 -20px;
}

.Header-case-items:nth-child(2) .Header-case-li,
.Header-case-items:nth-child(4) .Header-case-li {
  width: calc(20% - 20px);
  margin: 20px 0 0 20px;
}

.Header-case-li-name {
  display: flex;
  width: 100%;
  height: 32px;
  position: relative;
  line-height: 1;
  font-size: 18px;
  font-weight: 500;
}

.Header-case-li-name span {
  padding-right: 20px;
  color: #333;
  background: url('../images/common/arrRC.svg') no-repeat right -2px top/18px auto;
  transition: all .4s ease;
}

.Header-case-li-name::before,
.Header-case-li-name::after {
  content: "";
  position: absolute;
  height: 1px;
  right: 0;
  bottom: 0;
}

.Header-case-li-name::before {
  width: 100%;
  background: #dcdcdc;
}

.Header-case-li-name::after {
  width: 0;
  background: #e60012;
  opacity: 0;
  transition: width .4s ease, opacity .1s ease .4s;
}

.Header-case-li-name:hover span {
  color: #e60012;
  background-image: url('../images/common/arrRH.svg');
}

.Header-case-li-name:hover::after {
  width: 100%;
  opacity: 1;
  right: auto;
  left: 0;
  transition: width .4s ease .1s, opacity .1s ease;
}

.Header-case-li-more {
  width: 100%;
  margin-top: 12px;
}

.Header-case-li-more .items {
  width: 100%;
  position: relative;
}

.Header-case-li-more .items a {
  display: flex;
  align-items: center;
  line-height: 26px;
  padding-right: 36px;
  font-size: 15px;
  color: #666;
  transition: all .4s ease;
  width: 100%;
  position: relative;
}

.Header-case-li-more .items a.name {
  min-height: 36px;
  line-height: normal;
}

.Header-case-li-more .items .name {
  position: relative;
}

.Header-case-li-more .items .arrow {
  display: block;
  width: 36px;
  height: 36px;
  pointer-events: none;
  position: absolute;
  z-index: 4;
  right: 0;
  top: 0;
  background: url('../images/common/arrD.svg') no-repeat center/16px auto;
}

.Header-case-li-more .items .arrow.active {
  transform: rotate(180deg);
}

.Header-case-li-more .items .drop {
  width: 100%;
  display: none;
}

.Header-case-li-more .items .drop a {
  position: relative;
  padding-left: 10px;
}

.Header-case-li-more .items .drop a::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #666;
  left: 0;
  top: 12px;
  transition: all .4s ease;
}

.Header-case-li-more .items a:hover {
  color: #e60012;
}

.Header-case-li-more .items .drop a:hover::before {
  background: #e60012;
}


/* 下拉 */
.Header-arr {
  display: none;
}

.Header-dropdown {
  display: none;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 88px;
  left: 0;
  border-top: 1px solid #eee;
  padding: 20px 0 20px;
  text-align: left;
  border-bottom: 1px rgba(0, 0, 0, 0.05) solid;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.15);

}

.Header-dropdown-contain {
  display: block;
}

.Header-dpmenu {
  width: 100%;
  min-height: 120px;
}

.Header-dpmenu ul {
  width: 100%;
  font-size: 0;
  text-align: center;
  margin-bottom: -17px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none
}

.Header-dpmenu ul::-webkit-scrollbar {
  width: 0 !important
}

.Header-dpmenu ul li {
  display: inline-block;
  width: 14.28%;
  margin-right: 20px;
  margin: 0;
  vertical-align: top;
  padding: 6px;
  padding-bottom: 20px;
  display: inline-block;
  width: 14.28%;
  margin-right: 0;

  white-space: normal
}

.Header-dpmenu ul li:last-child {
  margin-right: 0
}

.Header-dpmenu ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #666;
}

.Header-dpmenu ul li a>div {
  position: relative;
  width: 100%;
  height: 200px;
  left: 0;
  background-color: #f7f8fa;
  overflow: hidden;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.Header-dpmenu ul li a>div.vp-head-product-img-2 .vp-head-product-img-2-1 {
  -webkit-transform: translateX(15px);
  -moz-transform: translateX(15px);
  -ms-transform: translateX(15px);
  -o-transform: translateX(15px);
  transform: translateX(15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-2:hover .vp-head-product-img-2-1 {
  -webkit-transform: translateX(24px);
  -moz-transform: translateX(24px);
  -ms-transform: translateX(24px);
  -o-transform: translateX(24px);
  transform: translateX(24px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-2 .vp-head-product-img-2-2 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-2:hover .vp-head-product-img-2-2 {
  -webkit-transform: translateX(-24px);
  -moz-transform: translateX(-24px);
  -ms-transform: translateX(-24px);
  -o-transform: translateX(-24px);
  transform: translateX(-24px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-3 .vp-head-product-img-3-1 {
  -webkit-transform: translateX(15px);
  -moz-transform: translateX(15px);
  -ms-transform: translateX(15px);
  -o-transform: translateX(15px);
  transform: translateX(15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-3:hover .vp-head-product-img-3-1 {
  -webkit-transform: translateX(30px);
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  -o-transform: translateX(30px);
  transform: translateX(30px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-3 .vp-head-product-img-3-2 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-3:hover .vp-head-product-img-3-2 {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0)
}

.Header-dpmenu ul li a>div.vp-head-product-img-3 .vp-head-product-img-3-3 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-3:hover .vp-head-product-img-3-3 {
  -webkit-transform: translateX(-30px);
  -moz-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  -o-transform: translateX(-30px);
  transform: translateX(-30px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-4 .vp-head-product-img-4-1 {
  -webkit-transform: translateX(15px);
  -moz-transform: translateX(15px);
  -ms-transform: translateX(15px);
  -o-transform: translateX(15px);
  transform: translateX(15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-4:hover .vp-head-product-img-4-1 {
  -webkit-transform: translateX(45px);
  -moz-transform: translateX(45px);
  -ms-transform: translateX(45px);
  -o-transform: translateX(45px);
  transform: translateX(45px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-4 .vp-head-product-img-4-2 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-4:hover .vp-head-product-img-4-2 {
  -webkit-transform: translateX(15px);
  -moz-transform: translateX(15px);
  -ms-transform: translateX(15px);
  -o-transform: translateX(15px);
  transform: translateX(15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-4 .vp-head-product-img-4-3 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-4:hover .vp-head-product-img-4-3 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-4 .vp-head-product-img-4-4 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-4:hover .vp-head-product-img-4-4 {
  -webkit-transform: translateX(-45px);
  -moz-transform: translateX(-45px);
  -ms-transform: translateX(-45px);
  -o-transform: translateX(-45px);
  transform: translateX(-45px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5 .vp-head-product-img-5-1 {
  -webkit-transform: translateX(15px);
  -moz-transform: translateX(15px);
  -ms-transform: translateX(15px);
  -o-transform: translateX(15px);
  transform: translateX(15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5:hover .vp-head-product-img-5-1 {
  -webkit-transform: translateX(44px);
  -moz-transform: translateX(44px);
  -ms-transform: translateX(44px);
  -o-transform: translateX(44px);
  transform: translateX(44px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5 .vp-head-product-img-5-2 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5:hover .vp-head-product-img-5-2 {
  -webkit-transform: translateX(22px);
  -moz-transform: translateX(22px);
  -ms-transform: translateX(22px);
  -o-transform: translateX(22px);
  transform: translateX(22px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5 .vp-head-product-img-5-3 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5:hover .vp-head-product-img-5-3 {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5 .vp-head-product-img-5-4 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5:hover .vp-head-product-img-5-4 {
  -webkit-transform: translateX(-22px);
  -moz-transform: translateX(-22px);
  -ms-transform: translateX(-22px);
  -o-transform: translateX(-22px);
  transform: translateX(-22px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5 .vp-head-product-img-5-5 {
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px)
}

.Header-dpmenu ul li a>div.vp-head-product-img-5:hover .vp-head-product-img-5-5 {
  -webkit-transform: translateX(-44px);
  -moz-transform: translateX(-44px);
  -ms-transform: translateX(-44px);
  -o-transform: translateX(-44px);
  transform: translateX(-44px)
}

.Header-dpmenu ul li a>div>div {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .5s cubic-bezier(.25, .46, .45, .94);
  transition: -webkit-transform .5s cubic-bezier(.25, .46, .45, .94);
  -o-transition: -o-transform .5s cubic-bezier(.25, .46, .45, .94);
  -moz-transition: transform .5s cubic-bezier(.25, .46, .45, .94), -moz-transform .5s cubic-bezier(.25, .46, .45, .94);
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  transition: transform .5s cubic-bezier(.25, .46, .45, .94), -webkit-transform .5s cubic-bezier(.25, .46, .45, .94), -moz-transform .5s cubic-bezier(.25, .46, .45, .94), -o-transform .5s cubic-bezier(.25, .46, .45, .94);
  transition: transform .5s cubic-bezier(.25, .46, .45, .94), -webkit-transform .5s cubic-bezier(.25, .46, .45, .94);
  z-index: 0
}

.Header-dpmenu ul li a>div>div.vp-head-product-img-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%)
}

.Header-dpmenu ul li a>div>div img {
  height: 100%
}

.Header-dpmenu ul li a .vp-head-product-name {
  font-size: 14px;
  color: #242933;
  font-weight: 400;
  line-height: 20px;
  margin-top: 12px;
  -webkit-transition: color .4s ease-in-out;
  -o-transition: color .4s ease-in-out;
  -moz-transition: color .4s ease-in-out;
  transition: color .4s ease-in-out;
  position: relative
}

.Header-dpmenu ul li a .vp-head-product-name.vp-head-product-new:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  width: 32px;
  height: 16px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgMzIgMTYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZyBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjMyIiBoZWlnaHQ9IjE2Ij48L3JlY3Q+CiAgICAgIDxwYXRoIGQ9Ik04LjIxMTcxMzQ4LDAgQzEuMDE4Njc5NzMsMCAwLjA3NjUzOTU2NzQsNS41NzUyODUwMSAwLjAwNDg5NTIyMjE5LDcuNzE0NTkxNCBMMCw3Ljk5OTk4MDkxIEMwLDkuODcyMTE3ODEgMC42NzA2Mjk3MDcsMTYgOC4yMTE3MTM0OCwxNiBMMjMuNzg4Mjg2NSwxNiBDMzEuMzI5NDA4NSwxNiAzMiw5Ljg3MjExNzgxIDMyLDcuOTk5OTgwOTEgTDMxLjk5NTEwNSw3LjcxNDU5MTQgQzMxLjkyMzQ2MzgsNS41NzUyODUwMSAzMC45ODEzNTY4LDAgMjMuNzg4Mjg2NSwwIEw4LjIxMTcxMzQ4LDAgWiBNOC4yMTE3MTM0OCwxIEwyMy43ODgyODY1LDEgQzI5LjA2MzU4MjQsMSAzMSw0LjA3OTk5MzU5IDMxLDcuOTk5OTgwOTEgQzMxLDExLjkyMDAwNTEgMjkuMDYzNTg2OSwxNSAyMy43ODgyODY1LDE1IEw4LjIxMTcxMzQ4LDE1IEMyLjkzNjQzOTMyLDE1IDEsMTEuOTE5OTc2NyAxLDcuOTk5OTgwOTEgQzEsNC4wODAwMjE5NyAyLjkzNjQ0Mzc1LDEgOC4yMTE3MTM0OCwxIFoiIGZpbGw9IiM4QThGOTkiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPgogICAgICA8cGF0aCBkPSJNNS44MjgsNS4yNDggTDUuODI4LDExLjM0NCBMNi45MTYsMTEuMzQ0IEw2LjkxNiw2Ljk1MiBMNi45MzIsNi45NTIgTDkuOTQ4LDExLjM0NCBMMTEuMDg0LDExLjM0NCBMMTEuMDg0LDUuMjQ4IEwxMC4wMDQsNS4yNDggTDEwLjAwNCw5LjY0OCBMOS45ODgsOS42NDggTDYuOTY0LDUuMjQ4IEw1LjgyOCw1LjI0OCBaIE0xMi4zNTYsNS4yNDggTDEyLjM1NiwxMS4zNDQgTDE3LjAyOCwxMS4zNDQgTDE3LjAyOCwxMC40IEwxMy40NDQsMTAuNCBMMTMuNDQ0LDguNzEyIEwxNi42NDQsOC43MTIgTDE2LjY0NCw3Ljc1MiBMMTMuNDQ0LDcuNzUyIEwxMy40NDQsNi4yMDggTDE2Ljk5Niw2LjIwOCBMMTYuOTk2LDUuMjQ4IEwxMi4zNTYsNS4yNDggWiBNMTcuNSw1LjI0OCBMMTguNjkyLDUuMjQ4IEwyMC4wNiw5LjkyIEwyMC4wNzYsOS45MiBMMjEuNSw1LjI0OCBMMjIuNzQ4LDUuMjQ4IEwyNC4yMTIsOS45MiBMMjQuMjI4LDkuOTIgTDI1LjU3Miw1LjI0OCBMMjYuNzU2LDUuMjQ4IEwyNC44MzYsMTEuMzQ0IEwyMy42MDQsMTEuMzQ0IEwyMi4xNCw2LjU5MiBMMjIuMTI0LDYuNTkyIEwyMC42ODQsMTEuMzQ0IEwxOS40NiwxMS4zNDQgTDE3LjUsNS4yNDggWiIgZmlsbD0iIzU3NUM2NiIgZmlsbC1ydWxlPSJub256ZXJvIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==");
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  margin-left: 6px
}

/*查看全部*/

.vp-head-product-links-default {
  opacity: 1;
  -webkit-transition: opacity .3s ease-in .2s;
  -o-transition: opacity .3s ease-in .2s;
  -moz-transition: opacity .3s ease-in .2s;
  transition: opacity .3s ease-in .2s;
  -ms-transition: opacity .3s ease-in .2s;
}


.Header-droppro .vp-head-product-links-default {
  width: 100%;
  font-size: 0;
  margin-top: 32px;
  height: 44px;
  text-align: center;
  padding-bottom: 0;
  position: relative;
  opacity: 1;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper {
  display: inline-block;
  background-color: #f7f8fa;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  -webkit-transition: background-color .4s ease-in-out;
  -o-transition: background-color .4s ease-in-out;
  -moz-transition: background-color .4s ease-in-out;
  transition: background-color .4s ease-in-out;
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a {
  display: inline-block;
  width: 160px;
  height: 44px;
  line-height: 44px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: background-color .4s ease-in-out;
  -o-transition: background-color .4s ease-in-out;
  -moz-transition: background-color .4s ease-in-out;
  transition: background-color .4s ease-in-out;
  position: relative
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a:first-of-type {
  margin-right: 1px
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a.vp-head-product-links-line:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #dfe1e6;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -1px;
  display: none;
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a .vp-head-product-name {
  font-size: 14px;
  color: #242933;
  font-weight: 400;
  line-height: 44px;
  -webkit-transition: color .4s ease-in-out;
  -o-transition: color .4s ease-in-out;
  -moz-transition: color .4s ease-in-out;
  transition: color .4s ease-in-out;
  -ms-transition: color .4s ease-in-out;
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a .vp-head-product-name:before {
  content: "";
  font-family: "FontAwesome";
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  font-size: 16px;
  color: #242933;
  margin-right: 4px;
  -webkit-transition: color .4s ease-in-out;
  -o-transition: color .4s ease-in-out;
  -moz-transition: color .4s ease-in-out;
  transition: color .4s ease-in-out;
  -ms-transition: color .4s ease-in-out;
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a:first-of-type .vp-head-product-name:before {
  content: "\e905"
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a:last-of-type .vp-head-product-name:before {
  content: "\f00a"
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a:hover .vp-head-product-name {
  color: #fff
}

.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper a:hover .vp-head-product-name:before {
  color: #fff
}


.Header-droppro .vp-head-product-links-default .vp-head-product-links-wrapper:hover {
  background: #e60012;
}


.Header-droppro .vp-head-product-links-default .vp-head-product-btn {
  display: none;
  height: 44px
}

.Header-droppro .vp-head-product-links-default .vp-head-product-next,
.Header-droppro .vp-head-product-links-default .vp-head-product-prev {
  position: absolute;
  top: 0;
  width: 72px;
  height: 44px;
  line-height: 44px;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  background-color: #f7f8fa;
  text-align: center;
  cursor: pointer
}

.Header-droppro .vp-head-product-links-default .vp-head-product-next:before,
.Header-droppro .vp-head-product-links-default .vp-head-product-prev:before {
  content: "";
  font-family: "Header-icon-pc";
  font-size: 28px;
  color: #242933
}

.Header-droppro .vp-head-product-links-default .vp-head-product-next:not(.vp-head-product-btn-disabled):hover:before,
.Header-droppro .vp-head-product-links-default .vp-head-product-prev:not(.vp-head-product-btn-disabled):hover:before {
  color: #415fff
}

.Header-droppro .vp-head-product-links-default .vp-head-product-next.vp-head-product-btn-disabled,
.Header-droppro .vp-head-product-links-default .vp-head-product-prev.vp-head-product-btn-disabled {
  cursor: default
}

.Header-droppro .vp-head-product-links-default .vp-head-product-next.vp-head-product-btn-disabled:before,
.Header-droppro .vp-head-product-links-default .vp-head-product-prev.vp-head-product-btn-disabled:before {
  color: #b7b9bd
}

.Header-droppro .vp-head-product-links-default .vp-head-product-prev {
  left: 0
}

.Header-droppro .vp-head-product-links-default .vp-head-product-prev:before {
  content: "\e902"
}

.Header-droppro .vp-head-product-links-default .vp-head-product-next {
  right: 0
}

.Header-droppro .vp-head-product-links-default .vp-head-product-next:before {
  content: "\e903"
}




.Header-dpmenu ul.product-show {
  visibility: visible;
  opacity: 1
}


.Header-dpcont {
  width: 83%;
  float: right;
}

.Header-dpitem {
  display: none;
  width: 100%;
  overflow: hidden;
}

.Header-dpitem.ontrue {
  display: block;
}

.Header-prolink {
  width: 60%;
  float: left;
  padding: 0 60px;
  border-right: 1px solid #e5e5e5;
  min-height: 180px;
  overflow: hidden;
}

.Header-prolink p {
  display: block;
  width: 50%;
  float: left;
}

.Header-prolink a {
  display: inline-block;
  font-size: 15px;
  color: #333;
  height: 36px;
  line-height: 36px;
  transition: all .4s ease;
}

.Header-prolink a.ontrue {
  color: #1f5dcb;
}

.Header-proimg {
  width: 40%;
  text-align: center;
  float: right;
}

.Header-proimg-img {
  max-width: 100%;
  display: none;
  margin: 0 auto;
  height: 180px;
}

.Header-proimg-img.ontrue {
  display: block;
}

.Header-sonwdimg {
  width: 100%;
  overflow: hidden;
  padding-left: 60px;
}

.Header-sonwd {
  width: 52%;
  float: left;
}

.Header-sonwd p {
  font-size: 14px;
  color: #666;
  line-height: 28px;
}

.Header-sonimg {
  width: 34%;
  float: right;
}

.Header-sonimg img {
  width: 100%;
  object-fit: cover;
}

.Header-dropmore .Header-dpmenu {
  width: 24%;
}

.Header-dropmore .Header-dpcont {
  width: 76%;
}

.Header-dropmore .Header-sonimg {
  width: 35.2%;
}


/* 左右图标 */
.Header-dpmenu ul {
  padding-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.Header-dpmenu ul li {
  width: 20%;
}

.Header-dpmenu ul li a {
  display: flex;
  line-height: 1;
  border: 1px solid rgba(255, 0, 0, 0);
  border-radius: 5px;
  padding: 10px;
  align-content: center;
  align-items: center;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.Header-dpmenu ul li a::after {
  height: 2px;
  opacity: .30;
}

.Header-dpmenu ul li a>div {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  background: none;
}

.Header-dpmenu ul li a>div img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  display: none;
  -ms-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}


.Header-dpmenu ul li a>div i.iconfont {
  font-size: 48px;
  line-height: 60px;
  transition: all 100ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: all 100ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 100ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -ms-transition: all 100ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 100ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}


.Header-dpmenu ul li a:hover>div i.iconfont {
  font-size: 52px;
}

.Header-dpmenu ul li a .vp-head-product-name {
  font-size: 16px;
  margin-top: 0;
}

.Header-dpmenu ul li a:hover {
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.Header-dpmenu ul li a:hover>div img {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Header-dpmenu ul li a:hover .vp-head-product-name {
  font-weight: bold;
  color: #fff;
}

.Header-dpmenu ul li a.class1 {
  background-color: #001F3F;
  color: #fff !important;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Header-dpmenu ul li a.class2 {
  background-color: #FF4136;
  color: #fff !important;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Header-dpmenu ul li a.class3 {
  background-color: #7D3C98;
  color: #fff !important;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Header-dpmenu ul li a.class4 {
  background-color: #2ECC40;
  color: #fff !important;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Header-dpmenu ul li a.class5 {
  background-color: #A70000;
  color: #fff !important;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Header-dpmenu ul li a.class6 {
  background-color: #00416A;
  color: #fff !important;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Header-dpmenu ul li a.class7 {
  background-color: #6C757D;
  color: #fff !important;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.Header-dpmenu ul li a.class8 {
  background-color: #FF007F;
  color: #fff;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/*子菜单新闻中心*/
.Header-dropnews .Header-dpmenu ul {
  justify-content: center;
}



/* 扩充菜单 */
.Header-navclick {
  position: relative;
  z-index: 999;
  width: 88px;
  height: 88px;
  cursor: pointer;
  float: right;
  user-select: none;
  align-items: center;
  display: flex;
  justify-content: center;
  background: #e60012;
}

.Header-navclick span {
  width: 30px;
  height: 2px;
  position: relative;
  background: #fff;
}

.Header-navclick span:before,
.Header-navclick span:after {
  content: "";
  transition: top .2s linear, bottom .2s linear;
  transform-origin: center !important;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  left: 0;
  width: 100%;
}

.Header-navclick span:before {
  top: -10px;
}

.Header-navclick span:after {
  bottom: -10px;
}

.Header-navclick:hover span::before {
  top: 0;
}

.Header-navclick:hover span::after {
  bottom: 0;
}

.Header-navclick.active span::before {
  top: 0;
  transform: rotate(45deg);
  transition: transform .2s linear;
}

.Header-navclick.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
  transition: transform .2s linear;
}

.Header-navclick.active span {
  background: transparent;
}





/* -- */
.Header-website-click {
  display: none;
}

.Header-website-shade {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9991;
  transition: all .4s ease .8s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.Header-website-shade.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all .4s ease;
}

.Header-website {
  position: absolute;
  width: 400px;
  transition: transform .6s ease .4s, opacity .2s ease .8s, visibility .2s ease .8s;
  transform: translateX(490px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #e60012;
  color: #fff;
  right: 0;
  top: 0;
  padding: 48px;
  height: 100vh;
  z-index: 9994;
}

.Header-website.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .6s ease, opacity .2s ease, visibility .2s ease;
}

.Header-website-mix {
  width: 100%;
}

.Header-website-head {
  width: 100%;
  position: relative;
  font-size: 20px;
  line-height: 1;
  padding-top: 62px;
  background: url('../images/common/dropTb.png') no-repeat top left/48px auto;
}

.Header-website-link {
  width: 100%;
  margin-top: 20px;
}

.Header-website-link p {
  display: flex;
  align-items: center;
  height: 34px;
  padding-left: 18px;
  background: url('../images/common/arrRW.svg') no-repeat left center/16px auto;
}

.Header-website-link p a {
  font-size: 16px;
  position: relative;
}

.Header-website-link p a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  right: 0;
  bottom: -2px;
  background: #fff;
  transition: width .4s ease, opacity .1s ease .4s;
}

.Header-website-link p a:hover::after {
  right: auto;
  left: 0;
  width: 100%;
  opacity: 1;
  transition: width .4s ease .1s, opacity .1s ease;
}

.Header-website-code {
  margin-top: 32px;
}

.Header-website-code .name {
  display: flex;
  align-items: center;
  height: 18px;
  font-size: 16px;
  padding-left: 30px;
  background: url('../images/common/dropWx.png') no-repeat left center/22px auto;
  line-height: 1;
}

.Header-website-code .code {
  width: 148px;
  margin-top: 18px;
}

.Header-website-code .code img {
  max-width: 100%;
  object-fit: cover;
}

.Header-website-close {
  width: 88px;
  height: 88px;
  opacity: 0;
  transform: translateY(-88px);
  z-index: 8;
  transition: all .4s ease;
  background: #e60012;
  position: absolute;
  top: 0;
  left: -88px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Header-website-close::after {
  content: "";
  width: 26px;
  height: 26px;
  background: url('../images/common/closeW.svg') no-repeat center/100% auto;
  transition: all .4s ease;
}

.Header-website-close:hover::after {
  transform: rotate(90deg);
}

.Header-website.active .Header-website-close {
  opacity: 1;
  transform: translateY(0);
  transition: all .4s ease .6s;
}

/* 透明 */
.bodyScroll .Header-wrapper,
.bodyMouse .Header-wrapper,
.bodySearch .Header-wrapper,
.noLucency .Header-wrapper,
.bodyMenu .Header-wrapper {
  background: #fff;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.bodyScroll .Header-menu,
.bodyMouse .Header-menu,
.bodySearch .Header-menu,
.noLucency .Header-menu,
.bodyMenu .Header-menu {
  color: #747474;
}

.bodyScroll .Header-menu a,
.bodyMouse .Header-menu a,
.bodySearch .Header-menu a,
.noLucency .Header-menu a,
.bodyMenu .Header-menu a {
  color: #333333;
}

.bodyScroll .Header-menu a:after,
.bodyMouse .Header-menu a:after {
  background: rgb(230 0 18);
}

.bodyScroll .Header-logo img.s,
.bodyMouse .Header-logo img.s,
.bodySearch .Header-logo img.s,
.noLucency .Header-logo img.s,
.bodyMenu .Header-logo img.s {
  opacity: 0;
}

.bodyScroll .Header-logo img.h,
.bodyMouse .Header-logo img.h,
.bodySearch .Header-logo img.h,
.noLucency .Header-logo img.h,
.bodyMenu .Header-logo img.h {
  opacity: 1;
}

.bodyScroll .Header-stock,
.bodyMouse .Header-stock,
.bodySearch .Header-stock,
.noLucency .Header-stock,
.bodyMenu .Header-stock {
  color: #666;
  border-left: 1px solid #999;
}

.bodyScroll .Header-lang::before,
.bodyMouse .Header-lang::before,
.bodySearch .Header-lang::before,
.noLucency .Header-lang::before,
.bodyMenu .Header-lang::before {
  background: #999;
}

.bodyScroll .Header-search-click,
.bodyMouse .Header-search-click,
.bodySearch .Header-search-click,
.noLucency .Header-search-click,
.bodyMenu .Header-search-click {
  background-image: url('../images/common/search.svg');
}

.bodyScroll .Header-lang .Header-lang-menu span {
  color: #666;
}

.bodyScroll .Header-lang .Header-lang-menu i {
  color: #666;
}

.bodySearch .Header-navbar {
  visibility: hidden;
  opacity: 0;
}

/* 不透明 */
.noLucency .Container-wrapper {
  margin-top: 88px;
}

/* 底部 */
.Footer-wrapper {
  width: 100%;
  background: #39434b url('../images/common/bg1.jpg') no-repeat center center;
  position: relative;
  z-index: 9;
  background-size: cover;
}

.Footer-wrapper>.contain {
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
}

.Footer-items {
  width: 100%;
  padding: 100px 0 64px;
  justify-content: space-between;
  align-items: flex-start;
}

.Footer-info {
  width: 300px;
}

.Footer-info-logo {
  width: 100%;
}

.Footer-info-logo img {
  max-width: 170px;
}

.Footer-info-cont {
  width: 100%;
  margin-top: 30px;
}

.Footer-info-cont .items {
  width: 100%;
  align-items: flex-start;
  margin-top: 14px;
}

.Footer-info-cont .items:first-child {
  margin-top: 0;
}

.Footer-info-cont .items:not(:first-child) {
  font-family: "MR";
}

.Footer-info-cont .items .icon {
  width: 34px;
  padding-right: 8px;
  display: flex;
  align-items: center;
  height: 24px;
}

.Footer-info-cont .items .icon img {
  max-width: 100%;
}

.Footer-info-cont .items .text {
  width: calc(100% - 34px);
  font-size: 14px;
  color: #fff;
  opacity: 0.75;
  line-height: 24px;
}

.Footer-info-cont .items .text p {
  display: flex;
  width: 100%;
  margin-top: 6px;
}

.Footer-info-cont .items .text p:first-child {
  margin-top: 0;
}

.Footer-info-cont .items .text p a {
  position: relative;
  color: #fff;
}

.Footer-info-cont .items .text p a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 2px;
}

/* -- */
.FooterCode {
  width: 100%;
  font-size: 0;
  margin-top: 42px;
}

.FooterCode a {
  width: 30px;
  height: 30px;
  margin-left: 7px;
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  transition: all .4s ease;
}

.FooterCode a>img {
  width: 22px;
}

.FooterCode a:first-child {
  margin-left: 0;
}

.FooterCode-img {
  display: none;
  width: 152px;
  height: 152px;
  padding: 6px;
  position: absolute;
  bottom: 42px;
  left: 50%;
  margin-left: -76px;
  background: #fff;
  border-radius: 4px;
}

.FooterCode-img::after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-top-color: #fff;
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
}

.FooterCode-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.FooterCode a:hover .FooterCode-img {
  display: block;
  animation: FooterCode .6s ease-in-out both;
}

.FooterCode a:hover {
  background: #fff;
}

@keyframes FooterCode {
  0% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

/* -- */
.Footer-navbar {
  width: 830px;
  overflow: hidden;
  user-select: none;
}

.Footer-navbar ul {
  justify-content: space-between;
}

.Footer-navbar li {
  width: auto;
}

.Footer-menu {
  font-size: 18px;
  color: #fff;
  display: flex;
  line-height: 1;
  margin-top: 23px;
  transition: all .4s ease;
  position: relative;
}

.Footer-menu span {
  position: relative;
}

.Footer-menu span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #fff;
  right: 0;
  bottom: -4px;
  opacity: 0;
  transition: width .4s ease, opacity .1s ease .4s;
}

.Footer-menu:hover span::after {
  width: 100%;
  opacity: 1;
  transition: width .4s ease .1s, opacity .1s ease;
  right: auto;
  left: 0;
}

.Footer-menu:first-of-type {
  margin-top: 0;
}

.Footer-arrow {
  display: none;
}

.Footer-drop {
  width: 100%;
  margin-top: 14px;
}

body.PC .Footer-drop {
  display: block !important;
}

.Footer-drop a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  padding: 9px 0;
  transition: all .4s ease;
}

.Footer-drop a:hover {
  color: #fff;
}

.Footer-menu:hover::after {
  opacity: 1;
}

.Footer-copyright {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px 0;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  justify-content: space-between;
}

.Footer-copyright-info {
  display: flex;
  flex-wrap: wrap;
}

.Footer-copyright-info p {
  margin-left: 12px;
}

.Footer-copyright-info p:first-child {
  margin-left: 0;
}

.Footer-copyright-link {
  display: flex;
}

.Footer-copyright-link a {
  position: relative;
  transition: all .4s ease;
  margin-right: 20px;
}

.Footer-copyright-link a:last-child {
  margin-right: 0;
}

/*.Footer-copyright-link a::before{content: "";position: absolute;width: 1px;background: rgba(255, 255, 255, 0.3);height: 14px;top: 50%;margin-top: -7px;left: -11px;}*/
.Footer-copyright-link a:first-child:before {
  display: none;
}

.Footer-copyright-link a:hover {
  color: #fff;
}

/* 置顶 */
.backTop {
  display: none;
  right: 40px;
  bottom: 60px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  position: fixed;
  cursor: pointer;
  z-index: 9999;
  background: #e60012 url('../images/common/top.svg') no-repeat center/22px auto;
}

@media all and (max-width:1599px) {
  .backTop {
    right: 30px;
    bottom: 40px;
  }
}

@media all and (max-width:640px) {
  .backTop {
    right: 8px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-size: 20px auto;
  }
}

/* 中间+共用部分 */
.Container-wrapper {
  width: 100%;
}

.contain {
  width: 1400px;
  margin: 0 auto;
}

.contain {
  width: 1600px;
  margin: 0 auto;
}

/* -------------------------PC端--------------------------- */

@media all and (max-width:1700px) {
  /* 1600 × (900) */
}


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

  /* 1440 × (700)  */
  .contain {
    width: 1200px;
  }

  .Header-navbar ul {
    padding-left: 20px;
  }

  .Header-navbar li {
    margin: 0 12px;
  }

  .Footer-items {
    padding: 80px 0 60px;
  }

  .Footer-navbar {
    width: 740px;
  }

  @keyframes HeaderSearch {
    0% {
      width: 0;
    }

    100% {
      width: 460px;
    }
  }

  .Header-wrapper>.contain {
    padding-left: 50px;
  }

  .Header-case-menu {
    width: 240px;
  }

  .Header-case .contain::after {
    width: calc(100vw - 240px + (1200px - 100vw)/2);
    right: calc((1200px - 100vw)/2);
    background-position: right bottom -120px;
    background-size: 480px auto;
  }

  .Header-case-mix {
    width: calc(100% - 240px);
    padding-left: 60px;
  }

  .Header-case-ul {
    margin: -30px 0 0 -30px;
  }

  .Header-case-li {
    width: calc(25% - 30px);
    margin: 30px 0 0 30px;
  }

  .Header-case-menu .link.active::before {
    width: calc(100% + 20px);
  }

  .Header-case .contain {
    padding: 50px 0;
    min-height: 440px;
  }

  .Header-website {
    width: 360px;
    transform: translateX(450px);
    padding: 36px 40px;
  }

  .Header-website-link p {
    height: 32px;
  }
}


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

  /* 1360 */
  .Header-navbar ul {
    padding-left: 40px;
  }

  .Header-navbar li {
    margin: 0 8px;
    font-size: 14px;
  }
}


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

  /* 1280 */
  .Header-navbar {
    font-size: 15px;
  }

  .Header-navbar ul {
    padding-left: 15px;
  }

  .Header-navbar li {
    margin: 0 8px;
  }

}


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

  /* 1152 × (700) */
  .contain {
    width: 900px;
  }

  .Header-wrapper>.contain {
    padding-left: 40px;
  }

  .Header-navbar ul {
    padding-left: 0;
  }

  .Header-navbar li {
    margin: 0 8px;
    font-size: 14px;
  }


  .Header-search-click {
    width: 60px;
  }

  .Header-lang {
    padding-right: 24px;
  }

  .Header-lang-menu span {
    padding: 0;
  }

  .Header-search-item .contain {
    padding-right: 260px;
  }

  @keyframes HeaderSearch {
    0% {
      width: 0;
    }

    100% {
      width: 420px;
    }
  }

  .Header-dropdown-contain {
    display: block;
  }

  .Header-dpmenu ul li a>div {
    margin-right: 10px;
  }

  .Header-dpmenu ul li a .vp-head-product-name {
    font-size: 13px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
    align-items: center;
    justify-content: flex-start;
  }


  .Header-navclick {
    width: 77px;
  }


  .Footer-info {
    width: 246px;
  }

  .Footer-navbar {
    width: 700px;
  }

  .Footer-items {
    padding: 60px 0 40px;
  }

  .Footer-menu {
    font-size: 16px;
  }

  .Header-case-menu {
    width: 190px;
  }

  .Header-case .contain::after {
    width: calc(100vw - 190px + (900px - 100vw)/2);
    right: calc((900px - 100vw)/2);
    background-position: right bottom -80px;
    background-size: 360px auto;
  }

  .Header-case-mix {
    width: calc(100% - 190px);
    padding-left: 30px;
  }

  .Header-case-ul {
    margin-left: -20px 0 0 -20px;
  }

  .Header-case-li {
    width: calc(25% - 20px);
    margin: 20px 0 0 20px;
  }

  .Header-case-menu .link.active::before {
    width: calc(100% + 8px);
  }

  .Header-case-menu .link span {
    font-size: 16px;
  }

  .Header-case-menu .link {
    padding-left: 12px;
  }

  .Header-case-menu .link::after {
    right: 4px;
  }

  .Header-case-li-name {
    font-size: 16px;
  }

  .Header-case-li-name span {
    padding-right: 18px;
  }

  .Header-case .contain {
    padding: 44px 0;
    min-height: 428px;
  }
}


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

  /* 1024 */
  .Header-stock {
    display: none;
  }

  .Header-navbar ul {
    padding-left: 0;
  }

  .Header-navbar li {
    margin: 0 7px;
  }
}


/* ------------------------手机端-------------------------- */

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

  /* 平板设备 720 适配 */
  .Header-wrapper {
    background: #fff;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
  }

  .Header-menu {
    color: #666;
  }

  .Header-logo img.s {
    opacity: 0;
  }

  .Header-logo img.h {
    opacity: 1;
  }

  .Header-search-click {
    background-image: url('../images/common/search.svg');
  }

  .bodySearch .Header-navbar {
    visibility: visible;
    opacity: 1;
  }

  .noLucency .Container-wrapper {
    margin-top: 60px;
  }

  .Header-lang-menu span {
    color: #666;
  }

  .Header-lang::before {
    height: 20px;
    background: #999;
    margin-top: -10px;
    display: none;
  }

  .contain-1600,
  .contain-1400,
  .contain {
    width: 92%;
  }

  .Container-wrapper {
    margin-top: 60px;
  }

  @media (max-width:768px) {
    .Container-wrapper {
      margin-top: 1em;
    }
  }

  .Header-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
  }

  .Header-wrapper>.contain {
    padding-left: 0;
  }

  .Header-logo,
  .Header-search-click,
  .Header-lang-menu {
    height: 60px;
  }

  .Header-logo {
    margin-left: 4%;
    width: 151px;
  }

  .Header-navclick {
    width: 40px;
    height: 60px;
    background: transparent;
  }

  .Header-navclick span {
    width: 22px;
    background: #e60012;
  }

  .Header-navclick span:before {
    top: -7px;
    background: #e60012;
  }

  .Header-navclick span:after {
    bottom: -7px;
    background: #e60012;
  }

  .Header-navclick:hover span::before {
    top: -7px;
  }

  .Header-navclick:hover span::after {
    bottom: -7px;
  }

  .Header-navclick.active span::before {
    top: 0;
  }

  .Header-navclick.active span::after {
    bottom: 0;
  }

  .Header-search-click {
    width: 40px;
  }

  .Header-lang {
    padding-right: 6px;
  }

  .Header-lang-more {
    width: 120px;
    margin-left: -50px;
    top: 60px;
  }

  .Header-lang-more a {
    padding: 6px 0;
  }

  .Header-navbar {
    display: none;
    position: absolute;
    width: 100%;
    margin-right: 0;
    height: calc(100vh - 60px);
    top: 60px;
    left: 0;
    padding: 20px 0;
    background: #fff;
  }

  .Header-navbar ul {
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
  }

  .Header-navbar li {
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(32px);
    transition: all .4s ease;
    margin: 0;
  }

  .Header-navbar.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .Header-menu {
    height: 48px;
    padding: 0 4%;
  }

  .Header-arrow {
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    background: url('../images/common/arrD.svg') no-repeat center /20px auto;
  }

  .Header-arrow.active {
    transform: rotate(180deg);
  }

  .Header-navbar li:hover .Header-menu {
    color: #666 !important;
  }

  .Header-navbar li.active .Header-menu {
    color: #e60012 !important;
  }

  .Header-drop {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    background: #f7f7f7;
  }

  .Header-drop::before,
  .Header-case .contain::after {
    display: none;
  }

  .Header-case-menu .link::after {
    display: none;
  }

  .Header-case .contain {
    padding: 20px 0 0;
    min-height: auto;
    width: 100%;
  }

  .Header-case-menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 4%;
  }

  .Header-case-menu .link::before {
    display: none;
  }

  .Header-case-menu .link {
    padding: 0;
    height: 28px;
    width: calc(50% - 4px);
    margin: 0;
  }

  .Header-case-menu .link.active {
    color: #e60012;
  }

  .Header-case-mix {
    width: 100%;
    padding: 20px 4%;
    background: #eee;
    margin-top: 14px;
  }

  .Header-case-ul {
    margin: -14px 0 0 -14px;
  }

  .Header-case-li {
    width: calc(50% - 14px);
    margin: 14px 0 0 14px;
  }

  .Header-case-items:nth-child(2) .Header-case-ul,
  .Header-case-items:nth-child(4) .Header-case-ul {
    margin: -14px 0 0 -14px;
  }

  .Header-case-items:nth-child(2) .Header-case-li,
  .Header-case-items:nth-child(4) .Header-case-li {
    width: calc(50% - 14px);
    margin: 14px 0 0 14px;
  }

  .Header-case-li-name {
    height: 28px;
  }

  .Header-case-li-name span {
    padding-right: 0;
    background: none !important;
  }

  .Header-case-li-name:hover span {
    background-image: none;
  }

  .Header-case-li-more .items a {
    font-size: 15px;
    padding-right: 28px;
  }

  .Header-case-li-more .items a.name {
    min-height: 28px;
  }

  .Header-case-li-more {
    margin-top: 6px;
  }

  .Header-case-li-more .items .arrow {
    width: 28px;
    height: 28px;
    pointer-events: auto;
  }

  .Header-case-li-more .items .drop a::before {
    top: 12px;
  }

  .Header-search-item {
    display: none;
    width: 100%;
    line-height: normal;
    height: 45px;
    top: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    background: #fff;
  }

  .Header-search-item .contain {
    padding-right: 0;
  }

  .Header-search-item input[type="text"] {
    width: 100%;
    height: 44px;
    padding: 0 54px 0 4%;
    border-bottom: none;
  }

  .Header-search-item.active input[type="text"] {
    animation: none;
  }

  .Header-search-item button {
    position: absolute;
    right: 0;
    width: 44px;
    height: 47px;
    top: -2px;
    background: #e60012 url('../images/common/searchW.svg') no-repeat center /23px auto !important;
    z-index: 2;
  }

  .Header-search-click.active {
    background-image: url('../images/common/close.svg') !important;
  }

  .Header-search-click {
    background-image: url('../images/common/search.svg') !important;
  }

  .Header-search-item button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    left: 0;
    top: 0;
  }

  .Header-website-click {
    display: flex;
    position: relative;
    align-items: center;
    width: 34px;
    height: 60px;
    float: right;
    background: url('../images/common/site.svg') no-repeat center/26px auto;
  }

  .Header-website-click::before,
  .Header-website-click::after {
    display: none;
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: #999;
    left: 0;
    top: 50%;
    margin-top: -10px;
  }

  .Header-website-click::after {
    left: auto;
    right: 0;
  }

  .Header-website-close {
    width: 60px;
    height: 60px;
    transform: translateY(-60px);
    left: auto;
    right: 0;
  }

  .Header-website {
    width: 100%;
    transform: translateX(calc(100% + 2px));
    padding: 0 20px;
  }

  .Header-website-head {
    font-size: 18px;
    display: flex;
    align-items: center;
    height: 60px;
    padding-top: 0;
    padding-left: 32px;
    background-size: 23px;
    background-position: left center;
  }

  .Header-website-link p a {
    font-size: 15px;
  }

  .Header-website-link p {
    height: 30px;
    background-size: 14px auto;
  }

  .Header-website-close::after {
    width: 24px;
    height: 24px;
    transform: rotate(0) !important;
  }

  .Header-website-link {
    margin-top: 10px;
  }

  .Header-website-code {
    margin-top: 24px;
  }

  .Footer-items {
    padding: 38px 0 30px;
  }

  .Footer-info-logo {
    text-align: center;
  }

  .Footer-info {
    width: 100%;
  }

  .Footer-info-cont {
    margin-top: 22px;
  }

  .Footer-info-cont .items {
    margin-top: 8px;
  }

  .Footer-info-cont .items .text p {
    margin-top: 2px;
  }

  .FooterCode {
    justify-content: center;
    margin-top: 18px;
  }

  .Footer-navbar {
    display: none;
  }

  .Footer-copyright {
    padding: 20px 0;
    margin-top: 0;
  }

  .Footer-copyright-info {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .Footer-copyright-info p {
    width: 100%;
    margin-left: 0;
  }

  .Footer-copyright-info p:first-child {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .Footer-copyright-link {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

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

  /* 移动终端以上 360 适配 */
  .Footer-copyright-link a:first-child {
    display: none;
  }
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}


/* 内页banner */
.pageBnaner {
  width: 100%;
  position: relative;
}

.pageBnaner .pageBnanerImg {
  width: 100%;
}

.pageBnaner .pageBnanerImg img {
  width: 100%;
}

@media (max-width:576px) {
  .pageBnaner .pageBnanerImg img {
    width: 100%;
    height: 170px;
  }
}



.pageBnaner .pageBnanerText {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  width: 90%;
  padding-top: 40px;
}

.pageBnaner .pageBnanerText .pageName {
  display: flex;
  flex-direction: column;
}

.pageBnaner .pageBnanerText .pageName .pageName1 {
  font-size: 48px;
  color: #fff;
  font-weight: bolder;
  text-transform: capitalize;
  font-family: "思源黑体", "Roboto";
}

.pageBnaner .pageBnanerText .pageName .pageName2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.pageBnaner .pageBnanerText .pageName .pageName2 b{
  font-size: 52px;
}

.pageBnaner .pageBnanerText .pageName .pageName3 {
  width: 76px;
  height: 4px;
  background: #fff;
}

.pageBnaner .pageBnanerText .pageName .pageName4 {
  font-size: 18px;
  line-height: 33px;
  color: #fff;
  margin-top: 45px;
  max-width: 55%;
}

.pageBnaner .pageBnanerText .pageName .pageName5 {
  font-size: 32px;
  line-height: 60px;
  overflow: hidden;
  font-weight: 400;
  color: #fff;
}

@media (max-width:768px) {
  .pageBnaner .pageBnanerText .pageName .pageName5{
    font-size: 22px;
    line-height: 1.5em;
    margin-top: 0.5em;
  }
}

.pageBnaner .pageBnanerText .pageName .pageName5 span {
  background-image: linear-gradient(180deg, transparent 80%, var(--main-color) 0);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-decoration: none;
  -webkit-transition: background-size .4s ease;
  -moz-transition: background-size .4s ease;
  -ms-transition: background-size .4s ease;
  -o-transition: background-size .4s ease;
  transition: background-size .4s ease;
}





.pageBnaner .pageBnanerText .aboutBanner {
  display: flex;
  flex-wrap: wrap;
  max-width: 830px;
}

.pageBnaner .pageBnanerText .aboutBanner .aboutBannerXun {
  width: calc(100% * (1 / 3));
  display: flex;
  margin-bottom: 50px;
}

.pageBnaner .pageBnanerText .aboutBanner .aboutBannerXun .abxLeft {
  width: 70px;
}

.pageBnaner .pageBnanerText .aboutBanner .aboutBannerXun .abxRight {
  padding-right: 25px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.pageBnaner .pageBnanerText .aboutBanner .aboutBannerXun .abxRight .abxTop {
  display: flex;
}

.pageBnaner .pageBnanerText .aboutBanner .aboutBannerXun .abxRight .abxTop span {
  font-size: 42px;
}

.pageBnaner .pageBnanerText .aboutBanner .aboutBannerXun .abxRight .abxTop sup {
  font-size: 13px;
}

.pageBnaner .pageBnanerText .aboutBanner .aboutBannerXun .abxRight .abxTop sub {
  font-size: 14px;
  white-space: pre;
  margin-top: 20px;
}

.pageBnaner .pageBnanerText .aboutBanner .aboutBannerXun .abxRight .abxBot {
  font-size: 12px;
  line-height: 3em;
  white-space: pre;
}


@media screen and (max-width:1440px) {
  .pageBnaner .pageBnanerText .pageName .pageName1 {
    font-size: 36px;
  }

  .pageBnaner .pageBnanerText .pageName .pageName2 {
    font-size: 36px;
  }

  .pageBnaner .pageBnanerText .pageName .pageName2 b{
    font-size: 48px;
  }
}

@media screen and (max-width:1440px) {

  .pageBnaner .pageBnanerText .pageName .pageName1,
  .pageBnaner .pageBnanerText .pageName .pageName2 {
    font-size: 28px;
  }

  .pageBnaner .pageBnanerText .pageName .pageName4 {
    font-size: 14px;
    line-height: 26px;
    margin-top: 25px;
  }

  .pageBnaner .pageBnanerText .pageName .pageName2 b{
    font-size: 42px;
  }
}


@media screen and (max-width:1200px) {
  .pageBnaner .pageBnanerText .pageName .pageName1 {
    font-size: 20px;
  }

  .pageBnaner .pageBnanerText .pageName .pageName2 {
    font-size: 18px;
    line-height: 24px;
  }

  .pageBnaner .pageBnanerText .pageName .pageName2 b{
    font-size: 24px;
  }

  .pageBnaner .pageBnanerText .pageName .pageName4 {
    font-size: 12px;
    margin-top: 0;
    max-width: 100%;
  }
}



/* 数字滚动插件的CSS可调整样式 */
.mt-number-animate {
  line-height: 42px;
  height: 40px;
  font-size: 42px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.mt-number-animate .mt-number-animate-dot {
  width: 25px;
  line-height: 42px;
  float: left;
  text-align: center;
}

.mt-number-animate .mt-number-animate-dom {
  width: 25px;
  text-align: center;
  float: left;
  position: relative;
  top: 0;
}

.mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
  width: 100%;
  float: left;
}

/* 内页子导航 */
.pageNav {
  width: 100%;
  height: 0;
  position: relative;
}

.pageNav .pageNavBox {
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
  display: flex;
  height: 56px;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.pageNav .pageNavBox a {
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  color: #fff;
  white-space: pre;
  padding: 0 35px;
  flex: 1;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}

.pageNav .pageNavBox a:hover {
  background: url(../images/about22.jpg) no-repeat 50% /100% 100%;
  background: #e60012;
  opacity: 0.8;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}

.pageNav .pageNavBox a.active {
  background: url(../images/about22.jpg) no-repeat 50% /100% 100%;
  background: #e60012;
}

.pageNav2 .container {
  margin: 25px auto;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.pageNav2 a {
  color: #999999;
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.pageNav2 span {
  color: #999999;
  font-size: 16px;
  margin-right: 10px;
}

.pageNav2 a.on {
  color: #222222;
}

.pageNav2 a:nth-child(1) i {
  padding-right: 5px;
}


.pageNav2 span:last-child {
  display: none;
}


@media screen and (max-width:1440px) {
  .pageNav .pageNavBox a {
    font-size: 16px;
  }

  .pageNav2 a {
    font-size: 14px;
  }

  .pageNav2 a:nth-child(1):before {
    top: 0;
  }

  .pageNav2 {
    margin-bottom: 28px;
  }
}


@media screen and (max-width:1200px) {
  .pageNav {
    height: auto;
  }

  .pageNav .pageNavBox {
    height: auto;
    position: relative;
  }

  .pageNav .pageNavBox a {
    font-size: 16px;
    line-height: 45px;
  }

  .pageNav2 {
    width: 100%;
  }

  .pageNav2 a {
    font-size: 12px;
    margin-right: 5px;
  }

  .pageNav2 span {
    font-size: 12px;
    margin-right: 5px;
  }
}

@media screen and (max-width:1024px) {
  .pageNav {
    height: auto;
  }

  .pageNav .pageNavBox {
    height: auto;
    position: relative;
  }

  .pageNav .pageNavBox a {
    font-size: 15px;
    line-height: 45px;
    padding: 0 25px
  }

  .pageNav2 {
    width: 100%;
  }

  .pageNav2 a {
    font-size: 12px;
    margin-right: 5px;
  }

  .pageNav2 span {
    font-size: 12px;
    margin-right: 5px;
  }
}

/* 新闻中心 频道页 */
.xwzx2Title {
  font-size: 38px;
  color: #333;
  font-weight: bolder;
  text-align: center;
  line-height: 3em;
}

@media (max-width:768px) {
  .xwzx2Title {
    font-size: 18px;
    color: #333;
    font-weight: bolder;
    text-align: center;
    line-height: 3em;
  }
}

.newSearch {
  width: 94%;
  max-width: 1020px;
  margin: 0 auto 0 auto;
  border: #dcdcdc solid 1px;
  border-radius: 55px;
  display: flex;
  align-items: center;
}

@media (max-width:768px) {
  .newSearch {
    width: 90%;
    max-width: 1020px;
    margin: 0 auto 0 auto;
    border: #dcdcdc solid 1px;
    border-radius: 55px;
    display: flex;
    align-items: center;
  }
}

.newSearch input[type="submit"] {
  width: 75px;
  background: url(../images/new10.png) no-repeat 50%;
  flex-shrink: 0;
  height: 3em;
  cursor: pointer;
}

@media (max-width:768px) {
  .newSearch input[type="submit"] {
    width: 45px;
    background: url(../images/new10.png) no-repeat 50%;
    flex-shrink: 0;
    height: 3em;
    cursor: pointer;
  }
}



.newSearch input[type="text"] {
  flex: 1;
  padding: 0 15px;
  height: 20px;
  background: none;
  font-size: 16px;
  color: #333;
}

@media (max-width:768px) {
  .newSearch input[type="text"] {
    flex: 1;
    padding: 0 0.5em;
    background: none;
    font-size: 16px;
    color: #333;
  }
}

.xwzx3 {
  width: 94%;
  max-width: 1020px;
  margin: 20px auto;
  display: flex;
  align-items: center;
}

@media (max-width:768px) {
  .xwzx3{
    display: none;
  }
}


.xwzx3 .xwzx3Left {
  white-space: pre;
  font-size: 18px;
  color: #666666;
  padding-left: 25px;
  background: url(../images/new11.png) no-repeat 0 50%;
  flex-shrink: 0;
}

.xwzx3 .xwzx3Right {
  display: flex;
  align-items: center;
  width: calc(100% - 120px);
}

.xwzx3 .xwzx3Right a {
  font-size: 16px;
  color: #666666;
  max-width: 30%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.xwzx3 .xwzx3Right a:hover {
  color: #333;
}

.xwzx3 .xwzx3Right span {
  margin: 0 20px;
}

.xwzx3 .xwzx3Right span:last-child {
  display: none;
}

.xwzx4Top {
  display: flex;
  align-items: center;
  padding: 45px 0;
  justify-content: space-between;
  margin: 0 auto;
}

@media (max-width:768px) {
  .xwzx4Top {
    display: flex;
    align-items: center;
    padding: 2em 0;
    justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 1em;
  }
}

.xwzx4Top .xwzx4TopTitle {
  font-size: 36px;
  font-weight: bolder;
}

@media (max-width:768px) {
  
  .xwzx4Top .xwzx4TopTitle {
    font-size: 18px;
    font-weight: bolder;
  }

}

.xwzx4Top .xwzx4TopMore {
  font-size: 16px;
  color: #e60012;
}

@media (max-width:768px) {
  
  .xwzx4Top .xwzx4TopMore {
    font-size: 14px;
    color: #e60012;
  }

}

.xwzx4Top .xwzx4TopMore i {
  margin-left: 10px;
}

.gsxw {
  margin: 0 auto 90px !important;
  height: 395px;
}

@media (max-width:768px) {
  .gsxw {
    margin: 0 auto !important;
    height: auto;
    padding-bottom: 2em;
  }  
}

.gsxwItem {
  display: flex !important;
}

@media (max-width:768px) {
  .gsxwItem {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.xwzxXun {
  width: 530px;
  height: 395px;
  margin: 0 15px;
  position: relative;
  transition: all 0.5s ease-in;
}

@media (max-width:768px) {
  .xwzxXun {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    margin: 0 0.5em;
    position: relative;
    margin-bottom: 0.5em;
    overflow: hidden;
    transition: all 0.5s ease-in;
  }
  
}

.xwzxXun .xwzxXunImg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media (max-width:768px) {
  .xwzxXun .xwzxXunImg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.xwzxXun .xwzxXunImg img {
  width: 100%;
  height: 395px;
  object-fit: cover;
}

.xwzxXun .xwzxXunText {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 45px 30px 40px 30px;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}

.xwzxXun .xwzxXunText .xwzxXunText1 {
  font-size: 16px;
}

.xwzxXun .xwzxXunText .xwzxXunText2 {
  font-size: 24px;
  line-height: 42px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 20px 0 40px 0;
}

@media (max-width:768px) {
  .xwzxXun .xwzxXunText .xwzxXunText2 {
    font-size: 18px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 20px 0 40px 0;
  }
}

.xwzxXun .xwzxXunText .xwzxXunText3 {
  display: none;
}

.xwzxXun .xwzxXunText .xwzxXunText4 {
  display: flex;
  align-items: center;
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.xwzxXun .xwzxXunText .xwzxXunText4 i {
  margin-right: 10px;
}


.gsxw .xwzxXun.on {
  width: 675px;
  height: 395px;
  flex-shrink: 0;
}

@media (max-width:768px) {
  .gsxw .xwzxXun.on {
    width: 100%;
    height: 0;
    flex-shrink: initial;
  }
}

.gsxw .xwzxXun.on .xwzxXunText .xwzxXunText2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media (max-width:768px) {
  .gsxw .xwzxXun.on .xwzxXunText .xwzxXunText2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  
}

.gsxw .xwzxXun.on .xwzxXunText .xwzxXunText3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
}

@media (max-width:768px) {
  .gsxw .xwzxXun.on .xwzxXunText .xwzxXunText3 {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
  }
}

.gsxw .xwzxXun.on .xwzxXunText .xwzxXunText4 {}

.gsxw .xwzxXun.on .xwzxXunText .xwzxXunText4 i {
  color: #e60012;
}

.gsxw .slick-dots li.slick-active button:before {
  opacity: .75;
  color: #b9d2e4;
}




.tableclass {
  background: #a9dbff;
}

.tableclass .firstRow td {
  background: #e60012;
  height: 58px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
}

.tableclass tr td {
  background: #fff;
  padding: 15px 15px;
}


.hyzxBox {
  width: 100%;
  background: url(../images/new5.jpg) no-repeat 50%/cover;
  overflow: hidden;
  padding-top: 50px;
}

@media (max-width:768px) {
  .hyzxBox {
    width: 100%;
    background: url(../images/new5.jpg) no-repeat 50%/cover;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 2em;
  }
}


.hyzx {
  margin: 0 auto 80px auto;
}
@media (max-width:768px) {
  .hyzx {
    margin: 0 auto 1em auto;
  }
}

.hyzx .swiper-container {
  max-width: 1400px;
}

.hyzx .swiper-pagination {
  display: none;
}

.hyzx .swiper-wrapper {
  height: auto;
}

.hyzx .hyzxItem {
  width: 100%;
}

.hyzx .hyzxItem .hyzxImg {
  width: 100%;
  position: relative;
  height: 280px;
}

.hyzx .hyzxItem .hyzxImg:before {
  content: '';
  display: block;
  padding-top: calc(100% * (250 / 430));
}

.hyzx .hyzxItem .hyzxImg div {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hyzx .hyzxItem .hyzxTitle {
  font-size: 24px;
  margin-top: 40px;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width:768px) {
  .hyzx .hyzxItem .hyzxTitle {
    font-size: 18px;
    margin-top: 1em;
    white-space: initial;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}


.hyzx .hyzxItem .hyzxDate {
  font-size: 16px;
  color: #666666;
  margin-top: 40px;
}

@media (max-width:768px) {
  .hyzx .hyzxItem .hyzxDate {
    font-size: 14px;
    margin-top: 1em;
  }
}

.hyzx .hyzxItem .hyzxMore {
  font-size: 14px;
  padding-left: 24px;
  background: url(../images/index6.png) no-repeat -13px 50%;
  margin-top: 40px;
  transition: ease all 0.5s;
}

@media (max-width:768px) {
  .hyzx .hyzxItem .hyzxMore {
    margin-top: 1em;
  }
}

.hyzx .hyzxItem .hyzxLine {
  width: 100%;
  height: 1px;
  background: #b5b5b5;
  margin-top: 40px;
}

@media (max-width:768px) {
  .hyzx .hyzxItem .hyzxLine {
    margin-top: 1.5em;
  }
}

.hyzx .hyzxItem .hyzxLine div {
  width: 0;
  height: 1px;
  background: #e60012;
}

.hyzx .hyzxItem:hover .hyzxMore {
  background: url(../images/index6.png) no-repeat 0 50%;
  padding-left: 37px;
}

.hyzx .hyzxItem:hover .hyzxLine div {
  width: 100%;
  transition: ease all 0.5s;
}

.hyzx .hyzxItem .hyzxImg img {
  height: 280px;
  object-fit: cover;
  width: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  filter: scale(1);
  filter: transform;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}

.hyzx .hyzxItem:hover .hyzxImg img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  filter: scale(1.15);
  filter: transform;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}

.schd {
  margin: 0 auto 84px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width:768px) {
  .schd {
    margin: 0 auto 2em auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}


.schd .schdLeft {
  width: 49%;
  position: relative;
  border: #b5b5b5 solid 1px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 16px;
}


@media (max-width:768px) {
  .schd .schdLeft {
    margin-bottom: 0.5em;
    border: none;
    width: 100%;
    height: 0;
    padding-bottom: 62.65%;

  }
}


.schd .schdLeft .schdArrow {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  height: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.schd .schdLeft .schdArrow .schdArrowLeft {
  margin-left: 14px;
}

.schd .schdLeft .schdArrow .schdArrowRight {
  margin-right: 14px;
}

#btn_prev,
#btn_next {
  z-index: 11111;
  position: absolute;
  display: block;
  width: 17px !important;
  height: 30px !important;
  top: 50%;
  margin-top: -15px;
}

#btn_prev {
  background: url(../images/newLeft3.png) no-repeat 50%;
  left: 14px;
}

#btn_next {
  background: url(../images/newRight3.png) no-repeat 50%;
  right: 14px;
}


.schdBox {
  width: 100%;
}

.schdBoxImg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media (max-width:768px) {
  .schdBoxImg {
    width: 100%;
    height: 0;
    display: block;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-bottom: 62.65%;
  }
}

.schdBoxImg img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

@media (max-width:768px) {
  .schdBoxImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
}

.schdBoxText {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  position: absolute;
  z-index: 99;
  background: url(../images/new13.png) no-repeat 50% 100%;
  top: 0;
  left: 0;
}

.schdBoxText .schdBoxTextBox {
  position: absolute;
  bottom: 35px;
  left: 50px;
  color: #FFFFFF;
  padding-right: 50px;
}

.schdBoxText .schdBoxTextBox .schdBoxDate {
  font-size: 17px;
  display: flex;
  align-items: center;
}

.schdBoxText .schdBoxTextBox .schdBoxDate div {
  margin-right: 10px;
}

.schdBoxText .schdBoxTextBox .schdBoxTitle {
  font-size: 25px;
  margin: 25px 0 30px 0;
}

@media (max-width:768px) {
  .schdBoxText .schdBoxTextBox .schdBoxTitle {
    font-size: 18px;
    margin: 2em 0 2em 0;
  }
}

.schdBoxText .schdBoxTextBox .schdBoxMore {
  font-size: 15px;
  display: flex;
  align-items: center;
}

.schdBoxText .schdBoxTextBox .schdBoxMore i {
  margin-right: 10px;
}

.schd .schdRight {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width:768px) {
  .schd .schdRight {
    width: 100%;
  }
}



.schd .schdRight .schdItem {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  width: calc(50% - 8px);
  height: calc(50% - 16px);
  margin-bottom: 16px;
  background: #f0f4f7;
  padding: 22px;
}


@media (max-width:768px) {
  .schd .schdRight .schdItem {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    width: 100%;
    height: auto;
    margin-bottom: 0.5em;
    background: #f0f4f7;
    padding: 22px;
  }
}

.schd .schdRight .schdItem .schdItemDate {
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.schd .schdRight .schdItem .schdItemDate div {
  margin-right: 10px;
}

.schd .schdRight .schdItem .schdItemTitle {
  font-size: 18px;
  margin: 30px auto 50px auto;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

@media (max-width:768px) {
  .schd .schdRight .schdItem .schdItemTitle {
    font-size: 18px;
    margin: 1em auto 2em auto;
    white-space: initial;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }
}

.schd .schdRight .schdItem .schdItemMore {
  font-size: 15px;
  display: flex;
  align-items: center;
}

.schd .schdRight .schdItem .schdItemMore i {
  margin-right: 10px;
  color: #666;
}

.schdNews {
  width: 94%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  margin: 45px auto;
}

.schdNews .schdNewsItem {
  display: flex;
  min-height: 130px;
}

.schdNews .schdNewsItem .schdNewsLeft {
  width: 200px;
  flex-shrink: 0;
  display: flex;
}

.schdNews .schdNewsItem .schdNewsLeft div {}

.schdNews .schdNewsItem .schdNewsLeft .riqi {
  font-size: 20px;
  margin-left: 15px;
  line-height: 30px;
}

.schdNews .schdNewsItem .schdNewsRight {
  width: calc(100% - 200px);
  position: relative;
  margin-bottom: 40px;
}

.schdNews .schdNewsItem .schdNewsRight .neirong {
  padding: 0;
  border-bottom: none;
}

/*第一种*/
.schdNews .schdNewsItem.item1 .schdNewsLeft {
  background: url(../images/new35.jpg) repeat-y 17px 0;
}

.schdNews .schdNewsItem.item1 .schdNewsLeft .tubiao {
  width: 35px;
  height: 30px;
  background: url(../images/new19.png) no-repeat 0 50%, #f0f4f7;
}

.schdNews .schdNewsItem.item2 .schdNewsLeft .riqi {
  color: #666;
}

.schdNews .schdNewsItem.item1 .schdNewsRight {}

.schdNews .schdNewsItem.item1 .schdNewsRight .xian {
  display: none;
}

.schdNews .schdNewsItem.item1 .schdNewsRight .neirong {
  display: flex;
  flex-direction: column;
}

.schdNews .schdNewsItem.item1 .schdNewsRight .neirong .biaoti {
  font-size: 20px;
  line-height: 30px;
}

.schdNews .schdNewsItem.item1 .schdNewsRight .neirong .jianjie {
  font-size: 16px;
  color: #666666;
  line-height: 2em;
}

.schdNews .schdNewsItem.item1 .schdNewsRight .neirong .xinxi {
  display: none;
}

.schdNews .schdNewsItem.item1 .schdNewsRight .neirong .xinxi .xinxiRiqi {}

.schdNews .schdNewsItem.item1 .schdNewsRight .neirong .xinxi .xinxiDizhi {}

.schdNews .schdNewsItem.item1 .schdNewsRight .tupian {
  display: none;
}

.schdNews .schdNewsItem.item1 .schdNewsRight .tupian:before {}

.schdNews .schdNewsItem.item1 .schdNewsRight .tupian div {}

/*第二种*/
.schdNews .schdNewsItem.item2 .schdNewsLeft {
  background: url(../images/new36.jpg) repeat-y 17px 0;
  padding-top: 30px;
}

.schdNews .schdNewsItem.item2 .schdNewsLeft .tubiao {
  width: 35px;
  height: 30px;
  background: url(../images/new20.png) no-repeat 0 50%, #f0f4f7;
}

.schdNews .schdNewsItem.item2 .schdNewsLeft .riqi {
  color: #666;
}

.schdNews .schdNewsItem.item2 .schdNewsRight {
  padding: 35px 35px 35px 50px;
  background: #136098;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -30px
}

.schdNews .schdNewsItem.item2 .schdNewsRight .xian {
  position: absolute;
  left: 0;
  top: 40px;
  width: 30px;
  height: 3px;
  background: #FFFFFF;
}

.schdNews .schdNewsItem.item2 .schdNewsRight .neirong {
  width: calc(100% * (635 / 1210));
}

.schdNews .schdNewsItem.item2 .schdNewsRight .neirong .biaoti {
  font-size: 20px;
  color: #FFFFFF;
}

.schdNews .schdNewsItem.item2 .schdNewsRight .neirong .jianjie {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 32px;
  margin: 20px 0 40px 0;
}

.schdNews .schdNewsItem.item2 .schdNewsRight .neirong .xinxi {
  font-size: 15px;
  color: #FFFFFF;
  line-height: 2em;
}

.schdNews .schdNewsItem.item2 .schdNewsRight .neirong .xinxi .xinxiRiqi {
  padding-left: 24px;
  background: url(../images/new22.png) no-repeat 0 50%;
}

.schdNews .schdNewsItem.item2 .schdNewsRight .neirong .xinxi .xinxiDizhi {
  padding-left: 24px;
  background: url(../images/new23.png) no-repeat 0 50%;
}

.schdNews .schdNewsItem.item2 .schdNewsRight .tupian {
  width: calc(100% * (344 / 1210));
  position: relative;
}

.schdNews .schdNewsItem.item2 .schdNewsRight .tupian:before {
  content: '';
  display: block;
  padding-top: calc(100% * (210 / 344));
}

.schdNews .schdNewsItem.item2 .schdNewsRight .tupian div {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.schdNews .schdNewsItem:hover:nth-last-child(1) .schdNewsLeft {
  background: none;
}

.schdNews .schdNewsItem:hover .schdNewsLeft {
  background: url(../images/new36.jpg) repeat-y 17px 0;
  padding-top: 0px;
}

.schdNews .schdNewsItem:hover .schdNewsLeft .tubiao {
  width: 35px;
  height: 30px;
  background: url(../images/new20.png) no-repeat 0 50%, #f0f4f7;
}

.schdNews .schdNewsItem:hover .schdNewsLeft .riqi {
  color: #666;
}

.schdNews .schdNewsItem:hover .schdNewsRight {
  padding: 35px 35px 35px 50px;
  background: #136098;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -30px;
}

.schdNews .schdNewsItem:hover .schdNewsRight .xian {
  position: absolute;
  left: 0;
  top: 40px;
  width: 30px;
  height: 3px;
  background: #FFFFFF;
  display: block;
}

.schdNews .schdNewsItem:hover .schdNewsRight .neirong {
  width: calc(100% * (635 / 1210));
}

.schdNews .schdNewsItem:hover .schdNewsRight .neirong .biaoti {
  font-size: 20px;
  color: #FFFFFF;
}

.schdNews .schdNewsItem:hover .schdNewsRight .neirong .jianjie {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 32px;
  margin: 20px 0 40px 0;
}

.schdNews .schdNewsItem:hover .schdNewsRight .neirong .xinxi {
  font-size: 15px;
  color: #FFFFFF;
  line-height: 2em;
  display: block;
}

.schdNews .schdNewsItem:hover .schdNewsRight .neirong .xinxi .xinxiRiqi {
  padding-left: 24px;
  background: url(../images/new22.png) no-repeat 0 50%;
}

.schdNews .schdNewsItem:hover .schdNewsRight .neirong .xinxi .xinxiDizhi {
  padding-left: 24px;
  background: url(../images/new23.png) no-repeat 0 50%;
}

.schdNews .schdNewsItem:hover .schdNewsRight .tupian {
  width: calc(100% * (344 / 1210));
  position: relative;
  display: block;
}

.schdNews .schdNewsItem:hover .schdNewsRight .tupian:before {
  content: '';
  display: block;
  padding-top: calc(100% * (210 / 344));
}

.schdNews .schdNewsItem:hover .schdNewsRight .tupian div {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


/*第三种*/
.schdNews .schdNewsItem.item3 .schdNewsLeft {
  background: url(../images/new36.jpg) repeat-y 17px 0;
  padding-top: 18px;
}

.schdNews .schdNewsItem.item3 .schdNewsLeft .tubiao {
  width: 35px;
  height: 50px;
  background: url(../images/new21.png) no-repeat 0 50%, #f0f4f7;
}

.schdNews .schdNewsItem.item3 .schdNewsLeft .riqi {
  color: #666;
  line-height: 50px;
}

.schdNews .schdNewsItem.item3 .schdNewsRight {
  padding: 35px 35px 35px 50px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}

.schdNews .schdNewsItem.item3 .schdNewsRight .xian {
  position: absolute;
  left: 0;
  top: 40px;
  width: 30px;
  height: 3px;
  background: #666;
}

.schdNews .schdNewsItem.item3 .schdNewsRight .neirong {
  width: calc(100% * (635 / 1210));
}

.schdNews .schdNewsItem.item3 .schdNewsRight .neirong .biaoti {
  font-size: 20px;
  color: #666;
}

.schdNews .schdNewsItem.item3 .schdNewsRight .neirong .jianjie {
  font-size: 16px;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 32px;
  margin: 20px 0 40px 0;
}

.schdNews .schdNewsItem.item3 .schdNewsRight .neirong .xinxi {
  font-size: 15px;
  color: #666666;
  line-height: 2em;
}

.schdNews .schdNewsItem.item3 .schdNewsRight .neirong .xinxi .xinxiRiqi {
  padding-left: 24px;
  background: url(../images/new24.png) no-repeat 0 50%;
}

.schdNews .schdNewsItem.item3 .schdNewsRight .neirong .xinxi .xinxiDizhi {
  padding-left: 24px;
  background: url(../images/new25.png) no-repeat 0 50%;
}

.schdNews .schdNewsItem.item3 .schdNewsRight .tupian {
  width: calc(100% * (344 / 1210));
  position: relative;
}

.schdNews .schdNewsItem.item3 .schdNewsRight .tupian:before {
  content: '';
  display: block;
  padding-top: calc(100% * (210 / 344));
}

.schdNews .schdNewsItem.item3 .schdNewsRight .tupian div {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*第四种*/
.schdNews .schdNewsItem.item4 .schdNewsLeft {
  background: url(../images/new35.jpg) repeat-y 17px 0;
}

.schdNews .schdNewsItem.item4 .schdNewsLeft .tubiao {
  width: 35px;
  height: 30px;
  background: url(../images/new19.png) no-repeat 0 50%, #f0f4f7;
}

.schdNews .schdNewsItem.item4 .schdNewsLeft .riqi {
  color: #666;
  opacity: 0.7;
}

.schdNews .schdNewsItem.item4 .schdNewsRight {}

.schdNews .schdNewsItem.item4 .schdNewsRight .xian {
  display: none;
}

.schdNews .schdNewsItem.item4 .schdNewsRight .neirong {
  display: flex;
  flex-direction: column;
}

.schdNews .schdNewsItem.item4 .schdNewsRight .neirong .biaoti {
  font-size: 20px;
  line-height: 30px;
  color: #666;
  opacity: 0.7;
}

.schdNews .schdNewsItem.item4 .schdNewsRight .neirong .jianjie {
  font-size: 16px;
  color: #666666;
  line-height: 2em;
}

.schdNews .schdNewsItem.item4 .schdNewsRight .neirong .xinxi {
  display: none;
}

.schdNews .schdNewsItem.item4 .schdNewsRight .neirong .xinxi .xinxiRiqi {}

.schdNews .schdNewsItem.item4 .schdNewsRight .neirong .xinxi .xinxiDizhi {}

.schdNews .schdNewsItem.item4 .schdNewsRight .tupian {
  display: none;
}

.schdNews .schdNewsItem.item4 .schdNewsRight .tupian:before {}

.schdNews .schdNewsItem.item4 .schdNewsRight .tupian div {}


.schdNews .schdNewsItem:nth-last-child(1) .schdNewsLeft {
  height: 100%;
  height: 30px;
  background: url(../images/new19.png) no-repeat 0 10px, #f0f4f7;
}


/* 新闻列表页面 */
.xwzx4Top .newSearch {
  max-width: 500px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .xwzx4Top .newSearch {
    max-width: 230px;
    margin: 0;
  }
}

.xwzx4Top .newSearch input[type="submit"] {
  width: 75px;
}

@media screen and (max-width: 768px) {
  .xwzx4Top .newSearch input[type="submit"] {
    width: 45px;
  }
}



.hyzxNews {
  margin: 25px auto;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .hyzxNews {
    margin: 2em auto;
    display: flex;
    flex-direction: column;
  }
}

.hyzxNews .hyzxNewsItem {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px;
  background: #ffffff;
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .015);
}
@media screen and (max-width: 768px) {
  .hyzxNews .hyzxNewsItem {
    padding: 1em;
    margin-bottom: 0.5em;
  }
}


.hyzxNews .hyzxNewsItem .hyzxNewsLeft {
  display: flex;
  flex-direction: column;
}

.hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsDeta {
  font-size: 18px;
  color: #a91515;
}

@media screen and (max-width: 768px) {
  .hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsDeta {
    font-size: 16px;
  }
}

.hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsTitle {
  font-size: 20px;
  line-height: 1.5;
  margin: 10px 0px;
}

@media screen and (max-width: 768px) {
  .hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsTitle {
    font-size: 18px;
    line-height: 1.5;
    margin: 0.5em 0px;
  }
}

.hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsSmall {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsSmall {
    display: none;
  }
}

.hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsMore {
  font-size: 14px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsMore {
    font-size: 14px;
    margin-top: 0.5em;
  }
}

.hyzxNews .hyzxNewsItem .hyzxNewsLeft .hyzxNewsMore i {
  margin-right: 15px;
  color: #a91515;
}

.hyzxNews .hyzxNewsItem .hyzxNewsRight {
  position: absolute;
  top: 35px;
  right: 35px;
  max-width: 305px;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  opacity: 0;
}

.hyzxNews .hyzxNewsItem .hyzxNewsRight:before {
  content: '';
  display: block;
  padding-top: calc(100% * (187 / 305));
}

.hyzxNews .hyzxNewsItem .hyzxNewsRight div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}

.hyzxNews .hyzxNewsItem .hyzxNewsRight div img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.hyzxNews .hyzxNewsItem:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .hyzxNews .hyzxNewsItem:hover {
    -webkit-transform: translateY(-0.25em);
    -moz-transform: translateY(-0.25em);
    -o-transform: translateY(-0.25em);
    -ms-transform: translateY(-0.25em);
    transform: translateY(-0.25em);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
}


.hyzxNews .hyzxNewsItem:hover .hyzxNewsRight img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsLeft {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsLeft {
    width: 70%;
    padding-right: 0.5em;
  }
}

.hyzxNews.medicilonCase .hyzxNewsItem:hover .hyzxNewsLeft {
  width: 68%;
}

.hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsLeft .hyzxNewsSmall {
  -webkit-line-clamp: 2;
}

.hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsLeft .hyzxNewsMore {
  display: block;
}
@media screen and (max-width: 768px) {
  .hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsLeft .hyzxNewsMore {
    display: none;
  }
}

.hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsRight {
  position: relative;
  top: 0;
  right: 0;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  width: 20%;
  max-width: 100%;
  opacity: 1;
  transition: all ease-in 0.5s;
}

@media screen and (max-width: 768px) {
  .hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsRight {
    position: relative;
    top: 0;
    right: 0;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    width: 30%;
    max-width: 100%;
    opacity: 1;
    transition: all ease-in 0.5s;
  }
}

.hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsRight div {
  position: relative;
}

.hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hyzxNews.medicilonCase .hyzxNewsItem .hyzxNewsRight::before {
  display: none;
}

/* 新闻详情页 */
.newsDetail {
  display: flex;
  margin: 0 auto 0 auto;
  justify-content: space-between;
}

.article-metas {
  border-bottom: #e9e9e9 solid 1px;
}

.article-metas .metas-title {
  font-size: 30px;
}

@media (max-width:768px) {
  .article-metas .metas-title {
    font-size: 20px;
    line-height: 1.5em;
    margin-top: 0.5em;
  }
}

.article-metas .metas-body {
  font-size: 14px;
  color: #b5b5b5;
  display: flex;
  align-items: center;
  padding: 25px 0;
}

@media (max-width:768px) {
  .article-metas .metas-body {
    font-size: 14px;
    color: #b5b5b5;
    display: flex;
    align-items: center;
    padding: 0.5em 0;
  }
}

.article-text {
  padding: 20px 0 20px 0;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width:768px) {
  .article-text {
    padding: 0;
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (max-width:567px) {
  .article-text {
    padding: 0;
    font-size: 14px;
    line-height: 1.75;
  }
}


.article-text p {
  line-height: 1.75;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

@media (max-width:768px) {
  .article-text p {
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}


/* =================== 首页 banner ========================== */
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #030303;
}

.banner-mix {
  width: 100%;
  position: relative;
}

.banner video {
  width: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  overflow: hidden;
}

.banner-img img,
.banner-img video {
  width: 100%;
  object-fit: cover;
}

/* .banner-img img.none-pad-mb {
  height: 100vh;
} */

 

.banner-cont {
  position: absolute;
  width: 100%;
  color: #fff;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-cont {
  width: 100%;
  text-align: center;
}

.banner-cont-wrap {
  width: 100%;
}

.banner-cont .image {
  max-width: 330px;
}

.banner-cont .title {
  line-height: 1.1;
  opacity: 0.5;
}

.banner-cont .text {
  line-height: 1.1;
  opacity: 0.5;
}

.banner-cont-one .banner-cont-dot {
  width: 520px;
}

.banner-cont-one .banner-cont-dot img {
  width: 100%;
  visibility: hidden;
}

.banner-dot {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.banner-dot #cartoonDot-text {
  width: 100% !important;
  height: 100% !important;
}

.banner-mix-one .banner-img {
  opacity: 0;
}

.banner-shade {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../images/index/bannerOne.png') no-repeat center/cover;
  z-index: 2;
  pointer-events: none;
}




/* -- */
.banner-cont-one .contain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 100px 20px 160px;
}

.banner-cont-one .banner-cont-wrap {
  width: auto;
  pointer-events: auto;
}

.banner-one-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.banner-one-bg img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}


.swiper-slide-active .banner-cont {
  /* background: rgba(0, 0, 0, .65); */
  display: none;
}

/* 字体大小 */
.banner-cont .title {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 30px;
  position: relative;
}

.banner-cont .title:after {
  background-color: #e60012;
  content: "";
  display: block;
  height: 5px;
  margin: 0.8rem auto 1.2rem;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100px;
  display: none;
}

.banner-cont .text {
  font-size: 26px;
  line-height: 1.75;
  font-weight: lighter;
  position: relative;
}

/* 半白色遮罩 */
/* 
.banner-cont .contain{
  width: 50%;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
    align-items: center;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: rgba(255,255,255,0.5);
    padding: 0 0 0 80px;
}

.banner-cont .title,
.banner-cont .text{
  text-align: left;
  color: #000000;

}

.banner-cont .text{
  font-weight: normal;
} */



/* 效果 */
.banner-cont .image,
.banner-cont .title,
.banner-cont .text {
  opacity: 0;
}



.swiper-slide-active .banner-cont .image {
  animation: bannerDown 1s ease both .4s;
  -webkit-animation: bannerDown 1s ease both .4s;
}

.swiper-slide-active .banner-cont .title {
  animation: bannerUp 1s ease both .5s;
  -webkit-animation: bannerUp 1s ease both .5s;
}

.swiper-slide-active .banner-cont .title::after {
  animation: bannerUp 1s ease both .5s;
  -webkit-animation: bannerUp 1s ease both .5s;
}


.swiper-slide-active .banner-cont .text {
  animation: bannerUp 1s ease both .5s;
  -webkit-animation: bannerUp 1s ease both .5s;
}

.oneSlide .banner-cont .image {
  animation: bannerDown 1s ease both .4s;
}

.oneSlide .banner-cont .title {
  animation: bannerUp 1s ease both .5s;
}

.oneSlide .banner-cont .text {
  animation: bannerUp 1s ease both .5s;
}

@keyframes bannerDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes bannerUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* -- */
.banner-scroll {
  position: absolute;
  z-index: 99;
  pointer-events: none;
  width: 100%;
  bottom: 0;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: center;
}

.banner-scroll .text {
  font-family: "MB";
  line-height: 1.1;
  color: #fff;
  display: none;
}

.banner-scroll i {
  display: block;
  position: relative;
  margin: 30px auto 0;
  width: 1px;
  height: 50px;
  background: #fff;
  overflow: hidden;
}

.banner-scroll i::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #e60012;
  left: 0;
  top: 0;
  animation: bannerScroll 3s linear infinite;
}

@keyframes bannerScroll {
  0% {
    height: 0;
    bottom: auto;
    top: 0;
  }

  50% {
    height: 100%;
    bottom: auto;
    top: 0;
  }

  50.01% {
    height: 100%;
    top: auto;
    bottom: 0;
  }

  100% {
    height: 0;
    top: auto;
    bottom: 0;
  }
}

/* -- */
.banner-control {
  position: absolute;
  width: 100%;
  height: auto;
  background: transparent;
  bottom: 44px;
  right: 0;
  z-index: 99;
}

.banner-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-page p {
  width: auto;
  height: auto;
  border-radius: 0;
  opacity: 1;
  background: transparent !important;
  margin: 0 14px !important;
  display: flex;
  align-items: center;
}

.banner-page p span {
  width: 18px;
  height: 18px;
  display: block;
  position: relative;
  border-radius: 100%;
  background: transparent;
  opacity: 1;
  border: 2px solid transparent;
  transition: all .4s ease;
}

.banner-page p span::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  background: #fff;
  margin: -5px 0 0 -5px;
  transition: all .4s ease;
}

.banner-page p.swiper-pagination-bullet-active span {
  border-color: #e60012;
}

.banner-page p.swiper-pagination-bullet-active span::before {
  transform: scale(0);
}

.banner-page p i {
  display: none;
  width: 50px;
  height: 2px;
  background: #fff;
  overflow: hidden;
  position: relative;
  margin: 0 20px;
  opacity: .7;
}

.banner-page p:last-child i {
  display: none;
}

/* .banner-page p.swiper-pagination-bullet-active i{height: 50px;} */
/* -- */
.banner-play {
  display: none;
  width: 34px;
  height: 34px;
  background: url('../images/index/bannerStop.svg') no-repeat center/12px auto;
  cursor: pointer;
  position: absolute;
  pointer-events: auto;
  border: 1px solid #fff;
  border-radius: 3px;
  left: 50%;
  margin-left: -17px;
  bottom: 26px;
}

.banner-play.active {
  background-image: url('../images/index/bannerStopH.svg');
}

/* 首页明星产品 */

/*.indexCase .swiper-container{
  margin-left: -30px;
  padding-left: 30px;
}
.indexCase .swiper-slide{
  padding-bottom: 15px;
}*/
.indexCaseDl {
  position: relative;
  padding: 10px 0px;
}

.indexCaseDl:after {
  display: block;
  content: "";
  overflow: hidden;
  clear: both;
  visibility: hidden;
}

.indexCaseDl dd {
  float: left;
  display: inline;
  width: 25%;
  padding: 10px 0px;
}

.indexCaseDl dd.dd1 {
  width: 50%;
}

.caseCont {
  display: block;
  margin: 0px 10px;
}

.indexCaseDl a {
  display: block;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  border-radius: 3px;
  overflow: hidden;
}

.indexCaseDl .pic img {
  object-fit: cover;
}

.indexCaseDl .pic:after {
  display: block;
  content: "";
  overflow: hidden;
  padding-top: 66.666666%;
  padding-top: 56.25%;
}

.indexCaseDl dd.dd1 .pic:after {
  padding-top: calc(9*(50% - 10px)/8 + 20px);
}

/*.indexCaseDl dd.dd1 .pic{
    height: 100%;
}
.indexCaseDl dd.dd1 .pic:after{
    display: none;
}
.indexCaseDl dd.dd6{
    width: 66.666666%;
}
.indexCaseDl dd.dd6 .pic:after{
    padding-top: 48.8%;
}*/

.indexCaseDl a:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.indexCaseDl dd.dd4 {
  clear: both;
}

.indexCaseDl dt {
  width: 50%;
  position: absolute;
  right: 0px;
  top: calc((100% - 20px)/3 + 10px);
  padding: 10px 0px;
}

.indexCaseDl dt .caseCont{
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.indexCaseAdd {
  display: block;
  overflow: hidden;
  margin: 0px 10px;
  border-radius: 3px;
}

.indexCaseAdd:after {
  display: block;
  content: "";
  overflow: hidden;
  padding-top: calc(9*(50% - 10px)/16);
}

.caseSlideBtBox {
  overflow: hidden;
  font-size: 0px;
  text-align: center;
}

.caseSlideBtBox .center {
  display: inline-block;
  overflow: hidden;
}

.caseSlideBtBox a {
  display: block;
  min-width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  background: #fff;
  float: left;
  margin: 0px 5px;
  transition: all 0.3s linear;
  text-align: center;
}

.caseSlideBtBox a:hover {
  background: #333;
}

.caseSlidePrev:before {
  display: block;
  content: "";
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(../images/caseArrowLeft.png) no-repeat center center;
  transition: left 0.3s linear;
}

.caseSlidePrev:after {
  display: block;
  content: "";
  overflow: hidden;
  width: 16px;
  height: 2px;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-left: 0px;
  margin-top: -1px;
  background: #a2a2a2;
  transition: all 0.3s linear;
}

.caseSlidePrev:hover:before {
  left: -6px;
  background: url(../images/caseArrowLeft_h.png) no-repeat center center;
}

.caseSlidePrev:hover:after {
  left: 50%;
  margin-left: -8px;
}

.caseSlideNext:before {
  display: block;
  content: "";
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(../images/caseArrowRight.png) no-repeat center center;
  transition: left 0.3s linear;
}

.caseSlideNext:after {
  display: block;
  content: "";
  overflow: hidden;
  width: 16px;
  height: 2px;
  position: absolute;
  right: 100%;
  top: 50%;
  margin-right: 0px;
  margin-top: -1px;
  background: #a2a2a2;
  transition: all 0.3s linear;
}

.caseSlideNext:hover:before {
  left: 6px;
  background: url(../images/caseArrowRight_h.png) no-repeat center center;
}

.caseSlideNext:hover:after {
  right: 50%;
  margin-right: -8px;
}

.caseSlideMore.more {
  background: #fff;
  /*width: 115px;
    overflow: hidden;
    font-size: 14px;
    color:#333;
    line-height: 45px;*/
}

/*.caseSlideMore span{
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding-left: 25px;
    font-size: 12px;
    height: 45px;
}
.caseSlideMore span:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 12px;
    transition: all 0.3s linear;
    background: url(../images/caseMore.png) no-repeat center center;
}*/
.caseSlideMore:hover {
  color: #fff;
}

.caseSlideMore:hover span:after {
  animation: caseSlideMore 3s linear infinite;
  background: url(../images/caseMore_h.png) no-repeat center center;
}

@keyframes caseSlideMore {
  0% {
    transform: rotate(0deg) scale(1.2);
    opacity: 1;
  }

  25% {
    transform: rotate(90deg) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }

  75% {
    transform: rotate(270deg) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: rotate(360deg) scale(1.2);
    opacity: 1;
  }
}

a.more {
  width: 115px;
  overflow: hidden;
  font-size: 14px;
  color: #727272;
  line-height: 45px;
  background: #fff;
  position: relative;
}

a.more:hover {
  color: #fff;
  background: #f4f4f4;
}

a.more:after {
  display: block;
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -80px 0px 0px -80px;
  z-index: 1;
  background: #333;
  transform: scale(0);
  transition: all 0.3s linear;
  border-radius: 100%;
}

a.more:hover:after {
  transform: scale(1);
}

a.more span {
  position: relative;
  z-index: 3;
}

/* 首页案例模块 */
.index-case {
  position: relative;
  padding-bottom: 100px;
}

.index-case .index-case-bg {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 610px;
  position: absolute;
}

.index-case .container-bg {
  margin: 0 auto;
  border-radius: 80px;
  width: calc(100% - 0px);
  background-color: #f5f5f5;
}

.index-case .container {
  position: relative;
}


.index-case .container .swiper {
  z-index: 2;
  margin-top: 0;
}

.index-case .container .swiper.wap {
  display: none;
}

.index-case .container .swiper.pc {
  display: block;
}

.index-case .container .swiper {
  display: block;
}

.index-case .container .swiper .active {
  display: block;
}

.index-case .container .swiper .swiper-container {
  padding: 20px;
  padding-bottom: 90px;
}

.index-case .container .swiper .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide {
  height: 400px;
  padding: 20px;
  margin-top: 20px;
  transition: all 0.5s;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(3, 3, 3, 0.15);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide:hover {
  margin-top: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide:hover h3 {
  color: #0371d0;
}

.index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide p {
  font-size: 18px;
  color: #969696;
  padding-top: 20px;
}

.index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide h3 {
  margin: 30px 0;
  font-size: 20px;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: center;
}

.index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}

.index-case .container .swiper .swiper-container .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: rgba(225, 225, 225, 0.99);
}

.index-case .container .swiper .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  height: 12px;
  border-radius: 12px;
  background-color: #ffffff;
}

.news .newsback {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 610px;
  position: absolute;
}

.news .wapnewsback {
  left: 0;
  bottom: 0;
  width: 100%;
  display: none;
  position: absolute;
}

@media screen and (max-width: 1600px) {
  .news {
    position: relative;
    padding-bottom: 170px;
  }

  .index-case  {
    padding-top: 0;
  }

  .index-case .container {
    border-radius: 100px;
  }

  .index-case .container .newMore {
    display: block;
  }

  .index-case .container .swiper .swiper-container {
    padding-bottom: 90px;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide {
    height: 340px;
    padding: 20px;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide p {
    padding-top: 10px;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide h3 {
    font-size: 16px;
  }
}


@media screen and (max-width: 1400px) {
  .news {
    position: relative;
    padding-bottom: 170px;
  }

  .index-case .container {
    border-radius: 100px;
  }

  .index-case .container .newMore {
    display: block;
  }

  .index-case .container .swiper .swiper-container {
    padding-bottom: 90px;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide {
    height: auto;
    padding: 15px;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide p {
    padding-top: 10px;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {

  .index-case .index-case-bg {
      height: 280px;
  }

  .news {
    padding-bottom: 1.6rem;
  }

  .index-case .container {
    width: 100%;
    border-radius: 0;
  }

  .index-case .container {
    width: 92%;
  }

  .index-case .container .swiper {
    z-index: 2;
    margin-top: 0.8rem;
  }

 

  .index-case .container .swiper .active {
    display: block;
  }

  .index-case .container .swiper .swiper-container {
    padding: 15px;
    padding-bottom: 1.33333rem;
  }

  .index-case .container .swiper .swiper-container .swiper-pagination {
    bottom: 0;
    width: auto;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide {
    height: auto;
    padding: 15px;
    background-color: #ffffff;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide:hover {
    margin-top: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide:hover h3 {
    color: #000000;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide p {
    padding-top: 0;
    font-size: 0.32rem;
    margin-top: 0.26667rem;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide h3 {
    margin: 15px 0;
    font-size:14px;
    color: #000000;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
    margin-top: 0.53333rem;
  }

  .index-case .container .swiper .swiper-container .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    width: 0.18667rem;
    height: 0.18667rem;
  }

  .index-case .container .swiper .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.42667rem;
    height: 0.18667rem;
    border-radius: 0.18667rem;
  }

  .news .newsback {
    display: none;
  }

  .news .wapnewsback {
    display: block;
  }
}

/* 首页新闻模块 */
.index-new {
  background: url(../images/index-news-bg.jpg);
  background-position: center center;
  background-size: cover;
  margin-top: -60px;
  padding-top: 100px;
  padding-bottom: 80px;
}

.index-new-switch {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-top: 15px
}

.index-new-switch li {
  display: inline-block;
  text-align: center;
  padding-left: 32px;
  padding-right: 32px;
  position: relative
}

.index-new-switch li a {
  cursor: pointer
}

.index-new-switch li a:hover {
  color: #b41515
}

.index-new-switch .on a {
  color: #b41515
}

.index-new-switch li+li:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 11px;
  width: 15px;
  height: 1px;
  background: #bababa
}

.index-new-switch .li {
  font-size: 0;
  margin: 0 auto;
  margin-top: 30px
}

.index-new-switch .li-title {
  display: none
}

.index-new-switch .li .new-more {
  display: block;
  width: 379px;
  height: 51px;
  margin: 0 auto;
  margin-top: 60px;
  background: url(../images/case_icon_0.png);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease
}

@media screen and (max-width: 1500px) {
  .index-new-switch .li .new-more {
    margin-top: 50px
  }
}

@media screen and (max-width: 1400px) {
  .index-new-switch .li .new-more {
    margin-top: 40px
  }
}

.index-new-switch .li .new-more:hover {
  opacity: .7
}

.index-new-switch .li .left {
  position: relative;
  width: 30%;
  height: 561px;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  transition: all .4s ease-out
}

.index-new-switch .li .left:hover {
  -webkit-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0)
}

.index-new-switch .li .left:hover .swiper-slide-text .text h5 {
  color: #d12322
}

.index-new-switch .li .left-box {
  background: #fff;
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 43px 47px 50px 47px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.index-new-switch .li .left-box-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden
}

.index-new-switch .li .left .shadow {
  position: absolute;
  bottom: -40px;
  left: 0px;
  width: 100%;
  padding-bottom: 16.17647%;
  background: url(../images/new_icon_0.png);
  background-size: 100% 100%
}

.index-new-switch .li .left .swiper-slide {
  display: block;
  background: #fff;
}

.index-new-switch .li .left .pagination2 {
  text-align: center
}

.index-new-switch .li .left .pagination2 .swiper-pagination-bullet {
  background: #4e4e4e;
  opacity: 1;
  margin-right: 6px;
  width: 10px;
  height: 10px
}

.index-new-switch .li .left .pagination2 .swiper-pagination-bullet-active {
  background: #dc301f
}

.index-new-switch .li .left .swiper-slide-box {
  width: 378px;
  height: 313px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.index-new-switch .li .left .swiper-slide-box img {
  max-width: 100%;
  height: auto !important
}

.index-new-switch .li .left .swiper-slide-text {
  width: 380px;
  margin-top: 30px;
  font-size: 0
}

.index-new-switch .li .left .swiper-slide-text .text {
  display: inline-block;
  vertical-align: top;
  width: 280px;
  height: 90px;
  text-align: left;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.index-new-switch .li .left .swiper-slide-text .text h3 {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 19px;
  color: #060606;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease
}

.index-new-switch .li .left .swiper-slide-text .text p {
  height: 50px;
  margin-top: 12px;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 13px;
  line-height: 25px;
  color: #888
}

.index-new-switch .li .left .swiper-slide-text .date {
  display: inline-block;
  vertical-align: top;
  width: 90px;
  height: 90px;
  border-radius: 4px;
  background: #b41515;
  text-align: center
}

.index-new-switch .li .left .swiper-slide-text .date .d {
  font-size: 58px;
  color: #fff;
  font-family: "CG";
  line-height: 58px;
  margin-top: 6px
}

.index-new-switch .li .left .swiper-slide-text .date .ym {
  margin-top: 2px;
  line-height: 16.4px;
  font-size: 16.4px;
  font-family: "Arial";
  color: #fff
}

.index-new-switch .li .right {
  margin-left: 22px;
  width: 65%;
  height: 561px;
  display: inline-block;
  vertical-align: top;
  text-align: left
}

.index-new-switch .li .right-li {
  position: relative;
  text-align: left;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  height: 187px;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  transition: all .4s ease-out
}

.index-new-switch .li .right-li:nth-child(even) {
  padding-left: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.index-new-switch .li .right-li:nth-child(n+3) {
  padding-top: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.index-new-switch .li .right-li-box {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: #fff
}

.index-new-switch .li .right-li:hover {
  z-index: 100;
  -webkit-box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2)
}

.index-new-switch .li .right-li:hover .date .d {
  color: #d12322
}

.index-new-switch .li .right-li:hover .date .ym {
  color: #d12322
}

.index-new-switch .li .right-li:hover .text h5 {
  color: #d12322
}

.index-new-switch .li .right .shadow {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  padding-bottom: 19.08397%;
  background: url(../images/new_icon_1.png);
  background-size: 100% 100%
}

.index-new-switch .li .right .date {
  display: inline-block;
  vertical-align: top;
  width: 110px;
  height: 100%;
  padding-top: 55px;
  padding-right: 25px;
  padding-left: 35px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center
}

.index-new-switch .li .right .date .d {
  font-size: 42px;
  color: #555;
  font-family: "Arial";
  line-height: 42px;
  margin-top: 6px;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  -moz-transition: color .3s ease;
  transition: color .3s ease
}

.index-new-switch .li .right .date .ym {
  margin-top: 2px;
  line-height: 14px;
  font-size: 14px;
  font-family: "Arial";
  color: #333;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  -moz-transition: color .3s ease;
  transition: color .3s ease
}

.index-new-switch .li .right .text {
  display: inline-block;
  vertical-align: top;
  width: 333px;
  height: 100%;
  text-align: left;
  padding-top: 55px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.index-new-switch .li .right .text h3 {
  font-size: 15px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  -moz-transition: color .3s ease;
  transition: color .3s ease
}

.index-new-switch .li .right .text p {
  margin-top: 10px;
  color: #888;
  font-size: 13px;
  line-height: 25px;
  height: 50px;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden
}

@media screen and (max-width: 1620px) {
  .index-new-switch .li .left {
    width: 508px
  }

  .index-new-switch .li .left-box {
    padding-left: 15px;
    padding-right: 15px
  }

  .index-new-switch .li .right {
    margin-left: 15px
  }

  .index-new-switch .li .right {
    width: 900px
  }

  .index-new-switch .li .right .date {
    padding-left: 20px;
    padding-right: 12px;
    width: 90px
  }

  .viewpoint-text h5 {
    line-height: 50px;
    font-size: 40px
  }

  .viewpoint-text .p {
    margin-top: 20px
  }

  .viewpoint-text .icon {
    margin-top: 20px
  }
}

@media screen and (max-width: 1450px) {
  .index-new-switch .li .left {
    height: 400px;
    width: 498px
  }

  .index-new-switch .li .left .swiper-slide-box {
    width: 428px;
    height: 280px
  }

  .index-new-switch .li .left .swiper-slide-text {
    width: 428px
  }

  .index-new-switch .li .left .swiper-slide-text .text {
    width: 338px
  }

  .index-new-switch .li .left-box {
    padding-top: 23px;
    padding-bottom: 30px
  }

  .index-new-switch .li .right {
    width: 800px;
    height: 480px
  }

  .index-new-switch .li .right .date {
    padding-left: 20px;
    padding-right: 12px;
    padding-top: 45px;
    width: 90px
  }

  .index-new-switch .li .right .text {
    width: 233px;
    padding-top: 45px
  }

  .index-new-switch .li .right-li {
    height: 160px
  }
}

@media screen and (max-width: 1400px) {
  .viewpoint-text {
    width: 500px
  }

  .viewpoint-text h5 {
    font-size: 34px;
    line-height: 40px
  }

  .index-case {
    padding-top: 0px;
    padding-bottom: 80px
  }

  .index-case-outline {
    margin-top: 20px;
    width: 1200px;
    max-width: none;
    min-width: 0
  }

  .index-case .item {
    width: 330px;
    padding: 0 5px
  }

  .index-case .img {
    width: 356px
  }

  .index-case-box {
    padding: 50px 30px
  }

  .index-case .text {
    padding-top: 10px;
    height: 70px
  }

  .index-case .text h3 {
    padding-top: 5px
  }

  .index-case-box2 {
    height: 1366px
  }

  .index-case .text h3 {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
  }

  .index-case .item:nth-child(1),
  .index-case .item:nth-child(3),
  .index-case .item:nth-child(5),
  .index-case .item:nth-child(6),
  .index-case .item:nth-child(7),
  .index-case .item:nth-child(8),
  .index-case .item:nth-child(9),
  .index-case .item:nth-child(11),
  .index-case .item:nth-child(12) {
    height: 200px;
    width: 330px;
    padding: 0 5px
  }

  .index-case .item:nth-child(1) .img,
  .index-case .item:nth-child(3) .img,
  .index-case .item:nth-child(5) .img,
  .index-case .item:nth-child(6) .img,
  .index-case .item:nth-child(7) .img,
  .index-case .item:nth-child(8) .img,
  .index-case .item:nth-child(9) .img,
  .index-case .item:nth-child(11) .img,
  .index-case .item:nth-child(12) .img {
    height: 197px;
    width: 320px
  }

  .index-case .item:nth-child(2) .img,
  .index-case .item:nth-child(4) .img,
  .index-case .item:nth-child(10) .img {
    height: 470px;
    width: 320px
  }

  .index-case .item:nth-child(2),
  .index-case .item:nth-child(4),
  .index-case .item:nth-child(10) {
    height: 580px
  }

  .index-case .item:nth-child(4) {
    top: 273px
  }

  .index-case .item:nth-child(2) {
    left: 335px
  }

  .index-case .item:nth-child(5) {
    top: 273px;
    left: 670px
  }

  .index-case .item:nth-child(3) {
    left: 670px
  }

  .index-case .item:nth-child(6) {
    top: 546px;
    left: 335px
  }

  .index-case .item:nth-child(7) {
    top: 546px;
    left: 670px
  }

  .index-case .item:nth-child(8) {
    top: 815px
  }

  .index-case .item:nth-child(9) {
    top: 815px;
    left: 335px
  }

  .index-case .item:nth-child(10) {
    top: 815px;
    left: 670px
  }

  .index-case .item:nth-child(11) {
    top: 1088px
  }

  .index-case .item:nth-child(12) {
    top: 1088px;
    left: 335px
  }

  .index-new-switch .li .right {
    margin: 0;
    padding: 0;
    width: 66.66%;
    padding-left: 15px;
  }

  .index-new-switch .li .left {
    width: 33.33%;
    height: 482px;
    margin: 0;
    padding: 0;
  }

  .index-new-switch .li .right-li {
    height: 160px
  }

  .index-new-switch .li .right .date {
    padding-top: 40px
  }

  .index-new-switch .li .right .text {
    padding-top: 40px
  }

  .index-new {
    padding-top: 60px;
    padding-bottom: 70px
  }

  .index-new-switch .li {
    margin-top: 30px
  }

  .index-new-switch .li .left .swiper-slide-box {
    width: 370px;
    height: 274px
  }

  .index-new-switch .li .left .swiper-slide-text {
    width: 100%;
    margin-top: 20px
  }

  .index-new-switch .li .left .swiper-slide-text .text {
    width: 270px
  }

  .index-new-switch .li .left .swiper-slide-text .date {
    width: 80px;
  }

  .index-new-switch .li .left .swiper-slide-text .date .d {
    font-size: 48px;
  }

  .index-new-switch .li .left .swiper-slide-text .date .ym {
    font-size: 14px;
  }

}


/* 首页客户LOGO */

.iclients-wrapper .ichannel-tabcontent {
  overflow: hidden
}

.iclients-wrapper .tabcontent-slider {
  position: relative;
  width: 100%
}

.iclients-list {
  width: 100%;
  float: left;
  overflow: hidden;
  margin-top: 20px;
}

.iclients-list ul {
  margin-right: -4px
}

.iclients-list li {
  float: left;
  width: 20%;
  margin-bottom: -4px;
  position: relative;
}

.iclients-list li a {
  display: block;
  text-align: center
}

.iclients-list li img {
  max-width: 100%
}

.iclients-list li img {

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.iclients-list li:hover img {
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.iclients-list li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/iclibg.png) no-repeat right bottom;
}


.icustomer {
  float: left;
  width: 50%;
  overflow: hidden;
  padding-bottom: 65px
}

.icustomer ul {
  padding-left: 1px
}

.icustomer li {
  width: 25%;
  float: left;
  margin-left: -1px
}

.icustomer .inner {
  border: 1px solid #d9d9d9;
  padding: 5.5% 12.5% 16%
}

.icustomer .ico {
  margin-bottom: 16px;
  height: 124px;
  line-height: 124px
}

.icustomer .ico img {
  vertical-align: middle
}

.icustomer .name {
  margin-bottom: 21px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #1a1a1a
}

.icustomer .text {
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  height: 216px;
  line-height: 24px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9
}

.ichannel-tabnav {
  display: flex;
  width: 100%;
  justify-content: center;
}

.ichannel-tabnav ul {
  width: auto;
  position: relative;
  border: 1.5px solid #EEEEEE;
  border-radius: 30px;
  padding: 5px;
  display: flex;
  margin: 0 -8px;
}

.ichannel-tabnav ul li {
  position: relative;
  padding: 0 32px 0 32px;
}

.ichannel-tabnav ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(251.88deg, #ff0000 2.49%, #e60012 63.64%);
  border-radius: 60px;
  z-index: -1;
  transition: all 0.36s;
  opacity: 0;
}

.ichannel-tabnav ul li a {
  border: none;
  line-height: 40px;
}

.ichannel-tabnav ul li.cur::after {
  opacity: 1;
}

.ichannel-tabnav ul li.cur a {
  color: #fff;
}

/* 首页第四部分 */

.index4 {
  width: 100%;
  margin: 0 auto 60px auto;
  position: relative;
}

.index4 .container {
  max-width: 94%;
  position: relative;
}

.index4 .index4Img {
  width: 100%;
}

.index4 .index4Img img {
  width: 100%;
}

.index4 .index4Img li {
  display: none;
}

.index4 .index4Img li.on {
  display: block;
}

.index4 .index4Text {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.index4 .index4Text li {
  color: #fff;
  padding-left: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: none;
}

.index4 .index4Text li.on {
  display: flex;
}

.index4 .index4Text li .index4Text1 {
  font-size: 38px;
}

.index4 .index4Text li .index4Text2 {
  font-size: 24px;
  margin: 10px 0 30px 0;
}

.index4 .index4Text li .index4Text3 {
  height: 54px;
  line-height: 52px;
  border: #fff solid 1px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  width: fit-content;
  max-width: 195px;
  justify-content: center;
  padding: 0px 20px;
}

.index4 .index4Text li .index4Text3 i {
  margin-right: 10px;
  color: #fff;
}

.index4 .index4Dots {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/index17.png) no-repeat 100% 50%/cover;
  padding-right: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.index4 .index4Dots li {
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
}

.index4 .index4Dots li:nth-child(2) {
  margin-right: -10px;
}

.index4 .index4Dots li .dotsTitle {
  font-size: 16px;
  margin-right: 10px;
  cursor: pointer;
  color: #fff;
}

.index4 .index4Dots li.on .dotsTitle {
  margin-right: 25px;
}

.index4 .index4Dots li .dotsIcon {
  position: relative;
  height: 7px;
  width: 7px;
}

.index4 .index4Dots li .dotsIcon .dotsIcon1 {
  height: 7px;
  width: 7px;
  border-radius: 7px;
  background: #fff;
  position: absolute;
}

.index4 .index4Dots li .dotsIcon .jdt {
  position: absolute;
  left: -16px;
  top: -16px;
  transform: rotate(-90deg);
  transform-origin: 20px;
  display: none;
}

.index4 .index4Dots li.on .dotsIcon .jdt {
  display: block;
}

.index4 .index4Dots li.on .dotsIcon .jdt4 {
  animation: jdt4 infinite 30s linear;
  -webkit-animation: jdt4 infinite 30s linear;
}

@keyframes jdt4 {
  0% {
    stroke-dasharray: 0 190;
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dasharray: 190 0;
    stroke-dashoffset: 0;
  }
}

/* 产品分类 */
.products-nav {
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 15px;
}

.products-nav.panel-default>.panel-heading .panel-title {
  font-size: 20px;
}




/* 关于我们 */

/***标题***/
.auto-title-block {
  padding-top: 42px;
  padding-bottom: 47px;
  --h2-color: #222222;
}

.auto-title-block .auto-title-en {
  font-size: 16px;
  font-style: italic;
  line-height: 1.2em;
  color: #666666;
}

.auto-title-block .auto-title-en::before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  height: 1px;
  width: 30px;
  background: #666666;
}

.auto-title-block .auto-title-h2 {
  margin-top: 4px;
  font-size: 44px;
  font-weight: bold;
  line-height: 1.4em;
  color: #333333;
}

@media (max-width: 1600px) {
  .auto-title-block {
    padding-top: 35px;
    padding-bottom: 37px;
  }

  .auto-title-block .auto-title-en {
    font-size: 15px;
  }

  .auto-title-block .auto-title-en::before {
    width: 26px;
  }

  .auto-title-block .auto-title-h2 {
    font-size: 38px;
  }
}

@media (max-width: 1200px) {
  .auto-title-block {
    padding-top: 0.65rem;
    padding-bottom: 0.25rem;
  }

  .auto-title-block .auto-title-en {
    font-size: 0.26rem;
  }

  .auto-title-block .auto-title-en::before {
    width: 0.3rem;
  }

  .auto-title-block .auto-title-h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .auto-title-block {
    padding-top: 0.65rem;
    padding-bottom: 0.5rem;
  }

  .auto-title-block .auto-title-en {
    font-size: 0.26rem;
  }

  .auto-title-block .auto-title-en::before {
    width: 0.3rem;
  }

  .auto-title-block .auto-title-h2 {
    font-size: 20px;
  }
}

.auto-title-block-a {
  --title-color: #222222;
  padding-top: 60px;
  padding-bottom: 50px;
}

.auto-title-block-a .auto-title-a-title {
  font-weight: bold;
  line-height: 1.4em;
  color: var(--title-color);
}

@media (max-width: 1200px) {
  .auto-title-block-a {
    padding-top: 0.65rem;
    padding-bottom: 0.5rem;
  }
}

.auto-title-block-b {
  --title-color: #222222;
  padding-top: 62px;
  padding-bottom: 50px;
}

.auto-title-block-b .auto-title-b-title {
  font-weight: bold;
  line-height: 1.4em;
  color: var(--title-color);
}

@media (max-width: 1200px) {
  .auto-title-block-b {
    padding-top: 0.65rem;
    padding-bottom: 0.5rem;
  }
}

.radio-box {
  --w: 20px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
}

.radio-box .radio-val {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.radio-box .radio-val:checked+.radio-icon {
  border-color: var(--main-color);
  background-color: #ffffff;
}

.radio-box .radio-icon {
  flex-shrink: 0;
  border-radius: 50%;
  border: 6px solid transparent;
  height: var(--w);
  width: var(--w);
  background-color: #eeeeee;
  transition: background 0.3s, border 0.3s;
}

.radio-box .radio-word {
  padding-left: 10px;
}

.upload-img-block {
  position: relative;
  border-radius: 4px;
  background-color: #eeeeee;
  overflow: hidden;
}

.upload-img-block::before {
  padding-top: 71.59%;
}

.upload-img-block img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: none;
}

.upload-img-block .upload-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-img-block .delete {
  --w: 16px;
  --size: 40%;
  --fill: #ffffff;
  margin-right: -10px;
  margin-top: -10px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  width: var(--w);
  height: var(--w);
  opacity: 0;
  background: var(--main-color);
  pointer-events: none;
  transition: margin 0.3s, opacity 0.3s;
}

.upload-img-block.has-val img {
  object-fit: fill;
}

.upload-img-block.has-val .delete {
  margin-right: 0;
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
}

.big-text {
  position: absolute;
  left: 0;
  pointer-events: none;
  word-break: keep-all;
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-size: calc(var(--wrap-1600-width)*0.225);
  font-weight: bold;
  line-height: 0.75em;
  color: rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
}

.big-text.type2 {
  font-size: calc(var(--wrap-1600-width)*0.1875);
}

@media (max-width: 1200px) {
  .big-text {
    letter-spacing: -0.02em;
  }
}

.about-block {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}


.about-block .container {
  display: flex;
}

@media (max-width: 768px) {
  .about-block .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}


.about-block .left-cont {
  width: 54%;
}

@media (max-width: 768px) {
  .about-block .left-cont {
    width: 100%;
  }
}

.about-block .left-cont .auto-title-block {
  padding-top: 0;
}

.about-block .left-cont .des {
  margin-top: -1.25em;
  text-align: justify;
  font-size: 16px;
  line-height: 2em;
  color: #666666;
}


.about-block .left-cont .des p{
  margin-bottom: 15px;
}

.about-block .right-cont {
  width: 40%;
}

.about-block .right-cont .img-box {
  border-radius: 10px;
}

@media (max-width: 1600px) {
  .about-block {
    padding: 85px 0;
  }

  .about-block .left-cont {
    width: 54%;
  }

  .about-block .left-cont .des {
    line-height: 1.9em;
  }
}

@media (max-width: 1400px) {
  .about-block .right-cont {
    margin-top: 90px;
  }
}

@media (max-width: 1200px) {
  .about-block {
    padding: 0.75rem 0 0.65rem;
  }

  .about-block .left-cont {
    width: 100%;
  }

  .about-block .left-cont .des {
    margin-top: -0.1rem;
    font-size: 13px;
    line-height: 1.5;
  }

  .about-block .left-cont .des p{
    margin-bottom: 0.5em;
  }

  .about-block .right-cont {
    margin-top: 0.3rem;

    width: 100%;
  }

  .about-block .right-cont .img-box {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-block {
    padding: 2em 0;
    overflow: hidden;
  }
}


.list4 {
  --l4p: 13px;
  --c: #eeeeee;
  --hc: var(--main-color);
  margin: calc(var(--l4p)*-1);
  font-size: 18px;
  line-height: 48px;
  color: #333333;
  overflow: hidden;
}

.list4 .list4-li {
  padding: var(--l4p);
}

.list4 .list4-box {
  display: block;
  border: 1px solid var(--c);
  border-radius: 10px;
  background: var(--c);
  overflow: hidden;
  transition: all 0.3s;
}

.list4 .list4-box:hover {
  border-color: var(--hc);
  background: var(--hc);
  color: #ffffff;
}

.list4 .img-box {
  background-color: #ffffff;
  padding: 45px 40px;
}

.list4 .img-box img {
  display: block;
  width: 220px;
}

.list4 .list4-title {
  padding: 0.97em 1em;
  text-align: center;
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1600px) {
  .list4 {
    --l4p: 10px;
    font-size: 17px;
  }

  .list4 .img-box {
    padding: 25px 20px;
  }

  .list4 .list4-title {
    padding: 0.9em 1em;
  }
}

@media (max-width: 1200px) {
  .list4 {
    --l4p: 0.08rem;
    font-size: 0.26rem;
  }

  .list4 .list4-box {
    border-radius: 0.15rem;
  }

  .list4 .img-box {
    padding: 0.2rem 0.15rem;
  }

  .list4 .list4-title {
    padding: 0.8em 1em;
  }
}

@media (max-width: 768px) {
  .list4 {
    --l4p: 8px;
    font-size: 14px;
  }

  .list4 .list4-box {
    border-radius: 0.15rem;
  }

  .list4 .img-box {
    padding: 0.2rem 0.15rem;
  }

  .list4 .list4-title {
    padding: 0.8em 1em;
  }
}

.honor-block {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f7f7f7;
}

.honor-block .auto-title-block {
  padding-top: 0;
}

.honor-block .swiper-box {
  margin-top: 12px;
}

.honor-block .swiper-points-a {
  margin-top: 40px;
}

@media (max-width: 1600px) {
  .honor-block {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .honor-block .swiper-box {
    margin-top: 0;
  }

  .honor-block .swiper-points-a {
    margin-top: 25px;
  }
}

@media (max-width: 1200px) {
  .honor-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .honor-block .swiper-box {
    margin-top: 0;
  }

  .honor-block .swiper-points-a {
    margin-top: 0.3rem;
  }
}

@media (max-width: 768px) {
  .honor-block {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .honor-block .swiper-box {
    margin-top: 0;
  }

  .honor-block .swiper-points-a {
    margin-top: 0.3rem;
  }
}

/* 发展历程 */
.history-block {
  padding-top: 120px;
  padding: 60px 0;
  background-color: #f7f7f8;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .history-block {
    padding: 2em 0;
  }
}

.history-block .DevelopmentPath_icon {
  position: absolute;
  bottom: -40.0415vw;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0.65;
  text-align: center;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.5s ease;
  -webkit-transform: all 0.5s ease;
}

/*大*/
.auCHist-man {
  width: 100%;
  position: relative;
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  .auCHist-man {
    width: 100%;
    position: relative;
    margin-left: 0;
    margin-right: 0;
  }
}


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

.auCHist-man .auCHman-box {
  display: block;
  height: 60px;
  text-align: center;
  color: #555;
  background: url(../images/auCHist-bg.jpg) repeat-x center 7px;
  position: relative;
}

.auCHman-box .year {
  line-height: 30px;
  font-size: 24px;
  font-weight: normal;
  color: #888;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .auCHman-box .year {
    line-height: 30px;
    font-size: 16px;
    font-weight: normal;
    color: #888;
    padding-top: 15px;
  }
}

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

.auCHman-box.cur .year {
  color: #e60012;
}

.auCHman-box.cur:before {
  background: #e60012;
}

.auCHistManSwiper-prev,
.auCHistManSwiper-next {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 3px;
  z-index: 99;
  border-radius: 50%;
}

.auCHistManSwiper-prev {
  background: #d2d2d2 url(../images/swiperhis.png) no-repeat center center /auto 16px;
  transform: rotate(180deg);
}

.auCHistManSwiper-next {
  background: #d2d2d2 url(../images/swiperhis.png) no-repeat center center /auto 16px;
}

.auCHistManSwiper-prev {
  left: -30px;
}

@media (max-width: 768px) {
  .auCHistManSwiper-prev {
    left: 0;
  }
}


.auCHistManSwiper-next {
  right: -30px;
}

@media (max-width: 768px) {
  .auCHistManSwiper-next {
    right: 0;
  }
}


/*小*/
.auCHist-min {
  width: 100%;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

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

@media (max-width: 768px) {
  .auCHist-min .swiper-container {
    padding: 0 0 1em;
  }
}

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

.auCHmin-box {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .auCHmin-box {
    position: relative;
    overflow: hidden;
    padding: 0;
  }
}


.auCHmin-box .auCHmin-img {
  display: block;
  width: 38%;
  height: 100%;
  object-fit: cover;
  float: right;
  height: 286px;
}

.auCHmin-box .auCHmin-block {
  padding: 10px;
  min-height: 286px;
  float: left;
  width: 100%;
}

@media (max-width: 768px) {
  .auCHmin-box .auCHmin-block {
    padding: 0.5em;
    min-height: 3em;
    float: left;
    width: 100%;
  }
}







.auCHmin-block h6 {
  font-size: 40px;
  color: #333;
  font-weight: bold;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .auCHmin-block h6 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    padding-bottom: 1em;
  }
  
}


@media (max-width: 768px) {
  .auCHmin-block p {
    display: none;
  }
}


.auCHmin-block li {
  padding: 0 0 0 20px;
  line-height: 40px;
  color: #666666;
  font-size: 18px;
  position: relative;
  background: url('../images/his-02.png') left 16px no-repeat;
  font-weight: 300;
}

@media (max-width: 768px) {
  .auCHmin-block li {
    padding: 0 0 0 20px;
    line-height: 2em;
    color: #666666;
    font-size: 14px;
    position: relative;
    background: url('../images/his-02.png') left 10px no-repeat;
    font-weight: 300;
  }
}

/* 企业文化 */
.culture-block {
  padding-top: 120px;
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .culture-block {
    padding: 2em 0;
  }
}

.culture-block .auto-title-block .p {
  overflow: hidden;
  color: rgba(51, 51, 51, 0.8);
  font-size: 16px;
  line-height: 36px;
  max-width: 900px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .culture-block .auto-title-block .p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
}

.owl-demo5 {
  margin: 0 auto;
  width: 102%;
  margin-left: -1%;
  text-align: center;
  margin-top: 3%;
}

/*.owl-demo5.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.owl-demo5.owl-theme .owl-controls .owl-pagination {}

.owl-demo5.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver*/
  margin-top: 30px;
}

.owl-demo5.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 16px;
  height: 16px;
  margin: 10px 5px;
  /*filter: Alpha(Opacity=50);opacity: 0.5;*/
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #e5e5e5;
}

.owl-demo5.owl-theme .owl-controls .owl-page.active span {
  background: #e70012;
}

.owl-demo5.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  height: 0;
  display: none;
}

.owl-demo5.owl-theme .owl-nav button {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 18px;
  height: 29px;
  /*IE7 life-saver*/
  text-indent: 100px;
  line-height: 40px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-top: -35px;
  /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); border-radius:50%;*/
}

.owl-demo5.owl-theme .owl-nav button.owl-prev {
  background: url(../images/left.png) center center no-repeat;
  background-size: 100%;
  float: left;
  margin-left: -52px;
}

.owl-demo5.owl-theme .owl-nav button.owl-prev:hover {
  background-image: url(../images/left_on.png);
  opacity: 0.8;
  filter: Alpha(opacity=80);
}

.owl-demo5.owl-theme .owl-nav button.owl-next {
  background: url(../images/right.png) center center no-repeat;
  background-size: 100%;
  float: right;
  margin-right: -52px;
}

.owl-demo5.owl-theme .owl-nav button.owl-next:hover {
  background-image: url(../images/right_on.png);
  opacity: 0.8;
  filter: Alpha(opacity=80);
}

.owl-demo5.owl-theme .owl-controls .owl-page {
  display: inline-block;
}

.owl-demo5 .item {
  margin: 0 4%;
}

.owl-demo5 .item .imgs {
  overflow: hidden;
  position: relative;
  padding-top: 66.8%;
}

.owl-demo5 .item .imgs img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-out 0s;
  -moz-transition: all 0.6s ease-out 0s;
  -o-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  /*-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%);-o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;*/
}

.owl-demo5 .item dd:hover .imgs img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  /*-webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%);-o-filter: grayscale(0%); filter: grayscale(0%); filter:none;*/
}

.owl-demo5 .item dd {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
}

.owl-demo5 .item dd .txts {
  overflow: hidden;
  width: 96%;
  margin: 0 auto;
  max-width: 296px;
  margin-top: 4%;
  margin-bottom: 13%;
}

.owl-demo5 .item dd .txts .h3 {
  font-size: 22px;
  font-weight: bold;
  overflow: hidden;
  line-height: 52px;
  height: 52px;
  color: #333333;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .owl-demo5 .item dd .txts .h3 {
    font-size: 18px;
    line-height: 1.5;
    height: 1.5em;
  }
}

.owl-demo5 .item dd .txts .p2 {
  color: #666666;
  font-size: 16px;
  line-height: 32px;
  height: 64px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .owl-demo5 .item dd .txts .p2 {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
    height: 64px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: left;
  }
}

.owl-demo5 .owl-nav {
  display: none !important;
}

.owl-demo5 .owl-dots {
  display: none !important;
}

/* 企业风采 */
.style-block {
  padding-top: 60px;
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (max-width:768px) {
  .style-block {
    padding: 2em 0;
  }
}


.owl-demo3 {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/*.owl-demo3.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.owl-demo3.owl-theme .owl-controls .owl-pagination {
  display: none;
}

/* Styling Pagination*/
.owl-demo3.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver*/
  margin-top: 42px;
}

.owl-demo3.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 10px 4px;
  /*filter: Alpha(Opacity=50);opacity: 0.5;*/
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #c3c3c3;
}

.owl-demo3.owl-theme .owl-controls .owl-page.active span {
  background: #1a77b6;
}

.owl-demo3.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  height: 0;
}

.owl-demo3.owl-theme .owl-nav button {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 60px;
  height: 60px;
  /*IE7 life-saver*/
  text-indent: 100px;
  line-height: 60px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-top: -30px;
  /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); */
  border-radius: 50%;
}

.owl-demo3.owl-theme .owl-nav button.owl-prev {
  background: url(../images/left.png) rgba(231, 0, 18, 0.1) center center no-repeat;
  background-size: 100%;
  float: left;
  margin-left: -90px;
}

.owl-demo3.owl-theme .owl-nav button.owl-prev:hover {
  /*background-image:url(../images/left_on.png);opacity:0.8;filter:Alpha(opacity=80);*/
  background-color: #e70012;
}

.owl-demo3.owl-theme .owl-nav button.owl-next {
  background: url(../images/right.png) rgba(231, 0, 18, 0.1) center center no-repeat;
  background-size: 100%;
  float: right;
  margin-right: -90px;
}

.owl-demo3.owl-theme .owl-nav button.owl-next:hover {
  /*background-image:url(../images/right_on.png);opacity:0.8;filter:Alpha(opacity=80);*/
  background-color: #e70012;
}

.owl-demo3.owl-theme .owl-controls .owl-page {
  display: inline-block;
}

.owl-demo3 .item {
  margin: 0 2%;
}

.owl-demo3 .item .imgs {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  margin-bottom: 4%;
  border-radius: 10px;
}

.owl-demo3 .item .imgs img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-out 0s;
  -moz-transition: all 0.6s ease-out 0s;
  -o-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  /* -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%);-o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;*/
}

.owl-demo3 .item dd .imgs:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  /*-webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%);-o-filter: grayscale(0%); filter: grayscale(0%); filter:none;*/
}

.owl-demo3 .item dd {
  /*float:left; width:32.33%; margin-right:1.5%;*/
}

/*.owl-demo3 .item dd:nth-child(3n+0){ margin-right:0;}*/
.owl-demo3 .item dd.bgs2 .imgs {
  padding-top: 124%;
}

.owl-demo3 .owl-dots {
  display: none;
}



#certify {
  position: relative;
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  margin-top: 20px;
}

#certify .swiper-container {
  padding-bottom: 50px;
}

#certify .swiper-slide {
  width: 36%;
  height: auto;
  background: none;
  box-shadow: 0 8px 35px #333;
}

#certify .swiper-slide img {
  display: block;
  width: 100%;
}

#certify .swiper-slide p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  line-height: 1.4;
  padding-top: 0;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 0px;
  margin: 0;
}

#certify .swiper-pagination {
  width: 100%;
  bottom: -10px;
}




#certify .swiper-button-prev {
  left: -30px;
  width: 45px;
  height: 45px;
  background: url(../images/wm_button_icon2.png) no-repeat;
  background-position: 0 0;
  background-size: 100%;
}

#certify .swiper-button-prev:hover {
  background-position: 0 -46px;
  background-size: 100%
}

#certify .swiper-button-next {
  right: -30px;
  width: 45px;
  height: 45px;
  background: url(../images/wm_button_icon2.png) no-repeat;
  background-position: 0 -93px;
  background-size: 100%;
}

#certify .swiper-button-next:hover {
  background-position: 0 -139px;
  background-size: 100%
}

#certify .swiper-button-prev::after,
#certify .swiper-button-next::after {
  content: '';
}

/*小屏幕*/
@media screen and (max-width: 768px) {
  #certify .swiper-slide {
    width: 100%;
    box-shadow: none
  }

  #certify .swiper-button-next,
  #certify .swiper-button-prev {
    display: none
  }

  #certify .swiper-slide p {
    font-size: 14px;
    padding: 10px;
  }

  .tixi .tixi_one .tixi_titile {
    font-size: 16px;
  }

  .tixi .tixi_one .tixi_descipe {
    font-size: 13px;
  }

}


/* 社会责任 */
.responsibility-block {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f7f7f7;
}

@media (max-width:768px) {
  .responsibility-block {
    padding-top: 2em;
    padding-bottom: 2em;
    background-color: #f7f7f7;
  }
  
}

.social_respon.channel_content {
  padding: 0;
  background: #f6f6f6;
}

.social_respon01 {
  padding: 0 0 35px;
}

@media (max-width:768px) {
  .social_respon01 {
    padding: 0 0 1em;
  }
}

.social_respon01 .hd {
  background: #e60012;
}

.social_respon01 .hd .left {
  width: 63%;
  float: left;
}

@media (max-width:768px) {
  .social_respon01 .hd .left {
    width: 100%;
    float: left;
  }
}

.social_respon01 .hd .left .rect-4975 {
  padding-bottom: 49.74%;
  height: 0;
}

.social_respon01 .hd .left .rect-4975 img {
  width: 100%;
}

.social_respon01 .hd .right {
  width: 37%;
  float: right
}

@media (max-width:768px) {
  .social_respon01 .hd .right {
    width: 100%;
    float: right
  }
}

.social_respon01 .hd .right .box {
  padding: 60px 35px;
  color: #fff;
}
@media (max-width:768px) {
  .social_respon01 .hd .right .box {
    padding: 1em;
    color: #fff;
  }
}

.social_respon01 .hd .right .box .tit {
  font-size: 30px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

@media (max-width:768px) {
  .social_respon01 .hd .right .box .tit {
    font-size: 18px;
    margin-bottom: 0.5em;
  }
}

.social_respon01 .hd .right .box .con {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
  transition: all 0.5s ease;
}

.social_respon01 .hd .right .box .txt {
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width:768px) {
  .social_respon01 .hd .right .box .txt {
    font-size: 14px;
    line-height: 1.5;
  }
}

.social_respon01 .bd .item {
  margin-bottom: 25px;
  width: 32%;
  margin-right: 2%;
  float: left;
}

.social_respon01 .bd .item.three_item {
  margin-right: 0;
}

.social_respon02 {
  background: #f7f7f7;
  padding: 0 0 30px;
}

.social_respon02 .rect-1112 {
  padding-bottom: 75%;
  height: 0;
}

.social_respon02 li.li_ {
  margin-bottom: 30px;
  width: 32%;
  margin-right: 2%;
  float: left;
  position: relative;
}
@media (max-width:768px) {
  .social_respon02 li.li_ {
    margin-bottom: 0;
  } 
}

.social_respon02 li.three_li {
  margin-right: 0;
}

.social_respon02 li .cover {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../img/black.6.png) center;
}

.social_respon02 li .cover .box {
  padding: 20px 40px;
  color: #fff;
}

@media (max-width:768px) {
  
  .social_respon02 li .cover .box {
    padding: 0;
    color: #fff;
  }
}

.social_respon02 li .cover .box .t {
  font-size: 22px;
}

@media (max-width:768px) {
  
  .social_respon02 li .cover .box .t {
    font-size: 16px;
    text-align: center;
  }
}

.social_respon02 li .cover .box .c {
  font-size: 14px;
  display: none;
  margin-top: 10px;
}

@media (max-width:768px) {
  .social_respon02 li .cover .box .c {
    font-size: 14px;
    display: none !important;
    margin-top: 10px;
  } 
}



/* 社会责任详细 */
.social_detail01 .infor .tit {
  font-size: 35px;
  line-height: 35px;
  font-weight: bold;
  color: #666;
  margin-bottom: 10px;
}

.social_detail01 .infor .con {
  font-size: 16px;
  line-height: 26px;
  color: #666;
}




/* =================== 联系我们 页面 ========================== */
#contact {
  padding: 0 0 90px;
}

#contact .title-en {
  font-size: 42px;
  color: #dcdcdc;
  font-family: "BC";
  font-weight: 700;
}


#contact .title-cn {
  font-size: 32px;
  color: #102744;
  font-family: "SM";
  line-height: 1;
  margin-top: 8px;
}

#contact .content1 {
  margin-top: 40px;
  background: #fff;
  padding: 50px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

#contact .content1 .item {
  width: 33.333%;
  border-right: 1px solid #ececec;
  padding: 0 55px;
}

#contact .content1 .item:nth-child(3) {
  border-right: 0;
}

#contact .content1 .item .icon {
  width: 40px;
  height: 40px;
}

#contact .content1 .item .icon .iconfont {
  font-size: 38px;
  color: #333;
}

#contact .content1 .item .t1 {
  font-size: 16px;
  color: #666;
  font-family: "SB";
  margin: 28px 0 12px;
}

#contact .content1 .item .t2 {
  font-size: 20px;
  color: #333;
  word-break: break-all;
  font-weight: bold;
}

#contact .content2 {
  height: 480px;
  background: #fff;
  margin-top: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

#contact .content2 .address {
  width: 33.333%;
  padding: 20px;
}

#contact .content2 .address .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

#contact .content2 .address .t1 {
  font-size: 16px;
  color: #102744;
  font-family: "SB";
  margin: 28px 0 12px;
}

#contact .content2 .address .t2 {
  font-size: 16px;
  color: #102744;
}

#contact .content2 .address .t3 {
  font-size: 16px;
  color: #102744;
  padding-top: 40px;
}

#contact .content2 .map-box {
  width: 66.667%;
  height: 100%;
}

#contact .content2 .map-box .BMap_shadow img {
  max-width: initial;
}

.erweima {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  #contact .content1 .item {
    padding: 0 25px;
  }
}

@media (max-width:768px) {
  #contact {
    padding: 1em 0;
    padding-bottom: 2em;
  }

  #contact .title-en {
      font-size: 18px;
      color: #dcdcdc;
      font-family: "BC";
      font-weight: 400;
      line-height: 1;
  }

  #contact .content1 {
    margin-top: 2em;
    padding: 1em 0;
    display: block;
  }

  #contact .content1 .item {
    width: 100%;
    border-right: 0;
    text-align: center;
    margin-bottom: 0;
    padding: 1.5em 0;
  }

  #contact .content1 .item:nth-child(2) {
    background: #f5f5f5;
    padding: 1em 0;
  }

  #contact .content1 .item:nth-child(3) {
    margin-bottom: 0;
  }

  #contact .content1 .item .icon {
    margin: 0 auto;
  }

  #contact .content1 .item .t1 {
    font-size: 18px;
    margin-top: 0.5em;
  }

  #contact .content1 .item .t2 {
    font-size: 18px;
  }

  #contact .content2 {
    margin-top: 1em;
    height: auto;
    display: block;
  }

  #contact .content2 .address {
    width: 100%;
    padding: 20px;
  }

  #contact .content2 .address .t1 {
    font-size: 18px;
    margin-top: 0.5em;
  }

  #contact .content2 .address .t2 {
    font-size: 18px;
  }
  #contact .content2 .address .t3{
    padding: 0;
    padding-top: 1em;
  }

  #contact .content2 .map-box {
    width: 100%;
    height: 480px;
    margin-top: 15px;
  }
}




/* 强制激活导航 */
/* 透明 */
#bodyScroll .Header-wrapper,
.bodyMouse .Header-wrapper,
.bodySearch .Header-wrapper,
.noLucency .Header-wrapper,
.bodyMenu .Header-wrapper {
  background: #fff;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}

#bodyScroll .Header-menu,
.bodyMouse .Header-menu,
.bodySearch .Header-menu,
.noLucency .Header-menu,
.bodyMenu .Header-menu {
  color: #747474;
}

#bodyScroll .Header-menu a,
.bodyMouse .Header-menu a,
.bodySearch .Header-menu a,
.noLucency .Header-menu a,
.bodyMenu .Header-menu a {
  color: #747474;
}


#bodyScroll .Header-menu a:after,
.bodyMouse .Header-menu a:after {
  background: rgb(230 0 18);
}


#bodyScroll .Header-logo img.s,
.bodyMouse .Header-logo img.s,
.bodySearch .Header-logo img.s,
.noLucency .Header-logo img.s,
.bodyMenu .Header-logo img.s {
  opacity: 0;
}

#bodyScroll .Header-logo img.h,
.bodyMouse .Header-logo img.h,
.bodySearch .Header-logo img.h,
.noLucency .Header-logo img.h,
.bodyMenu .Header-logo img.h {
  opacity: 1;
}

#bodyScroll .Header-stock,
.bodyMouse .Header-stock,
.bodySearch .Header-stock,
.noLucency .Header-stock,
.bodyMenu .Header-stock {
  color: #666;
  border-left: 1px solid #999;
}

#bodyScroll .Header-lang a span,
.bodyMouse .Header-lang a span,
.bodySearch .Header-lang a span,
.noLucency .Header-lang a span,
.bodyMenu .Header-lang a span {
  color: #747474;
}


#bodyScroll .Header-lang::before,
.bodyMouse .Header-lang::before,
.bodySearch .Header-lang::before,
.noLucency .Header-lang::before,
.bodyMenu .Header-lang::before {
  background: #999;
}

#bodyScroll .Header-search-click,
.bodyMouse .Header-search-click,
.bodySearch .Header-search-click,
.noLucency .Header-search-click,
.bodyMenu .Header-search-click {
  background-image: url('../images/common/search.svg');
}

#bodyScroll .Header-lang .Header-lang-menu span {
  color: #666;
}

#bodyScroll .Header-lang .Header-lang-menu i {
  color: #666;
}

/* 案例列表页面 */
.caseDetail {
  display: block;
}

.case-item .card {
  border-radius: 3px;
  position: relative;
  padding: 12px;
  margin: 0 auto 30px;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .015);
  min-height: 250px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width:768px) {
  .case-item .card {
    margin: 0 auto 1em;
    min-height: 50px;
  }
}


.case-item .card .thumb {
  position: relative;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  margin: -12px;
}

.case-item .card .thumb>.preview-link::before {
  /* background: rgba(230,0,18,  0.1); */
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.case-item .card .thumb>.quickview-link {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  line-height: 40px;
  text-align: center;
  z-index: 10;
  background: rgba(230, 0, 18, 0.80);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.case-item .card .thumb:hover .preview-link::before {
  opacity: 1;
}

.case-item .card .thumb:hover .quickview-link {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
}

.case-item .card .thumb img {
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
}


.case-item .card:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.case-item .card:hover .operate .pull-right {
  display: block;
}

.case-item .card .image {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.case-item .card .title {
  padding-top: 10px;
}

.case-item .card h2 {
  color: #000;
  padding: 0;
  margin-bottom: 5px;
  height: 24px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}

@media (max-width:768px) {
  .case-item .card h2 {
    font-size: 14px;
  }
}


.case-item .card p {
  color: #777;
  padding: 0;
  margin-bottom: 5px;
  height: 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}


@media (max-width:768px) {
  .case-item .card p {
    font-size: 14px;
  }
}

.case-item .card .operate {
  height: 35px;
  overflow: hidden;
}

.case-item .card .operate .pull-right {
  display: block;
  clear: both !important;
  float: none !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 2px;
}

.case-item .card .operate .pull-right .btn-primary {
  background: none;
  border: none;
  color: #e60012;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.case-item .card:hover .operate .pull-right .btn-primary {
  color: #fff;
  background-color: #cc0000;
  border-color: #cc0000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.case-item .card:hover .thumb img {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.caseDetail .article-metas .metas-title {
  text-align: center;
}

.caseDetail .article-metas .metas-body {
  justify-content: center;
}

.caseDetail .article-text {
  text-align: center;
}

.caseDetail .article-text img {
  margin-left: auto;
  margin-right: auto;
}



/* ===== 总体下拉菜单 ===== */
.menuDown {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  flex-direction: column;
  display: none;
  background: rgba(0, 0, 0, .5) url(../images/bn1.png) no-repeat 50%/cover;
}

.menuDown.on {
  display: flex;
}

.menuDown .menuDownTop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menuDown .menuDownTop .menuDownBox {
  display: none;
}

.menuDown .menuDownTop .menuDownBox.on {
  display: flex;
}

.menuDown .menuDownTop .linkBox1 {
  width: fit-content;
  display: flex;
  padding-left: 3vw;
}

.menuDown .menuDownTop .linkBox1 .linkBoxLeft1 {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}

.menuDown .menuDownTop .linkBox1 .linkBoxLeft1 .lblTitle {
  font-size: 24px;
  color: #54aef4;
  margin-bottom: 25px;
}

@media (max-width:1400px) {
  .menuDown .menuDownTop .linkBox1 .linkBoxLeft1 .lblTitle {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.menuDown .menuDownTop .linkBox1 .linkBoxLeft1 .lblLink {
  display: flex;
  flex-wrap: wrap;
  width: 540px;
}

.menuDown .menuDownTop .linkBox1 .linkBoxLeft1 .lblLink a {
  display: flex;
  align-items: center;
  width: calc(100% * (1 / 3));
  font-size: 16px;
  opacity: 0.7;
  color: #FFFFFF;
  height: 55px;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}

@media (max-width:1400px) {
  .menuDown .menuDownTop .linkBox1 .linkBoxLeft1 .lblLink a {
    height: 35px;
    font-size: 15px;
  }
}

.menuDown .menuDownTop .linkBox1 .linkBoxLeft1.xwzx .lblLink {
  width: 260px;
}

.menuDown .menuDownTop .linkBox1 .linkBoxLeft1.xwzx .lblLink a {
  width: 50%;
}

.menuDown .menuDownTop .linkBox1.zong {
  padding-left: 10%;
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblLink {
  min-width: 210px;
  width: 300px;
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblLink a {
  width: 100%;
}

.menuDown .menuDownTop .linkBox1 .linkBoxLeft1 .lblLink a:hover {
  opacity: 1;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}

.menuDown .menuDownTop .linkBox1 .linkBoxLeft1 .lblLink a img {
  margin-right: 10px;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}

.menuDown .menuDownTop .linkBox1 .linkBoxLine {
  border: rgba(138, 180, 211, 0.3) dashed 1px;
  margin-right: 3.125vw;
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblTitle {
  color: #fff;
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblTitle:hover {
  color: rgb(241, 6, 6);
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblLink a:hover {
  color: rgb(241, 6, 6);
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblLink a img {
  opacity: 0;
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblLink a:hover img {
  opacity: 1;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblLink a i {
  opacity: 0;
  display: none;
  margin-right: 6px;
}

.menuDown .menuDownTop .linkBox1.zong .linkBoxLeft1 .lblLink a:hover i {
  display: block;
  opacity: 1;
}





/* 关闭按钮 */
.menuBack {
  width: fit-content;
  height: 50px;
  border-radius: 50px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 45px;
  z-index: 8888;
  font-size: 14px;
  color: #ffffff;
  border: #fff solid 1px;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transform: all 0.5s ease 0s;
}

.menuBack i {
  margin-right: 15px;
}

.menuBack:hover {
  border-color: rgba(230, 0, 18, 0.80);
  background: rgba(230, 0, 18, 0.80);
}

/* 内页banner 波浪动画 */
.waves {
  position: relative;
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

@media (max-width:1400px) {
  .waves {
    height: 8vh;
  }
}

/* Animation */
.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

/* 两倍 */
/* .parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 14s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 20s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 26s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 40s;
} */

/* 5倍 */
/* .parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 35s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 50s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 65s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 100s;
} */

/* 自定义 */
.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 60s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 80s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 100s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 120s;
}


@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}


/* ======================================================= 技术平台综合页 ========================================================= */

.science {
  width: 100%;
}

.science {
  width: 100%;
}

.science-item {
  width: 100%;
  padding: 140px 0 130px;
}




.science-content {
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 758px);
  height: 510px;
  padding-left: 110px;
}

.science-content .common-title {
  text-align: left;
}

.science-content .common-title h2 {
  font-size: 38px;
  color: #000;
  font-weight: 700;
}

.science-content .common-cont {
  padding: 0;
  margin-top: 32px;
}

.science-content .common-cont p {
  height: 128px;
  overflow: hidden;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  font-size: 18px;
  color: #999;
  line-height: 32px;
}

.science-content .dui-more {
  margin-left: 0;
  margin-top: 40px;
}

.science-show {
  float: left;
  display: flex;
  justify-content: flex-end;
  width: 758px;
}

.science-img {
  width: 100%;
  height: 510px;
  border-radius: 20px;
  overflow: hidden;
}

.science-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.science-item:first-child {
  padding-top: 40px;
}

.science-item:nth-child(2n) {
  background-color: #f5f5f5;
}

.science-item:nth-child(2n) .science-content {
  float: left;
  padding-left: 0;
  padding-right: 110px;
}

.science-item:nth-child(2n) .science-show {
  float: right;
}

@media all and (max-width:1599px) {
  .science-item {
    padding: 120px 0 100px;
  }

  .science-content {
    width: calc(100% - 700px);
    padding-left: 80px;
  }

  .science-show {
    width: 700px;
  }

  .science-item:nth-child(2n) .science-content {
    padding-right: 80px;
  }
}

@media all and (max-width:1279px) {
  .science-item {
    padding: 88px 0 80px;
  }

  .science-content {
    width: calc(100% - 600px);
    padding-left: 40px;
  }

  .science-content .common-cont p {
    height: 104px;
  }

  .science-show {
    width: 600px;
  }

  .science-item:nth-child(2n) .science-content {
    padding-right: 40px;
  }
}

@media all and (max-width:1000px) {
  .science-item {
    padding: 68px 0 60px;
  }

  .science-content {
    width: 100%;
    padding-left: 0px;
    height: auto;
    margin-top: 28px;
  }

  .science-content .common-cont p {
    height: auto;
  }

  .science-show {
    width: 100%;
  }

  .science-img {
    height: auto;
  }

  .science-item:nth-child(2n) .science-content {
    padding-right: 0px;
  }
}

@media all and (max-width:768px) {
  .science-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }
  .science-item{
    padding: 0;
    padding-bottom: 2em;
    width: 50%;
  }
  .science-item:first-child{
    padding-top: 0;
  }
  .science-item:nth-child(2n){
    background: none;
  }

  .science-item .container{
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .science-img{
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.science-content{
  margin-top: 1em;
}

  .science-content .common-title h2 {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
  }
  .science-content .common-cont{
    margin-top: 0.5em;
  }
  .science-content .common-cont p{
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  .science-content .dui-more{
    display: none;
  }
}

/* 单页 */
.sdnav {
  width: 100%;
}

@media (max-width:992px) {
  .sdnav {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
  }
}

.sdnav dd {
  position: relative;
}

.sdnav dd>a {
  display: block;
  font-size: 16px;
  color: #0061ae;
  line-height: 59px;
  font-weight: bold;
  height: 59px;
  overflow: hidden;
  padding-left: 26px;
  border-bottom: 1px solid #e4e9ec;
  position: relative;
}
@media (max-width:992px) {
  .sdnav dd>a {
    display: none;
  }
}


.sdnav dd.on>a,
.sdnav dd.ac>a,
.sdnav dd:hover>a {
  color: #e60012;
}

.sdnav dd.on>a>i,
.sdnav dd.ac>a>i,
.sdnav dd:hover>a>i {
  background-color: #e60012;
  color: #fff;
}

.sdnav dd>a>i {
  position: absolute;
  left: 0;
  top: 21px;
  z-index: 2;
  width: 17px;
  height: 17px;
  line-height: 17px;
  text-align: center;
  display: block;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sdnav dd.on>a>i,
.sdnav dd.ac>a>i {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);

  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.sdnav dd s {
  position: absolute;
  z-index: 1;
  left: 4px;
  top: 9px;
  width: 12px;
  height: 2px;
  background-color: #fff;
  opacity: 1;
}

.sdnav dd s:first-child {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sdnav dd.ac s:first-child {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.sdnav dd s {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.leifour {
  display: none;
  padding-left: 27px;
  border-bottom: 1px solid #e4e9ec;
}

@media (max-width:992px) {
  .leifour {
    padding-left: 0;
    border-bottom: none;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
  }
}

.leifour li {
  line-height: 49px;
  overflow: hidden;
}

@media (max-width:992px) {
  .leifour li {
    line-height: 49px;
    overflow: hidden;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
    width: 33.33%;
  }
}

@media (max-width:768px) {
  .leifour li {
    width: 50%;
  }
}


.leifour li+li {
  border-top: 1px solid #ddd;
}

@media (max-width:992px) {
  .leifour li+li {
    border-top: none;
  }
}

.leifour li a {
  font-size: 15px;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width:992px) {
  .leifour li a {
    display: block;
    background: #f4f4f4;
    line-height: 40px;
    font-size: 14px;
    padding:0 8px;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
}

.leifour li a>i {
  padding-right: 5px;
}
@media (max-width:992px) {
  .leifour li a>i {
    display: none;
  }
}

.leifour li.on a,
.leifour li:hover a {
  color: #e60012;
}

@media (max-width:992px) {
  .leifour li.on a,
  .leifour li:hover a {
    background-color: #e60012;
    color: #fff;
  }
}

.pageDetail {
  background: #fff;
  margin-bottom: 60px;
}

.pageDetail .page-content{
  display: block;
}

@media (max-width:768px) {
  .pageDetail .page-content{
    padding-left: 0;
    padding-right: 0;
  }
}

.page-metas {
  height: 59px;
}

.page-text p br {
  height: 1px;
}

/* 仪器设备列表 */
.shebei-item .card {
  border-radius: 3px;
  position: relative;
  padding: 12px;
  margin: 0 auto 30px;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .015);
  min-height: 50px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
}

@media (max-width:768px) {
  .shebei-item .card {
    margin-bottom: 1em;
  }
}



.shebei-item .card .thumb {
  position: relative;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  margin: -12px;
}

.shebei-item .card .thumb>.preview-link::before {
  background: rgba(230, 0, 18, 0.1);
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.shebei-item .card .thumb>.quickview-link {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  line-height: 40px;
  text-align: center;
  z-index: 10;
  background: rgba(230, 0, 18, 0.80);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.shebei-item .card .thumb:hover .preview-link::before {
  opacity: 1;
}

.shebei-item .card .thumb:hover .quickview-link {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
}


.shebei-item .card .thumb img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.shebei-item .card:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shebei-item .card:hover .operate .pull-right {
  display: block;
}

.shebei-item .card .image {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.shebei-item .card .title {
  padding-top: 10px;
}

.shebei-item .card h2 {
  color: #000;
  padding: 0;
  margin-bottom: 5px;
  height: 24px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}

.shebei-item .card p {
  color: #777;
  padding: 0;
  margin-bottom: 5px;
  height: 50px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.shebei-item .card .operate {
  height: 35px;
  overflow: hidden;
}

.shebei-item .card .operate .pull-right {
  display: block;
  clear: both !important;
  float: none !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 2px;
}

.shebei-item .card .operate .pull-right .btn-primary {
  background: none;
  border: none;
  color: #e60012;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shebei-item .card:hover .operate .pull-right .btn-primary {
  color: #fff;
  background-color: #cc0000;
  border-color: #cc0000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shebei-item .card:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}


/* 认证证书列表 */
.zhengshu-item .card {
  border-radius: 3px;
  position: relative;
  padding: 12px;
  margin: 0 auto 30px;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .015);
  min-height: 50px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
}

@media (max-width:768px) {
  .zhengshu-item .card {
    margin-bottom: 1em;
  }
}


.zhengshu-item .card .thumb {
  position: relative;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  margin: -12px;
  border-bottom: 1px solid #ebebeb;
}

.zhengshu-item .card .thumb>.preview-link::before {
  background: rgba(230, 0, 18, 0.1);
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.zhengshu-item .card .thumb>.quickview-link {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  line-height: 40px;
  text-align: center;
  z-index: 10;
  background: rgba(230, 0, 18, 0.80);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.zhengshu-item .card .thumb:hover .preview-link::before {
  opacity: 1;
}

.zhengshu-item .card .thumb:hover .quickview-link {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
}


.zhengshu-item .card .thumb img {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.zhengshu-item .card:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.zhengshu-item .card:hover .operate .pull-right {
  display: block;
}

.zhengshu-item .card .image {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.zhengshu-item .card .title {
  padding-top: 10px;
}

.zhengshu-item .card h2 {
  color: #000;
  padding: 0;
  margin-bottom: 5px;
  height: 24px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}

.zhengshu-item .card p {
  color: #777;
  padding: 0;
  margin-bottom: 5px;
  height: 50px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.zhengshu-item .card .operate {
  height: 35px;
  overflow: hidden;
}

.zhengshu-item .card .operate .pull-right {
  display: block;
  clear: both !important;
  float: none !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 2px;
}

.zhengshu-item .card .operate .pull-right .btn-primary {
  background: none;
  border: none;
  color: #e60012;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.zhengshu-item .card:hover .operate .pull-right .btn-primary {
  color: #fff;
  background-color: #cc0000;
  border-color: #cc0000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.zhengshu-item .card:hover img {
  transform: scale(0.96);
  -webkit-transform: scale(0.96);
  -moz-transform: scale(0.96);
  -ms-transform: scale(0.96);
  -o-transform: scale(0.96);
}

/* 真伪鉴别 */
.cell {
  display: flex;
  align-items: center;
}

.cell .cell-1 {
  flex: 1;
}

#fangwei-box .panel-body .search-box {
  padding: 80px 0px;
  padding-bottom: 200px;
  width: 675px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width:768px) {
  #fangwei-box .panel-body .search-box {
    padding:3em 0px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
}

@media (max-width:576px) {
  #fangwei-box .panel-body .search-box {
    padding:1em 0px;
  }
}

#fangwei-box .panel-body .search-box .toplogo {
  text-align: center;
  width: 100%;
  padding: 30px 0 20px 0;
  font-size: 32px;
  color: #333;
  text-shadow: 4px 4px 3px rgba(255, 255, 255, 0.6);
  font-weight: 900;
}
@media (max-width:768px) {
  #fangwei-box .panel-body .search-box .toplogo {
    text-align: center;
    width: 100%;
    padding: 30px 0 20px 0;
    font-size: 22px;
    color: #333;
    text-shadow: 4px 4px 3px rgba(255, 255, 255, 0.6);
    font-weight: 900;
  }
}
@media (max-width:576px) {
  #fangwei-box .panel-body .search-box .toplogo {
    padding: 15px 0 15px 0;
    font-size: 22px;
  }
}


#fangwei-box .panel-body .search-box .input-1 {
  width: 564px;
  height: 49px;
  background: #FFFFFF;
  line-height: 49px;
  font-size: 17px;
  box-sizing: content-box;
  border: 3px solid #D4D4D4;
  padding-left: 10px;
}

#fangwei-box .panel-body .search-box .input-1::placeholder {
  color: #777777;
}

#fangwei-box .panel-body .search-box .input-btn {
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
}

#fangwei-box .panel-body .search-box .input-btn-1 {
  margin-left: -4px;
  width: 120px;
  justify-content: center;
  background: linear-gradient(0deg, #ba121a, #f7010d);
}

#fangwei-box .panel-body .search-box .input-btn-2 {
  width: 123px;
  background: linear-gradient(0deg, #ba121a, #f7010d);
}

.fw-tips {
  color: #acacac;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-top: 15px;
}

@media (max-width:768px) {
  .fw-tips {
    color: #acacac;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-top: 15px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.fw-tips ul{
  display: flex;
  align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
@media (max-width:768px) {
  .fw-tips ul{
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
  }
}


.fw-tips .num {
  background: #acacac;
  color: #fff;
  padding: 2px 7px;
  border-radius: 50px;
  font-size: 12px;
  margin: 0 11px;
  font-weight: 400;
}

a .fw-tips .start {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 5px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkNDRjdCNkIyRTJERTExRUJCMERCRjE1RjU1OEY4NjcyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkNDRjdCNkIzRTJERTExRUJCMERCRjE1RjU1OEY4NjcyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Q0NGN0I2QjBFMkRFMTFFQkIwREJGMTVGNTU4Rjg2NzIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NGN0I2QjFFMkRFMTFFQkIwREJGMTVGNTU4Rjg2NzIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5YQiUHAAAB9ElEQVR42qzVT0hUURTH8Tf+iTQtFUSwMsEQQqKFLl3oQgKREFwEhpauEiFapaTYUBgKLkQFwUCMxMA2RqQLI3EjEiQIEZSigk2kLjQXqSjZ98pv8Xi89+aCHfhw1HlzvHPuvWci0WjUcUdTZ6/jE4lYxBD6nJAYbHt4khMcuziLIpRbPm9deA8f8Na2cJKrBaWk16jHjOe5v6gIqfMe51Dmt+JVZOAjLrv+XoWX+IQ5PEa+6/VXqMSUbytoeoyUh1asq6ff8E6fIgtX0KlFtOutpmAdugN7TPFtPZCLLyjEHaTiKi6iACN4hgGMYTSwx56YVTaFfnpeW0EDvuM5pv02NbKRnHGGnInfrHifTazUZtzGeJzN/4F0XNDvJpt6O6YVy/jlWuVdHFsUNdGD8/r5mimITXOJTCui6ulXPXADMcvjuqhcjCU80aJmkvj4w56HD5BjWThNOQW7eBp2pSd1nlMsCjcqL9hc6QHlF3GKmktSjTf4Y1M4pmNkzm9LQNHr6ukR7oXOCk+06Rh1oRn9+IxLqMEtzY8Sv9WGFTbxQHOjVf8gwTXpzM17hK240y0gJrSZN3ULj3XE5q3HZkDk6PI4Ok7JOi1mTnScprC5SbVqQ6o261D9PtWKDzT872uVu5pu/+2rKaIZvIZsmzf8E2AAmXdxcoeo5eUAAAAASUVORK5CYII=) no-repeat center center;
}

/*漆量计算*/
#qiliangjisuan .rightbox {
  width: 68%;
  border-radius: 6px;
  background: #fff;
  padding: .9rem 1rem;
  margin-left: auto;
  margin-right: auto;
}


@media (max-width:768px) {
  #qiliangjisuan .rightbox {
    width: 100%;
    border-radius: 6px;
    background: #fff;
    padding: .9rem 1rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}


#qiliangjisuan .tab-li {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #ececec;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: start;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

#qiliangjisuan .tab-li .li {
  position: relative;
  font-size: 16px;
  color: #777;
  height: 45px;
  line-height: 1;
  -webkit-transition: color .3s;
  transition: color .3s;
  position: relative;
  cursor: pointer;
}

#qiliangjisuan .tab-li .li:before {
  content: "";
  position: absolute;
  width: 0;
  bottom: 0;
  height: 6px;
  background: #e60012;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#qiliangjisuan .tab-li .li:hover,
#qiliangjisuan .tab-li .li.cur {
  color: #e60012;
}

#qiliangjisuan .tab-li .li:hover:before,
#qiliangjisuan .tab-li .li.cur:before {
  height: 3px;
  width: 100%;
}

#qiliangjisuan .tab-li .li:last-child {
  margin-right: 0;
}

#qiliangjisuan .rightbox .tit2 {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 10px;
}

#qiliangjisuan .rightbox .li {
  margin-bottom: 0;
}

#qiliangjisuan .rightbox .item {
  width: 46.2%;
}

#qiliangjisuan .rightbox .input input {
  width: 100%;
  padding: 10px;
  height: 45px;
  line-height: 23px;
  border: 1px solid #ebebeb;
  background: #f5f5f5;
  text-align: right;
  border-radius: 3px;
}

#qiliangjisuan .rightbox .input textarea {
  width: 100%;
  padding: 10px;
  height: 2.875rem;
  line-height: 23px;
  border: 1px solid #ebebeb;
  background: #f5f5f5;
  text-align: right;
  border-radius: 3px;
}

#qiliangjisuan .rightbox .input .input2 {
  width: calc(100% - 200px);
  margin-right: 10px;
}

#qiliangjisuan .rightbox .input .code {
  width: 60px;
  line-height: 45px;
  text-align: center;
}

#qiliangjisuan .rightbox .input .code img {
  max-width: 100%;
  cursor: pointer;
}

#qiliangjisuan .rightbox .input .code .img1 {
  margin-right: .7rem;
}

#qiliangjisuan .rightbox .submit-button {
  width: 100%;
  height: 50px;
  line-height: 50px;
  position: relative;
}

#qiliangjisuan .rightbox .submit-button input {
  position: absolute;
  width: 100%;
  height: 50px;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
}

#qiliangjisuan .rightbox .submit-button .button {
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  left: 0;
  top: 0;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  background: #e60012;
  z-index: 1;
}

#qiliangjisuan .rightbox .file-button {
  width: 100%;
  height: 50px;
  line-height: 50px;
  position: relative;
  cursor: pointer;
}

#qiliangjisuan .rightbox .file-button input {
  position: absolute;
  width: 100%;
  height: 50px;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
}

#qiliangjisuan .rightbox .file-button img {
  margin-right: 5px;
  margin-top: -3px;
}

#qiliangjisuan .rightbox .file-button .file-button {
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  left: 0;
  top: 0;
  text-align: right;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  z-index: 1;
}

#qiliangjisuan .rightbox .file-button .inputname {
  position: absolute;
  color: #ccc;
  font-size: 12px;
  z-index: 10;
  padding-left: 10px;
}

#qiliangjisuan .rightbox .n-cal .li {
  margin-bottom: 30px;
}

#qiliangjisuan .rightbox .li-item {
  padding: 30px 0 3px;
  border-bottom: 1px solid #ececec;
}

#qiliangjisuan .rightbox .li-item .tit4 {
  font-size: 16px;
  line-height: 1;
  color: #666;
  margin-bottom: 15px;
}

#qiliangjisuan .rightbox .li-item .nitem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#qiliangjisuan .rightbox .li-item .tit5 {
  color: #555;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.25;
}

#qiliangjisuan .rightbox .li-item .tit6 {
  font-size: 15px;
  color: #a2a2a2;
}

#qiliangjisuan .main {
  border: 1px solid #e6e6e6;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 16px;
}

@media (max-width:768px) {
  #qiliangjisuan .main {
    padding: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 14px;
  }
}


#qiliangjisuan .main.remark {
  background-color: #f5f5f5;
}

#qiliangjisuan .main.remark .bbt {
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 16px;
  color: #014099;
  font-weight: bold;
  color: #454545;
  margin-bottom: 15px;
}

/* 在线留言 */
.lxout {
  padding: 115px 110px;
  overflow: hidden;
  background-color: #fff;
}

.lxleft {
  float: left;
  width: 370px;
}

.lxright {
  float: right;
  width: 830px;
}

.lxleft .intro {
  font-size: 16px;
  line-height: 1.75;
  color: #666;
}

.cate8 {
  color: #000;
}

.cate8 .cn {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cate8 .en {
  font-size: 32px;
  line-height: 36px;
  color: #e60012;
  font-weight: bold;
  word-break: normal;
}

.lxleft .hx {
  width: 30px;
  height: 3px;
  background-color: #e60012;
  margin: 25px 0;
}

.lxway {
  margin-top: 42px;
}

.lxway p {
  font-size: 20px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 10px;
}

.lxway div {
  font-size: 24px;
  line-height: 1.75;
  color: #e60012;
  font-weight: bold;
}

.lxway div a {
  color: #e60012;
}

@media screen and (max-width: 1520px) {
  .lxout {
    padding: 115px 70px;
  }

  .lxright {
    width: 700px;
  }
}

@media screen and (max-width: 1300px) {
  .lxout {
    padding: 80px 50px;
  }

  .lxright {
    width: 60%;
  }
}

@media screen and (max-width: 1200px) {
  .lxout {
    padding: 70px 40px;
  }

  .lxright {
    width: 50%;
  }
}

@media screen and (max-width: 1100px) {
  .lian2 {
    padding: 100px 0;
  }

  .lxleft {
    float: none;
    width: 100%;
    margin-bottom: 60px;
  }

  .lxright {
    float: none;
    width: 100%;
  }

  .lxway {
    margin-top: 22px;
  }
}

@media screen and (max-width: 768px) {

  .pageDetail{
    margin-bottom: 0;
  }

  .lian2 {
    padding: 2em 0;
  }

  .lxout {
    padding: 2em 0.5em ;
  }

  .lxleft{
    margin-bottom: 2em;
  }

  .lxleft .hx{
    margin: 1em 0;
  }

  .lxway div {
    font-size: 18px;
  }
  .lxleft .intro{
    font-size: 14px;
    line-height: 1.5;
  }
}

.liuyan {
  color: #666;
  font-size: 0;
  padding-bottom: 1px;
}

.liuyan .hang {
  float: left;
  width: 48.5%;
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}

.liuyan .hang.long {
  width: 100%;
}

.liuyan .hang.first {
  margin-right: 3%;
}

.liuyan .hang.fat {
  width: 100%;
  height: auto;
}

.liuyan p {
  height: 100%;
  position: relative;
}

.liuyan label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 28px;
  height: 50px;
  font-size: 14px;
  line-height: 48px;
  color: #f70d0d;
  text-align: right;
  pointer-events: none;
}

.liuyan .fat label {
  top: 14px;
  line-height: 28px;
}

.liuyan input[type=text] {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 4px;
  line-height: 48px;
  text-indent: 30px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.liuyan textarea {
  padding: 13px 30px;
  height: 140px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: none;
  vertical-align: top;
  width: 100%;
  line-height: 28px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.liuyan input[type=text]:focus,
.liuyan textarea:focus {
  border-color: #ff0000;
}

.liuyan input[type=text],
.liuyan textarea {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.liuyan i.v {
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.liuyan .hang2 {
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}

.liuyan .hang2>div {
  float: left;
  height: 100%;
  position: relative;
}

.liuyan .hang2 i.v {
  width: 200px;
}

.liuyan .verifyImg {
  width: 118px;
  height: 48px;
  cursor: pointer;
  vertical-align: top;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-left: 20px;
}

.liuyan .yzmchange {
  display: inline-block;
  vertical-align: top;
  width: 70px;
  background: url('../images/change.png') center no-repeat;
}

.liuyan input#tj {
  float: right;
  width: 160px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  background-image: -webkit-gradient(linear, left top, right top, from(#e60012), to(#fd4655));
  background-image: linear-gradient(to right, #e60012, #fd4655);
}

.liuyan input#tj:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .liuyan .hang {
    float: none;
    width: auto;
    margin-left: 0;
  }

  .liuyan .hang.first {
    margin-right: 0;
  }

  .liuyan .hang2 {
    height: auto;
  }

  .liuyan .hang2>div {
    float: none;
  }

  .liuyan .verifyImg {
    float: right;
    margin-left: 0;
  }

  .liuyan .yzmchange {
    float: right;
  }

  .liuyan input#tj {
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 550px) {
  .liuyan .hang2 i.v {
    width: 170px;
  }

  .liuyan .verifyImg {
    width: 100px;
  }

  .liuyan .yzmchange {
    width: 60px;
  }
}

/* 加入我们 */
.jiaruwomenDetail {
  padding: 110px 0 100px;
  padding-top: 0;
}

.cate7 {
  position: relative;
  padding-top: 80px;
  padding-bottom: 22px;
  font-weight: bold;
  text-align: center;
}

.cate7 .en {
  font-size: 140px;
  color: rgba(70, 70, 70, 0.06);
  line-height: 152px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

.cate7 .cn {
  font-size: 32px;
  color: #333;
  line-height: 50px;
  position: relative;
  z-index: 2;
}

.cate7:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: 30px;
  height: 3px;
  margin-left: -15px;
  background-color: #e60012;
}

.zpintro {
  font-size: 16px;
  color: #666;
  line-height: 34px;
  text-align: center;
  max-width: 920px;
  margin: 24px auto 0;
}

.zpintro span {
  display: block;
}

@media screen and (max-width: 1023px) {
  .cate7 .en {
    font-size: 100px;
    line-height: 120px;
  }

  .jiaruwomenDetail {
    padding: 90px 0 90px;
  }
}

@media screen and (max-width: 920px) {
  .zpintro span {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .cate7{
    padding-top: 30px;
    padding-bottom: 1em;
  }
  .cate7 .en {
    font-size: 60px;
    line-height: 60px;
  }
  .cate7 .cn{
    font-size: 22px;
  }

  .jiaruwomenDetail {
    padding-top: 1em;
    padding-bottom: 2em;
    padding-left: 15px;
    padding-right: 15px;
  }

  .zpintro {
    font-size: 14px;
    line-height: 1.5;
  }

  .zpintro span{
    font-size: 14px;
    line-height: 1.5;
  }
  
}

.rec-head {
  height: 70px;
  background-color: #f5f5f5;
  overflow: hidden;
  padding: 0 110px;
  margin-top: 82px;
}

.rec-head .th {
  float: left;
  padding: 10px 0;
  width: 20%;
  height: 50px;
  overflow: hidden;
  font-size: 18px;
  color: #333;
  line-height: 50px;
  text-align: center;
  font-weight: bold;
}

.rec-head .th.zhiwei {
  text-align: left;
}

.reclist {
  background-color: #fff;
}

.rec-hand {
  height: 70px;
  background-color: #fff;
  overflow: hidden;
  padding: 0 110px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rec-hand .td {
  float: left;
  padding: 10px 0;
  width: 20%;
  height: 50px;
  overflow: hidden;
  font-size: 16px;
  color: #555;
  line-height: 50px;
  text-align: center;
}

.rec-hand .td.zhiwei {
  text-align: left;
}

.reclist li:nth-child(even) .rec-hand {
  background-color: #f5f5f5;
}

.reclist li.on .rec-hand {
  background-image: -webkit-gradient(linear, left top, right top, from(#e60012), to(#b81f1f));
  background-image: linear-gradient(to right, #e60012, #b81f1f);
}

.reclist li.on .rec-hand .td {
  color: #fff;
}

.reclist li:hover .rec-hand {
  background-color: rgba(255, 16, 16, 0.2);
}

.rec-hand,
.reclist .td {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.reclist .rec-con {
  display: none;
}

.reclist .rec-txt {
  font-size: 16px;
  color: #777;
  line-height: 30px;
  padding: 40px 110px 60px;
  border: 1px solid #e60012;
  background-color: #f5f5f5;
}

.reclist .rec-txt .email {
  display: inline-block;
  color: #e60012;
  text-decoration: underline;
}

.reclist .rec-txt h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.reclist .rec-txt p {
  margin-bottom: 1em;
}

.reclist .rec-txt br {
  height: 1px;
}

@media screen and (max-width: 1500px) {

  .rec-head,
  .rec-hand {
    padding: 0 80px;
  }

  .reclist .rec-txt {
    padding: 40px 80px 60px;
  }
}

@media screen and (max-width: 1200px) {

  .rec-head,
  .rec-hand {
    padding: 0 60px;
  }

  .reclist .rec-txt {
    padding: 40px 60px 60px;
  }
}

@media screen and (max-width: 1023px) {

  .rec-head,
  .rec-hand {
    padding: 0 40px;
  }

  .reclist .rec-txt {
    padding: 40px 40px 60px;
  }
}

@media screen and (max-width: 1023px) {

  .rec-head .th,
  .rec-hand .td {
    width: 22%;
  }

  .rec-head .th.zhiwei,
  .rec-hand .td.zhiwei {
    width: 34%;
  }

  .rec-head .th.bumen,
  .rec-hand .td.bumen {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .rec-head{
    margin-top: 2em;
  }

  .rec-head .th.addr,
  .rec-hand .td.addr {
    display: none;
  }

  .rec-head .th {
    width: 30%;
  }

  .rec-head .th.zhiwei {
    width: 40%;
  }

  .rec-hand .td {
    width: 30%;
  }

  .rec-hand .td.zhiwei {
    width: 40%;
  }

  .rec-head,
  .rec-hand {
    padding: 0 20px;
  }

  .reclist .rec-txt {
    padding: 40px 20px 50px;
  }
}

@media screen and (max-width: 660px) {

  .rec-head .th.renshu,
  .rec-hand .td.renshu {
    display: none;
  }

  .rec-head .th {
    width: 40%;
  }

  .rec-head .th.zhiwei {
    width: 60%;
  }

  .rec-hand .td {
    width: 40%;
  }

  .rec-hand .td.zhiwei {
    width: 60%;
  }
}

/* 综合页二级 */
.products-channel.panel-default {
  background: none;
  padding-left: 0;
  padding-right: 0;
}

.products-channel.panel-default>.panel-heading {
  background: none;
}

.products-channel.panel-default>.panel-heading .panel-title {
  font-size: 20px;
  padding-left: 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, .001);
  z-index: 11;
}

.products-channel.panel-default>.panel-heading .panel-title span {
  background: #f0f4f7;
  padding: 0 12px;
}

.products-channel.panel-default>.panel-heading::after {
  width: 100%;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, .1);
  top: 50%;
  z-index: 10;
}

.products-channel.panel-default>.panel-heading .panel-title::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background: #e60012;
  left: 0;
}


.channel-list {
  display: block;
}


.channel-list .product-list {
  padding: 15px 0;
  padding-top: 30px;
}

@media (max-width:768px) {
  .channel-list .product-list {
    padding-top: 1em;
    padding-bottom: 0.5em;
  }
}


.channel-list .row .col-xs-12 h3 {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.channel-list .row .col-xs-12 h3>a:before {
  width: 100%;
  height: 2px;
  padding: 0;
  bottom: -10px;
  top: auto;
}

.channel-list .row .col-xs-12 h3>a {
  padding: 0 6px;
}


/* 产品列表页面  */

.products-list.panel-default {
  background: none;
  padding-left: 0;
  padding-right: 0;
}

.products-list.panel-default>.panel-heading {
  background: none;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.products-list.panel-default>.panel-heading .panel-title {
  font-size: 20px;
}

.products-list.panel-default>.panel-heading .panel-title span {
  position: relative;
}

.products-list.panel-default>.panel-heading .panel-title span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #e60012;
  left: 0;
  top: auto;
  bottom: -14px;
}

.products-list.panel-default .panel-body {
  padding-top: 20px;
}

/* 产品详情页 */
.productShow-text {
  padding: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.75;
  max-width: 1200px;
  margin: 0 auto;
}

.productShow-text p {
  line-height: 1.75;
  margin-bottom: 1.25em;
}

.productShow-text br {
  height: 5px;
}

.productShow-text video {
  margin-left: auto;
  margin-right: auto;
}

/* 产品单页  */
.products-page-content {
  display: block;
}

.products-page-content.panel-default>.panel-heading {
  background: none;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.products-page-content.panel-default>.panel-heading .panel-title {
  font-size: 20px;
}

.products-page-content.panel-default>.panel-heading .panel-title span {
  position: relative;
}

.products-page-content.panel-default>.panel-heading .panel-title span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #e60012;
  left: 0;
  top: auto;
  bottom: -14px;
}

.products-page-content .article-metas {
  width: 100%;
  margin: 0 auto;
  border: none;
}

.products-page-content .article-metas .metas-title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  text-align: center;
  position: relative;
  padding: 15px 0;
}

.products-page-content .article-metas .metas-title::after {
  content: "";
  position: absolute;
  width: 2em;
  height: 3px;
  background: #ff002b;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.products-page-content .article-text {
  padding-top: 0;
}

.products-page-content .article-text>p:first-child {
  height: 1px;
  margin: 0;
}

/* 通用图片列表样式 */
.picture-item .card {
  border-radius: 3px;
  position: relative;
  padding: 12px;
  margin: 0 auto 20px;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  border: 1px solid #eee;
  min-height: 250px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 36, 100, 0.3);
  -webkit-box-shadow: 0px 5px 15px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0px 5px 15px rgba(0, 36, 100, 0.3);
}

.picture-item .card .thumb {
  position: relative;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-bottom: 1px solid #eee;
}

.picture-item .card .thumb>.preview-link::before {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.picture-item .card .thumb>.quickview-link {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  line-height: 40px;
  text-align: center;
  z-index: 10;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.picture-item .card .thumb:hover .preview-link::before {
  opacity: 1;
}

.picture-item .card .thumb:hover .quickview-link {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
}

.picture-item .card:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.picture-item .card:hover .operate .pull-right {
  display: block;
}

.picture-item .card .image {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.picture-item .card .title {
  padding-top: 10px;

}

.picture-item .card h2 {
  color: #000;
  padding: 0;
  margin-bottom: 5px;
  height: 24px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  text-align: center;
}

.picture-item .card .operate {
  height: 31px;
  overflow: hidden;
}

.picture-item .card .operate .pull-right {
  display: none;
}


/* 产品列表二级子菜单 */
.panel-top .sub2 {
  display: flex;
  justify-content: space-around;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width:768px) {
  .panel-top .sub2 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
}

.panel-top .sub2>div {
  background: #fff;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 10px;
  color: #000;
  font-size: 18px;
  border: 1px solid rgba(0, 0, 0, 0.26);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

@media (max-width:1400px) {
  .panel-top .sub2>div {
    font-size: 16px;
  }
}

@media (max-width:1280px) {
  .panel-top .sub2>div {
    font-size: 15px;
  }
}

@media (max-width:768px) {
  .panel-top .sub2>div {
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
  }
}


.panel-top .sub2>div a {
  display: block;
  padding: 0.3em 0.8em;
  text-decoration: none;
}

.panel-top .sub2>div:hover {
  color: #fff;
  background: #e60012;
  border-color: rgba(216, 12, 37, .9);
}


.panel-top .sub2>div:hover a {
  color: #fff;
}


.panel-top .sub2>div.active {
  color: #fff;
  background: #e60012;
  border-color: rgba(216, 12, 37, .9);
}


.panel-top .sub2>div.active a {
  color: #fff;
}


.panel-top .sub2>div.act {
  color: #e60012;
  background: #e60012;
  border-color: rgba(216, 12, 37, .9);
}

.panel-top .sub2>div.act a {
  color: #fff;
}



/* 2023-11-21 */
.Header-navclick {
  display: none;
}

.Header-lang {
  background: #e60012;
  width: 88px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.Header-lang .Header-lang-menu {
  display: flex;
  align-items: center;
  height: 88px;
  justify-content: center;
}

.Header-lang .Header-lang-more {
  width: 88px;
  background: #ffffff;
}


.Header-lang.active .Header-lang-menu a,
.Header-lang.active .Header-lang-menu span {
  color: #ffffff;
}

.Header-lang.active .Header-lang-more {
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  animation: none;
  -webkit-animation: none;
}


.Header-lang-more a:hover {
  background: none;
  color: #e60012;
}

.Header-lang-more a:hover span {
  background: none;
  color: #e60012;
}


.bodyScroll .Header-lang .Header-lang-menu span {
  color: #ffffff;
}


#bodyScroll .Header-lang .Header-lang-menu span,
.bodyMouse .Header-lang .Header-lang-menu span {
  color: #ffffff;
}


#bodyScroll .Header-lang .Header-lang-more a:hover span {
  color: #e60012 !important;
}


/* 自定义fancybox样式 */
.fancybox-toolbar,
.fancybox-caption {
  opacity: 1 !important;
  visibility: visible !important;
}

/* 去掉放大按钮 */
.fancybox-button.fancybox-button--zoom {
  display: none !important;
}

/* 去掉缩略图按钮 */
.fancybox-button.fancybox-button--thumbs {
  display: none !important;
}

/* 图片放大 */
.product-item .card .thumb img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.fancybox-bg {
  background: #fff !important;
}

.fancybox-caption {
  text-align: center !important;
  color: #000;
  font-size: 16px;
}

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAYAAADJDApwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3NpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDphZmQ1ZDhkNS1kZTQ4LTJjNDItOGExNS05MzI1MjY4MzAzMDEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6N0YxNzk1OUI4RThFMTFFRTk5RDI4NkVDNTA2QzQ0QzgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6N0YxNzk1OUE4RThFMTFFRTk5RDI4NkVDNTA2QzQ0QzgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6YWZkNWQ4ZDUtZGU0OC0yYzQyLThhMTUtOTMyNTI2ODMwMzAxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOmFmZDVkOGQ1LWRlNDgtMmM0Mi04YTE1LTkzMjUyNjgzMDMwMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pgv/EIEAAACFSURBVHjarFRBDsAgDEKy/794iZsnM+OQWj0YNUKR1qLWWoh3tKmvZtvhbFhpLCXVwKKZdfAiBRkhDS1alQHT0jRCJyCk4Jd5BmMY4arCl16bTfPRXEujLFbK9Bj3YFrHiE3lyMtd22dlxj19SBQmEj9qs9oP/vh0C0KkJ/YcXW26HwEGANFEByp073CtAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background: none;
}

.fancybox-caption::after {
  border-bottom: 1px solid rgba(0, 0, 0, .13);
  border: none;
}

.fancybox-caption-title {
  background-color: rgba(255, 255, 255, .65);
  padding: 5px 8px;
  border-radius: 3px;
}

.fancybox-button {
  background: rgba(255, 255, 255, .65) !important;
  border-radius: 3px;

}

.fancybox-button svg {
  color: #000;
}


/* 移动端头部样式 */

.header_mb {
  width: 100%;
  display: none;
  z-index: 2000;
  position: relative;
  background: #fff;
  box-shadow: 0 0px 17px rgb(0 0 0 / 10%);
}

@media (max-width:1170px) {
  .header_pc {
    display: none;
  }

  .header_mb {
    display: block;
  }
}

.header_mb #main-nav {
  display: none;
}


.header_mb .logo {
  height: 40px;
  width: auto;
  float: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.header_mb .logo img {
  height: 40px;
  width: auto;
}

.header_mb .menuph {
  display: block;
  float: right;
  margin: 0;
  margin-right: -15px;
  padding-left: 20px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  text-align: center;
  background-color: #e60012;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.header_mb .toggle {
  position: absolute;
  cursor: pointer;
  display: none;
  top: 20px;
  z-index: 9980;
  min-height: 28px;
  position: relative;
  top: auto;
  left: auto;
  float: left;
  display: block;
  cursor: pointer;
  box-sizing: content-box;
  font-size: 20px;
  padding-left: 55px;
  line-height: 24px;
  margin-top: 0;
  width: 35px;
}

.header_mb .toggle span {
  width: 35px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50% 50%
}

.header_mb .toggle span,
.header_mb .toggle span::before,
.header_mb .toggle span::after {
  position: absolute;
  left: 0;
  height: 4px;
  background: #fff;
  transition: all .1s ease
}

.header_mb .toggle span::before,
.header_mb .toggle span::after {
  content: '';
  width: 100%
}

.header_mb .toggle span::before {
  top: -10px
}

.header_mb .toggle span::after {
  bottom: -10px
}

.header_mb .toggle.toggle-open span {
  background: rgba(0, 0, 0, 0);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.header_mb .toggle.toggle-open span::before {
  transform: translate3d(0, 10px, 0)
}

.header_mb .toggle.toggle-open span::after {
  transform: rotate(-90deg) translate3d(10px, 0, 0)
}

.header_mb .toggle:hover span,
.header_mb .toggle:hover span::before,
.header_mb .toggle:hover span::after {
  background: #fff
}

.header_mb .toggle div {
  display: inline-block;
  margin-right: 15px
}

.header_mb .lang{
  margin-top: 10px;
    margin-bottom: 10px;
    width: 38px;
    height: 38px;
    border: 1px #666 solid;
    border-radius: 25px;
    text-align: center;
    float: right;
    margin-right: 15px;
    font-size: 16px !important;
    cursor: pointer;
    line-height: 35px;
    color: #bebebe;
}

.header_mb .lang a{
  color: #666;
}



/* 宽度1320px */
@media (max-width: 1679px) and (min-width:1400px) {

  /* 首页新闻中心 */
  .index-new {
    display: block;
  }

  .index-new-switch .li .left {
    height: 450px;
  }

  .index-new-switch .li .left-box {
    padding: 30px;
  }

  .index-new-switch .li .left .swiper-slide-box {
    width: 100%;
    height: 235px;
  }

  .index-new-switch .li .left .swiper-slide-box img {
    width: 100%;
    height: 100% !important;
  }

  .index-new-switch .li .left .swiper-slide-text {
    width: 100%;
  }

  .index-new-switch .li .left .swiper-slide-text .text {
    width: 240px;
  }

  .index-new-switch .li .left .swiper-slide-text .date {
    width: 80px;
    height: 80px;
  }

  .index-new-switch .li .left .swiper-slide-text .date .d {
    line-height: 48px;
  }

  .index-new-switch .li .right {
    height: auto;
  }

  .index-new-switch .li .right-li {
    height: 150px;
  }

  .index-new-switch .li .right-li-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .index-new-switch .li .right .date {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .index-new-switch .li .right .text {
    width: 300px;
    padding: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }
}


/* 宽度1170px */
@media (max-width: 1399px) and (min-width:1200px) {}

/* 宽度970px */
@media (max-width: 1199px) and (min-width:992px) {

  /* 首页新闻中心 */
  .index-new-switch .li .left {
    height: 420px;
  }

  .index-new-switch .li .left .swiper-slide-box {
    width: 100%;
    height: 203px;
  }

  .index-new-switch .li .left .swiper-slide-box img {
    width: 100%;
    height: 203px !important;
  }

  .index-new-switch .li .left .swiper-slide-text .text {
    padding: 0;
  }

  .index-new-switch .li .left .swiper-slide-text .date {
    display: none !important;
  }

  .index-new-switch .li .right {
    height: 420px;
  }

  .index-new-switch .li .right-li {
    height: 140px;
  }

  .index-new-switch .li .right .text {
    width: 190px;
  }

}

/* 宽度768px */
@media (max-width: 991px) and (min-width:768px) {

  /* 首页新闻中心 */
  .index-new-switch .li .left {
    width: 100%;
    margin-bottom: 2px;
    height: auto;
  }

  .index-new-switch .li .left .swiper-slide {
    background: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }


  .index-new-switch .li .left .swiper-slide-box {
    width: 50%;
    height: auto;
  }

  .index-new-switch .li .left .swiper-slide-text {
    width: 50%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    align-content: space-between;
    justify-content: flex-end;
    padding-left: 25px;
  }

  .index-new-switch .li .left .swiper-slide-text .text {
    width: 100%;
  }

  .index-new-switch .li .left .swiper-slide-text .date {
    margin-bottom: 25px;
  }

  .index-new-switch .li .right {
    width: 100%;
    padding: 0;
  }

  .index-new-switch .li .left .pagination2 {
    position: absolute;
    width: 50%;
    left: auto;
    right: 0;
    bottom: 40px;
    z-index: 10;
    text-align: left;
    padding-left: 30px;
  }


  aside>.panel-default.products-nav{
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    background: none;

  }

  aside>.panel-default>.panel-heading {
    display: none;
  }

  aside>.panel-default.products-nav>.panel-body{
    margin: 0;
    padding: 0;
    background: none;

  }
  

}

@media (max-width: 768px) {

  .row {
    margin-left: -0.5em;
    margin-right: -0.5em;
  }

  .col-xs-1,
  .col-sm-1,
  .col-md-1,
  .col-lg-1,
  .col-xs-2,
  .col-sm-2,
  .col-md-2,
  .col-lg-2,
  .col-xs-3,
  .col-sm-3,
  .col-md-3,
  .col-lg-3,
  .col-xs-4,
  .col-sm-4,
  .col-md-4,
  .col-lg-4,
  .col-xs-5,
  .col-sm-5,
  .col-md-5,
  .col-lg-5,
  .col-xs-6,
  .col-sm-6,
  .col-md-6,
  .col-lg-6,
  .col-xs-7,
  .col-sm-7,
  .col-md-7,
  .col-lg-7,
  .col-xs-8,
  .col-sm-8,
  .col-md-8,
  .col-lg-8,
  .col-xs-9,
  .col-sm-9,
  .col-md-9,
  .col-lg-9,
  .col-xs-10,
  .col-sm-10,
  .col-md-10,
  .col-lg-10,
  .col-xs-11,
  .col-sm-11,
  .col-md-11,
  .col-lg-11,
  .col-xs-12,
  .col-sm-12,
  .col-md-12,
  .col-lg-12 {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .banner {
    height: 0;
    padding-bottom: 56.25%;
  }

  .banner .banner-img img.none-pc {
    width: 100%;
    min-height: auto
  }

  .banner-control {
    bottom: 1em;
  }

  .banner-page p span {
    width: 14px;
    height: 14px;
  }

  /* 明星产品 */
  .indexCaseDl {
    padding-top: 0;
    margin-left: -0.5em;
    margin-right: -0.5em;
    padding-bottom: 0;
  }

  .indexCaseDl .caseCont{
    margin-left: 0.5em;
    margin-right: 0.5em;
  }

  .indexCaseDl dd {
    display: block;
    width: 50%;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }

  .indexCaseDl dd.dd1 {
    width: 100%;
    padding-top: 0;
  }

  .indexCaseDl dt {
    width: 100%;
    position: relative;
    display: block;
    height: auto;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    top: auto;
    right: auto;
    clear: both;
    float: none;
  }

  .indexCaseDl dt a{
    display: block;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    padding-bottom: 27.35%;
  }

 


  /* 首页晨光成绩单 */
  .index-case {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .index-case .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    background: none;
  }

  .index-case .index-case-bg {
    height: 240px;
  }

  .index-case .container .swiper {
    margin-top: 0;
    display: block;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide {
    margin-top: 15px;
    padding-top: 0;
    height: auto;
  }

  .index-case .container .swiper .swiper-container .swiper-wrapper .swiper-slide h3 {
    font-size: 14px;
    line-height: 1.5;
  }

  .index-case .container .swiper .swiper-container .swiper-pagination {
    width: 100%;
  }


  /*内页banner*/
  .pageBnaner {
    display: block;
  }

  .pageBnaner .pageBnanerText {
    padding-top: 0;
  }

  .pageBnaner .pageBnanerText .pageName .pageName1 {
    display: none;
  }

  .pageBnaner .pageBnanerText .pageName .pageName2 {
    margin-bottom: 0;
    line-height: 1.35;
    font-size: 18px;
  }
 


  /*内页面包屑*/
  .pageNav2 {
    margin-bottom: 0 !important;
  }

  .pageNav2 .container {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  /*首页新闻中心*/
  .index-new {
    padding-top: 70px;
    padding-bottom: 30px;
    height: auto;
  }

  .index-new-switch {
    margin-top: 0px;
  }

  .index-new-switch .li {
    margin-top: 0;
  }

  .index-new-switch .li .left {
    width: 100%;
    height: auto;
  }

  .index-new-switch .li .left-box {
    padding-bottom: 20px;
  }

  .index-new-switch .li .left-box-swiper {
    padding-bottom: 15px;
  }

  .index-new-switch .li .left .swiper-slide-box {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .index-new-switch .li .left .swiper-slide-box img {
    width: 100%;
  }

  .index-new-switch .li .left .swiper-slide-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .index-new-switch .li .left .swiper-slide-text .text {
    height: auto;
    width: calc(100% - 80px);
  }

  .index-new-switch .li .left .swiper-slide-text .text p {
    margin-top: 5px;
    line-height: 1.5em;
    height: 3em;
  }

  .index-new-switch .li .left .swiper-slide-text .date {
    width: 80px;
    height: 80px;
  }

  .index-new-switch .li .left .swiper-slide-text .date .d {
    margin: 0;
  }

  .index-new-switch .li .right {
    width: 100%;
    padding: 0;
    height: auto;
  }

  .index-new-switch .li .right-li {
    overflow: hidden;
    width: 100%;
    height: auto;
    padding-top: 1px !important;
  }

  .index-new-switch .li .right-li:nth-child(even) {
    padding: 0;
  }

  .index-new-switch .li .right-li-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
  }

  .index-new-switch .li .right .date {
    padding: 15px;
    width: 30%;
  }

  .index-new-switch .li .right .text {
    padding: 15px;
    padding-left: 0;
    width: 70%;
  }

  .index-new-switch .li .right .date .d {
    margin: 0;
    padding: 0;
  }

  .index-new-switch .li .right .text p {
    margin-top: 5px;
    line-height: 1.5em;
    height: 3em;
  }

  .index-new-switch .li .right-li:nth-child(5),
  .index-new-switch .li .right-li:nth-child(6),
  .index-new-switch .li .right-li:nth-child(7),
  .index-new-switch .li .right-li:nth-child(8) {
    display: none;
  }

  /* 首页客户logo */
  .iclients-list li {
    width: 25%;
  }

  .iclients-list li::after {
    background: none;
    width: 100%;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
  }

  .iclients-list li:nth-child(1)::after {
    border-left: none;
  }

  .iclients-list li:nth-child(4n+1)::after {
    border-left: none;
  }

  /* 首页愿景 */
  .index4 {
    margin-top: 30px !important;
  }

  .index4 .container {
    max-width: 100%;
    width: 100%;
  }

  .index4 .index4Text li {
    padding-left: 30px;
  }

  .index4 .index4Text li .index4Text1 {
    font-size: 18px;
    font-weight: bold;
  }

  .index4 .index4Text li .index4Text2 {
    font-size: 14px;
    margin: 0;
    margin-top: 5px;
    padding: 0;
  }

  .index4 .index4Text li .index4Text3 {
    display: none;
  }

  .index4 .index4Dots {
    padding-right: 60px;
  }

  .index4 .index4Dots li {
    height: 36px;
  }

  .index4 .index4Dots li .dotsIcon {
    height: 4px;
    width: 4px;
  }

  .index4 .index4Dots li .dotsIcon .dotsIcon1 {
    height: 4px;
    width: 4px;
  }

  .index4 .index4Dots li .dotsIcon svg.jdt {
    position: absolute;
    left: -18px;
    top: -18px;
    height: 22px;
    width: 22px;
  }

  .index4 .index4Dots li .dotsIcon svg.jdt circle {
    height: 22px;
    width: 22px;
    cx: 11;
    cy: 11;
    r: 10;
  }

  .main-content {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .main-content>.container {
    overflow-x: hidden;
  }

  /* 产品中心 */
 

    aside>.panel-default {
      margin-bottom: 0;
    }

    aside>.panel-default.products-nav{
      margin: 0;
      padding: 0;
      background: none;

    }

    aside>.panel-default>.panel-heading {
      display: none;
    }

    aside>.panel-default.products-nav>.panel-body{
      margin: 0;
      padding: 0;
      background: none;

    }


  /* 公共底部 */
  footer,
  .main-content:after {
    height: 0;
  }
}


/* 首页明星产品2 */
.indexCaseDl1 {
  position: relative;
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width:768px) {
  .indexCaseDl1 {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.indexCaseDl1:after {
  display: block;
  content: "";
  overflow: hidden;
  clear: both;
  visibility: hidden;
}

.indexCaseDl1 dd {
  float: left;
  display: inline;
  width: 25%;
  padding: 10px 0px;
}
@media (max-width:768px) {
  .indexCaseDl1 dd {
    float: left;
    display: inline;
    width: 50%;
    padding: 0.5em 0px;
  }
}

.indexCaseDl1 dd.dd1 {
  width: 50%;
}

.indexCaseDl1 dd.dd2 {
  width: 50%;
}

.indexCaseDl1 dd.dd3 {
  width: 50%;
}

@media (max-width:768px) {
  .indexCaseDl1 dd.dd3 {
    width: 100%;
  }
}

.indexCaseDl1 dd.dd8 {
  width: 50%;
}

@media (max-width:768px) {
  .indexCaseDl1 dd.dd8 {
    width: 100%;
  }
}

.indexCaseDl1 .caseCont {
  display: block;
  margin: 0px 10px;
}

@media (max-width:768px) {
  .indexCaseDl1 .caseCont {
    display: block;
    margin: 0px 0.5em;
  }
}

.indexCaseDl1 a {
  display: block;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  border-radius: 3px;
  overflow: hidden;
}

.indexCaseDl1 .pic img {
  object-fit: cover;
}

.indexCaseDl1 .pic:after {
  display: block;
  content: "";
  overflow: hidden;
  padding-top: 66.666666%;
  padding-top: 56.25%;
}

.indexCaseDl1 dd.dd1 .pic:after {
  padding-top: calc(9*(50% - 10px)/8 + 20px);
  padding-top: 57.22%;
}

.indexCaseDl1 dd.dd2 .pic:after {
  padding-top: calc(9*(50% - 10px)/8 + 20px);
  padding-top: 57.22%;
}

.indexCaseDl1 dd.dd3 .pic:after {
  padding-top: 27.5%;
}

.indexCaseDl1 dd.dd8 .pic:after {
  padding-top: 27.5%;
}

.indexCaseDl1 a:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.indexCaseDl1 dd.dd4 {
  clear: both;
}

.indexCaseDl1 dt {
  width: 50%;
  position: absolute;
  right: 0px;
  top: calc((100% - 20px)/3 + 10px);
  padding: 10px 0px;
}

.indexCaseDl1 dt .caseCont{
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

/* 首页企业文化 */
.index-culture-box{
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
    padding-bottom: 0;
}

@media (max-width:768px) {
  .index-culture-box{
    display: none;
  }
}


.index-culture{
    margin: 0 auto;
}

.index-culture-piclist{
    width: 100%;
    overflow: hidden;
    padding: 20px 0 0 0;
}
.index-culture-piclist ul{
    margin-left: 0%
}
.index-culture-piclist ul li{
    width: 33.33%;
    height: 350px;
    float: left;
    overflow: hidden;
    position: relative;
}
.index-culture-piclist ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s;
}
.index-culture-piclist ul li:hover img{
    transform: scale(1.1);
}

.index-culture-words{
    position: absolute;
    width: 92%;
    height: 60px;
    bottom: 2%;
    left: 4%;
    background-color: rgba(255, 255, 255, .9);
    padding: 16px 20px;
    text-align: center;
    transition: all .6s;
    overflow: hidden;
    z-index: 9;
}
.index-culture-words h6{
    font-size: 18px;
    color: #333;
    height: 28px;
    white-space:nowrap;
    text-overflow:ellipsis;
    overflow:hidden;
}
.index-culture-words p{
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin-top: 12px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-culture-piclist ul li:hover .index-culture-words{
    background-color: rgba(230,0,18, .8); 
    height: 120px;
}
.index-culture-piclist ul li:hover .index-culture-words h6{
    color: #fff;
}

.index-culture-modul ul{overflow:hidden}
.index-culture-modul ul li{width:33.333333%;float:left;text-align:center;position: relative;}
.index-culture-modul ul li .note{position: absolute;left:50%;top:50%;transform: translate(-50%,-50%);color:#fff;width:100%;}
.index-culture-modul li .note span{display:block;width:89px;height:89px;line-height:89px;border-radius:50%;margin:0px auto;}
.index-culture-modul li .note h4{margin:10px auto 15px;font-size:22px;color:#fff;font-weight: 600;}
.index-culture-modul li .note p{ font-size: 22px; padding-left: 2em; padding-right: 2em; height: 3em; line-height: 1.5em; overflow: hidden; }
.index-culture-modul ul li img{transition:all 0.4s ease-in 0s; -webkit-transition:all 0.4s ease-in 0s; -moz-transition:all 0.4s ease-in 0s; -o-transition:all 0.4s ease-in 0s;}
.index-culture-modul ul li:hover img{transform:scale(1.1); -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1);-ms-transform:scale(1.1);}
.index-culture-modul ul li:hover img{transform:scale(1.1); -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1);-ms-transform:scale(1.1);}


/* 产品手册列表 */
.shouce-item .card {
  border-radius: 3px;
  position: relative;
  padding: 12px;
  margin: 0 auto 30px;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  box-shadow: 0 1px 14px 0 rgba(0, 0, 0, .015);
  min-height: 50px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
}

@media (max-width:768px) {
  .shouce-item .card {
    margin-bottom: 1em;
  }
}


.shouce-item .card .thumb {
  position: relative;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  margin: -12px;
  border-bottom: 1px solid #ebebeb;
}

.shouce-item .card .thumb>.preview-link::before {
  background: rgba(230, 0, 18, 0.1);
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.shouce-item .card .thumb>.quickview-link {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  line-height: 40px;
  text-align: center;
  z-index: 10;
  background: rgba(230, 0, 18, 0.80);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.shouce-item .card .thumb:hover .preview-link::before {
  opacity: 1;
}

.shouce-item .card .thumb:hover .quickview-link {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
}


.shouce-item .card .thumb img {
  transform: scale(0.96);
  -webkit-transform: scale(0.96);
  -moz-transform: scale(0.96);
  -ms-transform: scale(0.96);
  -o-transform: scale(0.96);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.shouce-item .card:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shouce-item .card:hover .operate .pull-right {
  display: block;
}

.shouce-item .card .image {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.shouce-item .card .title {
  padding-top: 10px;
}

.shouce-item .card h2 {
  color: #000;
  padding: 0;
  margin-bottom: 5px;
  height: 24px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}

.shouce-item .card p {
  color: #777;
  padding: 0;
  margin-bottom: 5px;
  height: 50px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.shouce-item .card .operate {
  height: 35px;
  overflow: hidden;
}

.shouce-item .card .operate .pull-right {
  display: block;
  clear: both !important;
  float: none !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 2px;
}

.shouce-item .card .operate .pull-right .btn-primary {
  background: none;
  border: none;
  color: #e60012;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shouce-item .card:hover .operate .pull-right .btn-primary {
  color: #fff;
  background-color: #cc0000;
  border-color: #cc0000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shouce-item .card:hover img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

/* 产品中心-二级菜单 */
.accordion,
    .accordion ul,
    .accordion li,
    .accordion a,
    .accordion span {
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
    }

    .accordion li {
        list-style: none;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    /* Layout & Style */

    .accordion li>a {
        display: block;
        position: relative;
        min-width: 110px;
        padding: 0 15px 0 15px;
        height: 48px;
        color: #333;
        font-size: 15px;
        line-height: 48px;
        text-decoration: none;
        text-shadow: 0px 1px 0px rgba(255, 255, 255, .35);
        padding-right: 40px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;

        /* background: #6c6e74;
        background: -moz-linear-gradient(top, #6c6e74 0%, #4b4d51 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6c6e74), color-stop(100%, #4b4d51));
        background: -webkit-linear-gradient(top, #6c6e74 0%, #4b4d51 100%);
        background: -o-linear-gradient(top, #6c6e74 0%, #4b4d51 100%);
        background: -ms-linear-gradient(top, #6c6e74 0%, #4b4d51 100%);
        background: linear-gradient(top, #6c6e74 0%, #4b4d51 100%); */

        transition: all 310ms ease-out;
        -webkit-transition: all 310ms ease-out;
        -moz-transition: all 310ms ease-out;
        -ms-transition: all 310ms ease-out;
        -o-transition: all 310ms ease-out;

    }

    .accordion>li:hover>a,
    .accordion>li:target>a,
    .accordion>li>a.active {
        color: #FFFFFF;
        text-shadow: 1px 1px 1px rgba(255, 255, 255, .2);

        /*background: url(../img/active.png) repeat-x;*/
        background: #e60012;
        background: -moz-linear-gradient(top, #e60012 0%, #8f1a1a 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e60012), color-stop(100%, #8f1a1a));
        background: -webkit-linear-gradient(top, #e60012 0%, #8f1a1a 100%);
        background: -o-linear-gradient(top, #e60012 0%, #8f1a1a 100%);
        background: -ms-linear-gradient(top, #e60012 0%, #8f1a1a 100%);
        background: linear-gradient(top, #e60012 0%, #8f1a1a 100%);
    }

    .accordion li>a span {
        display: block;
        position: absolute;
        top: 12px;
        right: 0;
        padding: 0 10px;
        margin-right: 10px;
        font: normal bold 12px/18px Arial, sans-serif;
        font-weight: 100;
        color: #a6a6a6;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;

    }



    .accordion>li:hover>a span,
    .accordion>li:target>a span,
    .accordion>li>a.active span {
        color: #fdfdfd;
    }

    .accordion>li>a.active span {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }


    .accordion>li:hover>a span {
        color: #fdfdfd;
    }