 /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: "Microsoft YaHei", "Heiti SC", sans-serif;
            color: #333;
            background-color: #fff8f5;
            line-height: 1.6;
            overflow-x: hidden;
            height: 100%; /* 确保html和body能支撑满屏元素 */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }

        /* 容器样式 */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Banner样式 - 完全满屏显示 */
        .banner {
            position: relative;
            width: 100vw; /* 宽度占满整个视口 */
            /*height: 100vh;*/ /* 高度占满整个视口 */
            height: calc(100% - 57px); /* 预留区域高度 */
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        .banner-img-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持比例并覆盖整个容器 */
            object-position: center; /* 图片居中显示 */
        }
         .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持比例并覆盖整个容器 */
            object-position: center; /* 图片居中显示 */
        }
        @media (max-width: 768px) {


        .banner {
            position: relative;
            width: 100vw; /* 宽度占满整个视口 */
            /*height: 100vh;*/ /* 高度占满整个视口 */
            /*left: 50%;*/ /* 相对于父元素左移50% */
            /*transform: translateX(-50%);*/ /* 向左平移自身50%，实现整体居中 */
            /*height: auto;*/
            height: 300px;
            overflow: hidden;
            margin: 0;
            padding: 0;
            background: url("https://www.news.cn/energy/ZSY75th/img/banner_mb.jpg") 50% 0px / 100% 100% no-repeat rgb(255, 255, 255);
        }

        .banner-img-container {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
        }

        .banner img {
            display: none;
        }


        }

        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            max-width: 1200px;
            z-index: 10;
        }

        .banner-title {
            font-size: clamp(2rem, 5vw, 3.5rem); /* 响应式字体大小 */
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.3;
        }

        .banner-desc {
            font-size: clamp(1rem, 2vw, 1.5rem); /* 响应式字体大小 */
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background-color: rgba(230, 67, 0, 0.3);*/
        }

        /* 向下滚动指示器 */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            z-index: 10;
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .scroll-indicator {display: none;
        }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
            40% {transform: translateX(-50%) translateY(-20px);}
            60% {transform: translateX(-50%) translateY(-10px);}
        }

        /* 通用栏目样式 */
        section {
            padding: 60px 0;
            margin-bottom: 30px;
            background-color: white;
        }

        [class^="section-"] .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #e64300;
        }

        [class^="section-"] .section-title h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        [class^="section-"] .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff6b35;
        }

        [class^="section-"] .section-desc {
            font-size: 1rem;
            max-width: 800px;
            margin: 0 auto;
            color: #666;
            line-height: 1.8;
        }

        /* 栏目11样式 - 双列图文 */
        .section-11 {
            background-color: #fff8f2;
        }

        .section-11-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .section-11-left {
            flex: 1;
            min-width: 300px;
        }

        .section-11-right {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-11-swiper {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .section-11-slide {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /*.section-11-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }*/

        .section-11 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section-11-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
        }

        .section-11-list {
            list-style: none;
        }

        .section-11-item {
            padding: 10px 15px;
            margin-bottom: 10px;
            background-color: white;
            border-left: 4px solid #ff9e7d;
            transition: all 0.3s ease;
            border-radius: 0 4px 4px 0;
        }

        .section-11-item:hover {
            border-left-color: #e64300;
            transform: translateX(5px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .section-11-item.active {
            border-left-color: #e64300;
            background-color: #fff0e8;
        }

        .section-11-item-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: #333;
        }

        .section-11-item-desc {
            font-size: 0.9rem;
            color: #666;
        }

        /* 栏目12样式 - 网格轮播 */
        .section-12 {
            background-color: #fff;
        }

        .section-12-swiper {
            width: 100%;
            padding: 20px 0;
        }

        .section-12-slide {
            width: 100%;
        }

        .section-12-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .section-12-item {
            background-color: #fff8f2;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .section-12-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(230, 67, 0, 0.15);
        }

        .section-12-img-container {
            height: 180px;
            overflow: hidden;
        }

        .section-12-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .section-12 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .section-12-item:hover .section-12-img {
            transform: scale(1.08);
        }

        .section-12-content {
            padding: 15px;
        }

        .section-12-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: #e64300;
        }

        .section-12-desc {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.7;
        }

        .section-12-nav {
            position: relative;
            margin-top: 30px;
            text-align: center;
        }

        .section-12-pagination {
            display: inline-flex;
            gap: 10px;
        }

        .section-12-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ffc2ad;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .section-12-dot.active {
            background-color: #e64300;
            width: 30px;
            border-radius: 6px;
        }

        .section-12-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: white;
            border: 1px solid #ff9e7d;
            border-radius: 50%;
            color: #e64300;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .section-12-arrow.prev {
            left: 0;
        }

        .section-12-arrow.next {
            right: 0;
        }

        .section-12-arrow:hover {
            background-color: #e64300;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        /* 栏目13样式 - 科创破壁 大图轮播 */
        .section-13 {
            background-color: #fff5f0;
            padding-bottom: 80px;
        }

        .section-13-main {
            position: relative;
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .section-13-swiper {
            width: 100%;
            height: 500px;
        }

        .section-13-slide {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .section-13-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section-13-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            transition: all 0.3s ease;
        }

        .section-13-title {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }

        .section-13-caption-desc {
            font-size: 1rem;
            opacity: 0.9;
        }

        .section-13-thumb-container {
            position: relative;
            padding: 0 40px;
        }

        .section-13-thumbs {
            width: 100%;
            cursor: grab;
            overflow: hidden; /* 确保只显示一组轮播 */
        }

        .section-13-thumbs:active {
            cursor: grabbing;
        }

        .section-13-thumb {
            width: 120px;
            height: 80px;
            margin: 0 8px;
            border-radius: 4px;
            overflow: hidden;
            opacity: 0.6;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer; /* 显示指针，表明可点击 */
        }

        .section-13-thumb.swiper-slide-thumb-active {
            opacity: 1;
            transform: scale(1.05);
            border-color: #e64300;
            box-shadow: 0 4px 12px rgba(230, 67, 0, 0.3);
            z-index: 10;
        }

        .section-13-thumb-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section-13-thumb-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            margin: 0 -20px;
            pointer-events: none;
        }

        .section-13-thumb-arrow {
            width: 36px;
            height: 36px;
            background-color: white;
            border: 2px solid #e64300;
            border-radius: 50%;
            color: #e64300;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .section-13-thumb-arrow:hover {
            background-color: #e64300;
            color: white;
            transform: scale(1.1);
        }

        .section-13-main-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 15px;
            z-index: 5;
        }

        .section-13-main-arrow {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.3);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(3px);
        }

        .section-13-main-arrow:hover {
            background-color: rgba(230, 67, 0, 0.8);
            transform: scale(1.05);
        }

        /* 页脚样式 */
        .footer {
            background-color: #ec4444;
            color: white;
            padding: 30px 0 40px;
            text-align: center;
            margin-top: 80px;
        }


        .footer-info {
            margin-bottom: 20px;
        }

        .footer-copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .container {
                width: 95%;
            }
        }

        @media (max-width: 992px) {
            .section-13-swiper {
                height: 400px;
            }

            .section-13-thumb {
                width: 100px;
                height: 70px;
            }
        }

        @media (max-width: 768px) {
            .section-11-swiper {
                height: 300px;
            }

            .section-12-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-13-swiper {
                height: 300px;
            }

            .section-13-main-arrow {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }

            .section-13-title {
                font-size: 1.2rem;
            }

            .section-13-caption-desc {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 40px 0;
            }

            [class^="section-"] .section-title {
                margin-bottom: 25px;
            }

            .section-11-content {
                gap: 20px;
            }

            .section-11-swiper {
                height: 220px;
            }

            .section-12-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .section-12-img-container {
                height: 160px;
            }

            .section-13-swiper {
                height: 220px;
            }

            .section-13-thumb {
                width: 80px;
                height: 55px;
                margin: 0 5px;
            }

            .section-13-thumb-arrow {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
        }


/* 科创铸魂栏目 - section-10 */
.video-replay-section {
  padding: 60px 0;
  background: url("images/bg-video-section.png") no-repeat center center; /* 背景图可替换 */
  background-size: cover;
  position: relative;
}

.video-replay-section .container {
  width: 100%;
  max-width: 1200px; /* PC端容器宽度1200px */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 栏目标题 */
.section-title {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

/* 轮播容器核心样式 */
.video-replay-swiper {
  position: relative;
  height: 480px; /* PC端轮播高度，可根据设计调整 */
}

/* 轮播卡片样式 */
.video-card {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background-color: #fff;
}

.video-img {
  width: 100%;
  height: calc(100% - 60px); /* 预留标题区域高度 */
  object-fit: cover; /* 保持图片比例并填满容器 */
  display: block;
}
.section-10 img {
  width: 100%;
  height: calc(100% - 60px); /* 预留标题区域高度 */
  object-fit: cover; /* 保持图片比例并填满容器 */
  display: block;
}

.video-desc {
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.9);
}

.video-title {
  font-size: 18px;
  color: #333;
  line-height: 1.4;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 标题最多显示2行 */
  -webkit-box-orient: vertical;
}

/* 轮播箭头样式 */
.swiper-button-prev.video-prev,
.swiper-button-next.video-next {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  z-index: 10;
}

.section-10 .swiper-button-prev.video-prev {
  /*left: -24px;*/
  left: 20px;
}

.section-10 .swiper-button-next.video-next {
  /*right: -24px;*/
  right: 20px;
}

/* 箭头 hover 效果 */
.swiper-button-prev.video-prev:hover,
.swiper-button-next.video-next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* 隐藏 Swiper 默认箭头文字（如需自定义图标可替换） */
.swiper-button-prev.video-prev::after,
.swiper-button-next.video-next::after {
  font-size: 20px;
  font-weight: bold;
}

/* 移动端响应式适配（≤768px） */
@media (max-width: 768px) {
  .video-replay-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .video-replay-swiper {
    height: 320px; /* 移动端轮播高度降低，适配小屏 */
  }

  .video-img {
    height: calc(100% - 50px); /* 调整标题区域高度 */
  }

  .section-10 img {
    height: calc(100% - 50px); /* 调整标题区域高度 */
  }

  .video-desc {
    padding: 12px 15px;
  }

  .video-title {
    font-size: 16px;
    -webkit-line-clamp: 1; /* 移动端标题最多1行 */
  }

  /* 移动端箭头位置调整，更贴近屏幕 */
  .swiper-button-prev.video-prev {
    left: 10px;
  }

  .swiper-button-next.video-next {
    right: 10px;
  }

  .swiper-button-prev.video-prev,
  .swiper-button-next.video-next {
    width: 36px;
    height: 36px;
  }

  .swiper-button-prev.video-prev::after,
  .swiper-button-next.video-next::after {
    font-size: 16px;
  }
}

     /* 精神铸魂 section-14 */
        #section-14 {
            width: 100%;
            padding: 40px 20px;
            /*background-color: #f9f9f9;*/
            margin: 0 auto;
        }

        #section-14 .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #e64300;
        }

         #section-14 .section-title h2{font-size: 2rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        #section-14 .section-title  h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff6b35;
        }

        @media (max-width: 768px) {
            #section-14 {
                width: 100%;
                margin: 0 auto;
                overflow: hidden;
            }
        }


        /* 轮播容器样式 */
        .carousel-container {
            position: relative;
            width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .carousel-container {
                width: 100%;
            }
        }

        /* 箭头样式 */
        .carousel-btn {
            position: absolute;
            top: 60%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .carousel-btn:hover {
            background-color: rgba(220, 0, 0, 0.8);
        }

        .carousel-btn.section14-prev {
            left: 20px;
        }

        .carousel-btn.section14-next {
            right: 20px;
        }

        /* 轮播轨道样式 */
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        /* 轮播项样式 */
        .carousel-item {
            flex: 0 0 calc(100% / 5);
            position: relative;
            height: 350px;
            padding: 0 10px;
            overflow: hidden;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .carousel-item:hover img {
            transform: scale(1.05);
        }

        /* 年份标签样式 */
        .year-tag {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100px;
            height: 40px;
            background-color: #dc0000;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            z-index: 5;
        }

        /* hover渐变蒙版样式 */
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            color: #fff;
            z-index: 4;
        }

        .carousel-item:hover .carousel-overlay {
            opacity: 1;
        }

        .overlay-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .overlay-desc {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .overlay-link {
            color: #dc0000;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: text-decoration 0.3s ease;
        }

        .overlay-link:hover {
            text-decoration: underline;
        }

        #section-14 .carousel-overlay a {
            color: #dc0000;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: text-decoration 0.3s ease;
        }

        #section-14 .carousel-overlay a:hover {
            text-decoration: underline;
        }

        /* 响应式样式 */
        @media (max-width: 1200px) {
            .carousel-item {
                flex: 0 0 calc(100% / 6);
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                flex: 0 0 calc(100% / 4);
                height: 300px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .carousel-btn.prev {
                left: 10px;
            }

            .carousel-btn.next {
                right: 10px;
            }

            #section-14 .section-title {
                font-size: 24px;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .carousel-item {
                flex: 0 0 calc(100% / 2);
                height: 280px;
            }

            .overlay-title {
                font-size: 16px;
            }

            .overlay-desc {
                font-size: 13px;
            }
        }

		@media (max-width: 768px) {
           .carousel-item {
             position: relative;
            }
            .carousel-overlay {
            opacity: 1;
            height: auto;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
			padding: 15px 25px;
           }
            .overlay-desc {
                display: none;
            }
                }


.domMobile { display:none!important; }
.clear { clear:both; }
@media (max-width: 768px) {
.domPC,.iframePC {  display:none!important;}
.domMobile {  display:block;}
.footer{padding: 25px 5% 30px 5%;}
}


/*顶部工具栏*/
#topHeader { height: 32px; text-align: center; }
#topHeader .top { width: 1000px; margin: 0 auto; height: inherit; }
#topHeader a { float: left; height: 32px; line-height: 38px; color: #fff; margin: 0 10px; font-size: 12px; opacity: 1; }



/*2021网站导航*/
.bg-xinhua-bar {background-color: #e63939; min-width: 1188px; }
.top-bar {height: 57px; color: #FFFFFF; text-decoration: none; padding-left: 14px; margin: 0 auto; position: relative; width: 1200px; }
.top-bar a {color: #FFFFFF; }
.top-bar .container {width: 1188px; }
.top-bar ul li {list-style: none; float: left; line-height: 57px; min-width: 46px; text-align: center; }
.top-bar ul li a {margin-right: 5px; font-size: 15px; }




@media (max-width: 768px) {
/*移动端导航*/
.nav .begin{ display:block; width:32px; height:29px; background:url(../img/bgPcNav.jpg) no-repeat; text-indent:-999px; position:fixed; right:10px; top:70%; overflow:hidden;  z-index:100;  -webkit-background-size: 32px 29px; background-size: 32px 29px; overflow:hidden;  z-index:100; }
.nav .navCon { position:fixed; top:70%; right:42px; width:120px; /*height:100px;*/ z-index:100;}
.nav .navCon a{ float:right; height:29px; line-height:29px; font-size:20px; color:#fff; padding:0 20px; margin:0 6px 5px 0; background:#abcea7; display:block; width:80px;}
.toTop { position:fixed; top: 75%; width: 35px; height: 35px; background: url(../img/top.png) no-repeat; background-size:35px 35px;  margin: 0px auto; margin-top: 5px; cursor: pointer; z-index: 99999999; right: 8px;}


/* Mobile 导航 4*/
#mobileHeader { font-family: "微软雅黑"; }
#mobileHeader { width: 100%; position:relative; }
#mobileHeader .logo { display: block; width: 63px; height: 45px; background: url(http://www.xinhuanet.com/world/2015/images/xh_mobile_header.png) no-repeat 0px 0px; -webkit-background-size: 57px; background-size: 57px; position: absolute; top: 0px; left: 10px; z-index:1000;}
#mobileHeader .right { display: block; width: 30px; height: 45px; position: absolute; top: 0px; right: 15px; background: url(http://www.xinhuanet.com/world/2015/images/xh_mobile_header.png) no-repeat 100% -45px; -webkit-background-size: 57px; background-size: 57px; }
#mobileHeader .mobileNavList { width: 100%; height:0px; overflow:hidden; position: absolute; top: 45px; left: 0px; background: #ededed; z-index:10; z-index:1000;}
#mobileHeader .mobileNavList a { float: left; width: 20%; padding: 10px 0; color: #000; text-align: center; font-size:16px; }
#mobileHeader .phnav { text-align: center; padding-bottom:6px; }
#mobileHeader .phnav a { float:left; width:30%; height: 30px; line-height: 35px; text-align:center; font-size:16px; font-family:"微软雅黑"; color:#333; }

 }
