@charset "utf-8";
/* CSS Document */

.more-btn {
    position: relative;
    display: block;
    width: 140px;
    height: 40px;
    margin: auto;
    border-radius: 3px;
    background: #888;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    transition: all .3s ease-out 0s;
    overflow: hidden;
}
.more-btn span {
    position: relative;
    z-index: 1;
    color: #fff;
}
.more-btn:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #006ed6;
    content: '';
    transition: all ease .3s;
}
.more-btn:hover:after {
    width: 100%;
}
.more-btn-style1 {
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    display: block;
    width: 140px;
    height: 40px;
    border: 1px solid #e1e1e1;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: 'Arial';
    line-height: 38px;
    transition: all .36s ease;
}
.more-btn-style1:after {
    position: absolute;
    left: 50%;
    line-height: 38px;
    transition: all .36s ease;
    font-family: 'iconfont';
    color: rgba(255, 255, 255, 0);
    content: "\e63b";
}
.more-btn-style1:hover {
    padding-right: 20px;
    border: 1px solid #006ed6;
    background: #006ed6;
    color: #fff;
}
.more-btn-style1:hover:after {
    left: 64%;
    color: #fff;
}

.banner {
    position: relative;
    max-height: 500px;
    /*max-width: 1180px;*/
	/*margin-top:20px;*/
}
.banner:before {
    display: block;
    padding-bottom: 30%;
    content: '';
}
.banner .pic-list {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner .pic-list li {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.banner .pic-list li a {
    display: block;
    height: 100%;
}
.banner .arrow-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    opacity: 0;
    font-size: 44px;
    color: #fff;
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    cursor: pointer;
}
.banner .arrow-btn:hover {
    color: #006ed6;
}
.banner .prev-btn {
    left: 50px;
    transform: translate3d(-30px, 0, 0);
    -webkit-transform: translate3d(-30px, 0, 0);
}
.banner .next-btn {
    right: 50px;
    transform: translate3d(30px, 0, 0);
    -webkit-transform: translate3d(30px, 0, 0);
}
.banner:hover .arrow-btn {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}
.banner .btn-box {
    position: absolute;
    left: 0;
    bottom: 4%;
    width: 100%;
    text-align: center;
    line-height: 10px;
}
.banner .btn-box span {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 5px;
    border-radius: 7px;
    background: #fff;
    opacity: .6;
    cursor: pointer;
    transition: all ease .6s;
    -webkit-transition: all ease .6s;
}
.banner .btn-box .swiper-active-switch,
.banner .btn-box .active {
    width: 34px;
    background: #006ed6;
    opacity: 1;
}

/***** 业务领域 *****/
.project-block {
    padding: 40px 0;
}
.project-block .more-btn {
    display: none;
}
.project-block .head-section{
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 20px;
}
.project-block .head-section .btn{
    float: right;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background: #666;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    transition: background .3s ease;
    -webkit-transition: background .3s ease;
    cursor: pointer;
}
.project-block .head-section .btn:hover{
    background: #006ed6;
}
.project-block .head-section .china{
    font-weight: 700;
    color: #555;
}
.project-block .head-section .eng{
    color: #ffb0ad;
    font-family: 'Arial';
    text-transform: uppercase;
}
.project-block .head-section .border{
    color: #dedfe2;
}
.project-block .project-swiper {
    margin: 0 -14px;
}
.project-block .project-swiper ul,
.project-block .project-swiper li {
    height: auto !important;
}
.project-block .project-swiper a {
    display: block;
    margin: 0 12px;
}
.project-block .project-swiper a:hover .cont-box {
    background: #006ed6;
}
.project-block .project-swiper a:hover .cont-box p {
    color: #fff;
}
.project-block .project-swiper a:hover .pic-box .pic {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}
.project-block .project-swiper .pic-box {
    position: relative;
    overflow: hidden;
}
.project-block .project-swiper .pic-box:before {
    display: block;
    padding-bottom: 65.5%;
    content: '';
}
.project-block .project-swiper .pic-box .pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.project-block .project-swiper .cont-box {
    position: relative;
    height: 65px;
    padding: 8px 15px;
    font-size: 13px;
    line-height: 24px;
    transition: background .4s;
    -webkit-transition: background .4s;
}
.project-block .project-swiper .cont-box:after{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(#fff, #e1e1e1);
    background: linear-gradient(#fff, #e1e1e1);
    content: '';
}
.project-block .project-swiper .cont-box p{
    position: relative;
    z-index: 1;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .4s;
    -webkit-transition: color .4s;
}
.project-block .project-swiper .cont-box .title{
    font-weight: 700;
    color: #2b2929;
}
.project-block .project-swiper .cont-box .info{
    color: #747474;
}

.about-block {
    padding: 40px 0 45px;
    background: #f4f4f4;
}
.about-block > .container {
    display: flex;
    align-items: center;
}
.about-block .china {
    font-size: 18px;
	line-height: 1;
    font-weight: 400;
    color: #333;
}
.about-block .eng {
    font-family: 'Arial';
    color: #999;
    text-transform: uppercase;
	font-size: 14px;
	line-height: 2.4;
}
.about-block .content {
    padding-top: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.about-block .left-box {
    float: left;
    width: 66%;
    padding-right: 35px;
}
.about-block .pic {
    float: left;
    width: 34%;
    border: 5px solid #fff;
}
.about-block .more-btn-style1 {
    margin-top: 20px;
}
.about-block .more-btn {
    display: none;
}


.news-block {
    padding: 40px 0 40px;
}
.news-block .head-section {
    display: none;
}
.news-block .left-box {
    float: left;
    width: 60%;
    padding-right: 15px;
}
.news-block .left-box li {
    display: none;
}
.news-block .left-box li:nth-child(1) {
    display: block;
    padding-top: 0 !important;
}
.news-block .left-box a {
    display: block;
}
.news-block .left-box .pic-box {
    position: relative;
    float: left;
    width: 180px;
    margin-right: 30px;
    overflow: hidden;
}
.news-block .left-box .pic-box:after {
    display: block;
    padding-bottom: 66.6667%;
    content: '';
}
.news-block .left-box .pic-box .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    -webkit-transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-block .left-box .title {
    height: 44px;
    font-size: 18px;
    line-height: 22px;
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all .3s ease-out;
}
.news-block .left-box .time {
    display: none;
    font-size: 12px;
    color: #aeaeae;
    font-family: 'Arial';
}
.news-block .left-box .info {
    height: 66px;
    margin-top: 11px;
    font-size: 13px;
    line-height: 22px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.news-block .left-box a:hover .img {
    transform: scale(1.08);
}
.news-block .right-box {
    float: right;
    width: 40%;
    padding-left: 15px;
}
.news-block .right-box .tab-head {
    position: relative;
    border-bottom: 2px solid #dedfe2;
    padding-bottom: 15px;
}
.news-block .right-box .tab-head .border {
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    background: #006ed6;
    transition: left ease .6s;
    -webkit-transition: left ease .6s;
}
.news-block .right-box .tab-head a {
    float: left;
    margin-right: 25px;
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: #555;
}
.news-block .right-box .tab-content {
    font-size: 13px;
    line-height: 22px;
    color: #666;
}
.news-block .right-box .tab-content a {
    color: #666;
}
.news-block .right-box .tab-content a:hover .title {
    color: #006ed6;
}
.news-block .right-box .tab-content ul {
    display: none;
    padding-top: 20px;
}
.news-block .right-box .tab-content li {
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-block .right-box .tab-content .time {
    margin-right: 12px;
}
.news-block .right-box .tab-content .title {
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}
.news-block .more-btn {
    display: none;
}

.gg-block {
    height: 135px;
    background: #e0e2e4;
}
.gg-block .box {
    position: relative;
    max-width: 1180px;
    height: 100%;
    margin: auto;
    overflow: hidden;
}
.gg-block a {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: left .3s ease;
    transition: left .3s ease;
}
.gg-block a img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
}
.gg-block a:nth-child(1) {
    background: #ffa200;
}
.gg-block a:nth-child(2) {
    background: #4dace1;
}
.gg-block a:nth-child(3) {
    background: #e9554f;
}
.gg-block a:nth-child(4) {
    background: #6aba5b;
}


@media screen and (max-width: 800px) {
    .banner .arrow-btn {
        display: none;
    }

    .about-block > .container {
        display: block;
    }
    .about-block .left-box,
    .about-block .pic {
        float: none;
        width: 100%;
        padding: 0;
    }
    .about-block .more-btn-style1 {
        margin: 20px auto;
    }

    .news-block .right-box {
        display: none;
    }
    .news-block .left-box {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    .news-block .left-box li {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid #e1e1e1;
    }
    .news-block .left-box .cont {
        padding-top: 4px;
    }
    .news-block .left-box .title {
        display: block;
        height: auto;
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        color: #333;
        word-break: keep-all;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .news-block .left-box .time {
        display: block;
    }
    .news-block .left-box .info {
        height: auto;
        -webkit-line-clamp: 2;
        max-height: 44px;
    }
    .news-block .left-box a:hover .title {
        color: #006ed6;
    }
    .news-block .more-btn {
        display: block;
        margin-top: 30px;
    }
}


@media screen and (max-width: 540px) {
    .section-block {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .section-block .head-section .china {
        display: block;
        padding-bottom: 10px;
        font-size: 22px;
        color: #444;
        line-height: 1;
        font-weight: 400;
        text-align: center;
    }
    .section-block .head-section .eng {
        display: block;
        text-align: center;
        color: #006ed6;
        font-size: 14px;
        line-height: 1;
		text-transform: uppercase;
    }

    .banner .btn-box {
        bottom: 8px;
    }
    .banner .btn-box span {
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }
    .banner .btn-box .swiper-active-switch,
    .banner .btn-box .active {
        width: 24px;
    }

    .project-block .more-btn {
        display: block;
        margin-top: 25px;
    }
    .project-block .head-section {
        margin: 0;
        padding-bottom: 5px;
    }
    .project-block .head-section .border,
    .project-block .head-section .btn {
        display: none;
    }
    .project-block .head-section .eng {
        /*text-transform: none;*/
    }
    .project-block .project-swiper {
        margin: 0 -5px;
    }
    .project-block .project-swiper a {
        margin: 20px 5px 0;
    }
    .project-block .project-swiper a:hover .cont-box {
        background: none;
    }
    .project-block .project-swiper a:hover .cont-box:after {
        text-indent: 5px;
        border-color: rgba(0, 0, 0, .1);
    }
    .project-block .project-swiper a:hover .cont-box .title {
        color: #006ed6;
    }
    .project-block .project-swiper ul {
        width: 100% !important;
        -webkit-transform: translate3d(0px, 0px, 0px) !important;
        transform: translate3d(0px, 0px, 0px) !important;
    }
    .project-block .project-swiper .cont-box {
        height: 55px;
        padding: 0 0px 0 5px;
        overflow: hidden;
    }
    .project-block .project-swiper .cont-box:after {
        position: absolute;
        top: 20px;
        width: 25px;
        height: 20px;
       /* border-left: 1px solid rgba(0, 0, 0, 0);*/
        background: none;
        font-family: 'iconfont';
        /*content: "\e610";*/
        transition: all 0.3s ease-out 0s;
        color: #d0d0d0;
        font-size: 17px;
    }
    .project-block .project-swiper .cont-box .title {
        padding-top: 10px;
        font-size: 16px;
        color: #555;
        font-weight: 400;
    }
    .project-block .project-swiper .cont-box .info {
        line-height: 20px;
        color: #888 !important;
    }
    .project-block .project-swiper ul li:nth-child(7),
    .project-block .project-swiper ul li:nth-child(8) {
        display: none;
    }
    

    .about-block {
        display: block;
    }
    .about-block .content {
        padding: 20px 0;
    }
    .about-block .content p + p {
        margin-top: 6px;
    }
    .about-block .pic {
        display: block;
        width: 100%;
        margin-top: 25px;
        border: none;
    }
    .about-block .more-btn-style1 {
        display: none;
		margin: 0 auto;
    }
    .about-block .more-btn {
        display: block;
    }

    .news-block {
        background: #f8f8f8;
    }
    .news-block .head-section {
        display: block;
        padding-bottom: 25px;
    }
    .news-block .left-box li {
        padding: 10px 0;
    }
    .news-block .left-box .pic-box {
        width: 40%;
        margin-right: 0;
    }
    .news-block .left-box .cont {
        float: right;
        width: 60%;
        padding-top: 0;
        padding-left: 10px;
    }
    .news-block .left-box .info {
        margin-top: 0;
    }
    .news-block .more-btn {
        margin-top: 25px;
    }

    .gg-block {
        height: auto;
        /*padding-bottom: 30px;*/
        background: #fff;
    }
    .gg-block a {
        display: block;
        position: relative;
        left: 0 !important;
        width: 100%;
        height: auto;
        float:left;
    }
    .gg-block a img {
        height: auto;
		width: 100%;
        min-height: 100%;
        min-width: 100%;
    }
}

#footer {
    border-top: none !important;
}
#footer .top-box .right-box:before {
    display: none;
}