/* 
* @Author: anchen
* @Date:   2021-10-13 08:57:44
* @Last Modified by:   anchen
* @Last Modified time: 2021-10-13 10:35:27
*/
/*招商加盟banner图*/
.twobanner {
    position:relative;
    overflow:hidden;
}
.twobanner:after {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.1);
    z-index:1;
    transition:all 0.3s;
}
.twobanner-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    color: #fff;
    font-weight: 800;
    max-width: 1570px;
    width: 96%;
    text-align: center;
}
.twobanner-item h1 {
    font-size: 42px;
    color: #fff;
    line-height: 2;
    font-family: 'Montserrat';
    transition: all 2s;
}
.twobanner-item h2 {
    font-size: 48px;
    color: #fff;
    font-family: 'ChaoPai';
    font-weight: bold;
    margin: 0% 0 1% 0;
    transition: all 2s;
}

.go-more {
    position:absolute;
    bottom:0;
    width:100%;
    height:100px;
    background:url(../images/xia.svg) no-repeat center center/30px;
    animation: go-more 0.3s linear infinite;
}
@keyframes go-more {
  0% {
      opacity:0.5;
      -webkit-transform: translate(0px,5px);
  }
  50% {
      opacity:1;
      -webkit-transform: translate(0px,10px);
  } 
  100% {
      opacity:1;
      -webkit-transform: translate(0px,5px);
  }
   
}
/*自适应样式*/
@media screen and (max-width:1024px) {
.twobanner {
    position:relative;
    width:100%;
    overflow:hidden;
}
.twobanner:after {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.1);
    z-index:1;
    transition:all 0.3s;
}
.twobanner-item {
    text-align:center;
}
.twobanner-item h1 {
    font-size:24px;
    font-weight:bold;
    padding:2% 0;
}
.twobanner-item h2 {
    font-size:20px;
    letter-spacing:0px;
}
}
/*自适应样式 end*/


.tit {}
.tit h3 {
    font-size:32px;
    color: #339850;
    font-weight:bold;
    font-family: 'Montserrat';
    padding:4% 0 0% 0;
}
@media screen and (max-width:1024px) {
.tit {
    padding:4% 0 2% 0;
}
.tit h3 {
    font-size:24px;
    padding:4% 0 0% 0;
}
}


/*产品列表*/
.product-list {
    padding:4% 0 0 0;
}
.product-list .item-box {}
.product-list .item-box ul {
    overflow:hidden;
}
.product-list .item-box ul li {
    float: left;
    width:18%;
    margin:1%;
}
.product-list .item-box ul li .photo {
    *border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}
.product-list .item-box ul li .photo img {
    transition: all 0.6s ease;
    max-height: 500px;
    border: 1px solid #e3e3e3;
}
.product-list .item-box ul li:hover .photo img {
    transform: scale(1.2);
}


.product-list .item-box ul li .photo:before {
	content:"";
	position:absolute;
	width:80px;
	height:600px;
	top:0;
	left:-250px;
	overflow:hidden;
	background:-moz-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	background:-webkit-gradient(linear,left top,righttop,color-stop(0%,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,.2)),color-stop(100%,rgba(255,255,255,0)));
	background:-webkit-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	background:-o-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	-webkit-transform:skewX(-25deg);
	-moz-transform:skewX(-25deg);
	-o-transform:skewX(-25deg);
	z-index: 1;
}
.product-list .item-box ul li:hover .photo:before {
	left:500px;
	transition:left 1s ease 0s;
}



.product-list .item-box ul li .word {
    padding: 10px 15px;
    transition:all 0.5s;
}
.product-list .item-box ul li:hover .word {
    transform: translate(0px,-10px);
}
.product-list .item-box ul li .word h3 {
    color: #999999;
    font-size: 14px;
    margin-top: 20px;
    transition: all .5s;
    text-align: center;
}
.product-list .item-box ul li .word h3 span {
    font-size: 18px;
    color: #333333;
    margin-right: 20px;
    transition: all .5s;
}
.product-list .item-box ul li:hover .word h3 {
    color: #339850;
}
.product-list .item-box ul li:hover .word h3 span {
    color: #339850;
}
@media screen and (max-width:1024px){
.product-list {
    padding:6% 0 3% 0;
}
.product-list .item-box {}
.product-list .item-box ul {
}
.product-list .item-box ul li {
    width:48%;
    margin:1% 1% 4% 1%;
}
.product-list .item-box ul li .photo {
    border: 1px solid #f0f0f0;
    overflow: hidden;
}
.product-list .item-box ul li .photo img {
    transition: all 0.6s ease;
}
.product-list .item-box ul li:hover .photo img {
    transform: scale(1.2);
}

.product-list .item-box ul li .word {
    padding: 10px 15px;
}
.product-list .item-box ul li .word h3 {
    font-size: 14px;
    margin-top: 10px;
    transition: all .5s;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.product-list .item-box ul li .word h3 span {
    display: block;
    margin-right: 0px;
    margin-bottom: 10px;
}
.product-list .item-box ul li:hover .word h3 {
    color: #339850;
}
.product-list .item-box ul li:hover .word h3 span {
    color: #339850;
}
}


/*产品详情页-板块标题*/
.tit-top {
    width: 100%;
    padding:5% 0 1% 0;
    position: relative;
}
.tit-top .cn {
    font-size: 32px;
    line-height: 44px;
    color: #339850;
    font-family: 'ChaoPai';
    position: relative;
    z-index: 5;
}
.tit-top .en {
    font-size: 40px;
    padding: 1% 0 2% 0;
    opacity: 0.05;
    color: #000;
    font-family: 'Montserrat';
    text-transform: uppercase;
}
@media screen and (max-width:1024px) {
.tit-top {
    padding:5% 0 1% 0;
}
.tit-top .cn {
    font-size: 18px;
}
.tit-top .en {
    font-size: 16px;
    padding: 0.1% 0 0.2% 0;
} 
}

/*产品详情页-产品参数*/
.product-box {
    overflow: hidden;
    padding: 6% 0 2% 0;
}
.product-box .photo {
    width:45%;
    *max-height: 600px;
    text-align: center;
}
.product-box .photo img {
    max-width:100%;
    max-height: 600px;
    border: 1px solid #e3e3e3;
}

.product-box .photo .page{
    position:absolute;
    top:40%;
    width:100%;
    z-index: 9;
}
.product-box .photo .page span { 
    display:block;
    width:40px;
    height:40px;
    background:#000;
    z-index:99999;
}
.product-box .photo .page span.prev {
    float:left;
    background:rgba(0, 0, 0, 0.5) url(../images/next.svg) no-repeat center center/20px;
    transform: rotate(-180deg);
}
.product-box .photo .page span.next {
    float:right;
    background:rgba(0, 0, 0, 0.5) url(../images/next.svg) no-repeat center center/20px;
}
.product-box .photo .page span:hover {
    background:rgba(0, 0, 0, 0.8) url(../images/next.svg) no-repeat center center/20px;
}

.parameter .item-bottom  ul {}
.parameter .item-bottom  ul li {
    width: 50%;
    float: left;
    font-size: 16px;
    line-height: 55px;
    color: #333;
    margin-bottom:0.5%;
    padding-left:30px;
    background: url(../images/menu-icon.svg) no-repeat left center/16px;
}
.parameter .item-bottom ul li span {
    font-weight: bold;
}
.parameter .item-bottom ul li .p1 {
    width:25%;
    color: #797979;
}
.parameter .item-bottom ul li .p2 {
    width:60%;
    color: #0a0a0a;  
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cp-thumbs {
    margin:4% 0 0 0;
}
.cp-thumbs ul {}
.cp-thumbs ul li {
    padding: 3px;
    border:1px solid #eee;
}
.cp-thumbs ul li.swiper-slide-thumb-active {
     border:1px solid #339850;
}

/*产品详情页-产品参数-FL*/
.product-box .word {
    width:45%;
}
.product-box .word h3 {
    font-size: 24px;
    line-height: 44px;
    color: #3a3a3a;
    font-family: 'ChaoPai';
}

.product-box .word .word-tag {
    /*margin-top: 5%;*/
    padding:6% 8%;
    border: 1px solid #eeeeee;
}
.product-box .word .word-tag h4 {
    font-size: 32px;
    color: #339850;
    font-weight: bold;
    margin: 0% 0 5% 0;

}
.product-box .word .word-tag ul {
    padding-top: 2%;
    border-top: 1px solid #eeeeee;
}
.product-box .word .word-tag ul li {
    width:100%;
    padding:1.5% 0;
    font-size: 16px;
    color:#3a3a3a;
    padding-left: 20px;
    position: relative;
}
.product-box .word .word-tag ul li:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 40%;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #339850;
}
@media screen and (max-width:1024px) {
.product-box .photo {
    width:100%;
    *max-height: 300px;
    margin-top:5%;
}
.product-box .photo img {
    max-height: 300px;
}
.product-box .word {
    width:100%;
    margin-top: 5%;
}
.product-box .word h3 {
    font-size: 20px;
    line-height: 44px;
}

.product-box .word .word-tag {
    margin-top: 5%;
    padding:6% 8%;
    border: 1px solid #eeeeee;
}
.product-box .word .word-tag h4 {
    font-size: 20px;
    color: #339850;
    font-weight: bold;
    margin: 0% 0 5% 0;

}
.product-box .word .word-tag ul {
    padding-top: 2%;
    border-top: 1px solid #eeeeee;
}
.product-box .word .word-tag ul li {
    width:100%;
    margin:10px 0;
    padding-left: 20px;
}
}
/*产品详情页-产品参数-按钮*/
.product-box .word .product-tell {
    margin-top:2%;
}
.product-box .word .product-tell a {
    display: block;
    float: left;
    width: 150px;
    font-size: 14px;
    text-align: center;
    margin:5% 1%;
    padding: 10px 10px 10px 30px;
    border: 1px solid #eeeeee;
    border-radius: 25px;
    transition: padding 0.5s;
}
.product-box .word .product-tell a:hover {
    color:#d22633;
    padding: 10px 10px 10px 35px;
    border: 1px solid #d22633;
}
.product-box .word .product-tell a.p1 {
    background: url(../images/pro-zx.svg) no-repeat 15% center;
    background-size: 25px;
}
.product-box .word .product-tell a.p2 {
    background: url(../images/pro-gg.svg) no-repeat 15% center;
    background-size: 25px;
}
.product-box .word .product-tell a.p3 {
    background: url(../images/pro-vr.svg) no-repeat 15% center;
    background-size: 25px;
}
@media screen and (max-width:1024px) {
.product-box .word .product-tell {
    margin-top:2%;
}
.product-box .word .product-tell a {
    width: 31.333%;
    font-size: 12px;
    margin:5% 1%;
    padding: 5px;
    border-radius: 0px;

}
.product-box .word .product-tell a.p1 {
    background-size: 15px;
}
.product-box .word .product-tell a.p2 {
    background-size: 15px;
}
.product-box .word .product-tell a.p3 {
    background-size: 15px;
}
}

/*产品详情页-效果图*/
.effect {}
.effect .effect-box  {
    max-width:100%;
}
.effect .effect-box ul {
}

.effect .effect-box ul li {
    float:left;
    width:48%;
    margin:1%;
}
.effect .effect-box ul li .photo {
    display: block;
    position: relative;
    top:0;
    left:0;
    width: 100%;
    padding-top:70%;
}
.effect .effect-box ul li .photo img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1024px) {
.effect .effect-box ul li {
    float:left;
    width:98%;
    margin:1%;
}
}
/*产品详情页-一石多面拼接展示*/
.splicingphoto {}
.splicingphoto-box {}


/*产品详情页-一石多面*/
.manyphoto .item-bottom {
    border-radius: 10px;
}

.manyphoto .photo {
    margin-top: 5%;
    border: solid 1px #d2d2d2;
    
}
.manyphoto-box {
    max-width: 800px;
}
.manyphoto-box img {
    max-width: 100%;
}
}
.manyphoto .manyphoto-box ul {
    overflow:hidden;
}
.manyphoto .manyphoto-box ul li {
    float: left;
    width: 16.66%;
    padding:1px;
    position: relative;
}
.manyphoto .manyphoto-box ul li .pho
.manyphoto .manyphoto-box ul li a {
    display:block;
    width:100%;
    height:100%;
    position: relative;
}
.manyphoto .manyphoto-box ul li a:after {
    opacity: 0;
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2) url(../images/seemore.svg) no-repeat center -500px/40px;
}
.manyphoto .manyphoto-box ul li a:hover:after {
    opacity:1;
    background:rgba(0, 0, 0, 0.0) url(../images/seemore.svg) no-repeat center center/40px;
}
.manyphoto .manyphoto-box ul li img {
}
.manyphoto .manyphoto-box ul li:nth-of-type(5n){
    margin-right: 0;
}
.manyphoto .manyphoto-box ul li p {
    font-size: 20px;
    color: #5e5e5e;
    margin: 15px 0;
}

@media screen and (max-width:1024px) {
.manyphoto .manyphoto-box ul li {
    width: 50%;
}
}

/*产品详情页-VR*/
.VR .vr-box {
    height:600px;
    transition: all 1s;
}
.VR .closevr {
    display:none;
}
/*产品详情页-VR-点击全屏查看*/
.VR .vr-box-fix {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:999999;
    height:100%;
    
}
.VR .vr-box-fix .closevr {
    display:block;
    position:fixed;
    top: 5%;
    right: 10%;
    width: 48px;
    height: 48px;
    font-size: 34px;
    color: rgb(255, 255, 255);
    line-height: 48px;
    text-align: center;
    font-family: 宋体;
    z-index:999999999999;
    cursor: pointer;
    background:#d22633;
    transition: all 0.3s ease 0s;
}
@media screen and (max-width:1024px) {
.VR .vr-box {
    height:200px;
    transition: all 1s;
}
.VR .vr-box-fix {
    width: 100%;
    height: 100%;
}
}


/*灵感溯源*/
.inspiration {
    margin:2% 0 0 0;
    padding-top: 20%;
}
.inline-title {
    display: inline-block;
}
.inline-title h2 {
    font-size: 35px;
    color: #333;
    font-family: 'ChaoPai';
    padding: 18px 16px;
    background-color: #fff;
}
.inline-title h2 span {
    font-family: Arial;
    text-transform: uppercase;
}

.inspiration-word {
    padding:2% 0 5% 0;
    font-size: 16px;
    color:#3a3a3a;
}
@media screen and (max-width:1024px) {
    .inspiration {
         margin:2% 0 0 0;
         padding-top: 20%;
     }
    .inline-title {
        display: inline-block;
    }
    .inline-title h2 {
        font-size: 18px;

    }
    .inline-title h2 span {

    }

    .inspiration-word {

    }

    .title {
        margin: 0 auto 10px;
    }

    .title li a{
        margin: 0 auto;
    }
}

@media screen and (min-width:1024px) {
    /* 添加 */
    .title {
        display: table;
        margin: 0 auto;
    }
    .title li{
        float: none!important;
        width: auto!important;
        display: table-cell;
        padding: 0 10px 40px 10px;
    }
    .title li a{
        margin: 0 auto;
        font-size: 18px;
        height: 46px;
        line-height: 46px;
    }
}

.title li a.active{
    background-color: #339850;
    border: 1px solid #339850;
    color: #fff;
}