.main-content {
    position: relative;

    .top-tools {
        margin-top: 0.65rem;
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        .ks-list {
            display: flex;
            flex-wrap: wrap;
            width: 100%;

            li {
                width: 1.90rem;
                height: 0.50rem;
                cursor: pointer;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;


                border-radius: 6px;
                font-size: 0.21rem;
                font-weight: 400;

                line-height: 0.7rem;
                margin-right: 0.23rem;
                margin-bottom: 0.23rem;

                &.k1 {
                    background: #1F5EAB;
                }

                &.k2 {
                    background: #6AABCF;
                }

                a {
                    color: #fff;

                    &:hover {
                        font-weight: bold;
                    }
                }
            }
        }

        .condition {
            display: flex;
            flex-wrap: wrap;
            gap: 0.15rem;

            span {
                color: #333;
                font-size: 0.22rem;
                font-family: "宋体";
                line-height: 0.48rem;
            }

            .search {
                width: 1.9rem;
                height: 0.5rem;
                border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
                border: 0.01rem solid rgba(161, 161, 161, 0.54);
                background: #FFFFFF;
                font-size: 0.2rem;
                line-height: 0.48rem;
                font-weight: 400;
                color: #333;

                input {
                    border: none;
                    outline: none;
                    font-size: 0.2rem;
                    font-weight: 400;
                    color: #333;
                    width: 90%;
                    line-height: 0.40rem;
                    height: 0.4rem;
                    padding-left: 0.1rem;
                }
            }
        }

    }

    .bm {
        .bm-list {

            .title {
                font-size: 0.23rem;
                font-weight: bold;
                color: #1F5EAB;
                line-height: 0.7rem;
            }

            .title2 {
                color: #6AABCF;
            }

            ul {
                display: flex;
                flex-wrap: wrap;
                margin-bottom: 0.64rem;

                li {
                    width: 2.73rem;
                    height: 0.58rem;
                    cursor: pointer;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-align: left;
                    background-color: #fff;
                    box-shadow: 0 0 15px #dbdbdb;
                    border-radius: 6px;
                    font-size: 0.21rem;
                    font-weight: 600;

                    line-height: 0.7rem;
                    margin-bottom: 0.23rem;
                    margin-right: 0.20rem;
                    height: 0.58rem;

                    a {
                        font-size: 0.2rem;
                        /*padding-left: 0.6rem;*/
                        font-family: "宋体";
                        line-height: 0.68rem;
                        text-align: center;
                        width: 100%;
                        font-weight: bold;
                        color: rgba(0, 0, 0, 1);

                        &:hover {
                            font-weight: bold;
                        }
                    }
                }
            }
        }
    }

    .bm-tab {

        .bm-list {

            .title {
                font-size: 0.23rem;
                font-weight: bold;
                color: #1F5EAB;
                line-height: 0.7rem;
            }

            .title2 {
                color: #6AABCF;
            }

            ul {
                display: flex;
                flex-wrap: wrap;

                li {
                    width: 2.73rem;
                    height: 0.58rem;
                    cursor: pointer;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-align: left;
                    border-radius: 6px;
                    font-size: 0.21rem;
                    font-weight: 600;

                    line-height: 0.7rem;
                    margin-bottom: 0.23rem;
                    margin-right: 0.20rem;
                    height: 0.58rem;
                    background-color: #fff;
                    box-shadow: 0 0 15px #dbdbdb;

                    a {
                        font-size: 0.2rem;
                        text-align: center;
                        font-family: "宋体";
                        line-height: 0.68rem;
                        font-weight: bold;
                        width: 100%;
                        color: rgba(0, 0, 0, 1);

                        &.ts {
                            background-color: #2260AC;
                            border-radius: 6px;
                            color: #FEFEFE;
                        }

                        &:hover {
                            font-weight: bold;
                        }
                    }
                }
            }

        }
    }

    .zj-list {

        ul {
            display: flex;
            gap: 0.47rem;
            flex-wrap: wrap;

            li {
                a {
                    .zj-card {
                        width: 2.51rem;
                        background-color: #fff;
                        border-radius: 0 0 8px 8px;
                        box-shadow: 0.02rem 0.03rem 0.03rem 0rem rgba(0, 0, 0, 0.11);
                        margin-bottom: 0.33rem;

                        &:hover {
                            animation: shake-light 0.5s ease;

                            .content {
                                .name {
                                    text-decoration: underline;
                                    text-underline-offset: 5px;
                                }
                            }
                        }

                        .pic {
                            width: 2.5rem;
                            height: auto;
                            background-color: lightgray;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: fill;
                                display: block;
                            }
                        }

                        .content {
                            height: 0.97rem;
                            padding-left: 0.16rem;
                            padding-right: 0.16rem;
                            display: flex;
                            justify-content: space-between;
                            align-items: center;

                            .name {
                                font-size: 0.24rem;
                                font-weight: bold;
                                color: #333;
                                line-height: 0.97rem;
                            }

                            .time {
                                font-size: 0.18rem;
                                font-weight: 400;
                                color: #1F5EAB;
                                line-height: 0.97rem;
                            }
                        }
                    }
                }

            }
        }
    }

}


@media (max-width: 760px) {
    .top {
        display: none;
    }

    .main-content {
        width: 100%;

        .bm {
            width: 100%;

            .bm-list {
                width: 100%;

                ul {
                    justify-content: center;
                }
            }
        }

    }

    .main-content {
        width: 100%;

        & .bm-tab {
            width: 100%;

            .bm-list {
                width: 100%;

                ul {
                    justify-content: center;
                }
            }
        }
    }

    .main-content {
        .zj-list {
            width: 100%;

            ul {
                justify-content: center;
            }
        }
    }


}

@media (max-width: 500px) {
    .ks-list li {
        width: 24% !important;
        margin-right: 1% !important;
        font-size: 14px !important;
    }

    .title,
    .bm-list ul li a,
    .content-card .detail p {
        font-size: 14px !important;
    }

    .zj-card .name,
    .zj-card .time {
        font-size: 14px !important;
    }

    .bm-list ul,
    .zj-list ul {
        justify-content: left !important;
    }

    .bm-list ul li {
        width: 49% !important;
        margin-right: 1% !important;
    }

    .detail h1 {
        font-size: 16px !important;
    }

    .zj-list ul {
        gap: 0 !important;
    }

    .zj-list ul li {
        width: 49%;
        margin-right: 1%;
    }

    .zj-card,
    .zj-card .pic {
        width: 100% !important;
    }
}