/* 
---------------------------------------------
头部导航 header css
--------------------------------------------- 
*/
.header-style {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-fixed {
    position: fixed !important;
    top: 0;
    z-index: 100;
    background-image: linear-gradient(to right, #74ebd5 0%, #9face6 100%);
    /* background-image: linear-gradient(to right, #434343 0%, black 100%); */
    /* background-color: #fff; */
    box-shadow: 0px 0px 10px #bbb !important;
    height: 80px !important;
    transform: translate(0, 0);
    .nav-item a{
        padding: 0 !important;
    }
    .nav-item a:hover{
        /* background-color: #66a6ff; */
        color: antiquewhite !important;
    }
}

.nav-style {
    height: 80px;
    line-height: 80px;
}

.nav-style .header-logo{
    width: 140px;
    height: 50px;
}

.nav-style .header-logo:hover{
    width: 145px;
    height: 55px;
    transition: all 1s;
}

.collapse-style {
    color: aqua;
    justify-content: flex-end;
}

.nav-item {
    min-width: 100px;
    text-align: center;
    margin-right: 10px;
}

.nav-link {
    color: var(--light) !important;
    /* text-shadow: 2px 2px 2px var(--cyan);  文字阴影 */
}

.nav-link:hover {
    border-bottom: solid var(--cyan) 1px;
    color: var(--cyan) !important;
    font-size: 1.1em;
}

.btn-transfrom {
    transition: all 2s;
    -webkit-transition: all 2s;
}

.nav-active{
    border-bottom: solid #0043ff 1px;
    color: #0043ff !important;
    font-size: 1.1em;
}

@media (max-width:800px) {
    .carousel-font-tlt {
        font-size: 1.2em;
    }

    .navbar-nav {
        background-color: #fff;

    }

    .nav-link {
        color: black !important;
    }

    .nav-style {
        height: 80px;
        line-height: 50px;
    }

    .nav-style .header-logo{
        width: 112px;
        height: 40px;
    }

    .nav-style .header-logo:hover{
        width: 120px;
        height: 41px;
    }
}


/* 
---------------------------------------------
轮播 banner css
--------------------------------------------- 
*/

.banner{
    width: 100%;
    height: 100%;
    background-image: url(../img/other-bg.png);
    /* background-color: #8cc8e5; */
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 550px;
    position: relative;
}

/* .banner img{
    width: 100%;
    height: 100%;
} */

.banner-text{
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 55%;
    left: 70%;
    transform: translate(-50%,-50%);
}

.banner-text p{
font-size: 30px;
font-weight: 600;
line-height: 50px;
color: #6e6c6c;
letter-spacing: 5px;
}

/* 移动端轮播显示文字变小 */
@media (max-width:1000px) {
    .banner{
        background-color: #8cc8e5;
        min-height: 300px;
        background-image: none;
    }
    .banner-text{
        margin: 0 auto;
        text-align: center;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .banner-text p{
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        color: #6e6c6c;
        letter-spacing: 5px;
        }
}


/* 
---------------------------------------------
产品分布图 product-map css
--------------------------------------------- 
*/
.product-map{
    background-image: url(../img/product-bg1.png);
    background-repeat: no-repeat;
    background-position: center 80%; 
    width: 100%;
    min-height: 1000px;
}

.product-map-top{
    margin: 50px auto 100px;
    text-align: center;
    width: 500px;
}

.product-map-left{
    margin: 100px 0 0 10%;
    text-align: center;
    width: 300px;
    float: left;
}

.product-map-right{
    margin: 100px 10% 0 0;
    text-align: center;
    width: 300px;
    float: right;
}

/* 移动端 */
@media (max-width:1260px) {
    .product-map{
        display: none;
    }
}





/* 
---------------------------------------------
产品服务列表 product-list css
--------------------------------------------- 
*/
.product-list{
    .nav-item{
        .active{
            background-color: #6ca4f1;
            color: #fff !important;
        }
    }
    
}

.product-list-title p{
    padding: 100px 60px 0px 60px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #6ca4f1;
    /* border-bottom: #c1bebe 1px solid; */
}

.product-list-title span{
    display: block;
    padding: 10px 0 60px 0;
    text-align: center;
    font-size: 14px;
    color: #bbb;
}

.product-nav-tab{
    color: #000 !important;
}

.product-list-ul{
    padding: 0;
}

.product-list-ul a{
    text-decoration: none;
}

.product-list-ul li{
    list-style: none;
    margin-bottom: 20px;
    /* padding-bottom: 20px; */
    border-bottom: 1px solid #eee;
    min-height: 250px;
}

.product-list-img {
    float: left;
}

.product-list-img img{
    width: 250px;
    height: 200px;
}

.product-list-content{
    padding: 0 20px;
    margin-left: 250px;
}

.product-list-content-title{
    font-size: 25px;
    font-weight: 600;
    color: #6ca4f1;
}

.product-list-content-title:hover{
    font-size: 28px;
    font-weight: 600;
    color: #434343;
}

.product-list-content-synopsis{
    color: #434343;
    line-height: 20px;
    padding-top: 10px;
}

/* 移动端轮播显示文字变小 */
@media (max-width:800px) {
    .product-list-img {
        float: none;
    }

    .product-list-content{
        padding: 0;
        margin-left: 0;
    }

    .product-list-img img{
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

    .product-list-content-title{
        margin-top: 10px;
    }

    .product-list-content-synopsis{
        color: #434343;
        line-height: 20px;
    }
}

/* 
---------------------------------------------
底部 footer css
--------------------------------------------- 
*/
/* 底部css */
.footer-style {
    width: 100%;
    bottom: 0;
    /* background: linear-gradient(145deg, var(--cyan) 0%, rgba(104, 204, 152, 1) 100%); */
    background-image: linear-gradient(to right, #434343 0%, black 100%);
}

.footer-copyright {
    padding: 40px 0;
}

.footer-copyright p {
    text-align: center;
    color: var(--light);
}
