/* 公共样式 */
.container {
  width: 100%;
}
.container-iframe {
  width: 100%;
}
.container-iframe-header {
  height: 170px;
}
.container-iframe-footer {
  height: 450px;
}
/* 背景宽高 */
header,
nav,
main > div,
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.header-inner,
.nav-inner,
.hot-inner,
.about-inner,
.cate-inner,
.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1400px;
  width: 90%;
}
.hot-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* 背景颜色 */
nav,
main .about,
main .cate-ls,
main .buy-news,
main .buy-form-btn {
  background-color: #ae8455;
  color: #fff;
}
/* 图标 */
.icon-item {
  width: 60px;
  height: 60px;
}
.icon-item02 {
  width: 49px;
  height: 49px;
}
/* 动画 */
.learn-more {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.learn-more:hover {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
/* 整站字体 */
.font-source {
  font-weight: bold;
}
.font-din {
  font-family: 'MyDin';
}
.font-gilroy {
  font-family: 'myGilroy';
}
/* 主要内容 */
/* 顶部 */
header {
  background-color: #fff;
}
.header-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 120px;
  color: #333;
}
.header-logo {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10%;
}
.header-logo a img {
  width: 100%;
}
/* .header-logo img {
    margin-right: 30px;
    max-width: 80px;
    max-height: 80px;
}

.header-logo .header-logo-title {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 70px;
    color: #333;
}

.header-logo .header-logo-title .font-source {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 2.5px;
}

.header-logo .header-logo-title .font-din {
    font-size: 24px;
    letter-spacing: 0.8px;
} */
.header-logo a {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.header-logo a img {
  max-width: 100%;
  max-height: 100%;
}
.header-contact {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-contact img {
  position: relative;
  top: 15px;
}
.header-contact-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 20px;
}
.header-contact-title span {
  font-size: 30px;
  font-weight: bold;
  color: #333;
}
.header-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-lang a {
  width: 62px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.header-lang .header-lang-cn {
  position: relative;
  right: -15px;
  font-size: 28px;
  background-image: url('../images/bg_lang_cn.png');
  color: #fff;
}
.header-lang .header-lang-en {
  background-image: url('../images/bg_lang_en.png');
  color: #ae8455;
  font-size: 22px;
}
/* 导航菜单 */
.nav-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 50px;
  line-height: 50px;
}
.nav-inner li:after {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.nav-inner li a {
  position: relative;
  display: block;
  margin: auto 1%;
  width: 100%;
  height: 93%;
  font-size: 18px;
  color: #fff;
}
.nav-inner li a:hover {
  font-weight: bold;
}
.nav-inner li a:hover:after {
  position: absolute;
  bottom: -3px;
  left: 20%;
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #673728;
}
.nav-inner li.active a {
  font-weight: bold;
}
.nav-inner li.active a:after {
  position: absolute;
  bottom: -3px;
  left: 20%;
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #673728;
}
/* banner图 */
.banner {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 36px;
  background-color: #999;
  overflow: hidden;
}
.banner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
}
.banner .swiper-slide img {
  width: 100%;
}
.banner .swiper-pagination {
  position: absolute;
  left: 17.5%;
  top: 81.8%;
  width: 82px;
  height: 36px;
  line-height: 36px;
  font-size: 24px;
}
.banner .swiper-pagination-current {
  font-size: 36px;
}
.banner .swiper-button-next {
  position: absolute;
  left: 24%;
  top: 85%;
  color: #fff;
}
.banner .swiper-button-prev {
  position: absolute;
  left: 14%;
  top: 85%;
  color: #fff;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 13px;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.banner .swiper-button-prev {
  background-image: url('../images/banner_arrow_left.png');
}
.banner .swiper-button-next {
  background-image: url('../images/banner_arrow_right.png');
}
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
  content: '';
}
/* 热门产品 */
.hot {
  background-image: url('../images/bg_hot_bg4.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 300px;
}
.hot-inner {
  position: relative;
  margin: 100px auto;
  text-align: center;
}
.hot-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  line-height: 1.5;
  width: 100%;
}
.hot-title-null {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hot-title-txt {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}
.hot-title-txt .font-din {
  font-size: 40px;
  color: #eba267;
}
.hot-title-txt .font-source,
.hot-title-txt .font-source a {
  font-size: 40px;
  color: #333;
}

.hot-inner  button {
  position: absolute;
  top: 50%;
  display: inline-block;
  margin: 25px 15px 0 15px;
  width: 45px;
  height: 45px;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hot-inner  button:hover {
  cursor: pointer;
}

.hot-inner  .hot-title-more-left {
  left: -75px;
  background-image: url('../images/bg_hot_bg2.png');
}
.hot-inner  .hot-title-more-right {
  right: -65px;
  background-image: url('../images/bg_hot_bg3.png');
}

/* .hot-title-more {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
} */

.hot-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hot-content .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hot-content .swiper-pagination-more {
  visibility: hidden;
}
.hot-content .swiper-slide a {
  display: block;
  width: 100%;
}

.hot-item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 450px;
  background-color: #fff;
  overflow: hidden;
}
.hot-item-img img {
  margin: 0 auto;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
.hot-item-des {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #000;
  background-color: #ebddce;
}
.hot-item-title {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  font-family: 'font-din';
  font-weight: bold;
  color: #222;
  font-size: 18px;
  text-align: center;
  max-width: 80%;
}
.hot-item-more {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  font-size: 13px;
  background-size: 20%;
  background-repeat: no-repeat;
  background-image: url('../images/bg_hot_bg5.png');
  background-position: right center;
  font-family: 'font-din';
  font-size: 18px;
  color: #222;
}
/* 关于我们 */
.about {
  padding: 100px 0;
  background: no-repeat url('../images/bg_about_bg1.png') 350px center;
}
.about-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 1%;
  margin-right: 4%;
}
.about-text .font-din {
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  color: #eba267;
}
.about-text .font-source {
  font-size: 40px;
  color: #fff;
}
.about-des {
  margin-top: 30px;
  font-size: 16px;
  font-weight: normal;
  line-height: 32px;
}
.about-btn {
  margin-top: 65px;
  display: block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #fff;
  color: #7a7a7a;
  cursor: pointer;
  background-size: 15%;
  background-repeat: no-repeat;
  background-image: url('../images/bg_hot_bg5.png');
  background-position: 135px center;
  text-indent: -50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.about-btn:hover {
  background-position: 130px center;
  text-indent: -60px;
}
.about-list {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 2px;
  padding-top: 8%;
  padding-left: 6%;
  width: 48%;
  height: 270px;
  background-color: #434343;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.about-list li:nth-child(1) {
  background: url('../images/bg_about_bg21.png');
}
.about-list li:nth-child(2) {
  background: url('../images/bg_about_bg31.png');
}
.about-list li:nth-child(3) {
  background: url('../images/bg_about_bg41.png');
}
.about-list li:nth-child(4) {
  background: url('../images/bg_about_bg51.png');
}
.about-list li i {
  color: #eba267;
  font-size: 60px;
}
.about-list li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
}
.about-list li div strong {
  margin-left: 25px;
  font-size: 18px;
  margin-bottom: 30px;
}
.about-list li div span {
  margin-left: 25px;
  font-size: 16px;
}
/* 产品分类 */
.cate {
  background-color: #f9f5f2;
}
.cate-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 125px;
  padding-bottom: 50px;
}
.cate-nav {
  width: 200px;
}
.cate-nav .font-din {
  font-weight: bold;
  font-size: 40px;
  color: #eba267;
  text-align: center;
}
.cate-nav .font-source {
  font-size: 40px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
.cate-ls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 200px;
  font-weight: normal;
}
.cate-ls li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 28px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cate-ls li:hover {
  background-color: #906d46;
  cursor: pointer;
  text-align: left;
}
.cate-ls li a {
  display: block;
  width: 100%;
  color: #fff;
}
.cate-ls li a i {
  display: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 24px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  color: #eba267;
}
.cate-ls li:hover a i {
  display: inline-block;
}
.cate-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  width: 83%;
  max-width: 85%;
}
.cate-content-item {
  margin-right: 30px;
  margin-bottom: 70px;
  width: 30%;
  height: 410px;
}
.cate-content-item:nth-child(3n) {
  margin-right: 0;
}
.cate-content-item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 335px;
  background-color: #fff;
}
.cate-content-item-img img {
  margin: 0 auto;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
.cate-content-item-des {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  margin-top: 10px;
  height: 60px;
  line-height: 60px;
  background-color: #ebddce;
  color: #222;
}
.cate-content-item-des .cate-content-item-title {
  -webkit-box-flex: 2.5;
  -ms-flex: 2.5;
  flex: 2.5;
  padding-right: 7%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  max-width: 80%;
}
.cate-content-item-des .cate-content-item-more {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 140px;
  height: 60px;
  font-size: 13px;
  background-size: 20%;
  background-repeat: no-repeat;
  background-image: url('../images/bg_hot_bg5.png');
  background-position: right center;
}
/* 购买 */
.buy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background-color: #f9f5f2;
}
.buy-inner {
  max-width: 1680px;
  width: 90%;
  z-index: 2;
}
.buy-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 640px;
}
.buy-form-left {
  -webkit-box-flex: 1.4;
  -ms-flex: 1.4;
  flex: 1.4;
  background: no-repeat url('../images/bg_buy1.png');
  background-size: 100% 100%;
}
.buy-form-content {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 90px;
  padding-top: 90px;
  background-color: #fff;
}
.buy-form-content form {
  width: 90%;
}
.buy-form-content p {
  width: 100%;
  line-height: 50px;
}
.buy-form-content p.buy-form-title {
  width: 100%;
  color: #333;
  font-size: 16px;
  border-bottom: 1px solid #e2dfda;
}
.buy-form-content p.buy-form-title-two {
  padding-top: 40px;
  font-size: 14px;
  color: #444;
  border-bottom: none;
}
.buy-form-content p input {
  position: relative;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2dfda;
  font-size: 16px;
  color: #333;
}
.buy-form-content p input:focus {
  border-bottom: 1px solid #ae8455;
}
p.buy-form-title-alone input {
  margin-right: 30px;
  width: 45%;
}
p.buy-form-title-alone input:last-child {
  margin-right: 0;
}
.buy-form-content p input.buy-form-btn {
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 240px;
  height: 55px;
  line-height: 55px;
  background-color: #ae8455;
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.buy-form-btn:hover {
  cursor: pointer;
  background-color: #b8936a;
}
.buy-form-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 70px;
  background-color: #fff;
}
.buy-form-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  line-height: 50px;
}
.buy-form-right-item .block-en {
  font-size: 18px;
  color: #ae8455;
}
.buy-form-right-item .block-cn {
  line-height: 1.4;
  font-size: 40px;
  font-weight: bold;
}
.buy-form-right-item .block-cn-name {
  margin: 15px 0;
  font-size: 18px;
}
.buy-form-right-item:last-child {
  line-height: 1.5;
  margin-top: 45%;
}
.buy-news {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 72px;
}
.buy-news-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
}
.buy-news li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 415px;
  height: 220px;
  color: #fff;
}
.buy-news-item-tag {
  margin-bottom: 25px;
  display: inline-block;
  width: 112px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #b8936a;
  border-radius: 25px;
  font-size: 14px;
  color: #fff;
}
.buy-news li a:hover .buy-news-item-tag {
  background-color: #313131;
}
.buy-news-item-tag-act {
  background-color: #313131;
}
.buy-news-item-title {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: bold;
}
.buy-news-item-des {
  margin-bottom: 25px;
  font-size: 16px;
  height: 60px;
  line-height: 30px;
}
.buy-news-item-date {
  font-family: 'myDin';
  font-size: 14px;
}
.buy-bg-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 47%;
  background-color: #222;
  -webkit-clip-path: ellipse(69% 100% at 50% 100%);
  clip-path: ellipse(69% 100% at 50% 100%);
  z-index: 1;
}
/* 版权 */
footer {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 35px 0;
  height: 450px;
  background-color: #222;
  color: #fff;
}
.footer-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer-inner a {
  color: #fff;
}
.footer-inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-about {
  padding-bottom: 15px;
  height: 123px;
  border-bottom: 1px solid #cec9c1;
}
.footer-about-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 26px;
  height: 80px;
  line-height: 40px;
}
.footer-about-logo a {
  display: block;
  margin-right: 25px;
  line-height: 40px;
}
.header-logo a img {
  width: 100%;
}
/* .footer-about-logo div {
    display: flex;
    flex-direction: column;
}

.footer-about-logo div span:nth-child(1) {
    letter-spacing: 3.5px;
    font-size: 30px;
    font-weight: bold;
}

.footer-about-logo div span:nth-child(2) {
    font-size: 18px;
    letter-spacing: 1.1px;
} */
.footer-about-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  font-size: 16px;
}
.footer-about-nav li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0;
  font-size: 16px;
  color: #d7d7d7;
}
.footer-contact-items {
  line-height: 30px;
}
.footer-contact-items a {
  color: #d7d7d7;
}
.footer-contact-items li span:first-child {
  display: inline-block;
  width: 100px;
  text-align: center;
}
.footer-contact-qrcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.footer-contact-qrcode img {
  width: 110px;
  height: 110px;
  overflow: hidden;
}
.footer-contact-qrcode span {
  margin-top: 10px;
  font-size: 14px;
  color: #999;
}
.footer-copyright {
  font-weight: lighter;
  color: #999;
  font-size: 14px;
}
.footer-copyright-name {
  color: #fff;
  border-bottom: 2px dotted #999;
}
@media all and (max-width: 1440px) {
  .banner .swiper-pagination {
    position: absolute;
    left: 17%;
    top: 81%;
  }
  .about-list {
    -webkit-box-flex: 2.5;
    -ms-flex: 2.5;
    flex: 2.5;
  }
  .about-list li {
    padding-right: 7%;
  }
  .buy-inner {
    width: 95%;
  }
  .buy-form-content {
    padding-left: 45px;
    padding-top: 40px;
  }
}
@media all and (max-width: 1400px) and (min-width: 800px) {
  .about-text .font-source,
  .about-text .font-din {
    font-size: 30px;
  }
  p.buy-form-title-alone input {
    margin-right: 20px;
  }
  .buy-news li a {
    width: 300px;
  }
  .hot-item-more {
    background-position: 100% center!important;
    font-size: 14px;
  }
  .buy-bg-circle {
    height: 50%;
  }
}
/* 子页公用样式 */
/* banner图 */
.child .banner {
  width: 100%;
  height: 550px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.child .banner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1400px;
  width: 90%;
}
.child .banner-cn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 56px;
  font-weight: bold;
  color: #fff;
}
.child .banner-cn span {
  display: inline-block;
  width: 100%;
}
.child .banner-cn span b {
  position: relative;
  display: inline-block;
}
.child .banner-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 75px;
  font-family: 'myDin';
  font-size: 18px;
  color: #fff;
  text-align: left;
  line-height: 30px;
}
.child .banner-en p {
  width: 100%;
}
/* 内容 */
.child .about-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.child .about-us-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.child .about-us-title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 100px;
  max-width: 1400px;
  width: 90%;
  text-align: center;
}
.child .about-us-title h2 {
  line-height: 2;
}
.child .about-us-title .font-din,
.child .about-us-title .font-source {
  font-weight: bold;
  font-size: 30px;
}
.child .about-us-title .font-din {
  color: #eba267;
}
.child .about-us-title .font-source {
  color: #333;
}
.child .about-us-des {
  margin-top: 45px;
  padding-bottom: 80px;
  max-width: 1400px;
  width: 100%;
  text-indent: 32px;
  line-height: 32px;
  text-align: left;
}
@media all and (max-width: 1400px) and (min-width: 800px) {
  .cate-content {
    width: 75%;
  }
}
.global-paging {
  display: block;
  text-align: center;
  font-size: 0;
  margin-top: 1.4rem;
  padding-bottom: 1.5rem;
}
.global-paging a {
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 3px;
  background-color: #e8e8e8;
  text-align: center;
  line-height: 46px;
  font-size: 14px;
  margin: 0 2px;
  font-weight: bold;
  font-family: Arial;
  position: relative;
  vertical-align: top;
  color: #333;
}
.global-paging .page-num-current {
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 3px;
  background-color: #e8e8e8;
  text-align: center;
  line-height: 46px;
  font-size: 14px;
  margin: 0 2px;
  font-weight: bold;
  font-family: Arial;
  position: relative;
  vertical-align: top;
  background-color: #333333;
  color: #fff;
}
.global-paging a.active {
  background-color: #333333;
  color: #fff;
}
.global-paging img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .global-paging {
    margin-top: .3rem;
    padding-bottom: 1.14rem;
  }
  .global-paging a {
  
  }
  .global-paging a.prev {
    width: 2.5rem;
    height: 36px;
  }
  .global-paging a.prev i {
    width: 2rem;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .global-paging a.next {
    width: 2.5rem;
    height: 36px;
  }
  .global-paging a.next i {
    width: 2rem;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .global-paging span {
    display: inline-block;
    width: 0.46rem;
    height: 0.46rem;
    line-height: 0.46rem;
    font-size: 12px;
  }
  .global-paging img {
    width: 0.3rem;
  }
}
.m-header {background:#FFF;box-shadow:0 0 12px rgba(0,0,0,0.2)}
.m-header >.col-xs-6>div {color:#333;;}
.m-header >.col-xs-6 img {max-width:100%;vertical-align:middle}
.st-container .st-menu {background:white;
	-webkit-transition: all .6s cubic-bezier(.77,0,.175,1) 0s;
    -o-transition: all .6s cubic-bezier(.77,0,.175,1) 0s;
     transition: all .6s cubic-bezier(.77,0,.175,1) 0s;
}
.st-container .st-menu ul li a {color:black;position:relative;font-size:.25rem;	box-shadow: inset 0 -1px rgba(0,0,0,0.4);

	}
.st-container .st-menu ul li>a:hover,.st-container .st-menu ul li.active>a {background:#eba267;box-shadow:0 4px 8px rgba(0,0,0,0.2);border-radius:5px;color:#FFF}
.st-container .st-menu ul li>a>i {position:absolute;right:1em;top:50%;transform:translateY(-50%);color:black}
.st-container .st-menu ul li.active>a>i,.st-container .st-menu ul li>a:hover>i {color:#FFF}
.st-container .st-menu ul li>dl {transition:none;margin:0}
.st-container .st-menu ul li>dl dd a {background:none;box-shadow:none;color:black;padding-left:0}
.st-container .st-menu ul li>dl dd a i {padding-right:10px;}
.st-container .st-menu ul li>dl dd.on2 a,.st-container .st-menu ul li>dl dd a:hover {color:#eba267}
.st-container .st-menu ul li>dl dd.on2 a i,.st-container .st-menu ul li>dl dd a:hover i {padding-right:16px}

.st-effect-1.st-menu {display:block;}
.m-header {position:fixed;top:-100%;background:white;z-index:50;transition:all .36s;opacity:0;width:100%;line-height:60px;height:60px;font-size:0;}
.m-header >.col-xs-6{display:inline-block;width:50%;vertical-align:middle}
.m-header >.col-xs-6>div {color:black;display:inline-block;}
.m-header >.col-xs-6 a {color:#FFF;display:block;}
.m-header >.col-xs-6>div i {font-size:15px;padding:0 5px;line-height:60px;}
.m-header >.col-xs-6.text-right{text-align:right}
.st-menu-open {overflow:hidden;}
.st-menu .logo {margin:0 0 15px;padding:1em;}
.st-menu .logo  img{max-width:100%}
.st-menu {display:none;opacity:0}
.st-menu li {margin:2px 0}
.st-menu li dl {margin:0 0 15px;padding:0;display:none;}
.st-menu li dd a {text-indent:.1rem;font-size:0.14rem;}
.st-menu-open .st-menu {opacity:1;}

.m-header .m_langs{position:absolute;right:70px;font-size:0;top:50%;transform:translateY(-50%)}
.m-header .m_langs a{display:inline-block;vertical-align:middle;width:30px;height:30px;line-height:30px;text-align:center;font-size:12px;color:#FFF;background:#006fe2;margin:0 6px;border-radius:100%}

@media(max-width:990px){
body{overflow-x:hidden;}
	.st-menu {display:block;}	
	header,.xss1{display:none !important  ;}
	.m-header  {top:0;opacity:1;}
	.cate-ls{display:flex;flex-direction:inherit;flex-wrap: wrap;}
	.cate-ls li {padding:0;width:33.33%;text-align:center}
	.banner{padding:60px 0 0}
  .hot-item-img {height:auto}
  .about-inner{display:flex;flex-direction: column;}
	
	.about-text{margin:0;padding:0}
	.about-list{flex:4}
	.about-list li{width:100%}
	.cate-inner{display:flex;flex-direction: column;}
	.cate-nav{width:100%}
	.cate-ls{width:100%}
	.cate-content-item{width:48%;margin-right:0;height:auto}
	.cate-content{width:100%;max-width:100%;display:flex;justify-content: space-between;}
	.cate-content-item-img{height:auto}
	.buy-form-content{padding:0}
	.buy-form{display:flex;flex-direction: column;height:auto}
	.buy-form-right-item:last-child{margin-top:10%}
	p.buy-form-title-alone input{width:100%}
	.buy-news{display:flex;flex-direction: column;padding:10px}
	.buy-news-item{width:100%}
	.buy-news li a{width:100%}
	.footer-about{display:flex;flex-direction: column;}
	.footer-about-logo img{max-width:100%}
.footer-about-nav{width:100%;margin:.2rem 0 0}
footer{height:auto}
.footer-contact{display:flex;flex-direction: column;}
.footer-contact-qrcode{display:flex;align-items: center;}
.child .banner{height:auto}
.child .banner-cn{font-size:24px}
.child .banner-en{padding:40px 0 }

}