:root {
    --nav-blue: #04284a;
    --logo-blue: #082c56;
    --logo-red: #9f100f;
    --bg: #f6f7f9;
    --card: #ffffff;
    --muted: #5c6b78;
    --accent: #9f100f;
}

body {
    background-color: #F9F9F8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}







@media (min-width: 800px) {
    .mt-80 {
        margin-top: 80px;
    }

    .mb-80 {
        margin-bottom: 80px;
    }

    .pt-80 {
        padding-top: 80px;
    }

    .pb-80 {
        padding-bottom: 80px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .header {
        padding: 6px 0;
        background-color: #006CE4;
        color: #fff;
    }

    .header span {
        font-size: 0.9rem;
    }


    .home-search form {
        display: flex;
        align-items: center;
        gap: 1px;
    }

    .home-search form input {
        width: 500px;
        padding: 7px 10px;
        border: 1px solid var(--muted);
        font-size: 0.9rem;
    }

    .home-search form button {
        padding: 7px 20px;
        border: none;
        background-color: #006CE4;
        color: #fff;
        cursor: pointer;
        font-weight: 600;
    }

    .search-result-item {
        margin-bottom: 20px;
        border: 1px solid #c5c5c5;
    }

    .search-result-item:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background-color: #006CE4;
        transition: 0.3s ease-in-out;
    }

    .search-form-content {
        margin-top: 30px;
    }


    .search-result-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .search-result-pageinfo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-result-pageinfo a {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f3f3f3;
    }

    .search-result-pageinfo a.active {
        background-color: #006CE4;
        color: #fff;
    }

    .search-result-line {
        border-bottom: 1px solid #006CE4;
        margin: 50px 0;
    }

    .search-result-item {
        margin-bottom: 20px;
        border: 1px solid #c5c5c5;
        display: flex;
        justify-content: space-between;
    }

    .search-result-item-img {
        width: 20%;
        height: 225px;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .search-result-item-img img {
        width: 100%;
        object-fit: cover;
    }

    .search-result-item-info {
        display: flex;
        height: 222px;
        align-items: center;
        width: 75%;
        justify-content: space-between;
    }

    .search-result-item-title {
        width: 40%;
    }
    
    .search-result-item-title p {
        color: #969696;
        white-space: break-spaces;
        font-size: 0.9rem;
    }

    .search-result-item-no {
        width: 20%;
        height: 104px;
        text-align: center;
    }
    
    .search-result-item-no p {
        color: #969696;
        font-size: 0.9rem;
    }

    .search-result-item:hover .search-result-item-info {
        color: #fff;
        transition: 0.3s ease-in-out;
    }
    
    .search-result-item:hover p {
        color:#fff;
        transition: all .3s ease-in-out;
    }

    /* 图片放大显示样式 */
    .image-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .image-modal.active {
        display: flex;
        opacity: 1;
    }

    .modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .image-modal.active .modal-content {
        transform: scale(1);
    }

    .modal-image {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 4px;
    }

    .close-button {
        position: absolute;
        top: -40px;
        right: -40px;
        width: 30px;
        height: 30px;
        background-color: #fff;
        color: #333;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    .close-button:hover {
        background-color: #f0f0f0;
        transform: rotate(90deg);
    }

    /* 确保可点击的图片有指针样式 */
    
    .search-result-item-img img {
        cursor: pointer;
        cursor: pointer;
        width: 100%;
        height: 100%;
        display: flex;
    }
}





@media (max-width: 799px) {
    .mt-80 {
        margin-top: 30px;
    }

    .mb-80 {
        margin-bottom: 30px;
    }

    .pt-80 {
        padding-top: 30px;
    }

    .pb-80 {
        padding-bottom: 30px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .header {
        padding: 10px 0;
        background-color: #006CE4;
        color: #fff;
    }

    .header span {
        font-size: 0.9rem;
    }

    .search-info {
        margin-top: 30px;
    }


    .home-search form {
        display: flex;
        align-items: center;
        gap: 1px;
    }

    .home-search form input {
        width: 500px;
        padding: 7px 10px;
        border: 1px solid var(--muted);
        font-size: 0.9rem;
    }

    .home-search form button {
        padding: 7px 20px;
        border: none;
        background-color: #006CE4;
        color: #fff;
        cursor: pointer;
        font-weight: 600;
    }

    .search-result-item {
        margin-bottom: 20px;
        border: 1px solid #c5c5c5;
    }

    .search-result-item:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background-color: #006CE4;
        transition: 0.3s ease-in-out;
    }

    .search-form-content {
        margin-top: 30px;
    }

    .search-result-pageinfo {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 20px;
    }

    .search-result-pageinfo a {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f3f3f3;
        margin-bottom: 10px;
    }

    .search-result-pageinfo a.active {
        background-color: #006CE4;
        color: #fff;
    }

    .search-result-line {
        border-bottom: 1px solid #006CE4;
        margin: 50px 0;
    }

    .search-result-item {
        margin-bottom: 20px;
        border: 1px solid #c5c5c5;
    }

    .search-result-item-img {
        height: 300px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .search-result-item-img a {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .search-result-item-img img {
        width: 100%;
        object-fit: cover;
    }

    .search-result-item-info {
        display: flex;
        padding: 20px;
        flex-direction: column;
    }

    .search-result-item-title {
        margin-bottom: 15px;
    }

    .search-result-item-title h5 {
        margin-bottom: 5px;
    }

    .search-result-item-no {
        margin-bottom: 15px;
    }

    .search-result-item-no h5 {
        margin-bottom: 5px;
    }

    .search-result-item:hover .search-result-item-info {
        color: #fff;
        transition: 0.3s ease-in-out;
    }

    /* 图片放大显示样式 */
    .image-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .image-modal.active {
        display: flex;
        opacity: 1;
    }

    .modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .image-modal.active .modal-content {
        transform: scale(1);
    }

    .modal-image {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 4px;
    }

    .close-button {
        position: absolute;
        top: -40px;
        right: -40px;
        width: 30px;
        height: 30px;
        background-color: #fff;
        color: #333;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    .close-button:hover {
        background-color: #f0f0f0;
        transform: rotate(90deg);
    }

    /* 确保可点击的图片有指针样式 */
    .search-result-item-img img {
        cursor: pointer;
    }
}