/* 视频优化区域样式 */
.video-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 5;
}

#techLoader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.holo-glow {
    position: absolute;
    width: 220%;
    height: 220%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 140, 200, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulse 12s ease-in-out infinite;
}

.holographic-loader {
    position: relative;
    width: 20vw;
    height: 20vw;
    max-width: 200px;
    max-height: 200px;
    min-width: 140px;
    min-height: 140px;
}

.holo-outer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid rgba(100, 140, 200, 0.8);
    border-top-color: transparent;
    border-left-color: transparent;
    box-shadow: 0 0 30px rgba(100, 140, 200, 0.5);
    transform: rotate(45deg);
    animation: rotate 10s cubic-bezier(0.3, 0.7, 0.7, 0.3) infinite;
}

.holo-half-ring {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(100, 140, 200, 0.4);
}

.holo-half-ring.ring-2 {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    border: 3px solid rgba(140, 100, 200, 0.6);
    border-bottom-color: transparent;
    border-right-color: transparent;
    transform: rotate(-30deg);
    animation: rotate-reverse 7s cubic-bezier(0.4, 0.6, 0.6, 0.4) infinite;
}

.holo-half-ring.ring-3 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 2px solid rgba(100, 180, 180, 0.6);
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(120deg);
    animation: rotate 5s cubic-bezier(0.2, 0.8, 0.8, 0.2) infinite;
}

.center-squares {
    position: absolute;
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
}

.square {
    position: absolute;
    width: 45%;
    height: 45%;
    background: rgba(80, 80, 80, 0.9);
    box-shadow: 0 0 15px rgba(100, 140, 200, 0.7);
    border-radius: 8px;
}

.square.square-1 {
    top: 0;
    left: 0;
    animation: pulse 1.2s ease-in-out infinite 0s;
}

.square.square-2 {
    top: 0;
    right: 0;
    animation: pulse 1.2s ease-in-out infinite 0.3s;
}

.square.square-3 {
    bottom: 0;
    left: 0;
    animation: pulse 1.2s ease-in-out infinite 0.9s;
}

.square.square-4 {
    bottom: 0;
    right: 0;
    animation: pulse 1.2s ease-in-out infinite 0.6s;
}

.loader-text {
    position: absolute;
    color: rgba(80, 80, 80, 0.9);
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 1.2rem;
    text-align: center;
    margin-top: calc(20vw + 30px);
    max-width: 200px;
    text-shadow: 0 0 8px rgba(100, 140, 200, 0.4);
}

#loadProgress {
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.9;
    font-weight: 500;
}

#wechatPlayButton {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 4;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    transform: scale(1);
}

#wechatPlayButton div {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 40px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
    margin-left: 5px;
}

#wechatError {
    position: absolute;
    color: rgba(80, 80, 80, 0.9);
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    text-align: center;
    margin-top: calc(20vw + 80px);
    max-width: 200px;
    display: none;
    cursor: pointer;
}

.video-inner {
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    display: block;
    width: 100%;
    height: auto;
}

#autoPlayVideo {
    pointer-events: auto;
    touch-action: manipulation;
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    object-fit: cover;
    aspect-ratio: 16/9;
    min-height: 300px;
}

#videoCover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
    background: transparent;
    display: block;
}

/* 动画定义 */
@keyframes rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes rotate-reverse {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-180deg) scale(1.05); }
    100% { transform: rotate(-360deg) scale(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; box-shadow: 0 0 8px rgba(100, 140, 200, 0.4); transform: scale(1); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(100, 140, 200, 0.8); transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
}

@keyframes fadeOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8); }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .loader-text {
        font-size: 1rem !important;
    }
    #loadProgress {
        font-size: 0.8rem !important;
    }
    #wechatPlayButton {
        width: 100px !important;
        height: 100px !important;
    }
    #wechatPlayButton div {
        border-width: 20px 0 20px 35px !important;
    }
}

/* 原生轮播图样式 */
.custom-slider {
    width: 100%;
    height: auto;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-content div:first-child {
    font-family: 'Jost';
    text-transform: uppercase;
    color: #C56C50;
    margin-bottom: 10px;
    font-size: clamp(16px, 3vw, 28px);
}

.slide-content div:nth-child(2) {
    font-family: 'Jost';
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: clamp(24px, 6vw, 60px);
}

.slide-content a {
    display: inline-block;
    background-color: #c56c50;
    color: white;
    padding: 10px 30px;
    font-family: 'Jost';
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: clamp(14px, 3vw, 16px);
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 3;
    font-size: 16px;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
    padding: 0;
    margin: 0;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    appearance: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dots button.active {
    background: #c56c50;
}

/* 数字统计区域样式 */
.eywm-counter {
    text-align: center;
    color: white;
}

.eywm-counter-number-wrapper {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.eywm-counter-title {
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* 分类展示区域样式 */
.web-infobox-center {
    text-align: center;
}

.web-infobox-photo-above-title .web-infobox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.web-infobox-link-icon-after {
    margin-left: 5px;
}

/* 产品展示区域样式 */
.web-woo-product__hover-swap .web-woo-products-thumbnail-wrap img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.web-woo-product__hover-swap:hover .web-woo-products-thumbnail-wrap img:nth-child(2) {
    opacity: 1;
}

.web-woo-products-thumbnail-wrap img:first-child {
    transition: opacity 0.3s ease;
}

.web-woo-product__hover-swap:hover .web-woo-products-thumbnail-wrap img:first-child {
    opacity: 0;
}

/* 页脚链接安全检查样式 */
.footer-widget-area a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.footer-widget-area a:hover {
    color: #c56c50;
}

/* 社交媒体图标样式 */
.footer-social-inner-wrap a {
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.footer-social-inner-wrap a:hover {
    transform: scale(1.1);
}