* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            color: #333;
        }

        .container {
            letter-spacing: 2.5px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
        }

        .intro-banner {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .intro-banner p {
            font-size: 18px;
            line-height: 1.6;
            text-align: justify;
            text-indent: 2em;
        }

        .header {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
            margin-bottom: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .header h1 {
            font-size: 36px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .hero-text {
            border-radius: 8px;
            padding: 20px 10px;
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #0066cc, #0099ff);
            /* background-color: #ffd700; */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .banner-section {
            width: 100%;
            height: 650px;
        }

        .banner-section img {
            width: 100%;
            height: 100%;
        }

        .content-wrapper {
            background-color: white;
            border-radius: 8px;
            padding: 6px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .section {
            background-color: white;
            border: 2px solid #0066cc;
            border-radius: 8px;
            margin-bottom: 6px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            padding: 5px 20px;
            font-size: 24px;
            font-weight: bold;
            border-bottom: 2px solid #0066cc;
            position: relative;
        }

        .section-title::before {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #0066cc;
        }

        .section-content {
            display: flex;
            align-items: center;
        }

        .section-text {
            flex: 0 0 40%;
            padding-right: 30px;
            background-color: #f8f9fa;
            padding: 25px;
            margin: 0 15px;
            border-radius: 8px;
            border-left: 6px solid #0066cc;
            border-right: 6px solid #0066cc;

        }

        .section-text p {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 15px;
            text-indent: 2em;
        }

        .section-text p strong {
            color: #0066cc;
            font-weight: bold;
        }

        .section-image {
            flex: 0 0 60%;
            text-align: center;
        }

        .section-image a {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .section-image a:hover {
            transform: scale(1.02);
        }

        .section-image img {
            max-width: 100%;
            height: 320px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
         /* 服务导航容器样式 */
            .service-nav-container {
                text-align: center;
                margin-bottom: 20px;
            }

            /* 服务导航包装器样式 */
            .service-nav-wrapper {
                display: inline-flex;
                gap: 8px;
                background-color: #f0f0f0;
                padding: 2px;
                border-radius: 50px;
            }

            /* 服务导航按钮样式 */
            .service-nav-btn {
                background: linear-gradient(135deg, #0066cc, #0099ff);
                color: white;
                border: none;
                padding: 8px 12px;
                font-size: 16px;
                font-weight: bold;
                border-radius: 50px;
                cursor: pointer;
                transition: all 0.3s ease;
                outline: none;
            }

            .service-nav-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

            .service-nav-btn.active {
                background: linear-gradient(135deg, #00ccff, #0099ff);
                box-shadow: 0 4px 8px rgba(0, 153, 255, 0.4);
            }

            /* 服务图片容器样式 */
            .service-image-container {
                text-align: center;
                border: 2px solid #0066cc;
                border-radius: 8px;
            }

            /* 服务图片样式 */
            #service-image {
                max-width: 100%;
                height: auto;
                border-radius: 4px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                transition: all 0.5s ease;
            }
        @media (max-width: 768px) {
            .section-content {
                flex-direction: column;
            }

            .banner-section {
                width: 100%;
                height: auto;
            }

            .section-text {
                padding-right: 0;
                margin-bottom: 20px;
            }
        }

        /* 独家内容板块样式 */
        .content-wrapper-mt {
            margin-top: 25px;
        }

        .header-special {
            background: linear-gradient(135deg, #0066cc, #00ccff);
        }

        .section-title-special {
            background: linear-gradient(135deg, #0066cc, #00ccff);
            text-align: center;
        }

        .interview-button {
            display: inline-block;
            background: linear-gradient(135deg, #0099ff, #00ccff);
            padding: 5px 40px;
            border-radius: 50px;
            font-size: 28px;
            margin: 10px 0;
        }

        .section-content-special {
            flex-direction: column;
            padding: 2px;
        }

        .interview-intro {
            text-align: center;
            margin-bottom: 10px;
        }

        .interview-intro p {
            font-size: 20px;
            font-weight: bold;
            line-height: 1.6;
        }

        .interview-intro .highlight {
            color: #0066cc;
            font-size: 24px;
        }

        .interview-cards {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .interview-card {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            background: linear-gradient(135deg, #003366, #0066cc);
            color: white;
            border-radius: 8px;
            padding: 2px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        /* 暑期报告与图片布局样式 */
        .summer-report-container {
            display: flex;
            gap: 20px;
            margin: 10px 0;
        }

        .summer-report-content {
            flex: 1;
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            padding: 50px;
            border-radius: 8px;
        }

        .summer-report-content a {
            color: white;
            text-decoration: none;
        }

        .summer-report-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .summer-report-desc {
            margin-top: 12px;
            font-size: 18px;
            opacity: 0.9;
        }

        .summer-report-image {
            flex: 0 0 260px;
        }

        .summer-report-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .interview-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 15px;
            display: inline-block;
        }

        .interview-card h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .interview-image {
            margin-bottom: 20px;
        }

        .interview-image img {
            width: 100%;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .interview-position {
            font-size: 16px;
            font-weight: bold;
        }

        .interview-name {
            font-size: 18px;
            font-weight: bold;
            margin-top: 5px;
        }

        /* 系列报道板块样式 */
        .series-section {
            margin-top: 20px;
            border: 2px solid #0066cc;
            border-radius: 8px;
            overflow: hidden;
            background-color: white;
        }

        .series-title {
            background: linear-gradient(135deg, #0066cc, #00ccff);
            color: white;
            text-align: center;
            padding: 10px 0;
        }

        .series-title div {
            display: inline-block;
            background: linear-gradient(135deg, #0099ff, #00ccff);
            padding: 5px 40px;
            border-radius: 50px;
            font-size: 24px;
            font-weight: bold;
        }

        .series-content {
            padding: 20px;
        }

        .series-intro {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: center;
        }

        .series-intro .highlight {
            color: #0066cc;
            font-size: 20px;
        }

        .series-news {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .series-news-list {
            flex: 1;
        }

        .series-news-item {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            font-size: 18px;
            line-height: 1.5;
        }

        .series-news-item p {
            margin: 0;
        }

        .series-news-item a {
            color: white;
            text-decoration: none;
        }

        .series-news-image {
            flex: 0 0 300px;
        }

        .series-news-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .series-footer {
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #0066cc;
        }

        .series-footer .highlight {
            color: #0066cc;
        }

        .content {
            background: linear-gradient(135deg, #0066cc, #0099ff);
        }

        /* 报告切换功能样式 */
        .report-slider-container {
            position: relative;
            margin-top: 20px;
        }

        .report-slider-controls {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding: 0 10px;
        }

        .report-slider-btn {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .report-slider-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #0099ff, #00ccff);
        }

        .report-slider-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .report-slider-btn-prev {
            order: 1;
        }

        .report-slider-btn-next {
            order: 2;
        }

        .report-slider-content {
            position: relative;
            overflow: hidden;
        }

        /* 新闻切换功能样式 */
        .news-slider-container {
            position: relative;
            margin-top: 20px;
        }

        .news-slider-controls {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding: 0 10px;
        }

        .news-slider-btn {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .news-slider-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #0099ff, #00ccff);
        }

        .news-slider-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .news-slider-btn-prev {
            order: 1;
        }

        .news-slider-btn-next {
            order: 2;
        }

        .news-slider-content {
            position: relative;
            overflow: hidden;
        }

        /* 过渡动画效果 */
        .report-slider-content,
        .news-slider-content {
            transition: all 0.5s ease-in-out;
        }

        .series-news-item {
            transition: all 0.3s ease;
        }

        .series-news-item:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        /* 加载状态动画 */
        #report-loading p,
        #loading-state p {
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        /* 分类导航菜单样式 */
        .news-category-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 50px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .news-category-btn {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .news-category-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #0099ff, #00ccff);
        }

        .news-category-btn.active {
            background: linear-gradient(135deg, #00ccff, #0099ff);
            box-shadow: 0 4px 8px rgba(0, 153, 255, 0.4);
            transform: translateY(-1px);
        }

        .news-category-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* 报告导航模式样式 */
        .report-nav-mode {
            margin-bottom: 15px;
        }

        .report-nav-options {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 50px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .report-nav-btn {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .report-nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #0099ff, #00ccff);
        }

        .report-nav-btn.active {
            background: linear-gradient(135deg, #00ccff, #0099ff);
            box-shadow: 0 4px 8px rgba(0, 153, 255, 0.4);
            transform: translateY(-1px);
        }

        .report-nav-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* 移动出行 */
        /* .minf {
            flex: 1;
            min-width: 600px;
        } */

        /* 联系 */
        .contact-info-section {
                margin: 2px 0;
            }
            
            .contact-info-container {
                display: flex;
                align-items: center;
                background: linear-gradient(135deg, #0066cc, #0099ff);
                color: white;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                flex-wrap: wrap;
            }
            
            .contact-info-item {
                flex: 1;
                text-align: center;
                min-width: 150px;
                margin-right: 20px;
            }
            
            .contact-info-item:last-child {
                margin-right: 0;
            }
            
            /* 二维码和备注信息板块紧靠在一起 */
            .contact-info-item:nth-child(3),
            .contact-info-item:nth-child(4) {
                margin-right: 10px;
                flex: none;
            }
            
            .contact-info-item:nth-child(4) {
                margin-right: 0;
            }
            
            .contact-name {
                font-size: 18px;
                font-weight: bold;
            }
            
            .contact-phone {
                font-size: 18px;
                display: block;
                font-weight: bold;
            }
            
            .contact-qrcode img {
                width: 80px;
                height: 80px;
                margin-left: 50px;
                background-color: white;
                border-radius: 4px;
            }
            
            .contact-note {
                font-size: 16px;
                font-weight: bold;
            }

        /* 移动端适配 - 一行显示两个卡片 */
        @media (max-width: 768px) {
            .interview-card {
                flex: 0 0 calc(50% - 10px);
                min-width: calc(50% - 10px);
                max-width: calc(50% - 10px);
            }

            .interview-cards {
                gap: 10px;
            }
            .series-news {
                flex-direction: column;
            }

            .series-news-image {
                flex: 1;
                max-width: 100%;
            }

            .series-news-item {
                font-size: 14px;
                padding: 12px;
            }

            .series-intro {
                font-size: 16px;
            }

            .series-intro .highlight {
                font-size: 18px;
            }

            /* 移动端暑期报告与图片布局 */
            .summer-report-container {
                flex-direction: column;
            }

            .summer-report-content {
                flex: 1;
            }

            .summer-report-image {
                flex: 1;
                max-width: 100%;
            }

            .summer-report-content {
                padding: 20px;
            }
            .customer-item {
                flex: 0 0 calc(33.333% - 14px);
                max-width: calc(33.333% - 14px);
            }
            .series-report-images {
                flex-direction: column;
                align-items: center;
            }

            .series-report-image-item {
                min-width: 100%;
                max-width: 100%;
            }

            .series-report-intro {
                font-size: 16px;
            }

             .report-slider-controls,
            .news-slider-controls {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            .report-slider-btn,
            .news-slider-btn {
                width: 100%;
                max-width: 200px;
                text-align: center;
            }

            .report-slider-btn-prev,
            .report-slider-btn-next,
            .news-slider-btn-prev,
            .news-slider-btn-next {
                order: unset;
            }

            .news-category-nav,
            .report-nav-options {
                flex-direction: row;
                gap: 8px;
                align-items: center;
                border-radius: 8px;
            }

            .news-category-btn,
            .report-nav-btn {
                width: 100%;
                max-width: 200px;
                text-align: center;
            }

            /* .minf {
                flex: 1;
                min-width: auto;
            } */

            /* 联系我 */
              .contact-info-container {
                    flex-direction: column;
                    align-items: center;
                }
                
                .contact-info-item {
                    width: 100%;
                }
                
                .contact-qrcode img {
                    width: 100px;
                    height: 100px;
                    margin: 0 auto;
                }
        }

        /* 小屏幕移动端适配 */
        @media (max-width: 480px) {
            .interview-card {
                flex: 0 0 calc(50% - 8px);
                min-width: calc(50% - 8px);
                max-width: calc(50% - 8px);
            }

            .interview-cards {
                gap: 8px;
            }
            .customer-item {
                flex: 0 0 calc(50% - 10px);
                max-width: calc(50% - 10px);
            }
        }


        /* 系列报告板块样式 */
        .series-report-section {
            margin-top: 20px;
        }

        .series-report-title {
            background: linear-gradient(135deg, #0066cc, #00ccff);
            color: white;
            text-align: center;
            padding: 10px 0;
        }

        .series-report-title div {
            display: inline-block;
            background: linear-gradient(135deg, #0099ff, #00ccff);
            padding: 5px 40px;
            border-radius: 50px;
            font-size: 24px;
            font-weight: bold;
        }

        .series-report-content {
            padding: 20px;
        }

        .series-report-intro {
            font-size: 18px;
            font-weight: bold;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
        }

        .series-report-intro .highlight {
            color: #0066cc;
        }

        .series-report-images {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .series-report-image-item {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            border: 2px solid #0066cc;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .series-report-image-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 通用样式 */
        .title-with-more {
            position: relative;
        }

        .title-more-link {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            text-decoration: none;
            font-size: 18px;
        }

        .section-content-padding {
            padding: 10px;
        }

        .customers-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
        }

        .customer-item {
            flex: 0 0 calc(20% - 16px);
            max-width: calc(20% - 16px);
            text-align: center;
        }

        .customer-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .customer-name {
            margin-bottom: 5px;
        }

        .customer-ctrip {
            color: #0066cc;
        }

        .customer-tongcheng {
            color: #9933ff;
        }

        .customer-alitrip {
            color: #ff6666;
        }

        .customer-mafengwo {
            color: #ffcc00;
        }

        .customer-qunar {
            color: #009966;
        }

        .customer-didi {
            color: #ff6600;
        }

        .customer-amap {
            color: #0099cc;
        }

        .customer-harbor {
            color: #0066cc;
        }

        .customer-caocao {
            color: #00cc66;
        }

        .customer-dida {
            color: #ff6600;
        }