﻿/*通用部分*/
.indexTitle {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 40px;
}
.indexTitle h2{
    font-size:30px;
    font-weight:bold;
    line-height:45px;
    letter-spacing:1px;
}
    .indexTitle h2 span {
        color: #005bac;
    }
    .indexTitle h3 {
        font-size: 40px;
        font-weight: bold;
        line-height: 50px;
        font-family: 'Cabin';
        text-transform:uppercase;
        color:#999;
    }
    .indexTitle s{
        display: block;
        width:40px;
        height: 5px;
        background-color: #005bac;
    }

.whiteColor{
    color:#fff;
}

/*公司描述*/
.indexAboutNav{
    width:100%;
    height: auto;overflow: hidden;
    background-color: #f1f1f1;
    padding:30px 0;
}
.indexAboutNav li{
        width: 33%;float: left;
        height: auto;
        overflow: hidden;
        text-align: center;
        border-right: 1px solid #ddd;
}
.indexAboutNav li:last-child{
    border-right: 0;
}
.indexAboutNav li h2{
    line-height: 80px;
    font-size: 60px;
    font-weight: bold;
    color:#005bac;
}
.indexAboutNav li h2 span{
    font-size: 30px;
}
.indexAboutNav li h3{
    line-height: 30px;
    font-size: 18px;
    color:#000;
}

/*产品开始*/
.indexProduct{
    width: 100%;
    height: auto;overflow: hidden;
    background-image: url(../Images/indexProductBg.jpg);
    padding:100px 0;
}
.indexProductNav{
    width:100%;
    text-align:center;
}
    .indexProductNav li {
        width: 31.33%;float: left;
        height: auto;overflow:hidden;
        text-align: center;
        color: #333;
        transition:all 0.5s;
        position: relative;
        margin:20px 1%;
        background-color: #000;
    }
    .indexProductNav li img{
        width:100%;
        transition: all 0.5s;
    }
    .indexProductNav li .word{
        position: absolute;
        width:100%;
        height:auto;
        top:20%;
        left: 0;
        color: #333;
    }
    .indexProductNav li .word h2{
        font-size: 30px;
        line-height: 40px;
    }
    .indexProductNav li .word h3{
        font-size: 20px;
        color:#fff;
        line-height: 40px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    .indexProductNav li .word h4{
        width:100%;
        line-height: 30px;
    }
    .indexProductNav li .word h4 span{
        display: inline-block;
        border: 1px solid #005bac;
        padding:0 20px;
        border-radius: 30px;
        transition: all 0.5s;
        color:#005bac;
    }
    .indexProductNav li:hover{
        box-shadow: 0 0 15px #aaa;
    }
    .indexProductNav li:hover img{
        opacity: 0.8;
    }
    .indexProductNav li:hover .word h4 span{
        border: 1px solid #59a3e4;
        color:#59a3e4;
    }


.indexProductList{
    width:100%;
    height:auto;overflow:hidden;
}
    .indexProductList li {
        width: 30%;
        float: left;
        margin: 20px 1.5%;
        border: 1px #ebebeb solid;
        transition:all 0.5s;
    }
    .indexProductList li:hover{
        box-shadow:0 0 10px #005bac;
    }
    .indexProductList li div {
        width:100%;
    }
    .indexProductList li div img{
        width:100%;
        height: 300px;
    }
    .indexProductList li h2 {
        width: 100%;
        height: 50px;
        line-height: 50px;
        overflow: hidden;
        background-color: #f3f3f3;
        text-align:center;
        font-size:16px;
    }
    .indexProductList li:hover h2{
        color:#005bac;
    }
/*产品结束*/

/*关于我们*/
.indexAboutPic {
    width: 45%;
    float: left;
    margin-right: 3%;
}
.indexAboutPic img{
    max-width:100%;
    border-top-left-radius: 90px;
    border-bottom-right-radius: 90px;
    transition:all 0.5s;
}
.indexAboutPic img:hover{
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 90px;
    border-bottom-left-radius: 90px;   
}
.indexAboutContent{
    width:52%;float:left;
}
.indexAboutContent h2{
    width:100%;
    line-height:60px;
    font-size:36px;
    color:#000;
    text-indent: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 3px solid #005bac;
}
    .indexAboutContent h3 {
        width: 98%;
        height: auto;
        overflow: hidden;
        line-height: 40px;
        color: #666;
        margin-top:10px;
        font-size: 16px;
        padding-left: 15px;
    }
    .indexAboutContent h3::before{
        display: inline-block;
        content: '';
        width:10px;
        height: 10px;
        background-color: #f9a634;
    }
.indexAboutContent div{
    width:90%;
    height: auto;overflow: hidden;
    margin:30px auto 0 auto;
}
    .indexAboutContent div a {
        display: inline-block;
        width: 140px;
        height: 40px;
        line-height: 40px;
        color: #fff;
        letter-spacing: 1px;
        text-align: center;
        margin-top: 15px;
        transition:all 0.5s;
        background-color: #f9a634;
    }
        .indexAboutContent div a:hover {
            color: #fff;
            background: #005bac;
            box-shadow: 0 0 10px #ccc;
        }




/*新闻资讯*/
#indexNews{
    width:100%;
    height: auto;overflow: hidden;
    background-color: #f9f9f9;
    padding:30px auto;
}
.indexNews {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom:40px;
}
.indexNewsList {
    width: 90%;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    padding:40px 4%;
    transition:all 0.5s;
    border-radius: 10px;
    margin:20px 1%;
}
.indexNewsDate{
    width:20%;float:left;
    margin-right:5%;
    text-align:center;
}
.indexNewsDate h3{
    width:100%;
    font-size:40px;
    color:#999;
    line-height:40px;
    margin-top:10px;
}
.indexNewsDate h4{
    width:100%;
    font-size:12px;
    color:#999;
}
.indexNewsContent{
    width:75%;float:left;
    text-align:left;
}
.indexNewsContent h2{
    width:100%;
    height:50px;line-height:50px;overflow:hidden;
    font-size:20px;
    font-weight:bold;
}
    .indexNewsContent s {
        display: inline-block;
        width: 18px;
        height: 2px;
        background: #005bac;
        margin-bottom: 5px;
        transition: all 0.5s;
    }
    .indexNewsContent h3{
        width:100%;
        height:66px;
        line-height:22px;
        overflow:hidden;
        color:#666;
    }
    .indexNewsContent div{
        width:100%;
    }
        .indexNewsContent div span {
            display:inline-block;
            padding:0 40px;
            line-height: 30px;
            font-size: 12px;
            color: #666666;
            text-align: center;
            margin-top: 32px;
            box-shadow: 0 5px 5px #eee;
            border: 1px solid #eee;
            transition: all 0.5s;
            border-radius: 5px;
        }

.indexNewsList:hover {
    box-shadow: 0 0 10px #ccc;
    border-bottom: 1px solid #005bac;
}
.indexNewsList:hover .indexNewsContent h2{
    color:#005bac;
}
.indexNewsList:hover .indexNewsContent s{
    width:100%;
}
.indexNewsList:hover .indexNewsContent div span{
    background-color: #005bac;
    color:#fff;
}


/*合作客户*/
.indexCooperationList{
    width:100%;
}
    .indexCooperationList li {
        width: 17.5%;
        float: left;
        border: 1px solid #f5f5f5;
        box-shadow:0 0 5px #ccc;
        padding:5px 0;
        text-align:center;
        position:relative;
        margin:20px 1%;
    }
        .indexCooperationList li:nth-child(6){
            border-right:0;
        }
        .indexCooperationList li:nth-child(12) {
            border-right: 0;
        }
        .indexCooperationList li:nth-child(18) {
            border-right: 0;
        }

        .indexCooperationList li img {
            max-width: 90%;
        }
        .indexCooperationList li img:hover{
            transform: rotateY(90deg);
            -webkit-transform: rotateY(90deg);
            -moz-transform: rotateY(90deg);
            transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
        }

@media(max-width:720px){



/*公司描述*/
.indexAboutNav{
    padding:10px 0;
}
.indexAboutNav li{
        width: 33%;float: left;
        height: auto;
        overflow: hidden;
        text-align: center;
        border-right: 1px solid #ddd;
}
.indexAboutNav li h2{
    line-height: 40px;
    font-size: 40px;
}
.indexAboutNav li h2 span{
    font-size: 16px;
}
.indexAboutNav li h3{
    line-height: 20px;
    font-size: 14px;
}

/*产品开始*/
.indexProduct{
    padding:50px 0;
}
    .indexProductNav li {
        width: 98%;
    }

    .indexProductList li {
        width: 46%;
    }
    .indexProductList li div img{
        height: 160px;
    }
/*产品结束*/

/*关于我们*/
.indexAboutPic {
    width: 100%;
    margin-right: 0%;
}
.indexAboutContent{
    width:100%;float:left;
    margin-top: 30px;
}
.indexAboutContent h2{
    line-height:40px;
    font-size:30px;

}

/*合作客户*/
    .indexCooperationList li {
        width: 31%;
        float: left;
        border: 1px solid #f5f5f5;
        box-shadow:0 0 5px #ccc;
        padding:5px 0;
        text-align:center;
        position:relative;
        margin:20px 1%;
    }
}