/*------------ banner ------------*/
.banner {
    position: relative;
    display: block;
}
.banner_m{
    display: none;
}
.banner .slick-arrow,.banner_m .slick-arrow {
    position: absolute;
    width: 65px;
    height: 65px;
    display: block;
    border: 0;
    top: 50%;
    margin: -32px 0 0 0;
    z-index: 100;
    cursor: pointer;
    background: url('../../images/common/index/arrow.png');
    font-size: 0;
}
.banner .slick-prev, .banner_m .slick-prev {
    left: 35px;
}
.banner .slick-next,.banner_m .slick-next {
    left: auto;
    right: 35px;
    transform: rotate(180deg);
}
.banner .slick-arrow:hover,
.banner_m .slick-arrow:hover {
    background-position: 0 100%;
}
/*------------ sect01 ------------*/
.sect01 {
    padding: 35px 0 60px;
}
/*------------ service-box ------------*/
.service-box {
    float: left;
    width: 36%;
    position: relative;
    background: url('../../images/common/index/service_bg.jpg') no-repeat center top;
    padding: 123px 40px 40px 14%;
    background-size: cover;
}
.service-box:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #fff;
    pointer-events: none;
}
.service-box .title {
    line-height: 1.2;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
}
.service-box .title:after {
    content: "";
    width: 26px;
    height: 26px;
    display: block;
    margin: 15px auto;
    background: url('../../images/common/index/service-ic.png');
}
.service-box .editor {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 112px;
    margin: 0 0 30px;
    position: relative;
    z-index: 15;
}
.service-box .more {
    color: #FFFFFF;
    font-size: 13px;
    display: block;
    width: 75px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 3px;
    margin: 0 auto;
}
.service-box .more:hover {
    transition: all .2s;
    background: #FAD038;
    color: #000;
    font-weight: bold;
}
/*------------ products ------------*/
.products-box {
    float: right;
    width: 61%;
}
.products-box .title {
    text-align: center;
    line-height: 1.2;
    color: #000;
    font-size: 16px;
    position: relative;
    margin: 10px 0 25px;
}
.products-box .title b {
    font-size: 25px;
    color: #000000;
    font-weight: bold;
    display: block;
    margin: 0 0 5px;
}
.products-box .title a {
    color: #777777;
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}
.hot-arrow{
    position: absolute;
    top: 15px;
    right: 0;
    width: 80px;
}
.hot-arrow .slick-arrow{
    width: 40px;
    height: 40px;
    display: inline-block;
    z-index: 100;
    color: transparent;
    border: 0;
    position: absolute;
    cursor: pointer;
    background: url('../../images/common/index/arrow2.png');
    left: 0;
}
.hot-arrow .slick-next {
    transform: rotate(180deg);
    right: 0;
    left: auto;
}
.hot-arrow .slick-arrow:hover {
    background-position: 0 100%;
}
.product-list {
    margin: 0 -11px;
}
.product-list li {
    width: 25%;
    padding: 0 11px;
}
.product-list li .box {
    max-width: 280px;
    margin: 0 auto;
    padding: 10px 10px 10px;
    background: #FFFFFF;
    box-sizing: border-box;
    transition: all .2s;
    display: block;
    position: relative;
}
.product-list li .box .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    font-size: 0;
}
.product-list li .box:hover{
    transition: all .2s;
    background: #FAD038;
}
.product-list li .description {
    font-size: 14px;
    line-height: 1.5;
    color: #999;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
    margin: 10px 0 5px;
}
.product-list .pic {
    max-width: 260px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
    overflow:hidden;
}
.product-list .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.product-list li:hover .pic img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
.product-list .name{
    text-align: center;
    line-height: 1.2;
    color: #444444;
    font-size: 18px;
    height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 25px 0 5px;
}
.product-list .text{
    max-width: 280px;
    margin: 0 auto;
}
.product-list .btn {
    background: #9C9C9C;
    color: #fff;
    display: block;
    padding: 16px 10px;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all .2s;
}
.product-list .box:hover .btn{
    background: #000;
    color: #fff;
    transition: all .2s;
}
.product-list li .box.new:before{
    content: '';
    display: block;
    width: 66px;
    height: 66px;
    position: absolute;
    top: 0;
    z-index: 15;
    left: 0;
    background: url(../../images/common/index/top.png);
}
/*------------ sect02 ------------*/
.sect02 {
    border: solid #fff;
    border-width: 3px 0;
    background: url(../../images/common/index/about_bg.jpg) no-repeat center top;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 30px 0;
}
.sect02 .more {
    width: 230px;
    height: 230px;
    display: block;
    background: url(../../images/common/index/about_title.png);
}
.sect02 .more:hover {
    background-position: 0 100%;
}
/*------------ news ------------*/
.news-box .sect-title,.about-box .sect-title,.album-box .sect-title {
    font-size: 0;
}
.news-box .more {
    background: url(../../images/common/index/news_title.png);
    margin: 0 auto 20px;
}
.news-box {
    float: left;
    width: 44%;
}
.news-list {
    margin: 0 -10px;
}
.news-list li {
    width: 50%;
    padding: 0 10px;
}
.news-list li:nth-child(2n+1) {
    clear: left;
}
.news-list li .box {
    transition: all .2s;
    background: #fff;
    padding: 12px;
    position: relative;
    max-width: 375px;
    margin: 0 auto;
    box-sizing: border-box;
}
.news-list li .box:hover {
    background: #FAD038;
    transition: all .2s;
}
.news-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    font-size: 0;
}
.news-list li .pic {
    position: relative;
    box-sizing: border-box;
    overflow:hidden;
}
.news-list .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.news-list li:hover .pic img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
.news-list li .date,
.news-date {
    position: absolute;
    width: 57px;
    height: 63px;
    line-height: 1.2;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: url('../../images/common/news/date.png');
    left: 25px;
    top: 0;
    z-index: 15;
    letter-spacing: 0.35px;
}
.news-list li .date b,
.news-date b {
    font-size: 25px;
    color: #000000;
    display: block;
    transition: all .2s;
    margin: 5px 0 -2px 0;
}
.news-list li .name {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    margin: 15px 0 5px;
}
.news-list .box:hover .name {
    text-decoration: underline;
}
/*------------ about ------------*/
.about-box {
    float: right;
    width: 54%;
    position: relative;
    padding: 277px 0 0 0;
}
.about-box .more {
    position: absolute;
    top: -40px;
    left: 35px;
}
.about-bg {
    padding: 40px 30px 40px 300px;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}
.about-box .title {
    font-weight: bold;
    font-size: 20px;
    color: #FAD038;
    line-height: 1.4;
    margin: 0 0 25px;
}
/*------------ sect03 ------------*/
.sect03 {
    padding: 60px 0;
}
/*------------ album-box ------------*/
.album-box {
    float: left;
    width: 81.5%;
}
.album-box .sect-title{
    display: inline-block;
}
.album-box .more {
    width: 235px;
    height: 250px;
    margin: 0 10px 0 0;
    display: inline-block;
    vertical-align: middle;
    background: url('../../images/common/index/album_title.png');
}
.album-box .more:hover {
    background-position: 0 100%;
}
.album-list {
    display: inline-block;
    vertical-align: middle;
    margin: 0 -7px;
    width: calc(100% - 245px);
}
.album-list li {
    width: calc((100% / 3) - 0.1px);
    padding: 0 7px;
}
.album-list li:nth-child(3n+1) {
    clear: left;
}
.album-list li .pic {
    overflow: hidden;
    position: relative;
    max-width: 390px;
    margin: 0 auto;
}
.album-list .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.album-list .box .cover{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    font-size: 0;
    z-index: 30;
}
.album-list li .box:hover .pic img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
.album-list li .pic:before,
.album-list li .pic:after {
    content: "";
    position: absolute;
    transition: all .2s;
    opacity: 0;
}
.album-list li .pic:before {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.80);
    background: rgba(0, 0, 0, 0.70);
    z-index: 2
}
.album-list li .pic:after {
    content: "";
    width: 72px;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    left: 50%;
    margin: 0 0 0 -36px;
    top: 55%;
    z-index: 2
}
.album-list .box:hover .pic:before,
.album-list .box:hover .pic:after {
    transition: all .2s;
    opacity: 1;
}
.album-list li .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 50%;
    margin: -13px 0 0 0;
    width: 100%;
    padding: 0 40px;
    font-size: 18px;
    line-height: 1.2;
    height: 26px;
    color: #fff;
    text-align: center;
    transition: all .2s;
    opacity: 0;
    box-sizing: border-box;
    z-index: 5;
}
.album-list .box:hover .name {
    transition: all .2s;
    opacity: 1;
}
/*------------ links-box ------------*/
.links-box {
    width: 16.6%;
    float: right;
}
.links-box .more {
    font-size: 13px;
    font-weight: bold;
    color: #000000;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    transition: all .2s;
    margin: 10px 0 0 0;
}
.links-box .more i {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 25px;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    background: #000;
    margin: 0 10px 0 0;
}
.links-box .more:hover {
    text-decoration: underline;
    transition: all .2s;
}
.link-list li {
    margin: 0 0 10px;
}
.link-list li .box {
    margin: 0 auto;
    max-width: 240px;
    position: relative;
}
.link-list li .box .cover{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 30;
    font-size: 0;
}
.link-list li .pic {
    position: relative;
    overflow:hidden;
}
.link-list .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.link-list li:hover .pic img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
.link-list li .pic > a{
    display: block;
    position: relative;
}
.link-list li .pic > a:before {
    content: "";
    position: absolute;
    display: block;
    transition: all .2s;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 100;
}
.link-list li .box:hover .pic>a:before {
    transition: all .2s;
    opacity: 1;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1280px) {
    .service-box,
    .products-box,
    .news-box,
    .about-box,
    .album-box,
    .links-box {
        float: none;
        width: 100%;
        text-align: center;
    }
    .service-box {
        margin: 0 0 50px;
        padding: 30px 45px;
    }
    .service-box:after {
        content: "";
        position: absolute;
        top: 20px;
        right: 20px;
        left: 20px;
        bottom: 20px;
        background: rgba(255, 255, 255, 0.7);
    }
    .service-box .title,
    .service-box .more {
        color: #666;
        position: relative;
        z-index: 10;
    }
    .news-box,
    .about-box {
        max-width: 800px;
        margin: 0 auto;
    }
    .about-box {
        padding: 80px 0 0 0;
    }
    .links-box {
        margin: 60px 0 0 0;
        text-align: center;
        max-width: 483px;
        margin-left: auto;
        margin-right: auto;
    }
    .link-list li {
        display: inline-block;
        float: none;
    }
}
@media screen and (max-width: 900px) {
    .album-box .more {
        margin: 0 auto 15px;
        display: block;
    }
    .album-list {
        width: auto;
    }
}
@media screen and (max-width: 767px) {
    .banner .slick-prev {
        left: 5px;
    }
    .banner .slick-next {
        left: auto;
        right: 5px;
    }
    .about-bg {
        padding: 20px 20px 40px;
    }
    .about-box .more {
        position: static;
        margin: 0 auto 20px;
    }
    .service-box .title{
        font-size: 24px;
        color: #000000;
    }
    .banner{
        display: none;
    }
    .banner_m{
        display: block;
    }
    .banner .slick-prev, .banner_m .slick-prev {
        left: 0;
    }
    .banner .slick-next,.banner_m .slick-next {
        right: 0;
    }
}
@media screen and (max-width: 600px) {
    .service-box {
        padding: 35px 25px 30px;
    }
    .service-box .title:after {
        background: url(../../images/common/index/service-ic-m.png);
    }
    .hot-arrow {
        position: relative;
        left: 50%;
        margin: 0 0 0 -40px;
    }
    .products-box .title {
        margin: 10px 0 75px;
    }
    .news-list {
        margin: 0;
    }
    .news-list li {
        width: 100%;
        padding: 0 0 30px;
    }
    .links-box {
        max-width: 240px;
    }
}
@media screen and (max-width: 480px) {
    .album-list {
        margin: 0;
    }
    .album-list li {
        width: 100%;
        padding: 0 0 15px;
    }
}
