/*------------ banner ------------*/

.banner {
    position: relative;
}
.site-main{
    padding-top:0;
}
.site-header{
    box-shadow: none;
}
/*------------ title ------------*/

section .title {
    color: #000000;
    line-height: 1.2;
    padding: 0 0 13px 10px;
    font-size: 22px;
    font-family: 'Roboto';
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

/*------------ more ------------*/

.more {
    font-size: 14px;
    color: #FFFFFF;
    width: 110px;
    height: 46px;
    line-height: 46px;
    display: block;
    padding: 0px 25px 0 25px;
    text-align: left;
    background: #444444;
    letter-spacing: 1px;
    transition: all .2s;
    font-family: 'Roboto';
    position: relative;
    border: none;
    z-index: 5;
}

.more:hover {
    transition: all .5s cubic-bezier(.4, .8, .74, 1) 0s;
    white-space: nowrap;
    background: #00A1E9;
}

.more b {
    transition: all .5s cubic-bezier(.4, .8, .74, 1) 0s;
}

.more b {
    position: absolute;
    transition: all .5s cubic-bezier(.4, .8, .74, 1) 0s;
    z-index: 10;
    right: 10px;
    top: 22px;
}

.more b:before,
.more b:after {
    border-bottom: 4px solid #ffffff;
    border-radius: 2px;
    border-right: 4px solid #ffffff;
    content: "";
    height: 11px;
    position: absolute;
    text-indent: 0;
    transform: translate(-150%, -50%) rotate(-45deg);
    transform-origin: 50% 50%;
    transition: .3s cubic-bezier(.22, 1, .36, 1) 0s;
    vertical-align: 3px;
    width: 11px;
    border-width: 3px;
    height: 8px;
    right: 10%;
    width: 8px;
}

.more b:after {
    right: 10px;
    opacity: 0;
}

.more:hover b:after {
    opacity: 1;
    right: 0;
}

.more:hover b:before {
    opacity: 0;
    right: -5px;
}

/*------------ sect1 ------------*/

.sect1 {
    background: url('../../images/common/index/news_bg.png')no-repeat right center #F1F7FC;
    padding: 35px 45px;
    margin: 0 0 60px;
}

.sect1 .col {
    float: left;
    width: calc(100% - 200px);
}

/*------------ news ------------*/

.news-list li {
    padding: 16px 14px;
    transition: all .3s ease;
    border-bottom: 1px solid rgba(216, 216, 216, .8);
}

.news-list li:hover {
    background: #fff;
    box-shadow: 0 3px 18px 3px rgba(0, 0, 0, .1), 0 3px 5.5px 2px rgba(0, 0, 0, .05);
    z-index: 1;
    margin: -1px 0 0 5px;
}

.news-list li .date {
    font-size: 14px;
    color: #838383;
    display: inline-block;
    margin: 0 10px 0 0;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    position: relative;
    padding: 0 15px 0 0;
}

.news-list li:hover .date {
    color: #3F3F3F;
}

.news-list li .date:after {
    border-right: 1px dotted #999999;
    content: '';
    position: absolute;
    top: 0;
    display: inline-block;
    width: 1px;
    height: 100%;
    right: 0;
}

.news-list li .name {
    color: #404040;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 155px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    letter-spacing: 1px;
}

.news-list li .item:hover .name {
    color: #00A1E9;
}

.news-box .more {
    margin: 25px 0 0 0;
}

.news-list .item {
    position: relative;
    font-family: 'Roboto';
}

/*------------ products ------------*/

.products-sect .title {
    border-bottom: 3px solid #00a1e9;
    margin-bottom: 25px;
}

.product-list {
    margin: 0 -10px;
}

.product-list li {
    width: calc(100% / 6);
    padding: 0 10px 40px;
    position: relative;
}

.product-list li:nth-child(6n+1) {
    clear: left;
}

.product-list>li>.pic-box {
    margin: 0 auto;
    /* max-width: 250px; */
    box-sizing: border-box;
    position: relative;
}

.product-list .pic {
    position: relative;
    box-sizing: border-box;
    transition: all .2s;
    border: 1px solid #ffffff;
    z-index: 1;
    overflow: hidden;
}

.product-list li.has-top .cover2 {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 15;
    width: 30px;
    height: 30px;
    background: #00a1e9;
}

.product-list li.has-top .cover2 b {
    position: absolute;
    bottom: 100%;
    top: 3px;
    left: 10px;
    z-index: 50;
    margin: 0px 0 14px 0px;
    color: #fff;
}

.product-list .box:hover .pic {
    border-color: #00A1E9;
}

.product-list .text {
    max-width: 250px;
    margin: 10px auto 0;
    text-align: center;
    line-height: 1.2;
}

.product-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222222;
    font-size: 16px;
}

.product-list li:hover .name {
    color: #00A1E9;
}

.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.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.product-list .box:hover .pic img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/*------------ sect3 ------------*/


/*------------ about-box ------------*/
.sect3 {
    background: #F6F6F8;
    margin: 45px 0;
    display: flex;
}

.about-box {
    /* float: left; */
    text-align: left;
    width: 55%;
    position: relative;
}

.about-box:before {
    content: '';
    width: 2px;
    height: 32px;
    background: #000000;
    position: absolute;
    top: 0;
    left: 55px;
    display: block;
}

.about-title {
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    font-family: 'Roboto';
    letter-spacing: 2px;
    margin: 0 0 10px;
    position: relative;
}

.about-title span {
    color: #fff;
}

.about-bg {
    box-sizing: border-box;
    padding: 40px 0px 0 50px;
    margin: 0 auto;
}

.about-bg .editor {
    /*  display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;*/
    color: #333333;
    font-size: 14px;
    position: relative;
    display: block;
    letter-spacing: 0.7px;
    max-width: 510px;
}

.about-bg .btn {
    position: relative;
    margin: 70px 0 0;
}

.sect3 .right {
    background: url(../../images/common/index/service_pic1.jpg)no-repeat center top;
    height: auto;
    width: 50%;
    display: block;
    position: relative;
}

/*------------ service ------------*/

.service-box {
    /* float: right; */
    /* width: calc(100% - 710px); */
    position: relative;
    width: 100%;
    max-width: 533px;

}

.service-table {
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
}

.service-table .row {
    display: table-row;
}

.service-table .td {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    box-sizing: border-box;
    background: #CECEBF;
}


/*------------ rwd ------------*/

@media screen and (max-width: 1400px) {

    .about-bg {
        padding: 40px 45px 0 0;

    }

    .about-box:before {
        left: 0;
    }

}

@media screen and (max-width: 1360px) {
    .sect3 .right {
        background-size: cover;
    }
}

@media screen and (max-width: 1280px) {
    .product-list li {
        width: calc((100% / 3) - 0.1px);
    }

    .sect1 {
        padding: 30px 25px;
        margin-bottom: 40px;
    }

    .about-bg .btn {
        margin-top: 30px;
    }
}


@media screen and (max-width: 900px) {
    section .title {
        font-size: 20px;
        letter-spacing: 1px;
        padding-bottom: 10px;
    }

    .about-title {
        font-size: 20px;
        letter-spacing: 1px;
        margin: 10px 0 0;
    }
}

@media screen and (max-width: 767px) {

    .sect1 .col,
    .sect1 .album-box {
        float: none;
        width: 100%;
    }

    .news-box .more {
        margin: 28px auto 0;
    }

    .news-list li {
        padding: 10px;
    }

    .news-list li .name {
        width: calc(100% - 115px);
    }

    .has-side .content {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 600px) {
    .product-list li {
        width: 50%;
        padding-bottom: 30px;
    }

    .sect3 {
        margin: 25px 0 0;
        display: block;
        padding-top: 200px;
        position: relative;
    }

    .about-box {
        width: 100%;
    }

    .about-bg {
        padding: 25px 25px 0;
    }

    .about-box:before {
        left: 25px;
    }

    .sect3 .right {
        width: 100%;
        position: absolute;
        top: 0;
        height: 200px;
        background-position: bottom;
    }
}

@media screen and (max-width: 480px) {
    .sect1 {
        padding: 25px 15px;
        background-image: none;
    }

    .news-list li .name {
        display: block;
        width: auto;
        padding-top: 2px;
    }

    .news-list li {
        padding: 10px 8px 5px;
    }

    .product-list {
        margin: 0;
    }

    .product-list li {
        width: 100%;
        padding: 0 0 40px;
    }
}