/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #F8F8F8;
}

/* 顶部导航栏样式 */
header {
    background: #000;
    color: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 19px;
}
.logo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
nav {
    display: flex;
    font-size: 14px;
}
nav a {
    text-decoration: none;
    color: white;
    padding: 23px 20px;
    border-bottom: none;
}
nav a:hover{
    background-color: #ccc;  
}
nav a.active {  
    color: #0091B0;
    border-bottom: 2px solid #0091B0;
}
footer{
    font-size: 14px;
    color: #AAAAAA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-business{
        width: 100%;
        background-color: #f8f8f8;
        padding: 32px 0 36px 0;
        h1{
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            text-align: center;
        }
        ul{
            width: 1000px;
            height: 100%;
            margin: auto;
            margin-top: 43px;
            list-style-type: none;
            li{
                float: left;
                width: 30%;
                margin-left: 3%;
                img{
                    width: 74px;
                }
                span{
                    font-size: 24px;
                    color: #333333;
                    position: relative;
                    bottom: 30px;
                    left: 35px;
                }
            }
        }
}
.footer-content{
    width: 100%;
    background: #474747;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 44px;
    gap: 5px;
    a {
        color: #AAAAAA;
      }
      a:hover {
        color: #0091B0;
      }
}
.content-hr{
    width: 800px;
    height: 1px;
    background-color: #F1F1F1;
    text-align: center;
    margin-top: 3px;
}
.title-container{
    height: auto;
    h1{
        text-align: center;
        color: black;
        font-weight: 700;
        font-size: 24px;
        padding: 58px 0 16px 0;
        span{
            color: #0091B0;
            padding: 58px 0 16px 0;
            border-bottom: 2px solid #0091B0;
        }
    }
    p{
        text-align: center;
        font-size: 14px;
        color: #666666;
        margin: 14px 0 64px 0;
    }
    
    .jx-content{
        width: 1200px;
        margin: auto;
        height: 488px;
        border: 1px solid transparent;
        .lbimg{
            width: 600px;
            height: 350px;
        }
    }
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 0 296px;
}
/* home */
.home{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature {
    width: calc(50%); /* Two columns with some margin */
    box-sizing: border-box;
    text-align: center;
}
.feature-container {
    display: flex;
    flex-direction: row;
    margin:0 64px 90px 64px;
}
.feature-content-container {
    display: flex;
    flex-direction: column;
    margin-left: 36px;
    align-items: start;
}

.feature img {
    width: 90px;
    height: 90px;
}

.feature h3 {
    font-weight: 700;
    font-size:24px;
    margin-bottom: 10px;
}

.feature p {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
    text-align: left;
    line-height: 21px;
}
.column-view{
    display: flex;
    flex-direction: column;
}
.row-view{
    display: flex;
    flex-direction: row;
}
.center-container{
    width: 289px;
    height: 391px;
    background: #008DF3CC;
    padding: 45px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    h1{
        font-weight: 700;
        color: white;
    }
    p{
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 28px;
        color: white;
    }
}
.case{
    width: calc(25% -40px); /* Two columns with some margin */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 0 7px 39px 7px;
    p{
        color: #333;
        font-size: 16px;
        margin-top: 8px;
    }
}
.add{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(90deg, #0091B0 0%, #123882 100%);
    align-items: center;
    padding: 51px 0 30px 0;
    h1{
        font-size: 42px;
        font-weight: 700;
        text-align: center;
        color: white;
    }
    p{
        color: #FFFFFF;
        font-size: 24px;
    }
}
.map{
    width: 1100px;
    height: 400px;
    margin: 20px auto;
}
/* about */
.intro{
    display: flex;
    flex-direction: row;
    margin-top: 42px;
}
.short-line{
    width: 126px;
    height: 2px;
    background: #0091B0;
    margin-top: 48px;
    margin-bottom: 14px;
}
.intro-content{
    display: flex;
    flex-direction: column;
    margin-right: 59px;
    margin-top: 33px;
    p{
        color: #333;
        font-size: 20px;
        line-height: 34px;
        font-weight: 400;
    }
}
.honor{
    background-color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 92px;
    img{
        margin-top: 42px;
        margin-bottom: 131px;
    }
}