/*------------ wrapper ------------*/

.wrapper {
    background: #fff;
}

/*------------ banner ------------*/

.banner .slick-dots {
    margin: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 2%;
    z-index: 100;
}

.banner .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.banner .slick-dots button {
    background: #fff;
    border: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: transparent;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.48);
    cursor: pointer;
    padding: 0;
}

.banner .slick-active button {
    background: #B3CE1E;
}


/*------------ about ------------*/

.about-sect{
    background: url(../../images/common/index/about_bg.jpg) no-repeat top center;
    min-height: 834px;
    padding: 85px 0 0 0;
}

.about-sect .title {
    text-align: center;
    font-size: 28px;
    color: #2C261D;
    line-height: 1.4;
    margin: 0 0 20px;
    letter-spacing: 5px;
}

.about-sect .title b {
    font-size: 25px;
    color: #EB5A05;
    display: block;
    margin: 25px 0 0 0;
    letter-spacing: 1px;
}

.about-sect .editor {
/*    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;*/
    height: 128px;
	padding-left: 400px;
	padding-right: 400px;
}

/*------------ news ------------*/

.news-sect {
    background: url('../../images/common/index/news-bg.png') no-repeat center top;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 180px 0 70px;
    min-height: 824px;
    box-sizing: border-box;
    margin: -360px 0 0 0;
    position: relative;
    z-index: 10;
}

.news-sect .title {
    text-align: center;
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 10px;
    text-indent: 10px;
    margin: 0 0 100px;
}

.news-list {padding: 0 30px;}

.news-list li {
    width: calc((100% / 3) - 0.1px);
    padding: 0 24px;
    position: relative;
}

.news-list li:nth-child(3n+1) {
    clear: left;
}

.news-list li a {
    margin: 0 auto;
    border: 1px solid #B3CE1E;
    padding: 50px 30px 45px;
}

.news-list li .pic {
    position: relative;
    box-sizing: border-box;
}

.news-list li .pic:before,
.news-list li .pic .cover {
    content: "";
    transition: all .2s;
    position: absolute;
    opacity: 0;
}

.news-list li .pic:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

.news-list .pic .cover {
    width: 45px;
    height: 45px;
    top: 0;
    left: 50%;
    text-align: center;
    margin: -27px 0 0 -27px;
    border: 1px solid rgba(255, 255, 255, .72);
    transform-origin: 50% 50%;
    transform: rotate(-45deg);
}

.news-list .pic .cover:before {
    content: "more";
    display: block;
    font-size: 13px;
    color: #FFFFFF;
    line-height: 45px;
    font-family: 'Istok Web', sans-serif;
    transform: rotate(45deg);
}

.news-list a:hover .pic:before,
.news-list a:hover .pic .cover {
    transition: all .2s;
    opacity: 1;
}

.news-list a:hover .pic .cover {
    top: 50%;
}

.news-list li .text {
    margin: 25px 0 0 0;
}

.news-list li .description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 80px;
    line-height: 2;
    color: #DDDDDD;
    font-size: 14px;
}

.news-list li .name {
    color: #D2FF4D;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    height: 56px;
    transition: all .2s;
    margin: 0 0 20px 0;
}

.news-list a:hover .name {
    color: #FFF;
}

.news-list li .date {
    position: absolute;
    border: 2px solid #2C281D;
    text-align: center;
    top: 0;
    left: 50%;
    margin: -54px 0 0 -54px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: block;
    background: #fff;
    font-size: 18px;
    line-height: 1;
    color: #2C281D;
    box-sizing: border-box;
    padding: 20px 0 0 0;
    z-index: 0;
    font-family: 'Open Sans', sans-serif;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.35);
}

.news-list li .date b {
    display: block;
    font-weight: 700;
    font-size: 45px;
}

.news-list li .date:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b3ce1e+0,98cb21+100 */
    background: rgb(179, 206, 30);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(179, 206, 30, 1) 0%, rgba(152, 203, 33, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(179, 206, 30, 1) 0%, rgba(152, 203, 33, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(179, 206, 30, 1) 0%, rgba(152, 203, 33, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3ce1e', endColorstr='#98cb21', GradientType=1);
    /* IE6-9 */
    border-radius: 50%;
    opacity: 0;
    transition: all .2s;
}

.news-list li a:hover .date {
    border-color: #fff;
}

.news-list li a:hover .date:before{
    opacity: 1;
}

.news-list li a .more {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b3ce1e+0,98cb21+100 */
    background: #b3ce1e;
    /* Old browsers */
    background: -moz-linear-gradient(top, #b3ce1e 0%, #98cb21 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #b3ce1e 0%, #98cb21 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #b3ce1e 0%, #98cb21 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3ce1e', endColorstr='#98cb21', GradientType=0);
    /* IE6-9 */
    width: 54px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 14px;
    position: absolute;
    bottom: -24px;
    text-align: center;
    left: 50%;
    margin: 0 0 0 -27px;
    border-radius: 25px;
    transition: all .3s ease-in-out;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.news-list li a:hover .more{
    width: 134px;
    margin: 0 0 0 -67px;
    border-radius: 40px;
    letter-spacing: 4px;
    text-indent: 8px;
}

/*------------ products ------------*/

.products-sect {
    padding: 70px 0 50px;
    background: url('../../images/common/index/products_bg.jpg') no-repeat center top;
    -webkit-background-size: cover;
    background-size: cover;

}

.products-sect .container {
    max-width: 1350px;
}

.products-sect .more {
    transition: all .2s;
    max-width: 165px;
    width: 100%;
    border: solid #2C281D;
    border-width: 2px 0;
    color: #2C281D;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    padding: 9px 12px;
    text-align: right;
}

.products-sect .more i {
    font-size: 10px;
    -webkit-transform: scale(0.83);
    float: left;
    transition: all .2s;
    margin: 9px 0 0 0;
}

.products-sect .more:hover{
    background: #B3CE1E;
    border-color: #B3CE1E;
    color: #fff;
}

.products-sect .more:hover i{
    margin: 9px 0 0 27px;
}

.products-sect .pic {
    -webkit-border-top-right-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-topright: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
}
.products-sect .pic img{
    width:100%;
}
.products-sect a{
    position: relative;
}

.products-sect .cover {
    position: absolute;
    display: block;
    transition: all .2s;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(179,206,30,.74);
    z-index: 10;
    -webkit-border-top-right-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-topright: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.products-sect .cover i{
    color: #FFFFFF;
    font-size: 46px;
    width: 74px;
    height: 74px;
    border: 4px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 74px;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -37px 0 0 -37px;
}

.products-sect .cover i:after{
    content: "";
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    top: -13px;
    left: -13px;
    display: block;
    border: 1px solid #fff;
}

.products-sect a:hover .cover {
    transition: all .2s;
    opacity: 1;
}

.products-sect .name {
    font-size: 28px;
    font-weight: bold;
    color: #2C271D;
    line-height: 1.2;
    display: block;
    height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 3px solid transparent;
}

.products-sect .offers {
    color: #777777;
    font-size: 16px;
    position: relative;
    margin: 15px 0;
}


/*---- hot-products ----*/

.hot-products {
    margin: 0 0 60px;
}

.hot-products a {
    display: block;
}

.hot-products .stage {
    width: 35.5%;
    float: left;
}

.hot-products .txt {
    padding: 0 0 35px;
    float: right;
    width: 61%;
    background: url('../../images/common/index/line.png') repeat-x center bottom;
}

.hot-products .products-title {
    font-size: 47px;
    color: #2C261D;
   
    line-height: 1.2;
    letter-spacing: 9px;
    padding: 0 0 40px 0;
    margin: 30px 0 35px 0;
    float: right;
    width: 61%;
    background: url('../../images/common/index/line.png') repeat-x center bottom;
}

.hot-products .title i {
    font-size: 50px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 10px 0;
}

.hot-products .description {
    color: #333326;
    height: 106px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 30px;
    font-size: 14px;
    letter-spacing: 2px;
}

/*------------ product-list ------------*/

.product-list {
    margin: 0 -20px;
}

.product-list li {
    width: 25%;
    padding: 0 20px 50px;
}

.product-list li:nth-child(4n+1) {
    clear: left;
}

.product-list > li > a {
    margin: 0 auto;
    max-width: 300px;
    max-height: 300px;
    box-sizing: border-box;
}

.product-list .text {
    max-width: 212px;
    margin: 0 auto;
}

.product-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2C271D;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 20px;
    text-align: center;
    height: auto;
}

.product-list li .more {
    padding: 3px 12px;
    margin: 0 auto;
}

/*------------ sect4 ------------*/

.team-box {
    background: url('../../images/common/index/team_bg.jpg') no-repeat center top;
    background-size: cover;
    padding: 80px 0 200px;
}

.team-box .title{
    text-align: center;
    font-size: 48px;
    color: #2C261D;
    line-height: 1.4;
    margin: 0 0 30px;
    letter-spacing: 5px;
}

/*------------ site-footer ------------*/

.site-footer {
    margin: -85px 0 0 0;
}


/*------------ rwd ------------*/

@media screen and (max-width: 1280px) {
.about-sect .editor {

 
	padding-left:0px;
	padding-right: 0px;
}
    .about-sect{
        min-height: 700px;
    }
    .news-list{
        padding: 0;
    }
    .news-list li{
        padding: 0 10px;
    }
    .news-list li a{
        padding: 50px 15px 45px;
    }
}

@media screen and (max-width: 1024px) {
    .news-sect{
        margin: -360px 0 -100px;
    }
    .products-sect{
        padding: 50px 0;
    }
    .hot-products .stage,
    .hot-products .txt,
    .hot-products .products-title{
        float: none;
        width: auto;
        max-width: 470px;
        margin: 0 auto;
    }
    .hot-products .txt{
        padding: 15px 0 35px;
    }
    .hot-products .products-title{
        margin: 0 auto 35px;
        padding: 0 0 15px 0;
    }
}

@media screen and (max-width: 900px) {
    .news-sect{
        background: url(../../images/common/index/news-bg2.jpg) no-repeat center top;
        -webkit-background-size: cover;
        background-size: cover;
        padding: 40px 0 0;
        margin: -360px 0 0 0;
    }
    .news-sect .title{
        margin: 0 0 70px;
    }
    .news-list li{
        width: auto;
        padding: 0 0 100px 0;
    }
    .product-list li{
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .about-sect{
        min-height: auto;
        padding: 30px 0;
    }
    .news-sect{
        margin: 0;
    }
    .hot-products{
        margin: 0 0 30px;
    }
    .hot-products .txt{
        padding: 20px 0;
    }
    .hot-products .title{
        font-size: 30px;
        padding: 0 0 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .about-sect .title,
    .news-sect .title,
    .team-box .title{
        font-size: 35px;
    }
    .about-sect .title b{
        margin: 10px 0 0 0;
        font-size: 20px;
    }
    .product-list{
        margin: 0;
    }
    .product-list li{
        width: 100%;
        padding: 0 0 50px;
    }
    .hot-products .products-title{
        font-size: 35px;
        letter-spacing: 5px;
    }
    .team-box{
        padding: 0px 0 150px;
    }
}
