 
@media(max-width:768px) {

    /* 微信移动端特定样式 */
    .wechat-mobile .banner-container .page-width {
        padding-top: 250px !important;
    }

    /* 针对iOS微信进一步调整 */
    .wechat-ios .banner-container .page-width {
        padding-top: 270px !important;
        /* iOS微信可能需要更大的padding */
    }

    /* 针对Android微信的调整 */
    .wechat-android .banner-container .page-width {
        padding-top: 190px !important;
    }
}

.cookies-modal {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    animation: slideUp 0.5s ease-out;
}

.cookies-modal.active {
    display: block;
}

/* 添加头部区域样式 */
.cookies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookies-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* 关闭按钮样式 */
.cookies-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    padding: 0;
    line-height: 1;
}

.cookies-close-btn:hover {
    background-color: #f5f5f5;
    color: #666;
}

.cookies-close-btn:active {
    transform: scale(0.95);
}

.cookies-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.cookies-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
    font-size: 15px;
}

.cookies-link {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: bold;
}

.cookies-link:hover {
    text-decoration: underline;
}

.cookies-button {
    background-color: var(--theme-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    min-width: 120px;
    float: right;
}

.cookies-button:hover {
    background-color: #2980b9;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cookies-modal {
        padding: 15px;
        width: 80%;
    }

    .cookies-text {
        font-size: 14px;
    }

    .cookies-close-btn {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}
 
 
.f-f-zl {
    font-family: 'Montserrat bold';
}

.scroll-card-container.video .content-container .description {
    text-indent: 0;
}

.video-mask {
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-mask .close-container {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.title.banner-title {
    font-size: 100px;
}

.video-mask.active {
    display: flex;
}

.video-mask video {
    width: 60%;
}

.video-mask .close {
    width: 40px;
    height: 40px;
    transform: translateX(100%);
    /* position: absolute; */
    /* right: 30px;
    top: 30px; */
    background: #AAAAAA;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}



@media(max-width:1600px) and (min-width: 769px) {

    .card-list-grid .card-container.large:hover .icon,
    .card-list-grid .card-container.medium:hover .icon {
        top: 0;
    }
}

@media(max-width:768px) {
    .zl-br {
        display: block;
    }

    .card-list-grid .card-container.small:hover .subtitle-update {
        margin-bottom: 20px !important;
    }

    .card-container.small .content-container .icon {
        margin-bottom: 0;
    }

    .title.banner-title {
        font-size: 32px;
    }

    .video-mask video {
        width: 80%;
    }
}
 