
main .content .image {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    grid-gap: 1rem;
    margin: 1rem 0;
}

main .content .image .image-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

main .content .image .image-item .image-item-cover {
    display: flex;
    height: 195px;
    border-radius: 12px 12px 0 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

main .content .image .image-item .image-item-cover img {
    width: 260px;
    height: 150px;
    margin: auto;
    border-radius: 5px;
}

main .content .image .image-item .image-item-info {
    padding: 10px 1rem;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #E6E6E6;
}

main .content .image .image-item .image-item-info .image-item-info-title {
    width: 100%;
    font-family: Source Han Sans CN, Source Han Sans CN, sans-serif;
    font-weight: 500;
    font-size: var(--font-small);
    margin-bottom: 10px;
    color: #333333;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

main .content .image .image-item .image-item-info .image-item-info-timer {
    width: 100%;
    font-size: var(--font-small-content);
}

main .content .image .image-item .image-item-info .image-item-info-timer span {
    font-family: Source Han Sans CN, Source Han Sans CN, sans-serif;
    font-weight: 400;
    font-size: var(--font-small-content);
    color: #666666;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

main .content .image .image-item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    transition: box-shadow 0.3s ease-in-out;
}

main .content .image .image-item:hover .image-item-info-title,
main .content .image .image-item:hover span {
    color: #D6000F !important;
}

a:hover {
    color: #d81b21 !important;
}

/* Modal的背景设置 */
.modal {
    display: none;
    position: relative;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
}

/* 关闭的按钮 */

.close {
    position: absolute;
    top: 0;
    right: 35px;
    font-size: 50px !important;
    font-weight: bold;
    color: whitesmoke !important;
    cursor: pointer;
}

/* Modal的内容区*/

.modal-content {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0;
    max-width: 1200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
    justify-content: space-evenly;
    background-color: transparent !important;
    border: none !important;
}

.modal-content .main-view-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1000px;
    height: 666px;
}

.modal-content .main-view-box span {
    color: whitesmoke;
    font-size: 20px;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 999999;
}

.modal-content .main-view-box span:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}


.modal-content .main-view .mySlides {
    display: none;
    width: 100%;
    height: 100%;
}

.modal-content .main-view .mySlides img {
    width: 1000px;
    height: 666px;
    border-radius: 10px;
}

.modal-content .main-mini-view {
    position: relative;
    background: rgba(35, 37, 38, 0.8);
    padding: 1rem;
    border-radius: 10px;
}


.modal-content .main-mini-view .mini-prev {
    position: absolute;
    left: 30px;
    top: 50%;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transform: translate(-50%, -50%);
    /* 不让用户选中文字 */
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    padding: 1rem;
    border-radius: 50%;
}

.modal-content .main-mini-view .mini-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content .main-mini-view .mini-next {
    position: absolute;
    right: 0;
    top: 50%;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transform: translate(-50%, -50%);
    /* 不让用户选中文字 */
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    padding: 1rem;
    border-radius: 50%;
}

.modal-content .main-mini-view .mini-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content .main-mini-view .model-img-view {
    max-width: 816px;
    max-height: 125px;
    display: flex;
    align-items: center;
    align-content: center;
    margin: 0 2rem;
    padding: 1rem 0;
    overflow-y: scroll;
}

.modal-content .main-mini-view .model-img-view .column-view-item {
    margin: 0 1rem;
}

.modal-content .main-mini-view .model-img-view .column-view-item img {
    width: 4rem;
    height: 4rem;
}

.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

@media (max-width: 610px) {

    .close {
        z-index: 99999999999999;
    }

    .modal-content .main-view-box {
        width: 100% !important;
        height: calc(100vh - 144px) !important;
    }

    .modal-content .main-view-box img {
        width: 100% !important;
        height: 100% !important;
        transform: scale(1.2) !important;
    }

    .main-mini-view {
        width: 100% !important;
    }

    .main-mini-view .model-img-view {
        width: 80%;
    }

    .main-mini-view .mini-prev, .mini-next {
        width: 10%;
    }

    .breadcrumb {
        padding: 0 !important;
    }
}