﻿html {
    --color: #8C5941;
    --color-active:#91B821;
    --font-family: 'Arial';
}

a:hover {
    color: var(--color);
}

.w1520 {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}

.w1500 {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.w1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.w1250 {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.w1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.w1000 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.flex-x {
    display: flex;
    flex-direction: row;
}

.flex-y {
    display: flex;
    flex-direction: column;
}

.flex-align {
    justify-content: space-between;
    align-items: center;
}

button {
    cursor: pointer;
}

/* p,
a {
    font-size: initial;
} */

.menu {
    display: none;
}

.menu_down {
    display: none;
}


body {
    background: #fff;
}


header {
    width: 100%;
    height: 110px;
    font-size: 16px;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--color);
    color: #fff;
}

header>.w1400 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
}

header .logo {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    text-align: center;
    background: #91b821;
    height: 160px;
}

header .logo a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px 40px 30px;
}

header .logo img {
   height: 120px;
   object-fit: contain;
}


header .w1400 .nav {
    /* width: 60%; */
    flex: 1;
    height: 100%;
    padding: 0 5%;
}
header .w1400 .nav li{
    
}
header .w1400 .nav a{
    color: #fff;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 110px;
    padding: 0 30px;
    font-size: 18px;
    white-space: nowrap;
}

.header-right{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-right .btn span{
    font-size: 18px;
    margin: 0 10px;
}
.header-right .btn+.btn{
    margin-left: 40px;
}
.header-right .btn{
    align-items: center;
    cursor: pointer;
}
.header-right .language-btn{
    position: relative;
}
.header-right .language-btn .icon{
    font-size: 18px;
}
.header-right .language-btn::after{
    content: '';
    display: inline-block;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #fff;
}
.header-right .language-list{
    display: none;
    position: absolute;
    top: 120%;
    left:0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.header-right .language-list li a{
    display: inline-block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    text-align: right;
    color: var(--color);
}
.header-right .search-btn span{
    margin: 0 6px;
}

.header-right .search-btn .icon{
    font-size: 19px;
}

.header2 .logo{
    background: none;
    height: 100%;
}
.header2 .logo a{
    padding: 10px 0;
}

.header2 .logo img{
    height: 100%;
}
.header2 .w1400 .nav{
    padding: 0 5% 0 8%;
}



/* 搜索弹窗 */
.search {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .8);
    /* display: flex;
    align-items: center;
    justify-content: center; */
    display: none;
}

.search-box {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
}

.search-box h2 {
    font-size: 36px;
    line-height: 110px;
    font-weight: bold;
    color: #fff;
}

.search-box .input-box {
    position: relative;
}

.search-box input {
    width: 100%;
    height: 70px;
    border-radius: 10px;
    background: #FDFDFA;
    padding: 0 70px 0 25px;
    font-size: 16px;
}

.search-box .input-box .icon {
    font-size: 30px;
    color: #fff;
    background: #0B52A8;
    padding: 10px 15px;
    border-radius: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.search-box h4 {
    font-size: 18px;
    line-height: 1.2;
    color: #ccc;
    margin: 25px 10px 15px;
}

.search-box ul {
    color: #ccc;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 10px;
}

.search-box ul li {
    line-height: 2;
    font-size: 16px;
    margin-right: 20px;
}

.search .search-close {
    position: absolute;
    top: 20%;
    right: 20%;
    cursor: pointer;
}

.search .search-close .icon {
    font-size: 30px;
    color: #fff;
}


.more{
    display: inline-block;
    padding: 0 35px ;
    border-radius: 10px;
    border: 1px solid #DAC9C4;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    color: #AA928D;
}
.index-page{
    padding: 80px 0 100px;
    background: url('../images/index_bg.jpg') no-repeat top center;
    background-size: 100% auto;
}
.index-page1{
    justify-content: space-between;
}
.index-page1 .left{
    width: 46%;
}
.index-page1 .left h2{
    font-size: 72px;
    line-height: 1;
    font-weight: bold;
   color: var(--color);
   margin-bottom: 30px;
}
.index-page1 .left h3{
    width: 360px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: lighter;
    color: rgba(94,23,0,0.6);
    margin: 30px 0;
    font-family: "Poppins", sans-serif;
}
.index-page1 .left .editor{
    margin: 30px 0 50px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}
.index-page1 .left .editor p{
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}
.index-page1 .left .more{
    margin-bottom: 30px;
}
.index-page1 .right{
    width: 46%;
    
}
.index-page1 .right img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.index-page2{
    margin-top: 150px;
}
.common-top {
    margin-bottom: 40px;
}
.common-top  .title{
    font-size: 48px;
    font-weight: bold;
    color: var(--color);
}
.index-page2 .imgs{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}
.index-page2 .imgs img{
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}
.index-page2 .imgs a:nth-child(6n+1){
   width: 58%;
}
.index-page2 .imgs a:nth-child(6n+2){
   width: calc((42% - 40px)/2);
    margin: 0 20px;
 }
 .index-page2 .imgs a:nth-child(6n+3){
    width: calc((42% - 40px)/2);
 }
 .index-page2 .imgs a:nth-child(6n+4){
    width: calc((42% - 40px)/2);
 }
 .index-page2 .imgs a:nth-child(6n+5){
    width: calc((42% - 40px)/2);
    margin: 0 20px;
 }
 .index-page2 .imgs a:nth-child(6n+6){
    width: 58%;
 }

 .index-page3{
    margin-top: 150px;
    flex-direction: row-reverse;
 }
 .index-page3 .left h2{
    font-size: 60px;
 }
 .index-page4{
    margin-top: 150px;
    
 }
 .index-page4 .swiper{
    width: 100%;
    padding-bottom: 60px;
    --swiper-theme-color: var(--color-active);
 }
 .index-page4 .swiper img{
    border-radius: 10px;
 }
 .index-page4 .swiper .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
 }
 .index-page5{
    margin-top: 150px;
    width: 100%;
    background: var(--color-active);
    padding: 80px 40px;
    color: #fff;
    border-radius: 10px;
 }
 .index-page5 h2{
    font-size: 48px;
    margin-bottom: 80px;
    font-weight: bold;
    text-align: center;
 }
 .index-page5 ul {
    gap: 60px;
 }
 .index-page5 ul li{
    flex: 1;
    display: flex;
    flex-direction: row;
 }
 .index-page5 ul li .icon{
    font-size: 66px;
    margin-right: 30px;
 }
 .index-page5 ul li .editor{
    font-size: 14px;
    line-height: 1.6;
 }
 .index-page5 ul li .editor h4{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
 }
 .index-page5 ul li .editor p{
    font-size: 14px;
    line-height: 1.6;
 }
 .index-page6{
    margin-top: 150px;
 }
 .index-page6 ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
 }
 .index-page6 ul li img{
    border-radius: 10px;
    width: 100%;
    object-fit: contain;
 }
 .index-page6 ul li .time{
    font-size: 14px;
    color: #666;
    margin: 15px 0;
 }
 .index-page6 ul li p{
    font-size: 20px;
    font-weight: bold;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
 }

 .product-page{
    margin-top: 110px;
    background: url('../images/page_bg.png') no-repeat bottom center;
    background-size: 100% auto;
 }
 .product-page .title{
    padding:100px 0 80px;
    text-align: center;
    color: var(--color);
    font-size:48px ;
    font-weight: bold;
 }

 .product-page .nav{
    border-bottom: 1px solid #ccc;
    gap: 30px;
    justify-content: center;
    
 }
 .product-page .nav li{
    padding-bottom: 20px;
    margin-bottom: -1px;
 }

.product-page .nav li a{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.product-page .nav li a img{
    height: 100px;
    object-fit: contain;
    margin-right: 15px;
}
.product-page .nav li a p{
    width: 180px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}
.product-page .nav li.active{
    border-bottom: 2px solid var(--color-active);
 }
 .product-page .nav li.active p{
    color: var(--color-active);
 }
 .product-page .list{
    padding: 50px 0 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

 }
 .product-page .list li{
    
    overflow: hidden;
    position: relative;
 }
  .product-page .list li img{
	  border-radius: 10px;
  }
 .product-page .list li .info{
 /*    position: absolute;
    top: 0;
    left: 0;
	 width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 15% 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    */
    text-align: center;
    transition: all 0.2s ease;
 }
 .product-page .list li .info p{
    font-size: 18px;
	line-height:2;
	margin-top:10px;
    font-weight: bold;
	    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
 }




.common-title{
    width: 100%;
    height: 70px;
    line-height: 70px;
    background: #F7F7F7;
    font-size: 22px;
    font-weight: bold;
    color: var(--color);
    padding: 0 30px;
    margin-bottom: 35px;
    border-radius: 10px;
}
 .product-detail-page{
    margin-top: 110px;
    background: url('../images/page_bg.png') no-repeat bottom center;
    background-size: 100% auto;
 }
 .product-detail-page .nav{
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
 }
 .product-detail-page .nav li a{
    font-family: 'Poppins';
    font-size: 14px;
    color: #666;
 }
 .product-detail-page .nav li i{
    font-size: 14px;
    color: #666;
    margin: 0 6px;
 }
 .product-detail-page .nav li:last-child i{
    display: none;
 }
 .product-detail-page .nav li a:hover{
    color: var(--color);
 }
 .product-detail-page1 {
    padding: 40px 0 30px ;
    justify-content: space-between;
 }
 .product-detail-page1 .left{
    width: 45%;
 }
 .product-detail-page1 .left .imgs{
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.product-detail-page1 .left .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
}
.product-detail-page1 .left .product-detail-swiper2 {
    width: 100%;
    margin-top: 20px;
	    position: relative;
    padding: 0 30px;
}
.product-detail-page1 .left .product-detail-swiper2 .swiper-slide{
    cursor: pointer;
}
.product-detail-page1 .left .product-detail-swiper {
    width: 100%;
    overflow: hidden;
}
.product-detail-page1 .left .product-detail-swiper2 .swiper-btn{
    width: 25px;
    height: 100%;
    position: absolute;
    top: 0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    background: #eee;
}

.product-detail-page1 .left .product-detail-swiper2 .swiper-button-next:after, 
.product-detail-page1 .left .product-detail-swiper2 .swiper-button-prev:after{
    font-size: 18px;
    font-weight: bold;
    color: var(--color);
}
.product-detail-page1 .left .product-detail-swiper2 .swiper-btn.swiper-button-prev{
    left: 0;
}
.product-detail-page1 .left .product-detail-swiper2 .swiper-btn.swiper-button-next{
    right: 0;
}


.product-detail-page1 .right{
    width: 50%;
}
.product-detail-page1 .right .top{
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
}
.product-detail-page1 .right .top h3{
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: var(--color);
}
.product-detail-page1 .right .top h4{
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-active);
}
.product-detail-page1 .right .editor{
    padding: 40px 0;
    font-size: 14px;
    line-height: 2;
    color: #666;
}
.product-detail-page1 .right .editor p{
    font-size: 14px;
    line-height: 2;
    color: #666;
}
.product-detail-page2{
    padding-bottom: 40px;
}
.product-detail-page2 .editor{
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    padding: 0 20px;
}
.product-detail-page2 .editor p{
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}
.product-detail-page2 .video{
	width:100%;
	text-align:center;
	margin-top:50px;
}
.product-detail-page2 iframe{
	width:100%;
	max-width:600px;
	height:450px;
	margin: 0 auto;
	
}
.product-detail-page3{
    padding-bottom: 80px;
}
.product-detail-page3 ul{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
.product-detail-page3 ul li{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.product-detail-page3 ul li .info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 15% 20px;
    text-align: center;
    transition: all 0.2s ease;
    opacity: 0;
}
.product-detail-page3 ul li:hover .info{
    opacity: 1;
}

.about-page{
    margin-top: 110px;
    padding: 30px 0 100px;
    background: url('../images/page_bg.png') no-repeat bottom center;
    background-size: 100% auto;
}
.about-title{
    font-size: 30px;
    font-weight: bold;
    color: var(--color);
    padding: 40px 0;
}


.about-page1{
    padding: 60px 30px;
    background: url('../images/about_page1_bg.jpg') no-repeat center center;
    background-size: 100% auto;
    border-radius: 20px;
    align-items: flex-end;
}
.about-page1 h3{
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: var(--color);
}
.about-page1 h5{
    color: rgba(94,23,0);
    opacity: 0.6;
    font-size: 18px;
    margin-bottom: 5px;
    margin-left: 20px;
}
.about-page2{
    padding-top: 40px;
}
.about-page2 .editor{
    padding: 0 20px;

}
.about-page2 .editor ul{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.about-page2 .editor ul li{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.about-page2 .editor ul li p{
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}
.about-page2 .editor ul li b{
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.about-page2 .editor ul li img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}
.about-page2 .editor ul li .imgs{
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.about-page2 .editor ul li:last-child,.about-page2 .editor ul li:last-child p,.about-page2 .editor ul li:last-child b{
    font-size: 16px;
    line-height: 36px;
}

.about-page3{
    margin-top: 80px;
}
.about-page3 .swiper{
    padding: 30px 0;
}
.about-page3 .swiper img{
    width: 100%;
    border: 5px solid #333;
    object-fit: contain;
}
.about-page4{
    margin-top: 100px;
}
.news-page2 {
    padding: 30px 0;
}
.news-page2 li{
    padding: 50px 0;
    border-bottom: 1px solid #ccc;
}
.news-page2 li a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.news-page2 li .left{
    width: 30%;
}
.news-page2 li .left img{
    border-radius: 10px;
}
.news-page2 li .right{
    width: 65%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-page2 li .right h3{
    font-size: 24px;
    font-weight: bold;
    color: var(--color);
}
.news-page2 li .right .editor{
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin: 30px 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-page2 li .right .editor p{
    font-size: 16px;
    line-height: 2;
    color: #666;
}
.news-page2 li .right .bottom .time{
    font-size: 16px;
    color: #666;
}
.news-page2 li .right .bottom  .icon{
    font-size: 30px;
     color: #666;
     margin-right: 20px;
}

.news-detail-page .info{
  padding: 60px 0;
}
.news-detail-page .info .time{
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}
.news-detail-page .info .title{
    font-size: 34px;
    font-weight: bold;
    color: var(--color);
}
.news-detail-page .info .editor{
    padding: 40px 0;
    font-size: 18px;
    line-height: 2;
    color: #666;
}
.news-detail-page .info .editor p{
    font-size: 18px;
    line-height: 2;
    color: #666;
}

.contact-page2{
    padding: 40px 0;
}
.contact-page2 h4{
    max-width: 580px;
    font-size: 18px;
    color: var(--color);
    margin-bottom: 80px;
    line-height: 1.4;
}
.contact-page2 .info{
    justify-content: space-between;
}
.contact-page2 .info .left{
    width: 50%;
}
.contact-page2 .info .left .form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: space-between;
}
.contact-page2 .info .left .form .item{
    width: 46%;
    display: flex;
    flex-direction: column;
}
.contact-page2 .info .left .form .item.ww100{
    width: 100%;
}
.contact-page2 .info .left .form .item p{
    font-size: 16px;
    color: var(--color);
    line-height: 1.6;
}
.contact-page2 .info .left .form .item input{
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    border-bottom: 2px solid var(--color);
}
.contact-page2 .info .left .form .item input::placeholder{
    font-size: 14px;
    color: #999;
}
.contact-page2 .info .left .form .item textarea{
    font-size: 16px;
    line-height: 2;
    border-bottom: 2px solid var(--color);
    margin-top: 10px;
}
.contact-page2 .info .left .form .item textarea::placeholder{
    font-size: 14px;
    color: #999;
}
.contact-page2 .info .left .form button{
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    color: var(--color);
    border: 1px solid var(--color);
    background: none;
}
.contact-page2 .info .right{
    width: 40%;
}
.contact-page2 .info .right .t1{
    font-size: 30px;
    font-weight: bold;
    color: var(--color);
}
.contact-page2 .info .right .t2{
    margin: 30px 0;
    font-size: 20px;
    color: var(--color);
}
.contact-page2 .info .right ul{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-page2 .info .right  li b{
    font-size: 20px;
    color: var(--color);
}
.contact-page2 .info .right li{
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
.contact-page2 .info .right li p{
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
.contact-page3{
    margin-top: 100px;
}


footer{
    width: 100%;
    background: var(--color);
}
footer .top{
    padding: 30px 0 40px 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}
footer .top .flogo{
    width: 90px;
}
footer .top .right{
    align-items: center;
}
footer .top .share-list li{
    padding: 0 10px;
   
}
footer .top .share-list a{
    color: #fff;
    display: flex;
    align-items: end;
}
footer .top .share-list a .icon{
    font-size: 24px;
    -webkit-text-stroke-width: 0px;
}
footer .top .header-right .btn{
    margin-left: 40px;
}
footer .bottom{
    padding: 40px 0 70px 100px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}
footer .bottom {
    justify-content: space-between;
}
footer .bottom .left{
    flex: 1;
    text-align: left;
}
footer .bottom .list1{
    gap: 10%;
}
footer .bottom .list1 h3{
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    line-height: 2.2;
}
footer .bottom .list2 li{
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 2.2;
}
footer .bottom .list2 a{
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}
footer .bottom .list2 a:hover{
    color: #fff;
}
footer .bottom .right{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 100px;
    text-align: right;
}
footer .bottom .right img{
    width: 90px;
}
.page {
	margin-top: 10px;
	padding: 14px 0 15px;
	text-align: center;
}
.page a {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span.current {
	background: var(--color);
	border: 1px solid var(--color);
	color: #FFFFFF;
	font-weight: bolder;
}

.index-banner .swiper-pagination-bullet{
	width:16px !important;
	height:16px !important;
	margin:0 10px !important;
}
.index-banner .swiper-pagination-bullet-active{
	    background: var(--color-active) !important;
}

.index-banner .swiper-horizontal>.swiper-pagination-bullets, .index-banner .swiper-pagination-bullets.swiper-pagination-horizontal,.index-banner .swiper-pagination-custom,.index-banner .swiper-pagination-fraction{
	bottom:30px !important;
}

