@charset "utf-8";


.head-page {
    background: transparent;
    box-shadow: none;
}
.head-page .item span {
    color: #ffffff;
}
.other_item {
    color: #fff;
}
.langure_tit {
    color: #fff;
}
.head-page .logo .h-logo {
    opacity: 0;
}
.head-page .logo .p-logo {
    opacity: 1;
}
.other_icon img.p_img {
    opacity: 1;
}
.other_icon img.h_img {
    opacity: 0;
}
.swiper-button-next, .swiper-button-prev {
    outline: none;
}
.swiper-button-next:after, .swiper-button-prev:after {
    color: #f0f0f0;
    font-size: 38px;
}
.swiper-button-prev {
    left: 8.2%;
}
.swiper-button-next {
    right: 8.2%;
}



/* 视频容器样式 */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}
/* 背景图容器 - 确保始终可见 */
.video-container .poster-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.video-container .poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 视频样式 */
.video-container #indexVideo {
    position: relative;
    z-index: 6;
    opacity: 0; /* 初始透明，播放时变为不透明 */
    transition: opacity 0.5s ease;
}
.video-container #indexVideo.playing {
    opacity: 1;
}

/* 播放按钮样式 */
.video-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.video-container .play-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}
.video-container .play-button i {
    font-size: 32px;
    margin-left: 5px;
}
/* 提示信息容器 */
.video-container .notification-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
}
.video-container .loading-spinner {
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 5px solid white;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.video-container .notification-text {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
}

/* 按钮样式 - 与播放按钮保持一致 */
.video-container .notification-button {
    margin: 0 10px;
    padding: 12px 24px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.video-container .notification-button i {
    margin-right: 8px;
}
.video-container .notification-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}
.video-container .button-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
}


footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
}
footer .main {
    height: 68px;
}
.copyright_tel {
    margin-right: 48px;
}
.copyright_tel img {
    margin-right: 12px;
}
footer .record a {
    color: #fff;
}
footer .record a {
    margin-left: 5px;
}
footer a {
    transition: all .4s;
}
footer a:hover {
    color: #299AB1;
}
footer .copyright {
    background: transparent;
    padding: 0;
}

@media only screen and (max-width: 1480px) {
    .copyright_tel {
        margin-right: 25px;
    }
}

@media only screen and (max-width: 1440px) {
    .copyright_tel {
        margin-right: 15px;
    }
}

@media only screen and (max-width: 1400px) {
    .copyright_tel img {
        margin-right: 8px;
    }
    footer .main {
        height: auto;
        text-align: center;
        justify-content: center;
        padding: 12px 0;
        box-sizing: border-box;
        line-height: 1.875;
    }
}

@media only screen and (max-width: 1200px) {
    .index_banner {
        height: calc(100vh - 60px);
    }
}

@media only screen and (max-width: 960px) {
    .index_banner {
        height: calc(100vh - 185px);
        display: flex;
        align-items: center;
    }
    .index_banner .swiper-container {
        height: auto;
    }
}

@media only screen and (max-width: 750px) {
    footer .copyright {
        justify-content: center;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 28px;
    }
    .swiper-button-prev {
        left: 4%;
    }
    .swiper-button-next {
        right: 4%;
    }
    .video-container {
        display: none;
    }
}<!--0.00010108947753906-->