@charset "utf-8";
body {
  overflow-x: hidden;
}
/*顶部*/
header {
  z-index: 10;
  width: 100%;
  transition: all 0.5s;
}
header.active {
  box-shadow: 0 0 32px 3px rgba(0, 0, 0, 0.03);
}
header.active .header-menu {
  background: #fff !important;
}
header .header-top {
  display: flex;
  height: 65px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header .header-top .left {
  display: flex;
  align-items: center;
  flex-basis: 220px;
}
header .header-top .left .item {
  flex-basis: 100%;
  text-align: center;
  border-right: 1px solid #eee;
}
header .header-top .right {
  display: flex;
  align-items: center;
  flex-basis: 285px;
  text-align: center;
}
header .header-top .right a {
  flex-basis: 100%;
  color: #7c7c7c;
}
header .header-menu {
  transition: all 0.5s ease;
  position: relative;
  background: #fff;
}
header .header-menu .header-box {
  width: 96%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  z-index: 2;
}
header .header-menu .header-box .logo img {
  transition: all 0.5s;
  width: 258px;
}
@media screen and (max-width: 768px) {
  header .header-menu .header-box .logo img {
    width: 60%;
  }
}
header .header-menu .header-box .search {
  position: relative;
  cursor: pointer;
  background: var(--dominant-color);
  padding: 10px;
}
header .header-menu .header-box .search img {
  filter: grayscale(1) brightness(10);
  width: 20px;
}
header .menu-box {
  height: 100px;
  transition: all 0.5s;
  z-index: 1;
  position: relative;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: calc(80%);
}
header .menu-box .phone-click {
  display: none;
}
header .menu-box .menu-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  height: 100%;
  padding-right: 35px;
  margin-right: 35px;
  position: relative;
}
header .menu-box .menu-list::after {
  content: '';
  position: absolute;
  height: 16px;
  width: 1px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #eee;
}
header .menu-box .menu-list .firstItem {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  margin-left: clamp(20px, 2vw, 3vw);
}
header .menu-box .menu-list .firstItem.active .firstItem-title a {
  color: var(--dominant-color);
  font-weight: 600;
}
header .menu-box .menu-list .firstItem.active .firstItem-title a::after {
  background: #fff;
}
header .menu-box .menu-list .firstItem .firstItem-title {
  position: relative;
  display: flex;
  align-items: center;
}
header .menu-box .menu-list .firstItem .firstItem-title a {
  color: #404040;
  font-size: 16px;
  transition: all 0.5s;
  position: relative;
}
header .menu-box .menu-list .firstItem .firstItem-title:hover a {
  color: var(--dominant-color);
}
header .menu-box .menu-list .firstItem > a {
  font-size: 14px;
  height: 80px;
  line-height: 80px;
}
header .menu-box .menu-list .firstItem .second-box {
  position: absolute;
  top: 60px;
  width: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  transition: top 0.5s;
  border-radius: 0 0 8px 8px;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list {
  background: #fdb000;
  margin-top: 20px;
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-box-list {
    margin-top: 0;
    padding-left: 10%;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item {
  position: relative;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item .three-box {
  display: none;
  position: absolute;
  left: calc(100%);
  top: -10px;
  background: var(--dominant-color);
  width: max-content;
  padding: 10px 0;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item .three-box a {
  padding: 0 20px;
  margin-top: 10px;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item:hover .three-box {
  display: block;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list::after {
  content: '';
  width: 0;
  height: 0;
  border-width: 10px;
  border-color: transparent transparent var(--dominant-color) transparent;
  border-style: solid;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  position: absolute;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-box-list::after {
    display: none;
  }
}
header .menu-box .menu-list .firstItem .second-box a {
  color: #fff;
  display: block;
  padding: 10px 20px;
  text-align: center;
}
header .menu-box .menu-list .firstItem .second-box a:last-child {
  margin-bottom: 0;
}
header .menu-box .menu-list .firstItem .second-box a:hover {
  background: var(--dominant-color);
}
header .menu-box .menu-list .language {
  display: none;
  margin-top: 50px;
  padding: 0 5%;
}
header .menu-box .menu-list .language .language-click {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
}
header .menu-box .menu-list .language a {
  margin-right: 10px;
}
header .menu-box .menu-list .language img {
  width: 40px;
}
.search-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.search-show::after {
  content: '';
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.search-show .search-box {
  max-width: 1600px;
  width: 90%;
  margin: auto;
  background: #fff;
  padding: 30px;
  z-index: 3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: fit-content;
}
.search-show .search-box .title {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}
.search-show .search-box input {
  background: #eee;
}
.search-show .search-box .button {
  margin-top: 10px;
  text-align: right;
}
.search-show .search-box .button button {
  padding: 10px 20px;
}
.search-show .search-box .button button:hover {
  background: var(--dominant-color);
  color: #fff;
}
.phone-search-click {
  display: none;
}
.banner {
  position: relative;
  width: 100%;
  z-index: 0;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .text {
  max-width: 1600px;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  color: #fff;
}
.banner .text .title {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 40px;
  color: #fff;
  text-align: center;
}
.banner .text .more {
  text-align: center;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 100;
  margin-top: 5%;
}
.banner .text .more:hover {
  color: var(--dominant-color);
}
.banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: #9e9e9e;
  opacity: 0.8;
  --swiper-pagination-bullet-width: 20px;
  --swiper-pagination-bullet-height: 20px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  position: relative;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #e59200;
  --swiper-pagination-color: transparent;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: var(--dominant-color);
  opacity: 1;
}
.banner .swiper-button-prev {
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  padding: 10px;
}
.banner .swiper-button-prev::after {
  color: #fff;
  font-size: 16px;
}
.banner .swiper-button-next {
  background: rgba(0, 0, 0, 0.5);
  right: 0;
  padding: 10px;
}
.banner .swiper-button-next::after {
  color: #fff;
  font-size: 16px;
}
.index-title {
  text-align: center;
  padding: 90px 0;
}
.index-title .title {
  font-size: 55px;
  color: #333;
  font-weight: 600;
}
.index-title .summary {
  font-size: 18px;
  color: #837474;
}
.index1 {
  padding: 170px 0;
}
.index1 .section {
  position: relative;
}
.index1 .index1-pro {
  /*height: 360px;*/
  /*background: #fff;*/
  margin: 40px auto;
}
.index1 .swiper {
  padding: 10px 6px;
}
.index1 .index1-pro .item {
  display: flex;
  height: 360px;
  /*flex-direction: column;*/
  /*box-shadow: 0 0 5px 5px rgba(0,0,0,0.1);*/
  /*padding: 10px;*/
  border-radius: 5px;
  background: #fff;
}
.index1 .index1-pro .item .imgBox {
  flex-basis: 50%;
}
.index1 .index1-pro .item .text {
  flex-basis: 50%;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;;
}
.index1 .index1-pro .item .text .title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  /*text-align: center;*/
}
.index1 .index1-pro .item .text .summary {
  margin: 10px auto 0;
}
.index1 .index1-pro .item .text .more {
  border: 1px solid #888;
  color: #888;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  margin-top: 30px;
}
.index1 .left-img {
  position: absolute;
  bottom: -50%;
  left: 5%;
}
.index2 {
  padding: 150px 0;
}
.index2 .numbers {
  display: flex;
  justify-content: space-between;
}
.index2 .numbers .item {
  text-align: center;
}
.index2 .numbers .item .number {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index2 .numbers .item .left {
  font-size: 64px;
  font-weight: 600;
}
.index2 .numbers .item .mid {
  font-size: 64px;
  font-weight: 600;
}
.index2 .numbers .item .right {
  margin-left: 6px;
  font-size: 14px;
  position: relative;
}
.index2 .numbers .item .right::before {
  content: '';
  width: 10px;
  height: 1px;
  position: absolute;
  top: -5px;
  left: 5px;
  transform: rotate(-45deg);
  background: #333;
}
.index2 .numbers .item .right::after {
  content: '';
  width: 10px;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 5px;
  transform: rotate(-45deg);
  background: #333;
}
.index2 .numbers .item .sup {
  text-transform: uppercase;
  font-size: 12px;
  color: #d7d7d7;
}
.index2 .numbers .item .title {
  font-size: 16px;
  margin-top: 6px;
}
.index3 {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  width: 86%;
  margin-left: auto;
  margin-right: 0;
}
.index3 .left {
  display: flex;
}
.index3 .left .img {
  width: 40px;
}
.index3 .left .text {
  margin-left: 70px;
  margin-right: 50px;
}
.index3 .left .text .title {
  margin-top: 50px;
  font-size: 18px;
  margin-bottom: 30px;
}
.index3 .left .text .summary {
  color: #676767;
  line-height: 2;
}
.index3 .left .text .more {
  margin-top: 30px;
  display: inline-block;
}
.index3 .right {
  flex-basis: 360px;
}
.index4 {
  padding: 50px 0;
}
.index4 .index-news {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 35px;
}
.index4 .index-news .item .imgBox {
  height: 0;
  padding-bottom: 100%;
  border-radius: 10px;
}
.index4 .index-news .item .imgBox img {
  position: absolute;
}
.index4 .index-news .item .text {
  color: #595959;
  padding: 20px 0;
}
.index4 .index-news .item .text .title {
  font-size: 16px;
  position: relative;
  margin: 10px 0 20px;
  padding-bottom: 20px;
}
.index4 .index-news .item .text .title::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  background: #b38a0f;
  z-index: 2;
}
.index4 .index-news .item .text .title::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ededed;
  transition: all 0.5s;
}
.index4 .index-news .item .text .more {
  border: 1px solid #d8d8d8;
  color: #ccc;
  width: 30px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  margin-top: 30px;
}
.index4 .index-news .item:hover .text .title {
  color: #b38a0f;
}
.index4 .index-news .item:hover .text .title::before {
  width: 100%;
}
.index4 .index-news .item:hover .text .more {
  color: #b38a0f;
  border-color: #b38a0f;
}
.index4 .news-more {
  display: block;
  width: 343px;
  margin: 20px auto;
}
.footer {
  background: #2b2c2e;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  padding: 30px 2% ;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-top .footer-menu {
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.footer .footer-top .footer-menu .line {
  margin: 0 20px;
}
.footer .footer-top .footer-menu .item .item-title {
  font-size: 14px;
  display: block;
  color: #d3d3d3;
}
.footer .footer-top .footer-menu .item .item-title:hover {
  text-decoration: underline;
}
.footer .footer-top .footer-menu .item .item-box a {
  display: block;
  color: #686868;
  transition: all 0.5s;
  font-size: 16px;
}
.footer .footer-top .footer-menu .item .item-box a:hover {
  color: #fff;
}
.footer .footer-top .footer-code {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .footer-top .footer-code .item {
  border-radius: 50%;
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  position: relative;
}
.footer .footer-top .footer-code .item:last-child {
  margin-right: 0;
}
.footer .footer-top .footer-code .item .fab {
  color: #46657d;
  font-size: 20px;
}
.footer .footer-top .footer-code .item:hover {
  border-color: var(--dominant-color);
}
.footer .footer-top .footer-code .item:hover .fab {
  color: var(--dominant-color);
}
.footer .footer-top .footer-code .item:hover .show-code {
  display: block;
  width: 100px;
  height: 100px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  position: absolute;
}
.footer .footer-top .footer-code .item .show-code {
  display: none;
}
.footer .footer-mid {
  padding: 50px 2% 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.footer .footer-mid .left {
  flex-basis: 400px;
  display: flex;
  align-items: flex-start;
}
.footer .footer-mid .left .img2 {
  margin: 0 20px;
}
.footer .footer-mid .left .text .sup {
  font-size: 12px;
  color: #8c8c8c;
}
.footer .footer-mid .left .text .title {
  font-weight: 600;
  font-size: 30px;
}
.footer .footer-mid .left .text .summary {
  color: #8c8c8c;
}
.footer .footer-mid .mid {
  flex-basis: 450px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 30px;
}
.footer .footer-mid .mid .item {
  display: flex;
  align-items: center;
}
.footer .footer-mid .mid .item .icon {
  flex-basis: 30px;
}
.footer .footer-mid .mid .item .title {
  flex-basis: calc(100% - 40px);
  font-size: 12px;
  color: #8c8c8c;
}
.footer .footer-mid .right {
  flex-basis: calc(35%);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 30px;
}
.footer .footer-mid .right .title {
  font-size: 12px;
  color: #8c8c8c;
  margin-bottom: 10px;
}
.footer .footer-mid .right label {
  position: relative;
  display: block;
}
.footer .footer-mid .right label input {
  background: #515151;
  border: none;
}
.footer .footer-mid .right label button {
  position: absolute;
  right: 0;
  top: 0;
  height: 38px;
  background: #fcc900;
  width: 100px;
  color: #fff;
}
.footer .footer-bottom {
  padding: 0 2% 0;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  background: #1f1f1f;
}
.footer .footer-bottom .copy-right {
  text-align: center;
  color: #8d8d8d;
  padding: 15px 0;
}
.footer .footer-bottom .copy-right a {
  /*color: #3c3c3c;*/
}
.goTop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  right: 5%;
  bottom: 10%;
  transition: all 0.5s;
  z-index: 1000;
  display: none;
}
/*内页*/
/*内页通用*/
.search-title {
  font-size: clamp(24px, 1.8vw, 48px);
  margin-bottom: 40px;
  text-align: center;
}
.page-title-box {
  margin-bottom: 40px;
}
.page-title-box .page-title {
  font-size: 18px;
  color: #333;
  text-align: center;
}
.page-title-box .page-title .points {
  color: #db0202;
  font-size: 64px;
  line-height: 1;
  vertical-align: middle;
  margin-right: 10px;
}
.page-title-box .page-title span {
  font-family: CenturyGothicBlod;
}
.page-summary {
  font-size: 14px;
  max-width: 860px;
  line-height: 1.8;
  text-align: center;
  margin: 20px auto 0;
}
.pageBanner {
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pageBanner .banner-box {
  width: 100%;
  height: 600px;
  display: flex;
}
.pageBanner .banner-box .img {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}
.pageBanner .banner-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageBanner .banner-box .text {
  position: absolute;
  padding: 70px 50px 70px 50px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: 100%;
  text-align: center;
  color: #fff;
}
.pageBanner .banner-box .text .title {
  font-size: 46px;
  margin-bottom: 10px;
}
.pageBanner .banner-box .text .summary {
  font-size: 18px;
  opacity: 0.4;
}
.page-top {
  position: relative;
  z-index: 3;
  width: 92%;
  background: #424242;
  margin-right: 0;
  margin-top: -50px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2% 30px;
}
.page-top .text {
  color: #fff;
  flex-basis: 250px;
}
.page-top .text .title {
  font-size: 40px;
}
.page-top .text .summary {
  font-size: 30px;
}
.page-top .right {
  flex-basis: calc(100% - 300px);
}
.page-top .right .page-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.page-top .right .page-menu .firstItem {
  position: relative;
}
.page-top .right .page-menu .second {
  display: none;
  position: absolute;
  top: 35px;
  background: #383838;
  flex-direction: column;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
}
.page-top .right .page-menu .second a {
  padding: 15px;
  border-right: none;
  width: 100%;
  text-align: center;
  display: block;
  height: auto;
}
.page-top .right .page-menu .second a:hover {
  background: #424242;
}
.page-top .right .page-menu a {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  position: relative;
  padding: 0 2vw;
  border-right: 1px solid #8c8c8c;
}
.page-top .right .location {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  color: #fff;
  height: 70px;
  font-size: 16px;
}
.page-top .right .location a {
  font-size: 16px;
  color: #fff;
  margin: 0 8px;
}
.page-top .right .location a:hover {
  text-decoration: underline;
}
.page-search {
  margin-bottom: 40px;
}
.page-search label {
  position: relative;
}
.page-search label input {
  height: 50px;
}
.page-search label button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: transparent;
  height: 50px;
  width: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-search label button img {
  width: 24px;
  height: 23px;
}
/*翻页*/
.pager {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 50px auto;
}
.pager a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 20px;
  color: #333;
  transition: all 0.5s;
  font-size: 16px;
}
.pager a:hover,
.pager a.page-num-current {
  color: var(--dominant-color);
  transition: all 0.5s;
}
.pager a.prev,
.pager a.next {
  width: 110px;
  height: 36px;
  background: none;
  border-radius: 20px;
  border: 1px solid #eee;
}
.pager a.prev:hover,
.pager a.next:hover {
  border-color: var(--dominant-color);
  color: #fff;
  background: var(--dominant-color);
}
.pagePadding {
  padding: 80px 0 100px;
}
/*product*/
.product-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.product-container .item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
  background: #fff;
}
.product-container .item:hover {
  background: #fff;
}
.product-container .item:hover .text {
  background: var(--dominant-color);
}
.product-container .item:hover .text .title {
  color: #fff;
}
.product-container .item .imgBox {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.product-container .item .imgBox img {
  width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.product-container .item .text {
  padding: 20px 30px 20px;
  transition: all 0.5s;
}
.product-container .item .text .title {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.product-detail {
  padding-bottom: 0;
}
.product-detail .top {
  display: flex;
  justify-content: space-between;
}
.product-detail .top .left {
  display: flex;
  justify-content: space-between;
  width: 40%;
}
.product-detail .top .left .img-swiper {
  width: 100%;
}
.product-detail .top .left .img-swiper .big-img .swiper-slide {
  padding-bottom: 100%;
}
.product-detail .top .left .img-swiper .big-img .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.product-detail .top .left .img-swiper .small-img {
  margin: 20px auto auto;
}
.product-detail .top .left .img-swiper .small-img .swiper {
  padding: 0 2px;
}
.product-detail .top .left .img-swiper .small-img .swiper-slide {
  height: 120px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #eee;
}
.product-detail .top .left .img-swiper .small-img .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--dominant-color);
}
.product-detail .top .left .img-swiper .small-img .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.product-detail .top .left .text {
  flex-basis: 55%;
}
.product-detail .top .right {
  width: 55%;
}
.product-detail .top .title {
  font-size: 28px;
  color: #333;
  text-align: left;
  font-weight: 600;
}
.product-detail .top .summary {
  font-size: 16px;
  color: #333;
  text-align: left;
  margin-top: 20px;
}
.product-detail .detail-container {
  margin-top: 50px;
  margin-bottom: 100px;
}
.product-detail .detail-container .title {
  font-size: 18px;
  background: var(--dominant-color);
  display: inline-block;
  color: #fff;
  padding: 10px 40px;
}
.product-detail .detail-container .box {
  border-top: 1px solid #eee;
  padding: 20px 0;
}
.product-detail .detail-pager {
  display: flex;
  margin-bottom: 100px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
/*响应式*/
@media screen and (max-width: 1600px) {
  .page-top .right .page-menu a {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1440px) {
  header .menu-box {
    flex-basis: calc(70%);
  }
  .page-top .text .title {
    font-size: 32px;
  }
  .page-top .text .summary {
    font-size: 24px;
  }
  .product-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .footer-mid .right {
    flex-basis: 25%;
  }
}
@media screen and (max-width: 1366px) {
  .footer .footer-mid .left .text .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .footer .footer-mid .mid {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 1024px) {
  header .section .header-box .logo img {
    width: 120px;
  }
  header .menu-box .menu-list .firstItem .firstItem-title a {
    font-size: 16px;
  }
  header .menu-box .menu-list {
    padding-right: 15px;
    margin-right: 15px;
  }
  .pageMargin {
    padding: 50px 0;
  }
  /*header*/
  header .header-menu .header-box-bg .header-box {
    height: 80px;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child span {
    display: inline-block;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child img {
    display: none;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child .firstItem-title {
    border: none;
  }
}
.page-top .right .page-menu .firstItem i {
  display: none;
}
.phone-menu-click {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer .footer-top .footer-logo .footer-code .item .fab {
    font-size: 16px;
  }
  .pager .number {
    font-size: 14px;
    margin: 0 10px;
  }
  .pager .number.prev,
  .pager .number.next {
    width: 90px;
  }
  .pager {
    margin-top: 50px;
  }
  header .header-menu .header-box-bg .header-box {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 5%;
  }
  header .header-menu .header-box-bg .header-box .logo {
    height: 80px;
    display: flex;
    align-items: center;
  }
  header .header-menu .header-box-bg .header-box .search {
    flex-basis: 100%;
    margin-bottom: 20px;
    width: 142%;
    display: none;
    position: absolute;
    padding: 0 5% 20px;
    top: 80px;
    background: #fff;
    left: 0;
  }
  header .header-menu .header-box-bg .header-box .search button {
    left: 5%;
  }
  header .header-menu .header-box-bg .header-box .search .close {
    right: 5%;
  }
  header .header-menu .header-box-bg .header-box .language {
    display: none;
  }
  header .menu-box {
    background: none;
    display: flex;
    align-items: center;
    height: 80px;
    position: absolute;
    z-index: 10;
    top: 0 !important;
    width: 100%;
    justify-content: flex-end;
  }
  header .menu-box .phone-click {
    cursor: pointer;
    width: 22px;
    height: 16px;
    display: flex;
    align-items: center;
    position: relative;
    right: 20px;
  }
  header .menu-box .phone-click .phone-line {
    height: 2px;
    background: #000;
    width: 100%;
    transition: all 0.5s;
    overflow: hidden;
  }
  header .menu-box .phone-click .phone-line::before,
  header .menu-box .phone-click .phone-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.5s;
  }
  header .menu-box .phone-click .phone-line::before {
    top: 0;
    transition: all 0.5s;
  }
  header .menu-box .phone-click .phone-line::after {
    bottom: 0;
    transition: all 0.5s;
  }
  header .menu-box .phone-click.active .phone-line {
    background: rgba(255, 255, 255, 0);
    transition: all 0.5s;
  }
  header .menu-box .phone-click.active .phone-line::before {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(7px) rotate(45deg);
  }
  header .menu-box .phone-click.active .phone-line::after {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(-7px) rotate(-45deg);
  }
  header .menu-box .menu-list {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    top: 60px;
    height: 100vh;
    z-index: 10;
    left: 0;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 30px;
  }
  header .menu-box .menu-list .language {
    display: block;
  }
  header .menu-box .menu-list .firstItem {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #eee;
    display: block;
  }
  header .menu-box .menu-list .firstItem.active .firstItem-title a {
    color: var(--dominant-color);
  }
  header .menu-box .menu-list .firstItem.active .firstItem-title a::after {
    background: var(--dominant-color);
  }
  header .menu-box .menu-list .firstItem .firstItem-title {
    height: 50px;
    width: 92.5%;
    margin-left: 5%;
    padding: 0;
    position: relative;
  }
  header .menu-box .menu-list .firstItem .firstItem-title a {
    color: #2a2a2a;
    font-size: 14px;
    display: block;
    width: 100%;
  }
  header .menu-box .menu-list .firstItem .firstItem-title a:hover {
    color: var(--dominant-color);
  }
  header .menu-box .menu-list .firstItem .firstItem-title a:hover::after {
    background: var(--dominant-color);
  }
  header .menu-box .menu-list .firstItem .firstItem-title i {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
  }
  header .menu-box .menu-list .firstItem .firstItem-title i.active {
    transform: rotate(45deg);
  }
  header .menu-box .menu-list .firstItem .firstItem-title i::before {
    content: '';
    width: 16px;
    position: absolute;
    height: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
  }
  header .menu-box .menu-list .firstItem .firstItem-title i::after {
    content: '';
    height: 16px;
    position: absolute;
    width: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
  }
  header .menu-box .menu-list .firstItem .firstItem-title::after {
    display: none;
  }
  header .menu-box .menu-list .firstItem .second-box {
    top: 0 !important;
    border-top: none;
    box-shadow: none;
    position: relative;
    left: 0;
    font-size: 12px;
    transform: translateX(0);
    width: 92.5%;
    margin-left: 5%;
    margin-bottom: 20px;
  }
  header .menu-box .menu-list .firstItem .second-box .second-box-list {
    margin-top: 0;
    padding: 10px;
  }
  header .menu-box .menu-list .firstItem .second-box .second-box-list::after {
    left: 20px;
    right: auto;
    display: none;
  }
  header .menu-box .menu-list .firstItem .second-box a {
    text-align: left;
    margin-bottom: 10px;
  }
  header .menu-box .menu-list-phone {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    position: absolute;
    height: 100vh;
    left: 0;
    width: 100%;
    top: 50px;
    padding: 20px;
    display: none;
    z-index: 10;
  }
  header .menu-box .menu-list-phone .menu-list-box {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  header .menu-box .menu-list-phone .menu-aside {
    border-right: 1px solid #e1e3e6;
    height: 100%;
    overflow: hidden;
    width: 120px;
  }
  header .menu-box .menu-list-phone .menu-aside .item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 10px;
  }
  header .menu-box .menu-list-phone .menu-aside .item a {
    display: block;
  }
  header .menu-box .menu-list-phone .menu-aside .item.active::after {
    content: '';
    width: 4px;
    height: 15px;
    background: var(--dominant-color);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
  header .menu-box .menu-list-phone .menu-content {
    flex: auto;
    width: calc(100% - 120px);
    padding: 0 10px;
  }
  header .menu-box .menu-list-phone .menu-content .item-content {
    display: none;
  }
  header .menu-box .menu-list-phone .menu-content .item-content.active {
    display: block;
  }
  header .menu-box .menu-list-phone .menu-content .item-list {
    display: flex;
    flex-wrap: wrap;
  }
  header .menu-box .menu-list-phone .menu-content .item-list .item {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  header .menu-box .menu-list-phone .menu-content .item-list .item .title {
    font-size: 12px;
    color: #666;
    text-align: center;
  }
  header .menu-box .menu-list-phone .menu-content .item-list .item .summary {
    font-size: 12px;
    text-align: center;
  }
  header .menu-box .menu-list-phone .menu-content .item-list .item .imgBox {
    height: auto;
  }
  header .menu-box .menu-list-phone .menu-content .item-list .item .news-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .menu-box .menu-list-phone .menu-content .item-list .item .news-title {
    text-align: center;
    font-size: 12px;
  }
  header .menu-box .menu-list-phone .menu-content .item-list .item .second-item-support-link a {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 10px;
  }
  .phone-search-click {
    position: fixed;
    top: 0;
    right: calc(5% + 50px);
    display: flex;
    bottom: 0;
    align-items: center;
    width: 20px;
    z-index: 100;
    cursor: pointer;
    height: 80px;
  }
  /*通用样式*/
  .pageBanner .banner-box {
    height: 300px;
  }
  .pageBanner .banner-box .text {
    width: 90%;
  }
  .pageBanner .banner-box .text .summary {
    font-size: 24px;
  }
  header .header-top {
    display: none;
  }
  header .header-menu .header-box {
    height: 80px;
    width: 100%;
  }
  header .header-menu .header-box .search {
    display: none;
  }
  .page-top {
    width: 100%;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-top .text {
    flex-basis: auto;
  }
  .page-top .text .title {
    font-size: 20px;
  }
  .page-top .text .summary {
    font-size: 16px;
  }
  .page-top .right .location {
    justify-content: flex-start;
  }
  .page-top .right .location a {
    font-size: 14px;
  }
  .product-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-container .item .text {
    padding: 20px;
  }
  .product-container .item .text .title {
    font-size: 14px;
  }
  .footer .footer-top {
    display: none;
  }
  .footer .footer-mid {
    flex-direction: column;
  }
  .footer .footer-mid .left {
    flex-basis: auto;
    width: 100%;
  }
  .footer .footer-mid .left .img1 {
    margin-right: 20px;
  }
  .footer .footer-mid .mid {
    flex-basis: auto;
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    border-left: none;
  }
  .footer .footer-mid .right {
    flex-basis: 100%;
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
  .footer .footer-bottom .copy-right {
    font-size: 12px;
  }
  .footer .footer-mid .left .img2 {
    display: none;
  }
  .phone-menu-click {
    display: block;
    height: 50px;
    width: 100%;
    background: var(--dominant-color);
    color: #fff;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
  }
  .page-top .right .page-menu {
    flex-direction: column;
    display: none;
  }
  .page-top .right {
    flex-basis: auto;
    width: 100%;
  }
  .page-top .right .page-menu a {
    padding: 0;
    font-size: 14px;
    border-right: none;
    margin: 10px 0;
    height: 40px;
  }
  .page-top .right .page-menu .second {
    position: relative;
    top: 0;
    width: 100%;
  }
  .page-top .right .page-menu .firstItem {
    width: 100%;
    position: relative;
  }
  .page-top .right .page-menu .second a {
    margin: 0;
  }
  .page-top .right .page-menu .firstItem i {
    position: absolute;
    width: 50px;
    height: 40px;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-top .right .page-menu .firstItem i img {
    width: 10px;
    transition: all 0.5s;
    transform: rotate(-90deg);
    filter: grayscale(1) brightness(10);
  }
  .pagePadding {
    padding: 30px 0;
  }
  header .header-menu .header-box .logo {
    margin-left: 20px;
  }
  .product-detail .top {
    flex-direction: column;
  }
  .product-detail .top .left {
    width: 100%;
  }
  .product-detail .top .right {
    width: 100%;
    margin-top: 30px;
  }
  .product-detail .top .title {
    font-size: 20px;
  }
  .product-detail .top .summary {
    font-size: 14px;
  }
  .product-detail .detail-container .title {
    font-size: 16px;
  }
  .index4 .index-news {
    grid-template-columns: repeat(1, 1fr);
  }
  .index2 .numbers {
    flex-wrap: wrap;
  }
  .index2 .numbers .item {
    flex-basis: 50%;
    margin-bottom: 30px;
  }
  .index2 .numbers .item .left,
  .index2 .numbers .item .mid {
    font-size: 20px;
  }
  .index2 .numbers .item .sup {
    margin-top: 10px;
  }
  .index2 .numbers .item .title {
    font-size: 12px;
  }
  .index3 .right,
  .index3 .left .img {
    display: none;
  }
  .index3 {
    width: 90%;
    margin: auto;
    padding-top: 0;
  }
  .index3 .left .text {
    margin-right: 0;
    margin-left: 0;
  }
  .index2 {
    padding: 50px 0 0;
  }
  .index1 .left-img {
    display: none;
  }
  .index1 {
    background: none !important;
    padding: 50px 0;
  }
  .index1 .index1-pro .item {
    flex-direction: column;
  }
  .index1 .index1-pro .item .text {
    padding: 20px 0;
  }
  .index1 .index1-pro .item .text .title {
    font-size: 16px;
  }
  .page-top .right .location {
    font-size: 14px;
  }
}

.detail-container .title {
  font-size: 38px;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.product-detail .index4 {
  padding-top: 0;
}
.product-detail .index4 .index-news {
  margin-top: 0;
}
.product-detail-box .title {
  text-align: center;
}

.p_news {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

.newPicBox {
  width: 165px;
  height: 110px;
}

.newPicLink {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.newPic {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all .5s ease;
  object-fit: cover;
}

.newList {
  display: flex;
  padding: 30px 0;
  border-top: 1px solid #DDD;
}

.leftTime {
  width: 100px;
  position: relative;
}

.newTime {
  display: block;
  color: #999;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0px 0 30px;
  transition: all .5s ease;
}

.newIcon {
  padding: 6px 11px;
  border: 1px solid transparent;
  transition: all .5s ease;
  color: #ccc;
}

.rightC {
  position: relative;
  width: calc( 100% - 100px);
  transition: all .5s ease;
}

.newTitle {
  margin-bottom: 10px;
}

.newTitleLink {
  display: block;
  width: 100%;
  font-size: 1rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newMs {
  line-height: 24px;
  height: 48px;
  font-size: 0.875rem;
  overflow: hidden;
  color: #999;
  transition: 600ms;
}

@media only screen and (min-width: 769px) {
  .p_news .content {
    display:flex;
    width: calc( 100% - 165px );
  }

  .newPicBox:hover .newPic {
    transform: scale(1.1);
  }

  .rightC {
    padding: 0 30px 0 60px;
  }

  .rightC::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    display: block;
    width: 40px;
    height: 1px;
    background: #aaa;
    transition: all .5s ease;
  }

  .newTitleLink {
    transition: all .5s ease;
  }

  .newList {
    display: flex;
    padding: 30px 0;
    border-top: 1px solid #DDD;
  }

  .newList:hover .rightC::before {
    width: 60px;
  }

  .newList:hover .rightC {
    padding-left: 80px;
  }

  .newList:hover .newTime {
    color: #333;
  }

  .newList:hover .newIcon {
    border-color: #303030;
    margin-top: 10px;
    background: #303030;
  }
}

@media only screen and (max-width: 768px) {
  .p_news .content {
    display:flex;
    padding-top: 20px;
    width: 100%;
  }

  .newList {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .newPicBox {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
  }

  .newPicLink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .newTitle {
    margin: 10px 0;
  }
}

.news-detail .title {
  font-size: 32px;
  text-align: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.summary-list {
  display: flex;
}
.summary-list .item:last-child {
  margin-left: auto;
}
.news-container {
  margin-top: 30px;
  margin-bottom: 30px;
}
.contact-box {
  padding-bottom: 100px;
}
.contact-bottom {
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.1);
}
.contact-bottom .item {
  flex-basis: 50%;
  padding: 50px 80px;
}
.contact-box .section {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
.contact-box .item .title {
  font-size: 22px;
  font-weight: 600;
}
.contact-box label {
  margin-bottom: 20px;
  display: block;
}
.contact-box input,.contact-box textarea {
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  text-indent: 0;
  color: #fff;
}
.contact-box input {
  height: 50px;
}
.contact-box input::placeholder,.contact-box textarea::placeholder {
  color: #fff;
}
.contact-box  form {
  margin-top: 20px;
}
.contact-box button {
  margin-top: 30px;
  color: #fff;
  border: 1px solid #fff;
  background: none;
  padding: 10px 50px;
}

@media screen and (max-width: 768px) {
  .contact-bottom {
    flex-direction: column;
  }
  .contact-box .item {
    padding: 50px 20px;
  }
}

.PhotoList_k1 {
  width: 100%;
  transition: 0.3s ease 0s;
  font-size: 14px;
}

.PhotoList_k1 ul {
  font-size: 0px;
}

.PhotoList_k1 li:nth-child(4n+1) {
  margin-left: 0px;
}

.PhotoList_k1 li {
  font-size: 16px;
  transition: 0.3s ease 0s;
  margin-bottom: 2.5%;
  width: 23%;
  margin-left: 2.6%;
  background: #f2f2f2;
  padding: 10px;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}

.PhotoList_k1 li a {
  font-size: 0px;
  overflow: hidden;
  text-align: center;
  background: #f6f6f6;
  width: 100%;
  margin: 0 auto;
  height: 13.6vw;
  display: block;
}

.PhotoList_k1 li a:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0px;
}

.PhotoList_k1 img {
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s linear 0s;
  width: auto;
  height: auto;
  max-height: 87%;
  max-width: 90%;
  margin-left: 0px;
  transform: scale(1);
}

.PhotoList_k1 h4 {
  display: none;
}

.PhotoList_k1 li span {
  color: #666;
  white-space: nowrap;
  transition: 0.3s ease 0s;
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  padding: 3% 10px;
  box-sizing: border-box;
  border: none;
}

@media screen and (min-width: 769px) {
  .PhotoList_k1 li:hover img {
    transform:scale(1.1);
  }

  .PhotoList_k1 li:hover span {
    color: #fff;
    background: #b5252e;
  }

  .PhotoList_k1 li {
    width: 23%;
  }

  .PhotoList_k1 li:nth-child(4n+1) {
    margin-left: 0px;
  }
}

@media screen and (max-width: 1100px) {
  .PhotoList_k1 li a {
    height: 21.2vw;
  }
}

@media screen and (max-width: 768px) {
  .PhotoList_k1 {
    padding:0px;
  }

  .PhotoList_k1 li {
    width: 48%;
    margin-bottom: 5%;
  }

  .PhotoList_k1 li a {
    height: 31vw;
    padding: 0;
  }

  .PhotoList_k1 li span {
    padding: 2vw;
    font-size: 14px;
  }

  .PhotoList_k1 li:nth-child(2n+1) {
    margin-left: 0%;
  }

  .PhotoList_k1 li:nth-child(2n+0) {
    margin-left: 4%;
  }

  .detail-container .title {
    font-size: 20px;
  }
}

.project-detail .title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}
.project-detail .left {
  flex-basis: 100%;
}
.project-detail .big-img img ,.project-detail .small-img img{
  height: 100%;
  object-fit: contain;
}
.product-detail.project-detail  .top .left .img-swiper .big-img .swiper-slide {
  padding-bottom: 25%;
}
.product-detail.project-detail .top .left .img-swiper .small-img .swiper-slide {
  height: 180px;
}

@media screen and (max-width: 1500px) {
  .PhotoList_k1 li span {
    font-size: 14px;
  }
  .product-detail.project-detail  .top .left .img-swiper .big-img .swiper-slide {
    padding-bottom: 75%;
  }
  .product-detail.project-detail .top .left .img-swiper .small-img .swiper-slide {
    height: 120px;
  }
  .project-detail .title {
    font-size: 20px;
  }
}

.catalogs_bg-en {
  font-family: 'times new roman';
  font-size: 2vw;
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
}
.catalogs_bg-cn {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.cateDemo .cateDemo {
  padding: 50px 0;
}
.cateDemo {
  padding-bottom: 50px !important;
}
.cateDemo .swiper-pagination-bullet-active {
  background: #ffa500 !important;
}
.cateDemo .list {
  background: #fff;
  width:calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.cateDemo .list:nth-child(3n) {
  margin-right: 0;
}

.cateDemo .row {
  /*display: flex;*/
  /*justify-content: flex-start;*/
  /*flex-wrap: wrap;*/
}

.cateDemo .thumbnail {
  padding: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 0px 10px #c1c1c1;
  -webkit-box-shadow: 0px 0px 10px #c1c1c1;
  box-shadow: 0px 0px 10px #c1c1c1;
}

.cateDemo .imgBox {
  position: relative;
}

.cateDemo .img {
  width: 100%;
}

.cateDemo .dark {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  transition: all .5s ease;
  transform: scale(0,1);
}

.cateDemo .imgBox:hover .dark {
  transform: scale(1);
}

.cateDemo .center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background-color: #ffa500c7;
  display: block;
  padding: 12px;
  font-size: 0.875rem;
}

.cateDemo .add {
  text-align: center;
  color: #fff;
}

.cateDemo .lookMore {
  text-align: center;
  color: #fff;
}

.cateDemo .cataNameBox {
  padding: 10px 30px;
}

.cateDemo .cate1 {
  padding-bottom: 10px;
  font-size: 1.25rem;
  color: rgb( 113, 111, 111 );
  text-align: center;
  font-weight: normal;
  line-height: 3rem;
}

.cateDemo .cate1 a:hover {
  color: #946000;
}


.cateDemo .cataNameBox dd {
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
}

.cateDemo .cateName2 {
  position: relative;
  font-size: 0.875rem;
  color: rgb( 113, 111, 111 );
}

.cateDemo .cateName2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #fb8c00;
  transform: translateY(-50%);
}

.cateDemo .bot {
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #ffa500;
  width: 80%;
  transition: all .5s ease;
  border-radius: 20px;
  margin: auto;
  margin-bottom: 20px;
}

.cateDemo .bot:hover {
  background: #ff8633;
}

.cateDemo .botLink {
  color: rgb( 255, 255, 255 );
}


@media screen and (max-width: 768px) {
  .cateDemo .list {
    width:calc((100% - 20px) / 2);
  }
  .cateDemo .list:nth-child(3n) {
    margin-right: 20px;
  }
  .cateDemo .list:nth-child(2n) {
    margin-right: 0;
  }
  .cateDemo .cate1 {
    font-size: 14px;
  }
}

