@import url(./layout.css);


/* ==========================================================================
   Common part
========================================================================== */
.wd_title {
    font-size: 36px;
    font-family: "Microsoft YaHei";
    color: rgb(51, 51, 51);
    font-weight: bold;
    text-align: center;
    margin: 40px 0;
}

@media only screen and (max-width: 1440px) {
    .wd_title {
        font-size: 30px;
        margin: 30px 0;
    }
}

@media only screen and (max-width: 1280px) {
    .wd_title {
        font-size: 26px;
        margin: 20px 0;
    }
}

@media only screen and (max-width: 1024px) {
    .wd_title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 920px) {
    .wd_title {
        font-size: 22px;
        margin: 15px 0;
    }
}

@media only screen and (max-width: 768px) {
    .wd_title {
        font-size: 20px;
        margin: 10px 0;
    }
}



.pic {
    overflow: hidden;
    position: relative;
    height: auto;
    cursor: pointer;
}

.bgimg {
    width: 100%;

}

.upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.pic:hover .upimg {
    transform: scale(1.06);
}

.newsbox .upimg{
    height: auto !important;
}








/* ==========================================================================
   第一模块part01新闻
========================================================================== */
.wd_part01 .news {
    background: url(../images/homebg.png) no-repeat bottom;
    padding: 30px;
    text-align: center;
}

.wd_part01 .news .newsbox {
    display: flex;
}

.wd_part01 .news .right,
.wd_part01 .news .left {
    width: 50%;
    box-sizing: border-box;
}

.owl-part01 {
    max-width: 95%;
}

.owl-part01 .owl-nav {
    margin-top: 0 !important;
}

.owl-part01 .owl-prev,
.owl-part01 .owl-next {
    width: 20px;
    bottom: 35px;
    height: 20px;
    line-height: 20px;
    background: none;
    text-indent: 100px;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    filter: Alpha(Opacity=100);
    opacity: 1;
}

.owl-part01 .owl-prev {
    position: absolute;
    left: 40px;
    background: url(../images/arrow01.png) left center no-repeat !important;
}

.owl-part01 .owl-next {
    position: absolute;
    right: 40px;
    background: url(../images/arrow02.png) right center no-repeat !important;
}

.owl-part01 .cover {
   /* background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, 1));*/
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 30px 70px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wd_part01 .news .right {
    border-left: 1px solid rgb(198, 207, 210);
}

.wd_part01 .newslist {
    margin-left: 4%;
}

.wd_part01 .newslist i {
    color: #2061ad;
    margin-right: 20px;
}

.wd_part01 .newslist li {
    font-size: 16px;
    /*text-transform: uppercase;*/
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.wd_part01 .newslist li .news_name {
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wd_part01 .newslist li .date {
    flex-shrink: 0;
    margin-left: 20px;
}

.wd_part01 .newslist li .news_name:hover {
    color: #0969b5;
}

.ckgd {
    display: inline-block;
    background-color: rgb(9, 105, 181);
    padding: 3px 40px;
    border-radius: 25px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.ckgd:hover {
    color: #fff;
}

.ckgd:after {
    content: '';
    display: block;
    position: absolute;
    top: -36px;
    left: -100px;
    background: white;
    width: 50px;
    height: 125px;
    opacity: 20%;
    transform: rotate(-45deg);
}

.ckgd:hover:after {
    left: 120%;
    transition: all 1200ms cubic-bezier(0.3, 1, 0.2, 1);
}

@media only screen and (max-width: 1440px) {
    .wd_part01 .newslist li {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 1366px) {
    .wd_part01 .newslist li {
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 1280px) {
    .wd_part01 .newslist li {
        margin-bottom: 10px;
    }

    .owl-part01 .cover {
        font-size: 16px;
    }

}

@media only screen and (max-width: 1024px) {
    .owl-part01 .cover {
        font-size: 14px;
        padding: 20px 70px;
    }

    .owl-part01 .owl-prev,
    .owl-part01 .owl-next {
        bottom: 24px;
    }

    .wd_part01 .newslist li {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

@media only screen and (max-width: 920px) {
    .wd_part01 .newslist li {
        margin-bottom: 2px;
    }

    .wd_part01 .newslist i {
        margin-right: 10px;
    }

    .owl-part01 .owl-prev,
    .owl-part01 .owl-next {
        background-size: 50% !important;
    }

    .owl-part01 .cover {
        padding: 20px 60px;
    }

    .wd_part01 .news {
        padding: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .wd_part01 .news .newsbox {
        flex-wrap: wrap;
    }

    .wd_part01 .news .right,
    .wd_part01 .news .left {
        width: 100%;
    }

    .owl-part01 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .wd_part01 .news {
        padding: 10px 0;
    }

    .wd_part01 .newslist li {
        margin-bottom: 5px;
    }

}








/* ==========================================================================
   第二模块part02产品
   ========================================================================== */
.owl-part02 .owl-dots .owl-dot.active span,
.owl-part02 .owl-dots .owl-dot:hover span {
    background: #e83428 !important;
}

.owl-part02 .owl-dots .owl-dot span {
    width: 12px !important;
    height: 12px !important;
}

.owl-part02 li {
    margin-bottom: 20px;
}

.owl-part02 .txtarea {
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(248, 248, 248);
    cursor: pointer;
    transition: all .5s;
}

.owl-part02 .txtarea .title {
    font-size: 26px;
    color: rgb(51, 51, 51);
    font-weight: bold;
}

.owl-part02 .txtarea .desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.owl-part02 .txtarea .xq {
    display: inline-block;
    font-size: 13px;
    color: rgb(9, 105, 181);
    text-decoration: underline;
    margin-top: 10px;
}

.owl-part02 .txtarea:hover {
    background-color: #0969b5;
}

.owl-part02 .txtarea:hover .xq {
    color: #fff;
}

.owl-part02 .txtarea:hover .desc {
    color: #fff;
}

.owl-part02 .txtarea:hover .title {
    color: #fff;
}

@media only screen and (max-width: 1280px) {
    .owl-part02 .txtarea .title {
        font-size: 23px;
    }
}

@media only screen and (max-width: 1024px) {
    .owl-part02 .txtarea .title {
        font-size: 20px;
    }

    .owl-part02 .txtarea {
        padding: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .owl-part02 .txtarea .title {
        font-size: 18px;
    }

    .owl-part02 .txtarea {
        padding: 10px;
    }
}










/* ==========================================================================
   第三模块part03解决方案
   ========================================================================== */
.wd_part03 {
    margin-top: 25px;
}

.wd_part03 .wrapper {
    background-color: #0b6ab5;
}

.wd_part03 .wd_title {
    color: #fff;
}

.solutionlist {
    /* margin-left: -20px; */
    padding: 0 0 60px;
}

.solutionlist li {
    /* margin-left: 20px; */
    /* float: left; */
    /* width: calc(25% - 20px); */
    margin-bottom: 20px;
}

.solutionlist .sl_box {
    box-sizing: border-box;
    border: 1px solid rgba(238, 238, 237, .5); background:#0b6ab5; transition: all .2s;
    height: 130px;
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.solutionlist .sl_box:hover{box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);    transform: translate3d(0, -2px, 0);}

.solutionlist .sl_box .sol_img {
    width: 50%;

}

.solutionlist .sl_box .sol_img a {
    display: flex;
    justify-content: center;
}

.solutionlist .sl_box .sol_img img {
    
    cursor: pointer;
}

.solutionlist .sl_box:hover .sol_img img {
   transform: rotateY(360deg);transition: all 1s;
}

.sol_title {
    font-size: 26px;
    color: #fff;
}

.sol_title:hover {
    color: #fff;
}

#owl-solutionlist .owl-item img{
    width: auto;
}

@media only screen and (max-width: 1440px) {
    .sol_title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 1280px) {
    .sol_title {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1024px) {
    .sol_title {
        font-size: 18px;
    }

    .solutionlist .sl_box .sol_img img {
        max-width: 60%;
    }
}



@media only screen and (max-width: 920px) {
    .solutionlist {

        padding: 0 20px 60px;
    }
}

@media only screen and (max-width: 768px) {
    .solutionlist {
        padding: 0 0px 30px;
    }

    .sol_title {
        font-size: 16px;
    }

    .solutionlist .sl_box {
        height: 110px;
    }
}

@media only screen and (max-width: 500px) {

    .solutionlist .sl_box .sol_img {
        width: 45%;
    }
    .solutionlist .sl_box {
        height: 88px;
    }
}











/* ==========================================================================
   第四模块part04关于我们
   ========================================================================== */
.wd_part04 {
    margin-top: 80px;
}

.home_tit02 h3 {
    font-size: 36px;
    color: rgb(51, 51, 51);
    line-height: 36px;
    height: 36px;
}


.home_tit02 .txten {
    color: #d1d1d1;
    font-size: 16px;
    text-transform: Uppercase;
}

.home_tit02 {
    margin-bottom: 30px;
}

.haboutbox .txtarea {
    width: calc(100% - 900px);
    float: left;
}

.haboutbox .txtarea h4 {
    line-height: 1.5em;
    font-size: 24px;
    font-weight: normal;
}

.haboutbox .txtarea .desc {
    line-height: 2em;
    font-size: 18px;
    overflow: hidden;
    color: #999999;
    margin: 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.haboutbox .more a {
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin-right: 10px;
    background: #6cb92d;
    color: #fff;
    font-size: 14px;position: relative;overflow: hidden;
}

.haboutbox .more a:after {
    content: '';
    display: block;
    position: absolute;
    top: -36px;
    left: -100px;
    background: white;
    width: 50px;
    height: 125px;
    opacity: 20%;
    transform: rotate(-45deg);
}

.haboutbox .more a:hover:after {
    left: 120%;
    transition: all 1200ms cubic-bezier(0.3, 1, 0.2, 1);
}

.haboutbox .pic {
    width: 800px;
    float: right;
    overflow: hidden;
}

.haboutbox .pic img {
    max-width: 100%;
}

.wedomvlink {
    padding: 60px 0 40px 0;
}

.home_tit03 {
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    color: #505050;
    margin-bottom: 30px;
    text-transform: Uppercase;
    display: flex;
    align-items: flex-end;
}

.home_tit03 .txten {
    color: #d1d1d1;
    font-size: 18px;
    font-weight: normal;
    margin-left: 5px;
    line-height: 1;
}

.home_tit03 img {
    margin-right: 10px;
}

.logoitem {
    box-sizing: border-box;
    border: 1px solid #e7e7e7;
    height: 90px;
    line-height: 90px;
    margin: 5px;
    background: #fff;
    vertical-align: middle;
    position: relative;
}

.logoitem img {
    width: auto !important;
    max-width: 90% !important;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logoitem:hover {border-color:#0969b5;}












/* ==========================================================================
   第五模块part05合作伙伴
   ========================================================================== */
.wd_part05 {
    margin: 100px 0 50px;
}

@media only screen and (max-width:1280px) {
    .home_tit02 h3 {
        font-size: 28px;
    }

    .home_tit03 {
        font-size: 28px;
    }
}



@media only screen and (max-width:1280px) {
    .haboutbox .pic {
        width: 600px;
    }

    .haboutbox .txtarea {
        width: calc(100% - 650px);
    }

    .home_tit02 {
        margin-bottom: 10px;
    }

    .haboutbox .txtarea h4 {
        font-size: 18px;
    }

    .haboutbox .txtarea .desc {
        margin-top: 10px;
    }

    .home_tit03 {
        font-size: 24px;
    }
}

@media only screen and (max-width:1024px) {
    .haboutbox .txtarea .desc {
        font-size: 16px;
    }

    .logoitem {
        height: 80px;
        line-height: 80px;
    }
}

@media only screen and (max-width:920px) {

    .haboutbox .pic {
        width: 450px;
    }

    .haboutbox .txtarea {
        width: calc(100% - 500px);
    }

    .haboutbox .txtarea .desc {
        font-size: 14px;
        line-height: 1.5em;
        margin-top: 0;
    }

    .haboutbox .txtarea h4 {
        font-size: 16px;
    }

    .home_tit03 {
        font-size: 22px;
    }

    .home_tit03 img {
        width: 30px;
    }

    .home_tit03 .txten {
        font-size: 16px;
    }

    .home_tit02 h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width:768px) {
    .home_tit02 h3 {
        font-size: 22px;
        font-weight: bold;
    }

    .haboutbox .pic {
        width: 100%;
        float: none;
    }

    .haboutbox .txtarea {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }

    .haboutbox .txtarea h4 {
        font-size: 14px;
    }

    .haboutbox .txtarea .desc {
        font-size: 12px;
    }

    .home_tit02 {
        margin-bottom: 0;
    }

    .home_tit02 .txten {
        font-size: 12px;
    }

    .home_tit03 {
        margin-bottom: 20px;
    }

    .logoitem {
        margin: 0;
    }

    .home_tit03 .txten {
        font-size: 14px;
    }

    .haboutbox .more a {
        padding: 0 20px;
    }

    .wd_part04 {
        margin-top: 25px;
    }

    .wd_part05 {
        margin-top: 30px;
    }
}

@media only screen and (max-width:500px) {
    .wd_part05 {
        margin-bottom: 30px;
    }
}










/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    font-size: 14px;
    padding: 60px 0 0 0;
    color: #fafafa;
    background: #32363b;
    position: relative;
}


footer a {
    color: #efefef;
}

footer a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-nav {
    text-align: justify;
    margin-bottom: 20px;
}

.fn-col {
    display: inline-block;
    zoom: 1;
    vertical-align: top;
}

.footer-nav:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0;
}

.fn-col h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #fafafa;
    position: relative;
}

.fn-col h3 {
    color: #fafafa;
}

.fn-col h3 a:hover {
    text-decoration: underline;
    color: #fff;
}

.fn-col li {
    line-height: 30px;
    font-size: 14px;
    color: #e4e4e4;
}

.fn-col li a {
    color: #e4e4e4;
}

.fn-col li a:hover {
    text-decoration: underline;
    color: #fff;
}

.fn-contact {
    width: 260px;
    overflow: hidden;
    color: #fafafa;
    line-height: 2em;
    padding-right: 30px;
    border-right: 1px solid #697178;
}

.fn-ewm {
    padding-left: 50px;
    border-left: 1px solid #697178;
    width: 120px;
}

.fn-ewm .txt01 {
    font-size: 16px;
}

.fn-ewm img {
    margin-top: 10px;
}

.foothd {
    padding: 15px 0;
    text-transform: Uppercase;
    color: #f2f1f1;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #697178;
    background: #32363b;
    position: relative;
}

.foothd a {
    color: #8f9ed4;
}

.foothd a:hover {
    text-decoration: underline;
}


@media only screen and (max-width: 1440px) {
    footer {
        padding-top: 30px;
    }

    .foothd {
        padding: 10px 0;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1200px) {
    .foothd span {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 920px) {
    .fn-col li {
        font-size: 12px;
    }

    .fn-col h3 {
        font-size: 14px;
    }

    .foothd span.ewm {
        display: none;
    }

    .fn-contact {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    footer {
        padding: 0;
    }

    .footer-nav {
        display: none;
    }
}