* {
    margin: 0;
    padding: 0;
}
.header {
    position: fixed;
    height: 65px;
    width: 100%;
    background-image: linear-gradient(#284264, #2B4667);
    display: flex;
    z-index: 1001;
}
.header-wrap {
    min-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.logo {
    text-align: center;
    margin-top: 11px;
}
.nav-bar {
    list-style: none;
    display: flex;
    color: white;
    justify-content: right;
    align-items:center;
    line-height: 40px;
}
.nav-bar a {
    width: 135px;
    height: 40px;
    text-decoration : none;
    text-align: center;
    margin-right: 15px;
    border-radius: 20px;
}
.join-btn {
    background-image: linear-gradient(to right, #FF8A28 , #FFC80C);
}
.nav-bar a:link {
    color: white
}
.nav-bar a:visited {
    color: white
}

/* 2024.11.20 修改样式 */
.top-content {
    /* width: 100%; */
    width: 1200px;
    margin: 0 auto;
    height: 560px;
    background-image: url('../img/hxy/top-content.png');
    background-repeat:no-repeat;
    background-position:top;
}

.top-content-wrap {
    background-image: url('../img/hxy/top-content.png');
    background-repeat:no-repeat;
    background-position:top;
}

.top-content-wrap, .middle-content-wrap, .bottom-content-wrap {
    min-width: 1200px;
    margin: 0 auto;
}

.huanjie .top-content, .huanjie .top-content-wrap{
    background-image: url('../img/huanjie/top-content.png');
}

.application-btn {
    width: 220px;
    height: 57px;
    position: absolute;
    /* left: 382px; */
    margin-left: 22px;
    top: 405.5px;
    border-radius: 55px;
}

.middle-content {
    width: 100%;
}

.middle-content p {
    text-align: center;
}

.middle-content-title1 {
    font-size: 45px;
    font-weight: bold;
    color: rgb(69,67,107);
    text-align: center;
    margin-top: 40px;
}

.middle-content-title2, .middle-content-title3{
    text-align: center;
    font-size: 30px;
    font-weight: normal;
    color: black;
    margin: 30px 0 40px 0;
}
.middle-content-title2 span, .middle-content-title3 span {
    display: inline-block;
    position: relative;
}
.middle-content-title2 span:after, .middle-content-title3 span:after{
    width: 150px;
    height: 8px;
    background-color: rgb(235,238,245);
    position: absolute;
    content: '';
    border-radius: 8px;
    bottom: 0;
    left: 50%;
    margin-left: -75px;
    z-index: -1;
}

.middle-content-title3 {
    margin-top: 90px;
}

.middle-content-solution-row {
    display: flex;
    justify-content: center;
}

.middle-content-solution-row li {
    width: 175px;
    margin: 0 65px;
    list-style: none;
}

.middle-content-solution-row li img {
    width: 164px;
    height: 139px;
    margin-left: 10px;
}

.middle-content-solution-tltle {
    margin-top:15px;
    font-size: 25px
}

.middle-content-solution-text p{
    font-size: 15px;
    color: rgb(110, 110, 110)
}
.middle-content-solution-text p:first-child {
    margin-top:15px;
}
.middle-content-solution-text p:nth-child(2) {
    margin-top:5px;
}

.bottom-content {
    width: 100%;
    height: 500px;
    background-image: linear-gradient(to right, #2D496B, #59779B);
    padding-top: 5px;
    margin-top: 62px;
}

.bottom-content-img-wrap {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.bottom-content-img {
    width: 1180px;
    height: 306px;
}

.bottom-content img {
    width: 1180px;
    height: 306px;
}

.bottom-content-title {
    font-size: 45px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 45px;
}

.bottom-content-btn {
    width: 373px;
    height: 278px;
    position: absolute;
    bottom: 0;
    display: inline-block;
    right: 0;
}

.footer {
    width: 100%;
    /* 2025/2/17 */
    /* height: 210px; */
    background-image: linear-gradient(to right, #2D496B, #59779B);
    border-top: 1px solid white;
    padding-top: 15px;
}

.footer-content-wrap {
    width: 1200px;
    /* 2025/2/17 */
    /* height: 130px; */
    margin: 0 auto;
    color: white;
    line-height: 25px;
    /* 2025/2/17 */
    display: flex;
    justify-content: space-between;
}

.footer-content-desc {
    margin-bottom: 30px;
}
.footer-contact-box {
    display: flex;
}
.contact-item {
    display: flex;
    align-items: center;
    border: 1px solid white;
    border-radius: 15px;
    padding: 4px 10px;
    cursor: pointer;
    color: white;
    text-decoration: none;
    margin-left: 20px;
}
.contact-item img {
    margin-right: 5px;
    height: 18px;
    width: 18px;
}

/* 2024.11.08 新增样式 */
.carousel {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding-top: 65px;
}

.slides {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease-in-out;
}

.controls {
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.controls button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.controls button:hover {
    background: rgba(0, 0, 0, 0.7);
}
/* 2025/2/17 */
.wx-qr-code-img {
    width:100px;
    height:100px;
}
.wx-qr-code-text {
    font-size: 13px;
}
.footer-copy-right-wrap {
    margin-top: 15px;
    color:#a8bbd1;
    font-size:14px;
    text-align: center;
    padding: 5px 0;
    border-top: 1px solid #a8bbd1
}