/* ============================================
   国家教学成果奖申报网站 - 主样式表
   主题色：深蓝 #231d5b / 橙色 #ff5c26
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
outline: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Utility Classes === */
.main-width {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-start {
    display: flex;
    align-items: center;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* === App Container === */
#root {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    overflow-x: hidden;
}


.main-wrap{
    width: 1200px;
    margin: 0 auto;
}

/* ============================================
   HEADER - 顶部导航栏
   ============================================ */
.header {
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background: #231d5b;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header a {
    color: #fff;
outline: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    padding: 0 5px;
    font-size: 20px;
    line-height: 90px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.nav-item:hover a {
    color: #ff5c26;
}

.nav-item.current {
    background: #ff5c26;
}

.nav-item.current a {
    color: #fff;
}

.nav-item.current:hover a {
    color: #fff;
}

.header-tip {
    padding-left: 28px;
    font-size: 17px;
    font-weight: 400;

    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAkCAMAAADSK7iXAAAAeFBMVEUAAAD/XCb/XSf/XCf/Xin/XCb/XCb/XCf/Xij/ZzH/bDb/gED/XSb/XSf/XCf/XSf/Xif/XSb/XCb/XSb/XCf/XSf/Xif/YSj/Zyj/XCf/XCf/XSb/XCf/Xif/XSj/XSf/XSb/XSj/XSf/XCb/XSf/Xij/ZCz/XCanAn7LAAAAJ3RSTlMA+vTnHvGlZ1IOBwTrxI2KQeLQs6tyMyUTyr+8qZ6BfGBa2dWEehfU9zCtAAAA5klEQVQ4y43S2ZKDIBCF4YOg4BaXMZo9k1nC+79hFkPUJDb93VH1F1A0eOiOeSXkumhx1xZrKar82GFMNdbZKkBtrNOooTKBHQRaT5bGVdqSdF+Vgs5EeatiaT1kDOBgvQ5AHPqzMIaxDAZ7TrZHzclqSE4mITiZQMjJQvxysh/sOFmEEyf7xipgTQGFP1sAjO2yFa6W/pvd5XS1Qa8LyCMVHgz9xZ/+57MlRiLqLQbp19yUppKPXZPitdu+VztXkftFKT5II+L2Y8X0JWZp4SJxAqHM+qpqQVL1rcrP8EgWmfxL8OICeFmR6NT8NrsAAAAASUVORK5CYII=) 0 no-repeat;

    background-size: auto 18px;
    opacity: 0.9;
}






    body {
      overflow-x: hidden;
      font-family: "Microsoft Yahei", sans-serif;
      /* 适配fixed导航高度，防止内容被遮挡 */
      padding-top: 90px;
    }

    /* 导航头部 fixed固定顶部 */
    .site-header {
      background: #2a4de7;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
    }

.logo-jxcg{
display:none;
}
    /* 中间限制宽度1200px容器，内容居中 */
    .nav-wrap {
      max-width: 1200px;
      margin: 0 auto;
      height:90px;
      display: flex;
      align-items: center;

    justify-content: flex-start;
      padding: 0  0px;
      position: relative;
width:100%;
    }

    /* PC横向导航 适配超长菜单文字 */
    .nav-list {
      display: flex;
      gap: 4px;
      flex-wrap: nowrap;
      align-items: center;
    }
    .nav-link {
      display: block;
      color: #fff;
      padding: 0 10px;
      line-height: 90px;
      font-size: 20px;
      font-weight: bold;
      white-space: nowrap;
      transition: background 0.25s ease;
    }
    .nav-link:hover {
      background: rgba(255,255,255,0.15);
    }
    /* 当前选中高亮 */
    .nav-link.active {
      background: #ff5c26;
    }
    /* 底部提示文字样式 */
    .header-tip {
      color: #fff;
      font-size: 16px;
      font-weight: normal;
      white-space: nowrap;
      padding-left:25px;

    }

    /* 汉堡按钮 PC隐藏，绝对定位靠右 */
    .nav-toggle {
      display: none;
      display: block;
      width: 44px;
      height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }
    .nav-toggle span {
      display: block;
      width: 26px;
      height: 3px;
      background: #fff;
      margin: 5px auto;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* 移动端768px以下适配 */
    @media screen and (max-width: 768px) {
.nav-wrap {

    height: auto;
   display: block;

}
#root > header.site-header > div > div > ul > li:nth-child(7){

display:none;
}

    body {

      padding-top: 0;
    }

.nav-list,
    .site-header {
    position: static;
    }

.logo-jxcg{
display:block;
margin:0 0 0 10px;
}
.logo-jxcg{
font-size: 18px;  
        color: #fff;
        background: #FF7B22;
        border-radius: 10px;
        padding: 5px 10px;
        width: 85%;
        margin: 15px auto;

}
      .nav-toggle {
        display: block;
      }
      .nav-list {
        position: fixed;
        top: 90px;
     position: static;
        width: 100%;
 
        height:420px;
        background: #2a4de7;
        flex-direction: column;
        padding: 15px 24px;
        transition: right 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
        justify-content: flex-start;
      }
      .nav-list.active {
        right: 0;
      }
      .nav-item {
        width: 100%;
      }
      /* 手机缩小字号 */
      .nav-link {
        line-height: 50px;
        padding: 0 12px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        white-space: nowrap;
      }
      .nav-link.active {
        background: #ff5c26;
      }
      /* 移动端提示文字样式重置 */
      .header-tip {
        border-left: none;

padding-left: 25px;

        margin-top:20px;
        font-size:15px;
        line-height:1.6;
      }
      /* 汉堡转关闭X */
      .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      .nav-toggle.active span:nth-child(2) {
        opacity: 0;
      }
      .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
    }
/* ============================================
   BANNER - 横幅区域
   ============================================ */
.banner-bg {
    height: 400px;
    background: linear-gradient(135deg, #1a1548 0%, #231d5b 40%, #2d2670 100%);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}
.banner-bg{
background:none;
    background: none;
    height: 380px;
    margin-top: 0;
}

.banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,92,38,0.1) 0%, transparent 70%);
}

.banner {
    height: 400px;
    position: relative;
    z-index: 1;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px;
}

.banner-img1 {
    height: 158px;
    width: auto;
}

.banner-img2 {
    height: 290px;
    width: auto;
}

/* Banner 文字样式 */
.banner-text-wrap {
    text-align: center;
    color: #fff;
    flex: 1;
}

.banner-subtitle {
    font-size: 18px;
    letter-spacing: 6px;
    opacity: 0.85;
    margin-bottom: 12px;
}

.banner-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-year {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 6px;
    margin-bottom: 20px;
    color: #ff5c26;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Banner 右侧申报单位 */
.banner-units {
    color: #fff;
    text-align: center;
    padding-left: 40px;
    border-left: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.banner-units h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 16px;
    color: #ff5c26;
}

.banner-units ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-units li {
    font-size: 15px;
    line-height: 2.2;
    letter-spacing: 2px;
    opacity: 0.9;
    white-space: nowrap;
}

.big-img{height:380px;}

.big-img img{
display:none;
}





    .banner-wrap-mobile {
  
      width: 100%;
      aspect-ratio: 5.05 / 1;
      background: url("../images/banner-bg.jpg") center center / cover no-repeat; /*替换成你的图片地址*/
      display: flex;
      padding: clamp(12px, 2vw, 36px) clamp(16px, 3vw, 48px);
      gap: 2vw;
      align-items: center;
          display:none;
    }
    /* 左右两栏基础占比 */
    .banner-left {flex: 1.6;min-width: 0;}
    .banner-right {flex: 1;min-width: 0;}
    /* 顶部橙条自适应字号 clamp(最小值,动态vw,大屏上限字号) */
    .top-tag-row {display: flex;gap: 1.2vw;margin-bottom: clamp(8px,1vw,22px);flex-wrap: wrap;}
    .tag-orange {
      background: #ff8822;color:#fff;
      font-size: clamp(18px, 1.15vw, 22px);
      padding: clamp(7px,0.4vw,10px) clamp(12px,0.9vw,18px);
      border-radius: 6px;white-space: nowrap;
    }
    /* 主标题：两行大标题，自适应字号防溢出 */
    .main-title {
      font-size: clamp(18px, 2.3vw, 42px);
      color:#fff;font-weight: bold;line-height: 1.7;
      margin-bottom: clamp(6px,0.7vw,16px);
      text-shadow: 0 0 2px #0003;
    }
    /* 推荐单位行 */
    .recommend-line {
      display: flex;align-items: center;gap: 1.8vw;flex-wrap: wrap;
      font-size: clamp(14px, 1.1vw, 20px);color:#fff;
    }
    .recommend-label {
      background:#36d1e7;color:#083842;
      padding: clamp(3px,0.3vw,8px) clamp(6px,0.6vw,12px);
      border-radius: 5px;font-weight: 600;white-space: nowrap;
    }
    /* 右侧联合申报单位模块 */
    .right-card {
      background: #0939bb33;
      border-radius: 10px;padding: clamp(10px,1.3vw,28px);
      background: url(../images/lh-bg.png) no-repeat 50%;
    }
    .card-title {
      font-size: clamp(16px, 1.5vw, 28px);
      color:#6ee1ff;text-align: center;font-weight:bold;
      margin-bottom: clamp(15px,1vw,20px);
    }
    .unit-item {
      display:flex;align-items:center;gap:0.8vw;
      font-size: clamp(14px, 1.1vw, 21px);color:#87e8ff;
      margin-bottom: clamp(14px,0.7vw,14px);
    justify-content: center;
    }
    .unit-item img {
      height: clamp(18px, 2vw, 38px);
      width: auto; /*Logo等比缩放不拉伸*/
    }
    /* 移动端断点：768px以下改为上下竖排 */
    @media screen and (max-width:768px){
      .banner-wrap-mobile{
        display: block;
        flex-direction:column;
        aspect-ratio: unset; /*解除固定比例，自动增高适配竖排内容*/
        padding: 14px 12px;
      }
      .banner-left,.banner-right{width:100%;margin-top:10px;}
      .main-title{line-height:1.8}
      .unit-item{gap:10px}
    }
/* ============================================
   VIDEO SECTION - 视频区域
   ============================================ */
.video-section {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 470px;
    margin: 15px auto 20px;
    background: #f2f7ff;
    border-radius: 0 8px 8px 0;
}

.video-container {
    width: 836px;
    height: 470px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, opacity 0.3s;
    cursor: pointer;
    z-index: 2;
}

.video-container:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-links {
    padding-right: 73px;
}

.video-links li {
    width: 236px;
    height: 56px;
    margin-bottom: 37.5px;
    color: #fff;
    font-size: 22px;
    background: #ff5c26;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.video-links li:last-child {
    margin-bottom: 0;
}

.video-links li a {
    color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video-links li img {
    width: 36px;
    height: 36px;
    margin-right: 14px;
    margin-left: 30px;
}

.video-links li:hover {
    background: #ffa47b;
}

/* ============================================
   RESULTS SECTION - 教学成果区域
   ============================================ */
.results-section {
    height: 550px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8faff 0%, #e8f0fe 50%, #f8faff 100%);
    position: relative;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23e0e8f0'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.results-section h2 {
    margin: 44px 0 56px;
    color: #333;
    font-weight: 400;
    font-size: 32px;
    text-align: center;
    position: relative;
    background: url(../images/h2-bg.png) 50% no-repeat;
    background-size: 1200px auto;


}

.results-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff5c26;
    margin: 12px auto 0;
    border-radius: 2px;
}

.results-list {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.results-list li {
    height: 72px;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 72px;
    text-align: center;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.06);
    cursor: pointer;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.results-list li:nth-child(1),
.results-list li:nth-child(2),
.results-list li:nth-child(3) {
    width: 389px;
    margin-right: 16px;
}

.results-list li:nth-child(4),
.results-list li:nth-child(5) {
    width: 592px;
    margin-right: 16px;
}

.results-list li:nth-child(6),
.results-list li:nth-child(7) {
    width: 100%;
  
}

.results-list li:nth-child(3),
.results-list li:nth-child(5),
.results-list li:nth-child(7) {
    margin-right: 0;
}

.results-list li:hover {
    border: 1px solid #ff5c26;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,92,38,0.15);
}

.results-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #333;
}

.result-icon {
    height: 30px;
    width: 30px;
    margin-right: 16px;
}

/* ============================================
   INTROS SECTION - 简介卡片区域
   ============================================ */
.intros-section {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 64px 0;
}

.intro-card {
    width: 272px;
    height: 266px;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.intro-card:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.intro-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.intro-card img {
    display: block;
    width: 272px;
    height: 204px;
    object-fit: cover;
}

.intro-card span {
    display: block;
    width: 100%;
    height: 62px;
    margin: 0 auto;
    color: #fff;
    font-size: 24px;
    line-height: 62px;
    text-align: center;
    background: #ff5c26;
    cursor: pointer;
    transition: background 0.3s;
}

.intro-card:hover span {
    background: #ff7a4d;
}

/* ============================================
   FOOTER - 页脚
   ============================================ */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 164px;
    color: #fff;
    text-align: center;
    background:#2a4de7;
    padding: 30px 0;
}

.footer-links {
    margin: 0 auto 16px;
    font-size: 20px;
    opacity: 0.9;
}

.footer-links span {
    color: hsla(0,0%,100%,0.7);
    font-size: 24px;
    display: block;
    line-height: 1.8;
}
.footer-links strong,
.footer-links b{

    font-weight: normal;
}
.footer a {
    color: hsla(0,0%,100%,0.7);
    font-size: 24px;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 1;
    color: #ff5c26;
}

.footer p {
    color: hsla(0,0%,100%,0.6);
    font-size: 24px;
    text-align: center;
}

/* ============================================
   SUB PAGES - 子页面通用样式
   ============================================ */



.list-page{
display:flex;
    align-items: flex-start;
    justify-content: space-between;
}
.list-lmy{

width: 1300px
}
.sidebar{
width:200px;
}
.list{
width: calc(100% - 230px);
}
    .subnav {
            display: flex;
            flex-direction: column;
            gap: 5px;
            max-width: 100%;
            margin: 0 auto;
                width: 220px;
        }
        .subnav li a {
            display: block;
            width: 100%;
            padding: 10px 10px;
 
  
    font-weight: bold;

            text-align: center;
            word-break: break-all;
            /* 默认背景 */
            background-color: rgb(255, 92, 38);
            transition: background 0.3s ease;
            
            
            
 
    min-height: 42px;
    margin-bottom: 8px;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;

    align-items: center;
    text-align: center;

    background-color: rgb(255, 92, 38);
    border-radius: 4px;
    cursor: pointer;
    font-size: 19px;
        }
        /* 鼠标悬浮渐变 */
         .subnav li a.on,
        .subnav li a:hover {
            background: linear-gradient(rgb(255, 161, 158), rgb(255, 167, 101));
        }
        /* 报纸报道固定渐变，hover不变化 */
        .subnav li a.gradient-fixed {
            background: linear-gradient(#ffb899, #ff7722) !important;
        }
        .subnav li a.gradient-fixed:hover {
            background: linear-gradient(#ffb899, #ff7722) !important;
        }

.page-header {
    width: 100%;

    padding: 15px 0;
    color: rgba(0, 0, 0, .85);
    font-size: 26px;
    background: #f6f6f6;
 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-header h1 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.85;
}

.page-content {
    min-height: calc(100vh - 166px - 164px);
    background: #fff;
    padding: 5px 0 40px;
}

.content-container {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.06);
    padding:10px 40px 40px 40px;
    min-height: 500px;
}

.content-container h2 {
    font-size: 20px;
    color: #231d5b;
    margin-bottom: 20px;
    padding-bottom: 0px; 
}

.content-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.content-container .info-card {


    padding: 5px 0;
    margin-bottom: 10px;
    border-radius: 0 8px 8px 0;

border-bottom: 1px dashed #dedede;
}

.content-container .info-card h3 {
    font-size: 18px;
    color: #231d5b;
    margin-bottom: 8px;
    display: flex;
    justify-content: flex-start;
}

.content-container .info-card h3 {
  display: flex;
  align-items: center; /* 垂直居中，按需加 */
  gap: 16px; /* 子元素间距 */
  width: 100%;
    font-weight: normal;
}
.content-container .info-card h3  a{
font-size:16px;
}

.content-container .info-card h3 .item:nth-child(2) {
  margin-left: auto;
 color: #666;
font-size:14px;
}

.content-container .info-card p {
    margin-bottom: 0;
    font-size: 15px;
}

/* 面包屑导航 */
.crumbs {
    width: 100%;
    height: 50px;
    padding-left: 190px;
    font-size: 18px;
    line-height: 50px;
    background-color: #f6f6f6;
    color: #666;
}

.crumbs a {
    color: #231d5b;
}

.crumbs a:hover {
    color: #ff5c26;
}

.crumbs span {
    margin: 0 8px;
    color: #ccc;
}



#h-1041 .pdf-v:has(img):not(:has(iframe)) {
width:100%;
height:1200px;
background:#E7ECF5;
padding:10px 15px;
    overflow-y: scroll;
max-width:850px;
margin:0 auto;

}
.pdf-v img{
width:100%;
height:auto;
margin:15px auto;
}
/* PDF查看器区域 */
.pdf-viewer {
    width: 100%;
    height: 800px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 20px;
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* 文档列表 */
.doc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.doc-card {
    width: calc(33.333% - 14px);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.doc-card:hover {
    border-color: #ff5c26;
    box-shadow: 0 4px 20px rgba(255,92,38,0.1);
    transform: translateY(-2px);
}

.doc-card .doc-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.doc-card h3 {
    font-size: 18px;
    color: #231d5b;
    margin-bottom: 8px;
}

.doc-card p {
    font-size: 14px;
    color: #999;
    margin-bottom: 0;
}
.pdf-v iframe{
width:100%!important;
min-height:1300px;
max-width: 835px;
}

.content-container {
    width: 1290px!important;

     padding: 10px 20px 40px 20px!important;

}
/* ============================================
   RESPONSIVE - 响应式设计
   ============================================ */
@media (max-width: 1300px) {
    .main-width,
    .video-section,
    .results-list,
    .intros-section,
    .content-container {
        width: 100%!important;
        padding: 10px !important;
    }

    .banner-inner {
        padding: 0 10px;
    }

    .banner-title {
        font-size: 28px;
    }
    .banner-year {
        font-size: 18px;
    }
    .banner-units {
        padding-left: 30px;
    }
    .banner-units li {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        justify-content: flex-start;
    }

    .nav-item {
        padding: 0 10px;
        font-size: 16px;
        line-height: 40px;
    }

    .banner-bg {
        height: auto;
        margin-top: 0;
    }

    .banner {
        height: 200px;
    }

    .banner-inner {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .banner-title {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .banner-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }
    .banner-year {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .banner-units {
        display: none;
    }

.big-img img{   width:100%;display:block;  height: auto;}

    .video-section {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .video-container {
        width: 100%;
        height: auto;
    }

    .video-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px 0 0;
    }

    .video-links li {
        width: calc(50% - 5px);
        height: 48px;
        font-size: 16px;
        margin-bottom: 0;
    }

    .results-section {
        height: auto;
        padding-bottom: 30px;
    }

    .results-list {
        flex-direction: column;
        align-items: center;
    }

    .results-list li {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .intros-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-header {
        height: auto;
        padding: 10px 20px;
 
    }

    .crumbs {
        padding-left: 20px;
    }
.list-lmy{
width:100%;
}
.list{
width:100%;
}
    .list-page{
    flex-direction: column;
    }

.content-container{
padding:0 10px;
}
}





   /* 主要完成人 */
        .expert-wrap {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }
        /* 卡片基础样式 */
        .expert-item {
            width: 50%;
            padding: 15px 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
        .expert-card {
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
        /* 头像区域 */
        .expert-avatar {
            width: 260px;
            height: 360px;
            flex-shrink: 0;
            -ms-flex-negative: 0;
            margin-right: 16px;
        }
        .expert-avatar img {
            width: 100%;
            height: 100%;
    border-radius: 15px;
            object-fit: cover;
            -ms-interpolation-mode: bicubic; /* IE图片模糊修复 */
        }
        /* 文字区域 */
        .expert-info {
            flex: 1;
            -ms-flex: 1;
        }
        .expert-name {
            font-size: 18px;
            font-weight: bold;
            color: #222222;
            margin-bottom: 8px;
        }

        .expert-name span{
font-weight: normal; padding: 0 0 0 15px;
}
        .expert-desc {
            font-size: 13px;
            color: #444444;
            line-height: 1.6;
        }

        .expert-desc *{
font-size:14px!important;
text-indent:0!important;
line-height:28px!important;
}
        .expert-desc p {
            margin:0;
        }



.expert-avatar {
    width: 130px;
    height: 180px;

}
.expert-item {
    width: 33.33%;

}


.expert-desc * {
    font-size: 11px !important;
    text-indent: 0 !important;
    line-height: 17px !important;
}




span.lmmc-1063,
span.lmmc-1064,
span.lmmc-1065,
span.lmmc-1066,
span.lmmc-1067,
span.lmmc-1068,
span.lmmc-1069,
span.lmmc-1070,
span.lmmc-1071,
span.lmmc-1072
{
display:none;
}
.card-1063,
.card-1064,
.card-1065,
.card-1066,
.card-1067,
.card-1068,
.card-1069,
.card-1070,
.card-1071,
.card-1072{
padding: 8px 20px!important;
    margin-bottom: 9px!important;

    height: 54px!important;
}
.card-1063 a,
.card-1064 a,
.card-1065 a,
.card-1066 a,
.card-1067 a,
.card-1068 a,
.card-1069 a,
.card-1070 a,
.card-1071 a,
.card-1072 a{
font-size: 22px!important;
}




        /* 手机适配 1列 */
        @media screen and (max-width: 640px) {
     .video-links li:last-child {
      margin: 0 auto;
} 


.results-list li a {

    justify-content: left;
padding:0 0 0 25px;

}

/* 侧边栏滚动条整体（纵向控制宽度） */
.sidebar::-webkit-scrollbar {
  width: 6px; /* 纵向滚动条宽度，横向改height */
}
/* 滚动条轨道背景 */
.sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
/* 拖动滑块，配色适配你页面橙色主题 */
.sidebar::-webkit-scrollbar-thumb {
  background: #ff702a;
  border-radius: 3px;
}
/* 滑块hover加深（仅PC生效） */
.sidebar::-webkit-scrollbar-thumb:hover {
  background: #e55c18;
}
/* iOS移动端顺滑滚动兼容 */
.sidebar {
  -webkit-overflow-scrolling: touch;
}

/* 隐藏移动端难看的横向滚动条（可选） */
.sidebar::-webkit-scrollbar {
  height: 4px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}
.results-section h2{
font-size:22px;        margin: 20px 0 20px;
}

    .banner-bg {
        height: auto;
        margin-top: 0;
    }
.big-img{
display:none;
}
.intro-card span{
font-size:18px;
        line-height: 45px;
     height: 45px;
}
.expert-desc * {
    font-size: 14px !important;
    text-indent: 0 !important;
    line-height: 25px !important;
}

.video-links li img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-left: 10px;
}
.expert-desc{
padding:0 15px;
}
.results-list li{
font-size:18px;
}
            .expert-item {
                width: 100%;
            }
            .expert-card {
                flex-direction: column;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
            }
            .expert-avatar {
                width: 150px;
                height: 220px;
                margin: 0 auto 12px;
            }

.content-container h2{
font-size:18px;
}
.sidebar {
    width: 100%;
overflow-x: scroll;
}

.subnav {
    display: flex;
    flex-direction: row;
    gap: 5px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}


.subnav li {
 
    min-width: 120px;
}

.subnav li.n-1048,
.subnav li.n-1024{
    min-width: 150px;
}

.subnav li a{

font-size:14px;
}
.footer p,
.footer a,
.footer-links span {

font-size:14px;
line-height: 15px;
        text-align: left;
}
.footer-links {

    width: 100%;
}
.footer{
padding:10px 20px;
}

.footer-links b {

    display: block;
}
.footer-links strong{
line-height:33px;
}
.footer-links b:nth-child(2),

.footer-links b:nth-child(3){
padding: 0 0 0 70px;
}
.pdf-v iframe{
width:100%!important;
min-height:1000px;
}

.pdf-v {
  width: 100% !important;
  height: 90vh;
 
  /* 清除旧的width、height属性带来的约束 */
  width: unset;
  height: unset;
  display: block;
}
 



.card-1063 a, .card-1064 a, .card-1065 a, .card-1066 a, .card-1067 a, .card-1068 a, .card-1069 a, .card-1070 a, .card-1071 a, .card-1072 a {
    font-size: 16px !important;
}
}


        /* 平板适配 2列 */
        @media screen and (max-width: 992px) {
            .expert-item {
                width: 50%;
            }
        }


/* 屏幕宽度 480px ≤ 宽度 ≤ 1310px 生效 */
@media screen and (min-width:480px) and (max-width:1200px) {
    .banner-bg {
     
        margin-top: 0;
    }
.big-img{
display:none;
}
}


        
#wznr p:has(video),
#wznr p:has(iframe) {



  text-indent: 0!important; 


}