.top-banner {
    width: 100%;
    background-color: green;

    img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        display: block;
    }

}

.expert-search-btn {
    margin-top: 0.35rem;
    background-color: #0571B2;
    border: none;
    height: 0.65rem;
    font-size: 0.24rem;
    font-family: "宋体";
    width: 5.62rem;
    line-height: 0.65rem;
    border-radius: 0.32rem;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s ease;
    outline: none;
    padding-left: 0 !important;
    text-align: center;

    &:hover {
        background-color: #046099;
        transform: scale(1.03);
        box-shadow: 0 0.06rem 0.15rem rgba(5, 113, 178, 0.3);
    }

    &:active {
        background-color: #034f7f;
        transform: scale(1);
        box-shadow: 0 0.03rem 0.08rem rgba(5, 113, 178, 0.2);
    }
}

.more {
    position: absolute;
    background-image: url(../images/home/more.png);
    background-size: 100% 100%;
    width: 1.21rem;
    height: 0.51rem;

    font-family: "宋体";
    font-size: 0.2rem;
    color: #333333;
    text-align: center;
    line-height: 0.74rem;
    cursor: pointer;
    z-index: 9;

    a {
        &:hover {
            font-weight: 400;
        }

    }
}

.box {
    margin-bottom: 0.84rem;
}

.box1 {
    display: flex;
    justify-content: space-between;
    margin-top: 0.76rem;
}

.box-new {
    display: flex;
    justify-content: space-between;
    gap: 0.37rem;
}

.box2 {
    display: flex;
    gap: 0.31rem;

    .article {
        height: 1.29rem;
        width: 100%;
        display: flex;
        align-items: center;
        border-bottom: 0.01rem solid #EBEBEB;

        &:hover {
            animation: shake-light 0.5s ease;
        }

        .article-date {
            height: 1.06rem;
            border-radius: 0.1rem;
            display: flex;
            color: #0571B2;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            box-sizing: border-box;
            font-size: 0.18rem;

            .date {
                line-height: 0.45rem;
                font-weight: bold;
                margin-top: 0.20rem;
                white-space: nowrap;
                overflow: hidden;

                .day {
                    font-size: 0.3rem;
                    line-height: 0.4rem;
                }

                .divider {
                    font-size: 0.3rem;
                    color: #999999;
                    font-weight: 100;
                    line-height: 0.4rem;
                }

                .month {
                    font-size: 0.18rem;
                    line-height: 0.44rem;
                }

            }

            .year {
                margin-left: 0.10rem;
                font-family: "宋体";
            }

        }

        .article-content {
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            padding-top: 0.39rem;
            padding-left: 0.16rem;

            p {
                height: 0.51rem;
                font-family: "宋体";
                font-weight: bold;
                line-height: 0.32rem;
                font-size: 0.20rem;
                color: #333333;
            }

            .article-date-line {
                display: none;
            }

        }
    }

    .new-area {
        width: 70%;
        position: relative;

        .tob-tabs {
            position: absolute;
            margin-top: -0.46rem;
            margin-left: 2.06rem;
            justify-content: space-between;
            align-items: center;
            width: 2.4rem;
            display: flex;

            font-family: "宋体";
            font-size: 0.26rem;
            color: #333333;

            .tab-link {
                cursor: pointer;
                word-wrap: none;
                overflow: hidden;

                .divider {
                    margin: 0 auto;
                    width: 0.33rem;
                    height: 0.03rem;
                    background: #0571B2;
                    opacity: 0;
                }

                &.active {
                    .divider {
                        opacity: 1;
                    }

                }

                &:hover {
                    color: #0571B2;

                    .divider {
                        opacity: 1;
                    }

                }
            }
        }

        .more {
            margin-top: -0.46rem;
            margin-left: 7.66rem;
        }

    }

    .top-new {
        margin-top: 0.5rem;
        width: 100%;
        display: flex;
        gap: 0.26rem;
        display: none;

        &.active {
            display: flex;
        }

        .article-card {
            width: 4.30rem;
            cursor: pointer;

            .cover {
                width: 100%;
                height: 2.86rem;
                background: lightgray;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: fill;
                    display: block;
                }

            }

            .content {
                color: #333333;
                width: 100%;

                h1 {
                    margin-top: 0.25rem;
                    font-size: 0.22rem;
                    font-weight: bold;
                    line-height: 0.32rem;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    line-clamp: 2;
                    -webkit-box-orient: vertical;
                }

                p {
                    margin-top: 0.18rem;
                    font-size: 0.19rem;
                    font-weight: bold;
                    color: #666666;
                    font-family: "宋体";
                    line-height: 0.3rem;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                }

                .date {
                    margin-top: 0.18rem;
                    font-size: 0.2rem;
                    font-family: "宋体";
                    color: #999999;
                    line-height: 0.3rem;
                }

            }
        }
    }

    .b-new {
        margin-top: 0.16rem;

        li {
            border-top: 0.01rem solid #EBEBEB;
        }

    }

    .notice-area {
        width: 5.25rem;
        box-sizing: border-box;

        .more {
            margin-top: 1.25rem;
            margin-left: 4rem;
        }

        ul {
            margin-top: 0.51rem;
        }

        li:first-child {
            .article {
                border-top: 0.01rem solid #EBEBEB;
            }

        }
    }
}

.box3 {
    background-image: url(../images/home/ks-bg.png);
    background-size: 100%;


    .ks {
        .line {
            background-image: url(../images/home/line.png);
            background-size: 100% 100%;
            background-repeat: no-repeat;
            width: 100%;
            height: 1.21rem;
            margin-top: -0.6rem;
        }

        .org-list {
            position: absolute;
            display: flex;
            right: 5.4rem;
            font-size: 0.24rem;
            font-family: "宋体";
            color: #FFFFFF;
            gap: 0.8rem;
            margin-top: -0.81rem;

            .org {
                cursor: pointer;
                width: 0.91rem;
                height: 0.81rem;
                white-space: nowrap;
                background-image: url(../images/home/org.png);
                background-size: 100% 100%;
                line-height: 0.81rem;
                transition: all 0.2s ease;

                /* 可选：平滑过渡 */
                &.active {
                    font-weight: bold;
                    background-image: url(../images/home/org-a.png);
                    background-size: 100% 100%;
                }

                &:hover {
                    animation: shake-light 0.5s ease;
                }

            }
        }

        .dep-list {
            margin-top: 0.35rem;
            display: none;
            flex-wrap: wrap;
            column-gap: 0.15rem;
            row-gap: 0.17rem;

            &.active {
                display: flex;
            }

            .dep {
                width: 2.56rem;
                height: 0.63rem;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 0.11rem;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #FFFFFF;
                cursor: pointer;
                box-sizing: border-box;
                font-family: "宋体";

                .dot {
                    width: 0.08rem;
                    height: 0.08rem;
                    background: #FFFFFF;
                    border-radius: 50%;
                    margin-right: 0.23rem;
                }

                &.active {
                    background: #106B12;
                }

                &:hover {
                    font-weight: bold;
                }

            }
        }

        .dep-memo {
            display: none;

            height: 1.54rem;
            overflow: auto;

            &.active {
                display: block;
            }


            color: #fff;
            font-family: "宋体";
            font-size: 0.2rem;
            margin-top: 0.21rem;
            width: 100%;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 0.1rem;

            padding: 0.33rem 0.36rem;
        }

        .zh {
            margin-top: -0.48rem;
        }

    }
}

.box4 {

    margin-top: 1.21rem;
    font-family: "宋体";
    font-size: 0.22rem;
    word-spacing: 0;

    .new-list {
        background: #E3EDF7;
        border-radius: 0.1rem;
        width: 4.75rem;
        box-sizing: border-box;
        padding: 0.09rem;

        .new {
            background: #FFFFFF;
            border-radius: 0.1rem;
            border: 0.01rem solid #0571B2;
            padding-top: 0.45rem;
            padding-left: 0.19rem;
            padding-right: 0.22rem;
            padding-bottom: 0.4rem;

            .more {
                position: absolute;
                margin-left: 2.62rem;
            }

            .title {
                font-weight: bold;
                font-size: 0.48rem;
                line-height: 0.48rem;
                color: #333;
            }

            .list {
                margin-top: 0.22rem;

                div {
                    box-sizing: border-box;
                    border-bottom: 1px solid rgba(51, 51, 51, 0.27);
                    padding-top: 0.30rem;
                    padding-bottom: 0.2rem;
                    cursor: pointer;

                    p {
                        font-weight: bold;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                    span {
                        font-size: 0.18rem;
                        color: #333333;
                        opacity: 0.5;
                    }

                    &:last-child {
                        border-bottom: none;
                    }

                }
            }
        }
    }
}

.box5 {
    display: flex;

    .special-list {
        margin-top: 1.02rem;
        margin-left: 0.64rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.19rem;

        div {
            &.cover {
                position: relative;

                &:nth-child(odd) {
                    margin-top: 0.5rem;
                }

                cursor: pointer;

                &::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(30, 30, 30, 0.3));
                    opacity: 0;
                    transition: all 0.4s ease-in-out;
                    z-index: 2;
                    pointer-events: none;
                    transform: scale(0.98);
                    border-radius: 4px;
                }

                &:hover::before {
                    opacity: 1;
                    transform: scale(1);
                }

                &:hover .text {
                    transform: scale(1.05);
                    transition: transform 0.3s ease;
                }

            }

            width: 2.95rem;
            height: 6.72rem;

            .text {
                padding-top: 0.4rem;
                font-weight: bold;
                font-size: 0.36rem;
                writing-mode: vertical-lr;
                position: relative;
                color: #fff;
                margin-top: -6.07rem;
                margin-left: 0.40rem;
                line-height: 0.36rem;
                z-index: 999;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: fill;
            }

        }
    }

    .more {
        right: 2.38rem;
    }

}

.box6 {
    margin-top: 0.6rem;
    padding-bottom: 0.6rem;

    &.active {
        display: flex;
    }

    .zj-swiper {

        width: 100%;
        height: auto;
    }

    .zj-card {


        p {

            font-family: "宋体";
            font-size: 0.18rem;
            color: #fff;
            line-height: 0.3rem;
        }

        .zj-card-l {
            width: 48%;
            height: 100%;
            background-image: url(../images/home/zj-bg-l.png);
            background-size: 100% 100%;
            background-repeat: no-repeat;
            box-sizing: border-box;
            padding-left: 0.43rem;
            display: none;

            .zj {


                &:hover {
                    .content {
                        .name {
                            text-decoration: underline;
                            text-underline-offset: 5px;
                        }
                    }
                }
            }

            p {
                margin-top: 0.43rem;
                width: 2.9rem;
            }

        }

        .zj-card-r {
            width: 100%;
            height: 100%;

            background-size: 100% 100%;
            background-repeat: no-repeat;

            .zj {


                &:hover {
                    .content {
                        .name {
                            text-decoration: underline;
                            text-underline-offset: 5px;
                        }
                    }
                }
            }

            P {
                margin-left: 3.27rem;
                margin-top: 0.43rem;
                padding-right: 0.27rem;
                display: none;
            }

        }

        .zj {

            width: 100%;
            background-color: #fff;


            cursor: pointer;

            .pic {
                width: 100%;

                background-color: lightgray;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: fill;
                    display: block;
                }

            }

            .content {
                height: 0.48rem;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0px 0.15rem;

                .name {
                    font-size: 0.24rem;
                    font-weight: bold;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    text-align: left;
                    overflow: hidden;
                    color: #333;
                }

                .time {
                    color: rgb(12 117 180);
                    font-size: 0.18rem;
                    font-weight: 400;
                    text-align: right;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    margin-left: 0.2rem;
                }

            }
        }
    }
}

.en {
    font-size: 1.18rem;
    line-height: 1.18rem;

    font-weight: bold;
    color: #0571B2;
    opacity: 0.12;

    &.v {
        writing-mode: vertical-rl;
    }

}

.l-t {
    display: flex;

    .zh {
        line-height: 0.51rem;
    }

    .en {
        line-height: 24px;
    }

}

.zh {
    font-size: 0.48rem;
    line-height: 0.48rem;

    font-weight: bold;
    color: #333333;

    &.v {
        writing-mode: vertical-rl;
    }

}


.find-doct {
    width: 5.98rem;
    flex-direction: column;

    .zh {
        margin-top: -0.24rem;
    }

    form {
        width: 100%;
        margin-top: 0.54rem;

        input {

            width: 5.62rem;
            border: none;
            padding-left: 0.59rem;
            margin-bottom: 0.35rem;
            height: 0.65rem;
            font-size: 0.24rem;
            line-height: 0.65rem;
            font-family: "宋体";
            border: 0.01px solid #E9E9E9;
            border-radius: 0.32rem;
        }

        button {
            margin-top: 0.35rem;
            background: #0571B2;
            border: none;
            height: 0.65rem;

            font-size: 0.24rem;
            font-family: "宋体";
            width: 5.62rem;
            line-height: 0.65rem;
            border-radius: 0.32rem;
            color: #FFFFFF;
        }

    }
}

.menu-bg {
    box-sizing: border-box;
    padding: 0.09rem;
    background-color: #E3EDF7;
    border-radius: 0.2rem;
}

.menu-list {
    display: flex;
    flex-wrap: wrap;
    display: flex;
    padding: 0.09rem;
    width: 7.76rem;
    height: 7.25rem;
    border-radius: 0.2rem;
    border: 0.01rem solid #0571B2;
    background: #FFFFFF;

    .menu {
        cursor: pointer;
        width: 50%;
        display: flex;
        justify-items: center;
        text-align: center;
        flex-direction: column;
        border-bottom: 1px solid rgba(5, 113, 178, 0.25);

        &:hover {

            img,
            p {
                animation: shake-light 0.5s ease;
            }

        }

        &.bor {
            border-right: 1px solid rgba(5, 113, 178, 0.25);
        }

        &.bob-n {
            border-bottom: none;
        }

        img {
            margin: 0 auto;
            margin-top: 0.31rem;
            width: 1.2rem;
            height: 1.2rem;
        }

        p {

            font-weight: 400;
            font-size: 0.3rem;
            color: #333333;
        }

    }
}

.swiper {
    height: 7.5rem;
}



.zj-swiper .swiper-button-next {
    margin-left: 0.32rem;
}

.zj-swiper .swiper-button-next,
.swiper-button-prev {
    height: 0.59rem;
    width: 0.59rem;
    background: #EDEDED;
    border-radius: 50%;

    &:after {
        font-family: swiper-icons;
        font-size: 0.24rem;
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1;
    }

}

.swiper .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    bottom: 0.46rem;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
    cursor: pointer;
    width: 1.91rem;
    height: 100%;
    border-radius: 0px;
    background-color: inherit;
    font-size: 0.24rem;
    font-family: "宋体";
    color: #fff;
    line-height: 0.84rem;
    opacity: 1;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active {
    border-bottom: 0.03rem solid #0571B2;
}

@media (max-width: 760px) {
    #searchForm {
        display: none;
    }

    .banner-swiper {
        margin-top: 50px !important;
        height: auto !important;

    }

    .banner-swiper .swiper .swiper-pagination {
        bottom: 0;
    }

    .en {
        font-size: 26px;
        line-height: 1;
    }

    .zh {
        font-size: 20px;
    }

    .box1 {
        flex-direction: column;
        width: 90%;
        justify-content: center;
        padding: 30px 0;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .find-doct {
        width: 100%;
        justify-content: center;

        form {
            text-align: center;
            margin-bottom: 20px;
        }
    }

    .box2 {
        flex-direction: column;

        .new-area {
            width: 100%;

            .more {
                position: absolute;
                right: 10px;
            }

        }

        .notice-area {
            width: 100%;

            .more {
                position: absolute;
                right: 10px;
            }
        }
    }

    .box3 {
        flex-direction: column;

        height: fit-content;
        box-sizing: border-box;
        padding-bottom: 40px;

        .ks {
            .org-list {
                right: 54px;
            }

            .dep-list {
                gap: 20px;

                .dep {
                    overflow: hidden;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                }
            }
        }
    }

    .box4 {
        margin-top: 0px;

        .box-new {
            flex-wrap: wrap;
            gap: 10px;

            .new-list {
                width: 100%;

                .new {
                    .more {
                        right: 20px;
                    }
                }
            }
        }
    }



    .box5 {
        flex-direction: column;

        .l-t {
            flex-direction: column;

            .en {
                &.v {
                    writing-mode: horizontal-tb;
                }
            }

            .zh {
                width: 100%;

                &.v {
                    writing-mode: horizontal-tb;
                }
            }
        }

        .more {
            position: absolute;
            right: 0px;
        }

        .special-list {
            margin-left: 0px;
            margin-top: 20px;
            flex-wrap: wrap;

            div {
                width: 48%;

                &.cover {
                    &:nth-child(odd) {
                        margin-top: 0px;
                    }
                }
            }
        }
    }

    .menu-list {
        width: 100%;
    }

    .expert-search-btn {
        margin-top: 0;
    }

    .find-doct {
        width: 100%;
        flex-direction: column;

        form {
            width: 100%;
            margin-top: 20px;

            input {
                width: 100%;
                border: none;
                padding-left: 15px;
                margin-bottom: 15px;
                height: 40px;
                font-size: 12px;
                line-height: 40px;
                border: 1px solid #E9E9E9;
            }

            button {
                margin-top: 0;
                background: #0571B2;
                border: none;
                height: 40px;
                font-size: 14px;
                width: 100%;
                line-height: 40px;

            }

        }
    }

    .menu-list {
        height: auto;

        & .menu {
            img {
                margin: 0 auto;
                margin-top: 10px;
                width: 40px;
                height: auto;
            }
        }
    }

    .box2 {
        & .new-area {
            .tob-tabs {
                position: relative;
                margin-top: 10px;
                margin-left: 0;
                width: 60%;
                font-size: 16px;
            }
        }
    }

    .box2 {
        & .new-area {
            .more {
                margin-top: 0;
                top: 25px;
            }
        }
    }

    .box2 {
        & .top-new {
            &.active {
                display: block;
            }
        }
    }

    .box2 {
        & .top-new {
            & .article-card {
                .cover {
                    height: auto;
                }
            }
        }
    }

    .box2 {
        & .top-new {
            .article-card {
                width: 100%;
                margin-bottom: 20px;
            }
        }
    }

    .box2 {
        & .top-new {
            & .article-card {
                & .content {
                    h1 {
                        margin-top: 10px;
                        font-size: 16px;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
                }
            }
        }
    }

    .box2 {
        & .top-new {
            & .article-card {
                & .content {
                    p {

                        font-size: 14px;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
                }
            }
        }
    }

    .box2 {
        & .notice-area {
            .more {
                margin-top: 10px;
                margin-left: 4rem;
            }
        }
    }

    .article-content p {
        font-size: 14px !important;
    }

    .box3 {
        padding: 40px 0;
    }

    .box3 {
        & .ks {
            .zh {
                margin-top: 0;
            }
        }
    }

    .box3 .line {
        margin-top: 0 !important;
    }

    .org {
        font-size: 14px !important;
    }

    .dep-list {
        gap: 0px !important;
    }

    .dep-list .dep {
        width: 32% !important;
        margin-right: 1%;
        height: 35px !important;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .dep-list .dep .dot {
        display: none !important;
    }

    .box3 .dep-memo {
        height: 200px !important;
        padding: 15px !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
    }

    .box6 {
        padding-bottom: 0;
    }

    .box4 .new .list p {
        font-size: 14px !important;
    }

    .box4 .new .list span {
        font-size: 12px !important;
    }
}

.top-banner .mobileImg {
    display: none !important;
}

@media (max-width: 500px) {

    .box4 .title {
        font-size: 20px !important;
    }

    .top-banner .pcImg {
        display: none !important;
    }

    .top-banner .mobileImg {
        display: block !important;
    }
}