/* ==================== 全局基础 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #3b3b3b;
    background: #000000;
    /* 根治头部抖动 - 预留固定空间（替代占位符） */
    padding-top: 110px !important;
}
img { max-width: 100%; height: auto; }
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==================== 容器与栅格 ==================== */
/* 合并 .container 与 .dt-container（两者完全重复） */
.container,
.dt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.dt-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.dt-col-lg-2, .dt-col-lg-3, .dt-col-lg-4, .dt-col-lg-5,
.dt-col-lg-6, .dt-col-lg-7,  .dt-col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
}
.dt-text-left { text-align: left; }
.dt-text-center { text-align: center; }
.dt-text-right { text-align: right; }
.dt-py-default { padding: 100px 0; }
.dt-py-5 { padding: 60px 0; }
.dt-mb-3 { margin-bottom: 1rem; }

.dt-mb-5 { margin-bottom: 3rem; }
.dt-mt-3 { margin-top: 1rem; }




/* ==================== 按钮 ==================== */
.dt-btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    background: #0e6bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-size: 15px;
}
.dt-btn-primary {
    background: #0e6bff;
    box-shadow: 0 5px 15px rgba(14,107,255,0.2);
}
.dt-btn-primary:hover {
    background: #0056d4;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14,107,255,0.3);
}
.dt-btn-secondary {
    background: #ffb400;
    color: #1d1d1d;
}
.dt-btn-secondary:hover {
    background: #e0a000;
    transform: translateY(-3px);
}

.text-primary { color: #0e6bff; }
.bg-light { background: #f8f9fe; }



/* =========== 头部区域（外层毛玻璃容器 +水溶吸收） ======== */
/* 外层：固定定位、毛玻璃模糊、圆角、波纹动画、显隐控制 */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    z-index: 998;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0s linear 0.35s;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.05);
    /* （外层毛玻璃容器透明度与调色*/
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
                0 15px 35px -10px rgba(0, 0, 0, 0.3),
                0 0 20px -5px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    will-change: opacity;
    backface-visibility: hidden;
    pointer-events: auto;
    border-radius: 28px; 
}

/* 隐藏状态 */
.header-wrapper.header-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0s linear 0.25s;
}
/* 波纹效果（只在隐藏时显示） */
.header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
    pointer-events: none;
    z-index: 10;
    opacity: 0;
}
.header-wrapper.header-hidden::before {
    animation: rippleWave 0.6s ease-out forwards;
}
@keyframes rippleWave {
    0% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(2); }
}

/* ==================== 头部：顶部绿色信息栏 ==================== */
.top-bar {
    background: #16a34a;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-left, .top-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.info-item a {
    color: #fff;
    text-decoration: none;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    color: #fff;
    transition: opacity 0.3s;
}
.social-link:hover {
    opacity: 0.8;
}

/* ==================== 头部：主导航栏（去除了内层模糊，避免与外层叠加） ==================== */
.main-header {

    z-index: 999;
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo img {
    max-height: 46px;
}
.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: color 0.3s;
}
.main-nav a:hover, .main-nav a.active {
    color: #16a34a;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-toggle, .user-link {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.search-toggle:hover, .user-link:hover {
    color: #16a34a;
}
.btn-quote {
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.btn-quote:hover {
    background: #15803d;
}
.phone-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    text-shadow: 01px 2px rgba(0,0,0,0.3);
}
.phone-item i {
    background: #16a34a;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ==================== 网站首页图片 Banner 专属样式 ==================== */
.banner{
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 700px;
  overflow: hidden;
}
.slider .slide{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.slider img{
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; /* PC端正常填满容器 */
  pointer-events: none;
  top: 0;
  left: 0;
  margin: 0 auto;
}
.slide .left-info{
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}
.left-info .content{
  position: absolute;
  bottom: 8%;
  left: 10%;
  color: #fff;
}
/* PC端：用你想要的vw按钮效果 */
.content .btn{
  display: inline-block;
  padding: 1vw 2vw;
  background: #fff;
  border: 0.15vw solid #fff;
  border-radius: 0.4vw;
  box-shadow: 0 0 0.7vw rgba(0,0,0,.1);
  font-weight: 600;
  transition: .5s;
  text-decoration: none;
  color: #333;
  font-size: 15px;
}
.content .btn:hover {
  background: transparent;
  color: #fff;
}

/* ========== 响应式适配，对齐你的断点 ========== */
/* 平板端：自动换成px，解决兼容问题 */
@media (max-width: 991px) {
  .banner {
    height: 60vh;
    max-height: 550px;
  }
  /* 平板端按钮换成px，微信兼容 */
  .content .btn {
    padding: 10px 20px !important;
    border: 4px solid #fff !important;
    border-radius: 6px !important;
    box-shadow: 0 0 10px rgba(0,0,0,.1) !important;
    font-size: 14px !important;
  }
}

/* 手机端：微信完美兼容 */
@media (max-width: 767px) {
  /* 手机端高度严格按16:9图片比例，保证图片完整显示 */
 .banner {
    height: calc(100vw * 6 / 15) !important;
    max-height: none !important;
    contain: layout size paint;
    overflow: hidden;
  }
  .slide .left-info {
    width: 100% !important;
  }
  .left-info .content { 
    left: 6% !important;
    bottom: 1% !important;
  }
  /* 手机端按钮换成px，微信兼容，自适应生效 */
  .content .btn {
    padding:0.1em 1em !important; /* 按钮大小 */
    border: 2px solid #fff !important;
    border-radius: 6px !important;
    box-shadow: 0 0 10px rgba(0,0,0,.1) !important;
   font-size: clamp(12px, 2vw, 15px) !important;
  
  }
  /* 手机端图片改成contain，完整显示，不会放大裁剪 */
  .slider img {
    object-fit: contain !important;
    width: 100% !important; /* 宽度铺满屏幕，高度自动跟着图片比例走 */
    height: auto !important;
  }
}


/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* 侧滑菜单 */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #1e293b;
    color: #fff;
    z-index: 1001;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mobile-nav.open {
    left: 0;
}
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}
.mobile-nav-menu {
    list-style: none;
    padding: 20px;
}
.mobile-nav-menu li {
    margin-bottom: 15px;
}
.mobile-nav-menu a {
    color: #fff;
    text-decoration: none;
}
.mobile-nav-actions {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 20px;
}
.mobile-user, .mobile-search-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}






/* ==========        3d卡片区域          ========== */


.lbfrq {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    height: 120vh;
    text-align: center;
    overflow: hidden;
    position: relative;

    /* 底色 + 黑色细条网格叠加 */
    background-color: #3da8d435;          /* 你的底色 */
    background-image:
        linear-gradient(rgba(0,0,0,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.15) 1px, transparent 1px);
    background-size: 120px 130px;         /* 网格间距 */
    
    
}

/*斑马线*/
.lbfrq .xingxing-left,
.lbfrq .xingxing-right {
    position: absolute;
    width: 25%;                    /* 原来是 90px，现在变宽 */
    height: 80px;                  /* 原来是 40%，现在变矮 */
    top: 6.2%;
    z-index: 0;
    pointer-events: none;
    /* 角度从 38deg 减去 90 度，变 -52deg，纹理水平 */
    background: repeating-linear-gradient(
        -52deg,
        transparent 10px,
        transparent 15px,
        currentColor 25px,
        currentColor 40px
    );
    opacity: 0.25;
    right: 5%;
    color: rgba(100, 100, 100, 1);
}

/* 左侧浅灰 */
.lbfrq .xingxing-left {
    left: 10%;
    color: rgba(100, 160, 160, 1);
}

/* 右侧深灰 */
.lbfrq .xingxing-right {
    right: 10%;
    color: rgba(100, 160, 160, 1);
}
/* 左侧星星：较高位置 */
.lbfrq::before {
    content: "★\a★\a★";
    white-space: pre;
    position: absolute;
    left: 10%;
    top: 30%;                /* 星星位置左高 */
    font-size: 64px;         /* 放大一倍 */
    color: rgba(128, 128, 128, 0.45);
    line-height: 1.6;
    z-index: 0;
    pointer-events: none;
}
/* 右侧星星：较低位置 */
.lbfrq::after {
    content: "★\a★\a★";
    white-space: pre;
    position: absolute;
    right: 10%;
    top: 16%;                /* 星星位置右低 */
    font-size: 64px;
    color: rgba(128, 128, 128, 0.45);
    line-height: 1.6;
    z-index: 0;
    pointer-events: none;
}

.lbfrq .lbkp {
    position: absolute;
    width: 100%; 
    height: 120%;
    top: 0;
    left: 50%;
    transform: translateX(-10%) perspective(1000px);
    transform-style: preserve-3d;
    /*注释掉也没有效果。animation: autorun 18s linear infinite;*/
    z-index: 2;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
 
   
}

.lbfrq .lbkp:active {
    cursor: grabbing;
}



@keyframes autorun {/*翻牌效果rotateX更改*/
    from {
        transform: translateX(-50%) perspective(1000px) rotateX(-12deg) rotateY(0deg);
    }
    to {
        transform: translateX(-50%) perspective(1000px) rotateX(-12deg) rotateY(360deg);
    }
}

.lbfrq .lbkp .lbtupian {
    position: absolute;
    width: 160px;          /* 你想要的宽度 */
    height: 210px;         /* 你想要的高度 */
    left: 50%;
    top: 25%;
    /* 正确顺序：先居中自身 → 再旋转 → 最后推远 */
    transform: translate(-50%, -50%)
               rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
               translateZ(320px);/*距离中心位置*/
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    
    
}

.lbfrq .lbkp .lbtupian .text {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.lbfrq .lbkp .lbtupian img {
    
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-user-drag: none;
}

.lbfrq .lbkp .lbtupian:hover img {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.lbfrq .lbkp .lbtupian:hover .text {
    transform: translateX(-50%) scale(1.2);
    font-size: 18px;
}

.lbfrq .content-lj {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    overflow: visible;
    z-index: 1;

}

.lbfrq .content-lj .text-overlay {/*下排文字左*/
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    animation: fadeIn 3s ease-out forwards;
    opacity: 0;
}

.lbfrq .content-lj .text-overlay .css-only-big {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-left:6%;
    white-space: nowrap
}

.lbfrq .content-lj .text-overlay .right-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 改回右对齐 */
     margin-right: 10%;
}

.lbfrq .content-lj .text-overlay .right-text .top-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.lbfrq .content-lj .text-overlay .right-text .bottom-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: 4px;
}

/* 外层：控制浪花组整体宽度 → 同时控制浪花大小 */
.lbfrq .content-lj .langhua-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
     transform: translateX(-50%) translateY(40px);     /* 水平居中 */
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;                     /* 保持与其他元素正确的层级关系 */
}

/* 每一排（行） */
.lbfrq .content-lj .langhua-row {
    display: flex;
    justify-content: center;       /* 向中间聚拢 */
    align-items: flex-end; /* 改回底部对齐 */
    width: 100%;
    margin-top: -80px;
}

/* 单朵浪花 */
.lbfrq .content-lj .langhua {
    background-image: url("/static/xinmoban/img/langhua.png");
    width: 33.33%;                 /* 三等分，保证每行3个 */
    height: 140px;
    background-size: 100% auto;   /* ★ 必须：宽度撑满，重叠可见 */
    background-repeat: no-repeat;
    background-position: center bottom;
    animation: fadeIn 2s ease-out forwards, waveShake 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
    position: relative;
}

/* 重叠逻辑：1压2，2压3；第二行同理（3与6不收margin-right） */
.lbfrq .content-lj .langhua:nth-child(1),
.lbfrq .content-lj .langhua:nth-child(4) {
    margin-right: -14%;        /* 浪花间距 */
    z-index: 3;
}
.lbfrq .content-lj .langhua:nth-child(2),
.lbfrq .content-lj .langhua:nth-child(5) {
    margin-right: -14%;
    z-index: 2;
}
.lbfrq .content-lj .langhua:nth-child(3),
.lbfrq .content-lj .langhua:nth-child(6) {
    z-index: 1;
}

@keyframes waveShake {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    75% {
        transform: translateY(5px) rotate(-0.5deg);
    }
}

.lbfrq .content-lj .model {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    z-index: 2;
    animation: fadeIn 3s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.lbfrq .content-lj .model video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}








/* ========== 平板端 768-991px ========== */
@media (max-width: 891px) and (min-width: 768px) {
  .lbfrq {
    min-height: 110vh;
    height: auto;
  }
  .lbfrq .lbkp .lbtupian {
    width: 120px;
    height: 160px;
    top: 25% !important;
    transform: translate(-50%, -50%)
      rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
      translateZ(220px);
  }
}

/* ========== 手机端 <768px 修复 ========== */
@media (max-width: 767px) {
  .lbfrq {
    min-height: 70vh;           /* 关键修正：保证至少一屏高，避免塌陷 */
    height: auto;
    overflow: hidden;            /* 可保留原溢出隐藏，防止滚动条异常 */
  }

  .lbfrq .lbkp .lbtupian {
    width: 75px !important;
    height: 103px !important;
    top: 28% !important;
    transform: translate(-50%, -50%)
      rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
      translateZ(130px) !important;
  }
    
   .lbfrq .content-lj .text-overlay .css-only-big {/*       字体位置      */
    font-size: 23px !important;        /* 原 60px，手机端缩小 */
    margin-left: 2% !important;        /* 微调水平位置 */
    margin-top: 160px;
  }
    .lbfrq .content-lj .text-overlay .right-text .top-text {
    font-size: 15px !important;
    margin-right: -37% !important;
    margin-top: 180px;
  }
    .lbfrq .content-lj .text-overlay .right-text .bottom-text {
    font-size: 10px !important;
     margin-right: -37% !important;
  }
    
      .lbfrq .xingxing-left,/*      斑马线      */
  .lbfrq .xingxing-right {
    width: 33% !important;             /* 宽度缩小 */
    height: 45px !important;           /* 高度缩小 */
  }
    
      /* ---------- 星星图案（伪元素） ---------- */
  .lbfrq::before,
  .lbfrq::after {
    font-size: 45px !important;        /* 原 64px，缩小 */
  }
  .lbfrq::before {
    top: 30% !important;               /* 微调位置 */
    left: 6% !important;
  }
  .lbfrq::after {
    top: 15% !important;
    right: 6% !important;
  }
   

}






/* ========== wjj 基础全局样式 ========== */
#wjj *,
#wjj *::before,
#wjj *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

#wjj {
    --corner-height: 52px;
    --corner-color: #1a1a2e;
    --content-darken: rgba(0, 0, 0, 0.45);
    --folder-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
    height: auto;
    z-index: auto;
    overflow: visible;
    background: transparent;
    pointer-events: auto;
    transform: none;
    transition: none;
}

#wjj .wjj-scene {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
    background: transparent;
    display: block;
}


#wjj .wjj-folder-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    transform: none;
    pointer-events: auto;
    display: block;
    margin: 0;
    padding: 0;
    transition: none;
    z-index: 10;
}



#wjj .wjj-folder-shape::-webkit-scrollbar {
    width: 5px;
    background: rgba(0,0,0,0.3);
}
#wjj .wjj-folder-shape::-webkit-scrollbar-thumb {
    background: #e02424;
    border-radius: 4px;
}
/*          -----新增 ----     */
@media (min-width: 768px) {
    #wjj .wjj-podcast-container {
        display: grid !important;
        grid-template-columns: 1fr 2.2fr !important;
    }
}
/* ========== PC 端样式（原有左右布局） ========== */
#wjj .wjj-podcast-root {
    position: relative;
    z-index: 12;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    background: transparent;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#wjj .wjj-podcast-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
    background: none;
    border-radius: 20px;
    width: 100%;
    border: 1px solid rgba(224, 36, 36, 0.7);
}
#wjj .wjj-logo {
    color: #e02424;
    font-weight: bold;
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    letter-spacing: 1px;
    border: 1px dashed #e02424;
    padding: 6px 16px;
    background: none;
}



#wjj .wjj-subscribe-btn {
    background-color: transparent;
    border: 2px solid #e02424;
    color: #e02424;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 3vw, 1rem);
    outline: 1px solid #e02424;
    outline-offset: 2px;
    transition: 0.2s;
}
#wjj .wjj-podcast-container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    border: 3px solid #e02424;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 32px;
    background: rgba(250, 250, 250, 0);
    backdrop-filter: blur(2px);
    background-image: linear-gradient(to right, #e02424 1px, transparent 1px),
                      linear-gradient(to bottom, #e02424 1px, transparent 1px);
    background-size: calc((100% - 32px)/2) 100%, 100% calc((100% - 32px)/2);
    background-position: left top, left top;
    background-repeat: no-repeat;
}
#wjj .wjj-podcast-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    border: 2px solid #e02424;
    padding: 20px;
    background: #fff;
}
#wjj .wjj-cover-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border: 2px solid #e02424;
    padding: 14px;
    background: #fff;
}
#wjj .wjj-cover-frame {
    border: 2px solid #e02424;
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 0 2px #e02424;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#wjj .wjj-carousel-3d-track {
    position: relative;
    width: min(300px, 70vw);
    height: min(300px, 70vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto !important;
}
#wjj .wjj-carousel-card {
    position: absolute;
    width: 90%;
    height: 90%;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.45s;
    border: 2px solid rgba(224, 36, 36, 0.7);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px;
    pointer-events: auto;
}

#wjj .wjj-podcast-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #e02424;
    padding: 18px;
    background: #fff;
}
#wjj .wjj-podcast-right h2 {
    font-size: 1.4rem;
    color: #e02424;
}
#wjj .wjj-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 20px;
    border: 2px solid #e02424;
    padding: 16px;
}
#wjj .wjj-episode-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid #e02424;
    padding-right: 16px;
}

#wjj .wjj-episode-btn {
    background: transparent;
    border: 2px solid #e02424;
    padding: 12px 14px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #e02424;
    cursor: pointer;
    text-align: left;
    border-radius: 6px;
    transition: 0.2s;
}
#wjj .wjj-episode-btn.active {
    background-color: #e02424;
    color: #fff;
}

#wjj .wjj-episode-details {
    border: 2px solid #e02424;
    padding: 16px;
    border-radius: 8px;
}
#wjj .wjj-episode-title {
    color: #e02424;
    font-size: 0.95rem;
    border-bottom: 2px solid #e02424;
    margin-bottom: 12px;
}
#wjj .wjj-episode-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    border-left: 3px solid #e02424;
    padding-left: 12px;
    margin-bottom: 14px;
}
#wjj .wjj-read-more-btn {
    border: 2px solid #e02424;
    background: transparent;
    padding: 7px 16px;
    color: #e02424;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
}

/* ========== 手机端样式（正确版：轮播正常 + 不溢出 + 内容居中） ========== */
@media (max-width: 768px) {

    #wjj * {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    #wjj,
    #wjj .wjj-podcast-container,
    #wjj .wjj-content-wrapper {
        overflow-x: hidden !important;
    }
      #wjj .wjj-podcast-header {/*上方文字隐藏*/
    display: none !important;
    }
    #wjj .wjj-podcast-header-bar {
    flex-wrap: nowrap !important;          /* 禁止换行 */
    justify-content: space-between;        /* 两端对齐 */
    gap: 8px !important;
    padding: 12px 8px !important;          /* 收紧内边距，节省空间 */
}

#wjj .wjj-logo {
    font-size: 13px !important;            /* 缩小字号，防止溢出 */
    white-space: nowrap;                   /* 文字不折行 */
    padding: 4px 10px !important;
    border: 1px dashed #e02424;            /* 保留原有样式 */
    letter-spacing: 0.5px;
}

#wjj .wjj-subscribe-btn {
    font-size: 12px !important;            /* 按钮字体缩小 */
    padding: 6px 12px !important;
    white-space: nowrap;
    flex-shrink: 0;                        /* 按钮不缩放，确保文字完整 */
}
    /* 手机端：图片自适应撑满，保持竖屏比例 3:4（可按需调） */
#wjj .wjj-cover-container {
    width: 100% !important;
    padding: 1px !important;          /* 装饰层收窄 */
    border-width: 1px !important;
    margin: 0 auto;
}

#wjj .wjj-cover-frame {
    padding: 4px !important;
    border-width: 1px !important;
    box-shadow: 0 0 0 1px #e02424 !important;
    min-height: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
    
    #wjj .wjj-podcast-container {
        grid-template-columns: 1fr;
        padding: 2px;
        gap: 16px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #wjj .wjj-podcast-left {
        width: 100%;
        display: flex;
        justify-content: center;
    }

  
    #wjj .wjj-carousel-3d-track {
    width: 100% !important;           /* 宽度撑满容器 */
    max-width: 100% !important;       /* 不限制最大宽度 */
    aspect-ratio: 9 / 16;            /* 保持竖屏比例，高度自动拉高 */
}
    #wjj .wjj-podcast-right {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    #wjj .wjj-content-wrapper {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
        border: 0;
    }

/* 手机端按钮横排 + 文字完整显示 */
#wjj .wjj-episode-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;                /* 绝不换行 */
    gap: 1px;                         /* 间距最小化 */
    width: 100%;
    padding: 6px 0;
    margin: 0 auto 8px;
    border-bottom: 1px solid #e02424;
}

    #wjj .wjj-episode-btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 6px 2px;
    font-size: clamp(10px, 2.5vw, 14px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

    #wjj .wjj-episode-details {
        width: 100%;
        padding: 12px 4px;
        margin: 0 auto;
    }

    #wjj .wjj-podcast-root {
        padding: 20px 10px;
        margin: 0 auto;
    }
}






/*                搜索弹窗                */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.search-popup {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
}
.search-popup form {
    display: flex;
    gap: 10px;
}
.search-popup input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 40px;
}
.search-popup button {
    background: #16a34a;
    border: none;
    padding: 0 24px;
    border-radius: 40px;
    color: #fff;
    cursor: pointer;
}
.search-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* ==================== 幻灯片 ==================== */
.dt_slider .swiper-slide {
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slider-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}
.slider-content .subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 20px;
    border-radius: 30px;
}
.slider-content h2 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.slider-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}
.dt_slider-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
}

/* ==================== 关于区域 ==================== */
.about-content { padding-right: 30px; }
.section-title .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #0e6bff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}
.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}
.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.07);
}

/* ==================== 服务网格 ==================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}
.service-img { position: relative; }
.service-img img { width: 100%; height: 240px; object-fit: cover; }
.service-icon {
    position: absolute;
    bottom: -25px; left: 25px;
    width: 60px; height: 60px;
    background: #0e6bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}
.service-content { padding: 35px 25px 25px; }
.service-content h4 { font-size: 22px; margin-bottom: 12px; }
.service-content p { color: #6c757d; margin-bottom: 20px; }
.service-content .dt-btn { padding: 8px 20px; }

/* ==================== CTA 横幅 ==================== */
.cta-area {
    background: linear-gradient(90deg, #0b2b4b 0%, #1a4a7a 100%);
    border-radius: 30px;
    padding: 60px 50px;
    position: relative;
}
.cta-area h2 { font-size: 40px; color: #fff; margin: 15px 0; }
.cta-area .desc { color: rgba(255,255,255,0.8); margin-bottom: 25px; }

/* ==================== 博客文章卡片 ==================== */
.post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.post-card:hover { transform: translateY(-5px); }
.post-date {
    background: #0e6bff;
    color: #fff;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 0 0 20px 0;
    font-weight: 500;
}
.post-meta {
    padding: 15px 25px 0;
    color: #8c8f92;
    font-size: 14px;
}
.post-meta i { margin-right: 5px; }
.post-card h5 { padding: 0 25px; font-size: 20px; margin: 10px 0; }
.post-card h5 a { color: #1e2a3e; }
.post-card p { padding: 0 25px; margin-bottom: 20px; }
/* 将通用 .more-link 限定在博客卡片内，避免覆盖信息卡片的样式 */
.post-card .more-link {
    display: inline-block;
    margin: 0 25px 25px;
    font-weight: 600;
    color: #0e6bff;
    text-decoration: none;
}

/* ==================== 页脚 ==================== */
.dt_footer {
    background: #111a28;
    color: #9aa5b5;
}
.dt_footer_middle { padding: 80px 0 40px; }
.dt_footer h3, .dt_footer h5 { color: #fff; margin-bottom: 25px; }
.dt_footer ul {
    list-style: none;
    padding: 0;
}
.dt_footer ul li { margin-bottom: 12px; }
.dt_footer a { color: #9aa5b5; }
.dt_footer a:hover { color: #fff; }
.dt_footer_copyright {
    background: #0c121c;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ==================== 列表 & 搜索页 ==================== */
.list-item { margin-bottom: 35px; padding-bottom: 25px; border-bottom: 1px solid #eef2f6; }
.pagination {
    margin-top: 40px;
    text-align: center;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #0e6bff;
}
.pagination .active {
    background: #0e6bff;
    color: #fff;
    border-color: #0e6bff;
}
.dt_uptop {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    background: #0e6bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 99;
    transition: 0.3s;
}
.dt_uptop:hover {
    background: #0056d4;
    transform: translateY(-3px);
}

/* ==================== 信息卡片（午夜蓝主题 + 光芒效果） ==================== */
.info-cards {
    position: relative;
    z-index: 1;
    margin-top: -140px;
    margin-bottom: 30px;
}

.info-card {
    position: relative;
    background-color: #2a303c;
    border-radius: 14px;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}



/* 更多链接（限定在信息卡片内，避免影响博客的 .more-link） */
.info-card .more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.info-card .more-link i {
    transition: transform 0.3s ease;
}

/* 悬停效果 */
.info-card:hover {
    background-color: #14a0dc;
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.35);
}

.info-card:hover .more-link i {
    transform: translateX(5px);
}


/* 阳光光芒效果 */
.info-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0) 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.3s ease-out;
}
.info-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255, 215, 0, 0) 0deg,
        rgba(255, 215, 0, 0.5) 5deg,
        rgba(255, 215, 0, 0) 10deg
    );
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.35s ease-out;
    border-radius: 50%;
}
.info-card:hover::before {
    width: 400px;
    height: 400px;
    opacity: 0.8;
    transition: width 0.3s ease-out, height 0.3s ease-out, opacity 0.25s ease-out;
}
.info-card:hover::after {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.4s ease-out;
}

/* 确保卡片内容在光芒之上 */
.info-card .step-number,
.info-card .card-icon,
.info-card .card-title,
.info-card .card-description,
.info-card .more-link {
    position: relative;
    z-index: 2;
}

/* ==================== 响应式 ==================== */
@media (min-width: 992px) {
    .info-cards .dt-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
    }
    .info-cards .dt-col-lg-3 {
        flex: 1;
        max-width: none;
    }
    .info-card {
        margin-bottom: 0;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .info-card {
        min-height: 260px;
        padding: 25px 18px;
    }

}
@media (max-width: 767px) {
    .info-card {
        min-height: auto; 
        padding: 25px 20px;
    }
 
    .info-card .more-link span { font-size: 13px; }
}

/* 移动端头部响应式 */
@media (max-width: 992px) {
    .main-nav, .header-actions .user-link,
    .header-actions .search-toggle, .header-actions .phone-item {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .header-actions .btn-quote {
        display: inline-block;
    }
}
@media (max-width: 768px) {
    .top-left, .top-right {
        width: 100%;
        justify-content: center;
    }
    .top-bar .container {
        justify-content: center;
        text-align: center;
    }
}