@charset "utf-8";
.wrapper {min-width: 1200px;}
.main {max-width: 1200px;}

.header-main {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.nav-item li {
  font-size: 16px;
}
.nav-item li+li {
  margin-left: 78px;
}
.nav-item li.language a {
  background: url(../images/country.gif) no-repeat;
  padding-left: 25px;
}
.nav-item li.language.en a {
  background-position: 2px -478px;
}
.nav-item li.language.cn a {
  background-position: 2px -177px;
}
.nav-item li a:hover, .nav-item li a.active {
  color: #e2cb83;
}

/*首页-关于我们*/
.index-about {
  padding: 100px 0;
  background-color: #f4f4f4;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  justify-content: space-between;
}
.index-about .about-profile {
  padding: 0 5%;
}
.index-about .about-profile .hd {
  height: 77px;
  font-size: 36px;
  background: url(../images/about_us.png) no-repeat right bottom;
  margin-bottom: 22px;
  position: relative;
}
.index-about .about-profile .hd:before {
  position: absolute;
  content: " ";
  width: 50px;
  height: 5px;
  background-color: #e2cb83;
  left: 0;
  bottom: 5px;
  border-radius: 3px;
}
.index-about .about-profile .bd {
  font-size: 14px;
  line-height: 2.2;
}
.index-about .about-profile .ft {
  display: inline-block;
  width: 160px;
  height: 40px;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  margin-top: 30px;
  border-radius: 5px;
  transition: all 0.3s;
}
.index-about .about-profile a.ft:hover {
  background-color: #e2cb83;
}
.index-about .about-img {
  border-radius: 20px 0 0 20px;
  width: 50%;
}

/*首页-品牌产品*/
.index-product {
  padding: 110px 0;
  background: url(../images/img9.jpg) no-repeat left top;
}
.index-product .product-main {
  display: flex;
  justify-content: space-between;
}
.index-product .cate-hd {
  height: 77px;
  font-size: 36px;
  margin-bottom: 40px;
  position: relative;
}
.index-product .cate-hd:before {
  position: absolute;
  content: " ";
  width: 50px;
  height: 5px;
  background-color: #e2cb83;
  left: 0;
  bottom: 5px;
  border-radius: 3px;
}
.index-product .cate-list {
  width: 280px;
  display: flex;
  flex-wrap: wrap;
}
.index-product .cate-list li {
  margin: 0 25px 25px 0;
}
.index-product .product-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  width: 974px;
}
.index-product .product-list li+li {
  margin-left: -1px;
}
.index-product .product-list li:nth-child(4) {
  margin-left: 0;
  margin-top: -1px;
}
.index-product .product-list li:nth-child(5) {
  margin-top: -1px;
}
.index-product .product-list li:nth-child(6) {
  margin-top: -1px;
}
.index-product .product-list li a {
  display: inline-block;
  width: 280px;
  height: 280px;
  padding: 10px;
  border: 1px solid #eee;
  position: relative;
}
.index-product .product-list li a img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.index-product .product-list li a span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  transition: all 0.3s;
  opacity: 0;
}
.index-product .product-list li a:hover span {
  opacity: 1;
}

/*首页-品牌新闻*/
.index-news {
  padding: 110px 0;
  background-color: #f4f4f4;
}
.index-news .news-hd {
  text-align: center;
  font-size: 36px;
  position: relative;
  height: 77px;
  margin-bottom: 50px;
}
.index-news .news-hd:before {
  position: absolute;
  content: " ";
  width: 50px;
  height: 5px;
  background-color: #e2cb83;
  left: 50%;
  bottom: 5px;
  margin-left: -25px;
  border-radius: 3px;
}
.index-news .news-list {
  display: flex;
  justify-content: space-between;
}
.index-news .news-item {
  width: 376px;
}
.index-news .news-item .thumb {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.index-news .news-item img {
  width: 376px;
  height: 241px;
  border-radius: 10px;
  transition: all 0.6s;
}
.index-news .news-item:hover img {
  transform: scale(1.05);
}
.index-news .news-item .title {
  margin: 15px 0;
  font-size: 18px;
}
.index-news .news-item .title a:hover {
  color: #e2cb83;
}
.index-news .news-item .desc {
  color: #999;
  line-height: 1.5;
  margin-bottom: 20px;
}
.index-news .news-item span {
  color: #999;
}
.index-news .news-more {
  margin-top: 50px;
}
.index-news .news-more a {
  width: 160px;
  height: 40px;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s;
  margin: 0 auto;
}
.index-news .news-more a:hover {
  background-color: #e2cb83;
}

/*底部*/
.footer .footer-main {
  padding: 70px 0 70px

}
.footer .footer-nav {
  display: flex;
  justify-content: space-between;
}
.footer .footer-nav-list {
  display: flex;
  flex: 1
}
.footer .footer-nav-item {
  padding: 0 7%;
  border-right: 1px solid #e6e6e6;
}
.footer .footer-nav-item:first-child {
  padding-left: 0;
}
.footer .footer-nav-item h3 {
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 16px;
}
.footer .footer-nav-item h3 a:hover {
  color: #e2cb83;
}
.footer .footer-nav-item .nav-column li {
  line-height: 2.4;
}
.footer .footer-nav-item .nav-column li a {
  color: #999;
}
.footer .footer-nav-item .nav-column li a:hover {
  color: #333;
}
.footer .copyright {
  height: 60px;
  background-color: #f6f6f6;
  color: #999;
}
.footer .copyright .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.footer .copyright p {
  margin: 0;
}
.footer .copyright a {
  color: #666;
}
.footer .copyright a:hover {
  color: #333;
}

/*内页banner*/
.inner-banner {
  position: relative;
}
.inner-banner img {
  max-width: 100%;
}
.inner-banner .inner-category {
  position: absolute;
  left: 17%;
  top: 50%;
  margin-top: -68px;
}
.inner-banner .inner-category .name {
  font-size: 40px;
}
.inner-banner .inner-category .sub-name {
  font-size: 20px;
  color: #999;
}

.sub-category {
  height: 80px;
  text-align: center;
  line-height: 80px;
}
.sub-category a.sub-cate-item {
  height: 100%;
  font-size: 16px;
  border-bottom: 5px solid #fff;
  display: inline-block;
  border-bottom: 5px solid #fff;
  color: #999;
  margin: 0 90px;
}
.sub-category a.sub-cate-item:hover, .sub-category a.active {
  color: #e2cb83;
  border-bottom: 5px solid #e2cb83;
  text-decoration: none;
}

.module {
  padding: 110px 0;
}
.module-gray {
  padding: 110px 0;
  background-color: #f6f6f6;
}
.module-name {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

/*关于我们-公司简介*/
.inner-profile-main {
  display: flex;
  justify-content: space-between;
}
.inner-profile-main .profile-text {
  width: 50%;
  padding: 2% 6% 0 0;
  font-size: 14px;
  line-height: 2.2;
}
.inner-profile-main .profile-image {
  width: 50%;
}
.inner-profile-main .profile-image img {
  max-width: 100%;
  border-radius: 15px;
}

/*关于我们-企业理念*/
.inner-concept .inner-concept-main {
  display: block;
  width: 100%;
  height: 639px;
  font-size: 0;
  text-align: center;
  border: 1px solid #e2e2e2;
  overflow: hidden;
}
.inner-concept .concept-item {
  display: inline-block;
  width: 249px;
  height: 100%;
  border-right: 1px solid #e2e2e2;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  cursor: pointer;
}
.inner-concept .concept-item.show-inline-block {
  width: 700px;
}
.inner-concept .concept-item.item_1 {
  background: url(../images/concept_1.jpg) no-repeat center top;
  background-size: auto 100%;
}
.inner-concept .concept-item.item_2 {
  background: url(../images/concept_2.jpg) no-repeat center top;
  background-size: auto 100%;
}
.inner-concept .concept-item.item_3 {
  background: url(../images/concept_3.jpg) no-repeat center top;
  background-size: auto 100%;
  border-right: none;
}
.inner-concept .concept-item .small {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, .9);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.inner-concept .concept-item .small em {
  font-size: 30px;
  display: inline-block;
  width: 36px;
  line-height: 1.2;
}
.inner-concept .concept-item .small span {
  font-size: 24px;
  color: #ccc;
  writing-mode: vertical-rl;
  margin-top: 15px;
}
.inner-concept .concept-item.show-inline-block .small {
  opacity: 0;
}
.inner-concept .concept-item .big {
  display: block;
  width: 100%;
  padding: 25px 6%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: left;
  background: rgba(51, 51, 51, .9);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: translate3d(0, 200%, 0);
  -moz-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
  color: #fff;
}
.inner-concept .concept-item.show-inline-block .big {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.inner-concept .concept-item .big .title {
  font-size: 30px;
}
.inner-concept .concept-item .big .sub-title {
  font-size: 24px;
  margin-left: 10px;
  vertical-align: bottom;
}
.inner-concept .concept-item .big .desc {
  font-size: 14px;
  line-height: 2;
}

/*关于我们-荣誉证书*/
.inner-honor {
  padding: 110px 0;
  height: 820px;
  background: url(../images/honor_bg.jpg) no-repeat center center;
  color: #fff;
}
.inner-honor-main {
  overflow: hidden;
  position: relative;
}
.inner-honor-main li {
  width: 272px;
  height: 398px;
  margin-right: 38px;
}
.inner-honor-main li img {
  width: 272px;
  height: 398px;
}
.inner-honor-main .prev, .inner-honor-main .next {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e2cb83 url(../images/arrow_white.png) no-repeat;
}
.inner-honor-main .prev {
  left: 20px;
  top: 50%;
  margin-top: -25px;
}
.inner-honor-main .next {
  right: 20px;
  top: 50%;
  margin-top: -25px;
  background-position: -47px 0;
}

/*关于我们-品质保障*/

.inner-quality-main {
  font-size: 16px;
  line-height: 2;
}
.inner-quality-main img {
  max-width: 100%;
}

.inner-comprehensive-power-main {
  line-height: 2;
  font-size: 16px;
}
.service-img img, .inner-quality-main img, .inner-comprehensive-power-main img {
  max-width: 100%;
}

/*联系我们*/
.inner-message-main {
  margin-top: 100px;
}
.inner-message-main .person-info .info-input {
  height: 58px;
  padding: 0 15px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.inner-message-main .person-info .item-input {
  width: 23%;
}
.inner-message-main .person-info .verification {
  border: 1px solid #ccc;
  margin-left: 10px;
  cursor: pointer;
  width: 120px
}
.inner-message-main .person-info .verify .info-input {
  flex: 1;
}
.inner-message-main .message-content {
  margin-top: 25px;
}
.inner-message-main .content-area {
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
}
.inner-message-main .btn-primary {
  width: 585px;
  height: 60px;
  color: #fff;
  text-align: center;
  background-color: #333;
  font-size: 18px;
  margin: 25px auto 0;
  display: block;
}

/*新闻*/
.inner-news .news-recommend {
  display: flex;
  justify-content: space-between;
}
.inner-news .news-recommend .pic-recommend {
  width: 600px;
  height: 384px;
  position: relative;
}
.inner-news .news-recommend .pic-recommend .prev, .inner-news .news-recommend .pic-recommend .next {
  position: absolute;
  top: 50%;
  margin-top: -50px;
  height: 100px;
  width: 40px;
  background-color: rgba(0,0,0,0.7);
  background-image: url(../images/arrow_white.png);
  background-repeat: no-repeat;
}
.inner-news .news-recommend .pic-recommend .prev {
  left: 0;
  background-position: -6px 50%;
}
.inner-news .news-recommend .pic-recommend .next {
  right: 0;
  background-position: -53px 50%;
}
.inner-news .news-recommend .pic-recommend li {
  width: 600px;
  height: 384px;
}
.inner-news .news-recommend .pic-recommend li a {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.inner-news .news-recommend .pic-recommend li p {
  position: absolute;
  height: 40px;
  line-height: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0 10px;
  text-align: center;
}
.inner-news .news-recommend .pic-recommend li img {
  transition: all 0.6s;
  border-radius: 15px;
  width: 600px;
  height: 384px;
}
.inner-news .news-recommend .pic-recommend li a:hover img {
  transform: scale(1.05);
}
.inner-news .news-recommend .list-recommend {
  margin-left: 60px;
  flex: 1;
  overflow: hidden;
}
.inner-news .news-recommend .list-recommend li {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background-color: #fff;
  border-radius: 15px;
}
.inner-news .news-recommend .list-recommend li+li {
  margin-top: 13px;
}
.inner-news .news-recommend .list-recommend li:hover, .inner-news .news-recommend .list-recommend li.on {
  background-color: #000;
  color: #fff;
}
.inner-news .news-recommend .list-recommend li:hover .title a, .inner-news .news-recommend .list-recommend li.on .title a {
  color: #e2cb83;
}
.inner-news .news-recommend .list-recommend li:hover .news-time:after, .inner-news .news-recommend .list-recommend li.on .news-time:after {
  background-color: #5c5c5c;
}
.inner-news .news-time {
  text-align: center;
  position: relative;
}

.inner-news .news-time .day {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
.inner-news .news-time .year {
  font-size: 16px;
}

.inner-news .news-recommend .list-recommend .news-time {
  padding-right: 12%;
}
.inner-news .news-recommend .list-recommend .news-time:after {
  position: absolute;
  content: " ";
  top: 0;
  right: 30%;
  width: 1px;
  height: 100%;
  background-color: #eee;
}
.inner-news .news-recommend .list-recommend li .news-text {
  flex: 1;
  overflow: hidden;
}
.inner-news .news-recommend .list-recommend .news-text .title {
  font-size: 18px;
  margin-bottom: 10px;
}
.inner-news .news-recommend .list-recommend .news-text .desc {
  color: #999;
}
.inner-news .news-list {
  margin-top: 50px;
}
.inner-news .news-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 217px;
  background-color: #fff;
  border-radius: 15px;
}
.inner-news .news-list li+li {
  margin-top: 30px;
}
.inner-news .news-list .news-pic {
  width: 336px;
  height: 217px;
}
.inner-news .news-list .news-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 0 0 15px;
}
.inner-news .news-list .news-text {
  flex: 1;
  overflow: hidden;
  padding-left: 5%;
}
.inner-news .news-list .news-time {
  padding: 0 5% 0 9%;
}
.inner-news .news-list .news-time:after {
  position: absolute;
  content: " ";
  top: 0;
  left: 25%;
  width: 1px;
  height: 100%;
  background-color: #eee;
}
.inner-news .news-list li:hover {
  background-color: #000;
  color: #fff;
}
.inner-news .news-list li:hover .title a {
  color: #e2cb83;
}
.inner-news .news-list li:hover .news-time:after {
  background-color: #5c5c5c;
}
.inner-news .news-list .news-text .title {
  font-size: 24px;
  margin-bottom: 8px;
}
.inner-news .news-list .news-text .desc {
  color: #999;
  line-height: 1.6;
}
.inner-news .news-list li a.more {
  margin-top: 20px;
  color: #999;
  display: inline-block;
}
.inner-news .news-list li a:hover.more {
  color: #e2cb83;
}
.inner-news .news-content .news-con-hd {
  text-align: center;
}
.inner-news .news-content .news-con-hd h1 {
  font-size: 36px;
}
.inner-news .news-content .news-con-hd p {
  color: #777;
  margin: 30px 0;
}
.inner-news .news-content .news-con-bd {
  font-size: 16px;
  line-height: 1.6;
}

/*产品*/
.product-category {
  padding: 20px;
  background-color: #fff;
}
.product-category li {
  position: relative;
  padding: 0 2%;
}
.product-category li+li:before {
  position: absolute;
  content: " ";
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 1px;
  height: 20px;
  background-color: #eee;
}
.product-category li .category-icon {
  width: 70px;
  height: 50px;
  display: inline-block;
  margin-bottom: 8px;
  -webkit-background-size: cover;
  background-size: cover;
}
.product-category li p {
  text-align: center;
}
.product-category li a:hover p, .product-category li a.active p {
  color: #e2cb83;
}
.product-category li a .scjhj {
  background: url(../images/scjhj.png) no-repeat center center;
}
.product-category li a:hover .scjhj, .product-category li a.active .scjhj {
  background: url(../images/scjhj_h.png) no-repeat center center;
}
.product-category li a .tsscgsj {
  background: url(../images/tsscgsj.png) no-repeat center center;
}
.product-category li a:hover .tsscgsj, .product-category li a.active .tsscgsj {
  background: url(../images/tsscgsj_h.png) no-repeat center center;
}
.product-category li a .spjhsc {
  background: url(../images/spjhsc.png) no-repeat center center;
}
.product-category li a:hover .spjhsc, .product-category li a.active .spjhsc {
  background: url(../images/spjhsc_h.png) no-repeat center center;
}
.product-category li a .tsjyj {
  background: url(../images/tsjyj.png) no-repeat center center;
}
.product-category li a:hover .tsjyj, .product-category li a.active .tsjyj {
  background: url(../images/tsjyj_h.png) no-repeat center center;
}

.product-category li a .scxwj {
  background: url(../images/scxwj.png) no-repeat center center;
}
.product-category li a:hover .scxwj, .product-category li a.active .scxwj {
  background: url(../images/scxwj_h.png) no-repeat center center;
}
.product-category li a .dtl {
  background: url(../images/dtl.png) no-repeat center center;
}
.product-category li a:hover .dtl, .product-category li a.active .dtl {
  background: url(../images/dtl_h.png) no-repeat center center;
}
.product-category li a .bxjhq {
  background: url(../images/bxjhq.png) no-repeat center center;
}
.product-category li a:hover .bxjhq, .product-category li a.active .bxjhq {
  background: url(../images/bxjhq_h.png) no-repeat center center;
}
.product-category li a .mzbsy {
  background: url(../images/mzbsy.png) no-repeat center center;
}
.product-category li a:hover .mzbsy, .product-category li a.active .mzbsy {
  background: url(../images/mzbsy_h.png) no-repeat center center;
}

.product-category li a .bxsxdj {
  background: url(../images/bxsxdj.png) no-repeat center center;
}
.product-category li a:hover .bxsxdj, .product-category li a.active .bxsxdj {
  background: url(../images/bxsxdj_h.png) no-repeat center center;
}
.product-category li a .pwxdq {
  background: url(../images/pwxdq.png) no-repeat center center;
}
.product-category li a:hover .pwxdq, .product-category li a.active .pwxdq {
  background: url(../images/pwxdq_h.png) no-repeat center center;
}

.inner-products .product-cate-name {
  text-align: center;
  font-size: 36px;
  position: relative;
  height: 77px;
  margin-bottom: 40px;
}
.inner-products .product-cate-name:before {
  position: absolute;
  content: " ";
  width: 50px;
  height: 5px;
  background-color: #e2cb83;
  left: 50%;
  bottom: 5px;
  margin-left: -25px;
  border-radius: 3px;
}
.inner-products .product-list li {
  background-color: #fff;
  margin: 0 26px 26px 0;
  width: 273px;
  height: 318px;
}
.inner-products .product-list li .img {
  width: 273px;
  height: 274px;
  padding: 10px;
  display: inline-block;
}
.inner-products .product-list li p {
  height: 44px;
  line-height: 44px;
  padding: 0 10px;
  text-align: center;
  position: relative;
}
.inner-products .product-list li p i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  transition: all 0.6s;
  background-color: #000;
  z-index: 0;
}
.inner-products .product-list li p span {
  position: relative;
  z-index: 1;
  transition: all 0.6s;
}
.inner-products .product-list li:hover p i {
  height: 60px;
}
.inner-products .product-list li:hover p span {
  color: #e2cb83;
}
.inner-products .product-list li .img img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/*产品详情*/
.product-detail {
  border-top: 1px solid #eee;
}
.product-detail .product-images {
  margin: 100px auto 40px;
  overflow: hidden;
  position: relative;
}
.product-detail .product-images:before {
  position: absolute;
  z-index: 1;
  content: " ";
  left: 0;
  top: 0;
  width: 347px;
  height: 347px;
  background-color: rgba(255, 255, 255, 0.5);
}
.product-detail .product-images:after {
  position: absolute;
  z-index: 1;
  content: " ";
  right: 0;
  top: 0;
  width: 347px;
  height: 347px;
  background-color: rgba(255, 255, 255, 0.5);
}
.product-detail .product-images li {
  width: 345px;
  height: 345px;
  border: 1px solid #efefef;
  margin-right: 79px;
  box-sizing: content-box;
}
.product-detail .product-images li img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.product-detail .product-images .prev, .product-detail .product-images .next {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000 url(../images/arrow_white.png) no-repeat;
}
.product-detail .product-images a:hover.prev, .product-detail .product-images a:hover.next {
  background-color: #e2cb83;
}
.product-detail .product-images .prev {
  left: 20px;
  top: 50%;
  margin-top: -25px;
}
.product-detail .product-images .next {
  right: 20px;
  top: 50%;
  margin-top: -25px;
  background-position: -47px 0;
}
.detail-main {
  width: 1200px;
  margin: 0 auto;
}
.product-base .product-name {
  text-align: center;
  font-size: 36px;
}
.product-base .base-info {
  margin-top: 30px;
}
.product-base .base-info .info {
  width: 60%;
  font-size: 15px;
  line-height: 2.1;
}
.product-base .base-info .btn {
  width: 33%;
}
.product-base .base-info .btn a {
  height: 50px;
  width: 45%;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 15px;
}
.product-base .base-info .btn a:hover {
  background-color: #333;
  color: #e2cb83;
}
.product-detail-content {
  background-color: #f6f6f6;
  padding: 100px 0;
  margin-top: 50px;
  font-size: 15px;
  line-height: 2;
}
.product-detail-content .detail-content .hd ul {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 30px;
}
.product-detail-content .detail-content .hd li {
  font-size: 18px;
  margin-right: 40px;
  line-height: 2.4;
  cursor: pointer;
}
.product-detail-content .detail-content .hd li.on {
  border-bottom: 2px solid #e2cb83;
  color: #e2cb83;
}
.product-detail-content img {
  max-width: 1200px;
}

.inner-contact-main .contact {
  width: 47%;
}
.inner-contact-main .map {
  width: 50%;
  overflow: hidden;
}



.pages{
  text-align: center;
  margin-top: 50px;
}

.pages a{
  border:1px solid #fff;
  padding: 5px 12px;
  margin: 0 6px;
  color: #666;
  border-radius: 6px;
  background-color: #fff;
}

.pages span{
  padding: 5px 12px;
  background:#333;
  border:1px solid #333;
  color:#fff;
  margin: 0 6px;
  border-radius: 6px;
}

.pages a:hover{
  background:#333;
  border:1px solid #333;
  color:#fff;
}

.phone {
  display: none !important;
}