/* 全局样式 */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

/* 通用标题区域样式 - 可复用于各个板块 */

.idx-tit {

    text-align: center;

    margin-bottom: 40px;

}



.idx-tit .gy-title {

    font-size: 50px;

    font-weight: 600;

    margin-bottom: 15px;

    line-height: 1.2;
        font-family: "OPPOSans H", Arial, sans-serif;
    letter-spacing: 6px;

}



.idx-tit .gy-subtitle-img {

    margin-bottom: 20px;

    display: flex;

    justify-content: center;

    align-items: center;

}

.idx-tit .gy-subtitle-img1 {

    margin-bottom: 20px;

    display: flex;

    justify-content: center;

    align-items: center;

}



.idx-tit .gy-subtitle-img img {

    max-width: 100%;

}

.idx-tit .gy-subtitle-img1 img {

    max-width: 100%;

}



.idx-tit .gy-description {

    font-size: 22px;

    line-height: 1.6;

    margin-bottom: 0;

    opacity: 1;
font-family: "OPPOSans l", "Microsoft YaHei", Arial, sans-serif;
}



/* 响应式设计 */

@media (max-width: 992px) {

    .idx-tit {

        margin-bottom: 40px;

    }

    

    .idx-tit .gy-title {

        font-size: 36px;

    }
    

    .idx-tit .gy-description {

        font-size: 15px;

    }

}



@media (max-width: 576px) {

    .cases-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 16px;

    }

    .case-card img {

        height: 180px;

    }

    

    .idx-tit {

        margin-bottom: 30px;

    }

    

    .idx-tit .gy-title {

        font-size: 28px;

    }

    

    .idx-tit .gy-description {

        font-size: 14px;

    }

}



/* 服务项目板块样式 */

.services-section {

    padding-bottom: 80px;

}



.services-header {

    margin-bottom: 60px;

}



/* 首页服务项目：标题、副标题、描述样式 */

.services-title {

    font-size: 80px;

    font-weight: bold;

    color: #332c2b;

    letter-spacing: 4px;

    margin: 0 0 10px;

    position: relative;
 font-family: "OPPOSans H", Arial, sans-serif;
}

.services-subtitle {
    font-size: 52px;
    font-weight: bold;
    color: #332c2b;
    margin: 8px 0 16px;
    letter-spacing: 4px;
    font-family: "OPPOSans H", Arial, sans-serif;
}


.services-description {

    font-size: 36px;

    color: #332c2b;

    font-family: "OPPOSans R", Arial, sans-serif;
     -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}



@media (max-width: 992px) {

    .services-title { font-size: 36px; }

    .services-subtitle { font-size: 36px; }

    .services-description { font-size: 15px; }

    .services-header { margin-bottom: 20px;}

}

@media (max-width: 576px) {

    .services-title { font-size: 28px; }

    .services-subtitle { font-size: 28px; }

    .services-description { font-size: 14px; }

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-bottom: 60px;

}



.service-item {

    background: #f2f2f2;

    padding: 48px 20px;

    border-radius: 15px 15px 0 0;

    text-align: center;

    transition: all 0.3s ease;

    cursor: pointer;

    text-decoration: none;

    display: block;

}



.service-item:hover {

    transform: translateY(-10px);

    text-decoration: none;

}

/* 首页服务项目：悬停描述覆盖层 */
.service-item {
    position: relative;
    overflow: hidden;
}

.service-desc {
    position: absolute;
    inset: 0;

    color: #fff;          /* 白字 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    line-height: 1.7;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.service-item:hover .service-desc {
    opacity: 1;
}

.service-item:hover .service-icon,
.service-item:hover .service-title {
    opacity: 0;
    transition: opacity 0.2s ease;
}

@media (max-width: 992px) {
    .service-desc { font-size: 14px; padding: 14px; }
}



.service-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    transition: all 0.3s ease;

}



.service-icon img {

    width: 50px;

    height: 50px;

    object-fit: contain;

}



.service-title {

    font-size: 24px;

    font-weight: normal;

    color: #232cc7;

    margin: 0;

}



.services-contact {

    text-align: left;

}



.contact-buttons {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 40px;

}



.contact-link {

    color: white;

    text-decoration: none;

    font-size: 26px;

    font-weight: 600;

    padding: 15px 60px;

    background: #232cc7;

    border-radius: 60px;

    transition: all 0.3s ease;

    display: inline-block;
    letter-spacing: 4px;
font-family: "OPPOSans H", "Microsoft YaHei", Arial, sans-serif;
}



.contact-link:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(35, 44, 199, 0.3);

}



.contact-phone .phone-number {

    font-size: 30px;

    font-weight: 900;

    color: #000000;

    display: block;
font-family: "OPPOSans H", "Microsoft YaHei", Arial, sans-serif;
letter-spacing: 2px;

}


.phone-icon svg {
    display: block; /* 确保 SVG 显示 */
    width: 24px;    /* 图标大小 */
    height: 24px;
    color: #fff;    /* 图标颜色 */
}

/* 样式依然加在父容器 .phone-icon 上 */
.phone-icon {
    background-color: #FFB300;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.phone-icon svg, 
.phone-icon img {
    display: none; 
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-phone .phone-icon {
    width: 40px;
    height: 40px;
    background: #EBA222; /* 橙色背景，和你图标底色一致 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    overflow: hidden; /* 防止图片超出圆形边界 */
    padding: 0; /* 清除内边距 */
    display: none;
}

.phone-icon svg, .phone-icon img {
    display: none;
}

.contact-phone .phone-icon i {

    font-size: 20px;

    color: #fff;

}

.contact-phone .phone-icon img {
    width: 24px; /* 图标宽度，可按需调整 */
    height: 24px; /* 图标高度，可按需调整 */

}

.contact-phone .phone-info {

    text-align: left;
    line-height: 24px;
    margin-left: 0;

}



.contact-phone .phone-label {

    font-size: 16px;

    color: #000000;
font-family: "OPPOSans H", Arial, sans-serif;
line-height: 32px;
}



/* 响应式设计 */

@media (max-width: 992px) {

    .services-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 25px;

    }

}



@media (max-width: 768px) {

    .services-section {

        padding: 30px 0;

    }

    

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }

    

    .service-item {

        padding: 30px 15px;

    }

    

    .service-icon {

        width: 60px;

        height: 60px;

    }

    

    .service-icon i {

        font-size: 24px;

    }

    

    .service-icon img {

        width: 30px;

        height: 30px;

    }

    

    .contact-buttons {

        flex-direction: column;

        gap: 20px;

    }

    

    .contact-phone .phone-icon {

        width: 45px;

        height: 45px;

    }

    

    .contact-phone .phone-number {

        font-size: 20px;

    }

}



@media (max-width: 576px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 15px;

    }

    

    .service-item {

        padding: 25px 10px;

    }

    

    .service-icon {

        width: 50px;

        height: 50px;

    }

    

    .service-icon i {

        font-size: 20px;

    }

    

    .service-icon img {

        width: 25px;

        height: 25px;

    }

}



body {

font-family: "OPPOSans R", "Microsoft YaHei", Arial, sans-serif;

    line-height: 1.6;

    color: #333;

}



/* === 超大屏幕适配 (1560px以上) === */

@media (min-width: 1560px) {

    .container {

        max-width: 1750px;

    }

}



/* Hero Section */



/* Swiper样式 */

.hero-swiper {

    width: 100%;

    height: auto;

    padding: 0;

}



.hero-swiper .swiper-slide {

    text-align: center;

    display: flex;

    justify-content: center;

    align-items: center;

}



.hero-swiper .swiper-slide img {

    width: 100%;

    height: auto;

    display: block;

    transition: transform 0.3s ease;

}



/* Swiper分页器样式 */

.hero-swiper .swiper-pagination {

    bottom: -10px;

}



.hero-swiper .swiper-pagination-bullet {

    width: 12px;

    height: 12px;

    background: rgba(255, 255, 255, 0.5);

    opacity: 1;

    transition: all 0.3s ease;

}



.hero-swiper .swiper-pagination-bullet-active {

    background: #ffd700;

    transform: scale(1.2);

}



/* Swiper导航按钮样式 */

.hero-swiper .swiper-button-next,

.hero-swiper .swiper-button-prev {

    color: #ffd700;

    background: rgba(0, 0, 0, 0.3);

    width: 50px;

    height: 50px;

    border-radius: 50%;

    transition: all 0.3s ease;

}



.hero-swiper .swiper-button-next:hover,

.hero-swiper .swiper-button-prev:hover {

    background: rgba(0, 0, 0, 0.6);

    transform: scale(1.1);

}



.hero-swiper .swiper-button-next::after,

.hero-swiper .swiper-button-prev::after {

    font-size: 20px;

    font-weight: bold;

}





/* 响应式设计 */

@media (max-width: 768px) {

    

    /* 移动端Swiper样式 */

    .hero-swiper .swiper-button-next,

    .hero-swiper .swiper-button-prev {

        width: 40px;

        height: 40px;

    }

    

    .hero-swiper .swiper-button-next::after,

    .hero-swiper .swiper-button-prev::after {

        font-size: 16px;

    }

    

    .hero-swiper .swiper-slide img {

        border-radius: 10px;

    }

}



@media (max-width: 576px) {

    

    /* 小屏幕Swiper样式 */

    .hero-swiper {

        padding: 10px 0;

    }

    

    .hero-swiper .swiper-button-next,

    .hero-swiper .swiper-button-prev {

        width: 35px;

        height: 35px;

    }

    

    .hero-swiper .swiper-button-next::after,

    .hero-swiper .swiper-button-prev::after {

        font-size: 14px;

    }

}



/* 滚动动画 */

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* === 活动案例板块 === */

.cases-section {

    background: #232cc7;

    padding: 80px 0;

    color: #fff;

}



.case-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    justify-content: center;

    margin-bottom: 30px;

}



.case-tag {

    background: #ffffff;

    color: #232cc7;

    border: 1px solid #fff;

    border-radius: 9999px;

    padding: 5px 17px;

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    display: inline-block;

    transition: all 0.25s ease;
    
    white-space: nowrap;
    
    overflow: hidden;
    
    text-overflow: ellipsis;
    font-family: "OPPOSans R", "Microsoft YaHei", Arial, sans-serif;font-family: "OPPOSans R", "Microsoft YaHei", Arial, sans-serif;

}



.case-tag:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(255,255,255,0.2);

}



.case-tag.active {

    background: #ffd700;

    color: #232cc7;

    border-color: #ffd700;

}



.cases-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}



.case-card {

    position: relative;

    border-radius: 12px;

    overflow: hidden;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: block;

    text-decoration: none;

    color: inherit;

}



.case-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.45);

    text-decoration: none;

    color: inherit;

}



.case-card img {

    width: 100%;

    height: 340px;

    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.case-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(35, 44, 199, 0.85);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    opacity: 0;

    transition: opacity 0.3s ease;

    padding: 20px;

    text-align: center;

}



.case-card:hover .case-overlay {

    opacity: 1;

}



.case-card:hover img {

    transform: scale(1.05);

}



.case-title {

    color: #fff;

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 12px;

}

/* 活动案例：标题下分隔线 */
.case-overlay .case-sep {
    height: 2px;
    width: 60%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    margin: 8px 0 12px;
    display: none;
}



.case-desc {

    color: rgba(255,255,255,0.9);

    font-size: 16px;

    line-height: 1.5;

    margin: 0;

}



@media (max-width: 992px) {

    .cases-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .case-card img {  height: 180px;}

    

    .case-title {

        font-size: 20px;

        margin-bottom: 10px;

    }

    

    .case-desc {

        font-size: 14px;

    }
    
    /* 移动端 case-tags 样式优化 */
    .case-tags {
        justify-content: flex-start;
    }
    
    .case-tag {
        flex: 0 0 calc(25% - 9px);
        max-width: calc(25% - 9px);
        padding: 6px 10px;
        font-size: 13px;
        text-align: center;
    }

}

@media (max-width: 576px) {
    .case-tags {
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .case-tag {
        flex: 0 0 calc(33.333% - 7px);
        max-width: calc(33.333% - 7px);
        padding: 6px 10px;
        font-size: 13px;
        text-align: center;
    }
}



/* 关于澜溪文化板块样式 */

.about-section {

    background: #ffffff;

    padding: 100px 0;

    position: relative;

    overflow: hidden;

}



.about-stats {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 60px 80px;

    margin-top: 80px;

    position: relative;

    z-index: 2;

}



.stat-item {

    text-align: center;

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

}



.stat-number {

    font-size: 115px;

    font-weight: 800;

    color: #232cc7;

    line-height: 1;

    margin-bottom: 15px;

    text-shadow: none;

    position: relative;

    z-index: 2;
    font-family: "OPPOSans H", "Microsoft YaHei", Arial, sans-serif;
}



.stat-label {

    font-size: 46px;

    font-weight: normal;

    color: #232cc7;

    margin-bottom: 20px;

    position: relative;

    z-index: 2;

}



.stat-desc {

    font-size: 22px;

    line-height: 1.6;

    color: #666666;

    text-align: left;

    position: relative;

    z-index: 2;
    width: 620px;;
    margin-left: 132px;

}



/* 响应式设计 */

@media (max-width: 992px) {

    .about-section {

        padding: 80px 0;

    }

    

    .about-stats {

        gap: 40px;

        margin-top: 60px;

    }

    

    .stat-item {

        padding: 30px 20px;

    }

    

    .stat-number {

        font-size: 56px;

    }

    

    .stat-label {

        font-size: 18px;

    }

    

    .stat-desc {

        font-size: 13px;

    }

}



@media (max-width: 768px) {

    .about-section {

        padding: 60px 0;

    }

    

    .about-stats {

        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 50px;

    }

    

    .stat-item {

        padding: 25px 15px;

    }

    

    .stat-number {

        font-size: 48px;

    }

    

    .stat-label {

        font-size: 16px;

        margin-bottom: 15px;

    }

    

    .stat-desc {

        font-size: 12px;
            line-height: 1.6;
    color: #666666;
    text-align: left;
    position: relative;
    z-index: 2;
    width: 334px;
    margin-left: 2px;

    }

}



.choose-section {

    background: #f2f2f2;

    padding: 60px 0 30px 0;

}

.choose-image-swap {
    max-width: 900px;
    margin: 0 auto;
}



/* 合作客户（滚动logo） */

.clients-section {

    background: #ffffff;

    padding: 60px 0 0px;

}



.clients-section .idx-tit {

    margin-bottom: 24px;

}



.clients-rows {

    display: flex;

    flex-direction: column;

    gap: 24px;

}



.client-row {

    position: relative;

    overflow: hidden;

}



.client-track {

    display: flex;

    align-items: center;

    gap: 48px;

    flex-wrap: nowrap;

    will-change: transform;

    animation: scroll-left 20s linear infinite;

}



/* 第二行反向滚动 */

.row-2 .client-track {

    animation-name: scroll-right;

    animation-duration: 22s;

}



/* 第三行加长时间，向左滚动 */

.row-3 .client-track {

    animation-name: scroll-left;

    animation-duration: 24s;

}



.client-item {

    height: 56px;

    width: auto;

    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;

}



.client-item:hover {

    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.06);

}



@keyframes scroll-left {

    0% { transform: translateX(0); }

    100% { transform: translateX(-50%); }

}



@keyframes scroll-right {

    0% { transform: translateX(-50%); }

    100% { transform: translateX(0); }

}



@media (max-width: 992px) {

    .client-item { height: 48px; }

    .client-track { gap: 32px; }

}



@media (max-width: 768px) {

    .client-item { height: 40px; }

    .client-track { gap: 24px; }

}



/* 返回按钮（参考图样式） */

.clients-return {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 24px 0 8px;

}

.return-btn {

    border: none;

    background: transparent;

    padding: 0;

    cursor: pointer;

}

.return-btn-circle {

    width: 112px;

    height: 112px;

    border-radius: 50%;

    background: #2E41FF; /* 深蓝 */

    display: inline-flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 6px 16px rgba(46, 65, 255, 0.3);

}

.return-btn-circle i {

    color: #fff;

    font-size: 52px;

    transform: rotate(45deg);

    line-height: 1;

}

.return-text {

    color: #2E41FF;

    font-size: 22px;

    letter-spacing: 4px;

    font-weight: 600;

}



@media (max-width: 576px) {

    .return-btn-circle { width: 92px; height: 92px; }

    .return-btn-circle i { font-size: 44px; }

    .return-text { font-size: 18px; letter-spacing: 3px; }

}



/* 返回图片样式 */

.return-link { display: inline-block; }

.return-img {

    width: 112px;

    height: auto;

    display: block;

}



@media (max-width: 576px) {

    .return-img { width: 92px; }

}



/* =============================

   内页：新闻页（ny- 前缀）

   - 保持首页头尾不变

   - 与首页样式完全隔离，避免类名冲突

   - 维护说明：内页样式统一写在最底部

============================= */

.ny-banner { position: relative; }

.ny-banner-img { width: 100%; height: auto; display: block; }

.ny-banner-text { position: absolute; inset: 0; }

.ny-banner-overlay {

    position: absolute;

    right: 0;

    bottom: 32%;

    color: #fff;

    text-align: right;

}

.ny-banner-title { font-size: 68px; font-weight: 800; letter-spacing: 2px; }

.ny-banner-desc { font-size: 32px; opacity: 0.9; font-weight:300}



.ny-body{ padding: 60px 0; }



.ny-news-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 100px 100px;

}

.ny-news-item {

    display: flex;

    gap: 24px;

    align-items: flex-start;

    text-decoration: none;

    color: inherit;

}

.ny-thumb {

    width: 280px;

    height: 230px;

    position: relative;

    top: 50px; /* 略低于右侧灰背景的顶部 */

    border-radius: 6px;

    z-index: 11; /* 让图片位于灰背景面板之下 */

}

.ny-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; display: block; }

.ny-panel {

    position: relative;

    flex: 1;

    background: #f2f2f2;

    border-radius: 6px;

    padding: 24px 24px 24px 170px;

    z-index: 1; /* 在图片之上叠加 */

    margin-left: -160px; /* 让右侧背景向左延伸，与左图产生悬浮叠加效果 */

}

.ny-news-date { display: inline-block; font-size: 12px; color: #fff; background: #EBA222; padding: 4px 8px; border-radius: 12px; margin-bottom: 15px; }

.ny-news-title { font-size: 22px; font-weight: 700; color: #232cc7; margin-bottom: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ny-news-excerpt { font-size: 14px; color: #666; line-height: 1.8; }

.ny-news-item:hover .ny-news-title { color: #EBA222; }



@media (max-width: 992px) {

    .ny-banner {  }

    .ny-banner-text { display: none; }

    .ny-banner-title { font-size: 40px; }

    .ny-news-grid { grid-template-columns: 1fr; }

    /* 修复新闻第二板块在 ≤992px 的图片溢出与布局问题 */

    .ny-news-item { flex-direction: column; }

    .ny-panel { margin-left: 0; z-index: 1; }

    .ny-thumb { width: 100%; height: 180px; top: 0; z-index: 2; }

    .ny-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .ny-news-title { white-space: normal; overflow: visible; text-overflow: unset; }



}

@media (max-width: 576px) {

    .ny-banner-title { font-size: 32px; }

    .ny-banner-desc { font-size: 16px; }

    .ny-banner-overlay { right: 0; bottom: 10%; }

    .ny-news-item { flex-direction: column; }

    .ny-panel { margin-left: 0; z-index: 1; }

    .ny-thumb { width: 100%; height: 160px; top: 0; z-index: 2; }

}



/* =============================

   内页：新闻详情（ny-xq- 前缀）

   - 保持首页头尾不变

   - 与首页样式完全隔离

   - 维护说明：详情页样式统一写在最底部

============================= */

.ny-news-xq-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

.ny-xq-title { color: #232cc7; font-size: 32px; font-weight: 800; letter-spacing: 1px; margin: 0 0 20px;text-align: center; }

.ny-xq-header { display: block; }

.ny-xq-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 16px; color: #666; padding: 10px 0; }

.ny-xq-meta-left { display: flex; align-items: center; gap: 12px; }

.ny-xq-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #fff; background: #232cc7; padding: 6px 20px; border-radius: 16px; text-decoration: none; }

.ny-xq-back:hover { background: #1f27b8; }

.ny-xq-content { font-size: 16px; color: #333; line-height: 2; }

.ny-xq-content img { max-width:100%; }

.ny-xq-subtitle { font-size: 18px; color: #232cc7; font-weight: 700; margin: 20px 0 8px; }



/* 上一条 / 下一条 灰块 */

.ny-xq-prevnext { display: grid; grid-template-columns: 1fr; gap: 10px; }

.ny-xq-prev, .ny-xq-next { background: #f2f2f2; border-radius: 4px; padding: 10px 14px; color: #666; position: relative; display: block; }

.ny-xq-prev a, .ny-xq-next a { color: #444; text-decoration: none; }

.ny-xq-prev a:hover, .ny-xq-next a:hover { color: #232cc7; }

.ny-xq-prev { padding-left: 26px; }

.ny-xq-next { padding-left: 26px; }



/* 推荐阅读 卡片 */

.ny-xq-recommend { background: #fff; border-radius: 6px; /* 去掉投影，改为细边框 */ border: 1px solid #e9e9e9; padding: 16px 18px; }

.ny-xq-recommend-head { padding-bottom: 12px; margin-bottom: 12px; border-bottom: #e9e9e9 1px solid; }

.ny-xq-recommend-tag { color: #ffd34e; font-size: 20px; font-weight: bold; }

.ny-xq-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }

.ny-xq-list li { font-size: 16px; }

.ny-xq-list li a { display: flex; align-items: center; gap: 8px; color: #444; text-decoration: none; padding: 6px 0; }

.ny-xq-list li a:hover { color: #232cc7; }

.ny-xq-list li i { color: #ff9e00; }



@media (max-width: 576px) {

    .ny-xq-title { font-size: 26px; }

    .ny-xq-meta { font-size: 13px; }

}



/* =============================

   内页：联系方式（ny-contact- 前缀）

   - 保持首页头尾不变

   - 与首页样式完全隔离

   - 维护说明：联系方式样式统一写在最底部

============================= */

.ny-contact-lx { display: grid; gap: 20px; }

.ny-contact-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.ny-contact-card {  display: flex; align-items: center;  gap: 16px;  background: #232cc7; /* 品牌深蓝，与参考图一致 */  color: #fff;  border-radius: 12px; padding: 20px 18px;  text-decoration: none;}
.ny-contact-email {  max-width: 100%;}

.ny-contact-address {   background: #232cc7; /* 品牌深蓝，与参考图一致 */  color: #fff;  border-radius: 12px; padding: 40px 18px;  text-decoration: none; text-align: center;}

.ny-contact-address-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ny-contact-map { margin-bottom: 20px; text-align:center}
.ny-contact-map img { width: 1400px; height: auto; border-radius: 12px; }

.ny-contact-icon1 { width: 40px; height: 40px; margin: 0 auto; }

.ny-contact-icon1 i { color: #fff; font-size: 22px; }

.ny-contact-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.ny-contact-icon i { color: #fff; font-size: 22px; }

.ny-contact-label { font-size: 12px; opacity: 0.9; width: 80px; text-align: center; }

.ny-contact-text { font-size: 28px; font-weight: 500; letter-spacing: 1px; }

.ny-contact-text span { padding:0 10px; }

@media (max-width: 992px) {

    .ny-contact-text { font-size: 18px; }
    .ny-contact-email { width: auto; }

}

@media (max-width: 576px) {

    .ny-contact-row-2 { grid-template-columns: 1fr; }
    .ny-contact-text { font-size: 16px; }
    .ny-contact-text span { padding: 0 5px; }
    .ny-contact-card { padding: 12px 14px; gap: 12px; }
    .ny-contact-icon { width: 35px; height: 35px; }
    .ny-contact-icon i { font-size: 18px; }
    .ny-contact-icon1 { width: 35px; height: 35px; }
    .ny-contact-icon1 i { font-size: 18px; }
    .ny-contact-label { font-size: 11px; width: 50px; }

}



/* =============================

   内页：案例列表（ny-case- 前缀）

   - 保持首页头尾不变

   - 与首页样式完全隔离，避免类名冲突

   - 维护说明：本页样式统一写在最底部

============================= */

.ny-case-grid { display: grid; gap: 24px; margin-bottom: 30px; }

/* 副导航（参考首页 .case-tags） */

.ny-case-tags { display: flex; align-items: center; justify-content: flex-start; padding: 24px 0 28px; }
.ny-case-tit { color: #333; font-size: 28px; font-weight: 800; letter-spacing: 1px; }
.ny-case-nav { display: flex; flex-wrap: wrap; gap: 6px 9px; justify-content: flex-start; }
/* 默认导航项样式 */
.ny-case-nav a,
.ny-case-tag {
    background: #232CC7;
    color: #fff;
    border-radius: 9999px;
    width: 150px;
    height: 51px;
    line-height: 51px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    border: none;
    outline: none;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
}

/* 鼠标悬停效果 */
.ny-case-nav a:hover,
.ny-case-tag:hover {
    background: #EBA222;
    color: #fff;
    text-decoration: none;
}

/* 当前选中（高亮）的导航项 */
.ny-case-nav a.active,
.ny-case-tag.active {
    background: #EBA222;
    color: #fff;
}

/* 点击或访问后的样式 */
.ny-case-nav a:active,
.ny-case-nav a:focus,
.ny-case-tag:active,
.ny-case-tag:focus {
    opacity: 0.9;
    text-decoration: none;
    color: #fff;
}

@media (max-width: 992px) {
  .ny-case-tags { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 0 20px; }
  .ny-case-nav { justify-content: flex-start; gap: 6px 9px; }
  .ny-case-nav a, .ny-case-tag { width: calc(31.333% - 4px); height: 42px; line-height: 42px; font-size: 14px; }
}



/* 案例列表（参考首页 .cases-grid） */

.ny-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.ny-case-title { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 12px; }

.ny-case-desc { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.5; margin: 0; }

.ny-case-card {

    position: relative;

    border-radius: 12px;

    overflow: hidden;

    background: rgba(255,255,255,0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: block;

    text-decoration: none;

    color: inherit;

}

.ny-case-card:hover { transform: translateY(-6px); box-shadow: 0 10px 20px rgba(0,0,0,0.45); text-decoration: none; color: inherit; }

.ny-case-card img { width: 100%; height: 320px; display: block; object-fit: cover; transition: transform 0.3s ease; }

.ny-case-overlay {

    position: absolute; inset: 0; background: rgba(35, 44, 199, 0.85);

    display: flex; flex-direction: column; justify-content: center; align-items: center;

    opacity: 0; transition: opacity 0.3s ease; padding: 20px; text-align: center;

}

.ny-case-card:hover .ny-case-overlay { opacity: 1; }

.ny-case-card:hover img { transform: scale(1.05); }

.ny-case-card .case-sep {
    height: 2px;
    width: 60%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    margin: 8px 0 12px;
    display: none;
}

/* 分页 */

.ny-pagination { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 24px; }

/* 新闻案例列表（news- 前缀） */

.news-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

@media (max-width: 992px) {
    .news-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* 悬浮按钮样式 */
.swiper-more-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-size: 0; /* 默认隐藏文字 */
}

.swiper-more-btn i {
    font-size: 20px;
}

.swiper-more-btn:hover {
    background: #ffd700;
    color: #000;
    border-color: #ffd700;
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
    font-size: 14px; /* hover 时显示文字 */
}

.swiper-more-btn:hover i {
    margin-left: 5px;
}

.news-case-title { color: #ffd700; font-size: 24px; font-weight: 700; margin-bottom: 12px; }

.news-case-desc { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.5; margin: 0; }

.news-case-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-case-card:hover { transform: translateY(-6px); box-shadow: 0 10px 20px rgba(0,0,0,0.45); text-decoration: none; color: inherit; }

.news-case-card img { width: 100%; height: 320px; display: block; object-fit: cover; transition: transform 0.3s ease; }

.news-case-overlay {
    position: absolute; inset: 0; background: rgba(35, 44, 199, 0.85);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease; padding: 20px; text-align: center;
}

.news-case-card:hover .news-case-overlay { opacity: 1; }

.news-case-card:hover img { transform: scale(1.05); }

.news-case-card .news-case-sep {
    height: 2px;
    width: 60%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    margin: 8px 0 12px;
}

@media (max-width: 992px) {
    .news-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .news-case-title { font-size: 20px; margin-bottom: 10px; }
    .news-case-desc { font-size: 14px; }
}

@media (max-width: 576px) {
    .news-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .news-case-card img { height: 180px; }
}

.ny-page {

    display: inline-flex; align-items: center; justify-content: center;

    min-width: 36px; height: 36px; padding: 0 12px;

    border-radius: 9999px; background: #fff; color: #232cc7;

    border: 1px solid #e9e9e9; text-decoration: none; font-weight: 600;

    transition: all 0.2s ease;

}

.ny-page:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-2px); }

.ny-page.active { background: #ffd700; border-color: #ffd700; color: #232cc7; }

.ny-page.prev, .ny-page.next { font-weight: 700; }

.ny-page i { font-size: 16px; }



@media (max-width: 992px) {

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

    .ny-case-title { font-size: 20px; margin-bottom: 10px; }

    .ny-case-desc { font-size: 14px; }

}

@media (max-width: 576px) {

    .ny-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .ny-case-card img { height: 180px; }

    .ny-page { min-width: 32px; height: 32px; padding: 0 10px; font-size: 14px; }

}

/* =============================

   内页：服务内容（ny-services- 前缀）

   - 与首页样式完全隔离

   - 维护说明：本页样式统一写在最底部

============================= */

.ny-services-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-top: 24px;

}



.ny-service-card {

  background: #232cc7; /* 深蓝，与参考图相近 */

  color: #fff;

  border-radius: 16px;

  padding: 100px 0;

  box-shadow: 0 8px 20px rgba(20, 34, 100, 0.18);

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;

  text-align: center;

  display: flex;

  flex-direction: column;

}



.ny-service-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 14px 28px rgba(20, 34, 100, 0.26);

  background: #f2f2f2;

}



.ny-service-icon {

  width: 45px;

  height: 45px;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto;

  margin-bottom: 15px;

}



.ny-service-icon img { width: 100%; height: 100%; object-fit: contain; }

.ny-service-icon .icon-hover { display: none; }

.ny-service-card:hover .ny-service-icon .icon-default { display: none; }

.ny-service-card:hover .ny-service-icon .icon-hover { display: block; }



.ny-service-title {

  font-size: 28px;

  font-weight: 700;

  line-height: 1.3;

  margin: 6px 0 10px;

  color: #fff;
  letter-spacing: 4px;

}



/* 独立分隔线元素，替代 ::after */

.ny-service-sep { height: 5px; width: 90%; background: rgba(255, 255, 255, 1); border-radius: 0 5px 5px 0; margin: 20px 0;}

/* 服务项目：第二行分隔线靠右显示（第5-8项） */
.ny-services-grid .ny-service-card:nth-child(n+5) .ny-service-sep {
  margin-left: auto;
  margin-right: 0; border-radius: 5px 0 0 5px;
}

.ny-service-desc { font-size: 12px; line-height: 1.7; color: rgba(255, 255, 255, 0.95); padding: 0 20px; text-align:left}



/* 悬停时文字与分隔线变蓝 */

.ny-service-card:hover .ny-service-title,

.ny-service-card:hover .ny-service-desc { color: #232cc7; }

.ny-service-card:hover .ny-service-sep { background: #232cc7; }



/* 响应式 */

@media (max-width: 1200px) {

  .ny-services-grid { grid-template-columns: repeat(3, 1fr); }

}



@media (max-width: 992px) {

  .ny-services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  
  .ny-service-title { font-size: 22px; }
  
  .services-section { padding: 50px 0; }

}



@media (max-width: 768px) {
  .ny-services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  
  .ny-service-card { padding: 20px 10px; }
  
  .ny-service-title { font-size: 20px; }
  
  .ny-service-desc { font-size: 12px; padding: 0 15px; }
}

@media (max-width: 600px) {

  .ny-services-grid {

    grid-template-columns: 1fr;

    gap: 16px;

  }

  .ny-service-card { padding: 20px; }

  .ny-service-title { font-size: 18px; }

  .ny-service-desc { font-size: 13px; }

}

/* =============================

   内页：声光电展示（ny-showcase- 前缀）

   - 与首页样式隔离

   - 布局：左文右图 + 下方四图

============================= */

.ny-showcase-section { background: #f2f2f2; padding: 60px 0; }

.ny-showcase-section1 { background: #fff; padding: 60px 0; }

.ny-showcase-grid {

  display: grid;

  grid-template-columns: 1fr 3fr; /* 左窄右宽 */

  grid-template-rows: auto auto; /* 上：文+大图，下：四小图 */

  gap: 24px 32px;

  align-items: stretch; /* 让左侧容器填满行高，便于内部底部对齐 */

  position: relative; /* 允许左侧文字绝对定位到容器右下角 */

}



.ny-showcase-grid1 {

  display: grid;

  grid-template-columns: 3fr 1fr; /* 左窄右宽 */

  grid-template-rows: auto auto; /* 上：文+大图，下：四小图 */

  gap: 24px 32px;

  align-items: stretch; /* 让左侧容器填满行高，便于内部底部对齐 */

  position: relative; /* 允许左侧文字绝对定位到容器右下角 */

}

.ny-showcase-left { display: flex; flex-direction: column; gap: 12px; justify-content: flex-end; align-items: flex-end; text-align: right; max-width: 420px; padding: 1px; position: relative; }

.ny-showcase-right { display: flex; flex-direction: column; gap: 12px; justify-content: flex-end; align-items: flex-start; text-align: left; max-width: 420px; padding: 1px; position: relative; grid-column: 2 / 3; grid-row: 1 / 2; }

.ny-showcase-right .ny-showcase-sep { margin: 12px 0 8px 0; }

.ny-showcase-title {

  color: #232cc7;

  font-size: 102px;

  font-weight: 800;

  line-height: 1.2;

  margin: 0;
letter-spacing: 2px;
}

/* 标题下方黄色分隔线 */

.ny-showcase-sep { height: 3px; width: 60%; background: #EBA222;  }

.ny-showcase-subtitle {

  color: #666666;

  font-size: 32px;

  margin: 0;

}

.ny-showcase-hero { grid-column: 2 / 3; grid-row: 1 / 2; }

.ny-showcase-hero { grid-column: 2 / 3; grid-row: 1 / 2; overflow: hidden; position: relative; }

.ny-showcase-hero-left { grid-column: 1 / 2; grid-row: 1 / 2; overflow: hidden; position: relative; }

.ny-showcase-hero img { width: 100%; height: auto; display: block; border-radius: 8px; transition: transform 0.35s ease; }

.ny-showcase-hero-left  img { width: 100%; height: auto; display: block; border-radius: 8px; transition: transform 0.35s ease; }



/* 下方四张小图（占据整行） */

.ny-showcase-thumbs { grid-column: 1 / 3; grid-row: 2 / 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.ny-showcase-thumb { overflow: hidden; border-radius: 8px; position: relative; }

.ny-showcase-thumb img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; display: block; transition: transform 0.35s ease; }



/* 图片下方黑色透明标题条 */

.ny-showcase-caption {

  position: absolute;

  left: 0; right: 0; bottom: 0;

  color: #fff;

  padding: 12px;

  border-radius: 0 0 8px 8px;

  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.0) 100%);

}

.ny-showcase-caption-title { font-size: 30px; line-height: 1.4; text-align: center; }



/* 小图的标题条在小尺寸下更紧凑 */

@media (max-width: 576px) {

  .ny-showcase-caption { padding: 10px; border-radius: 0 0 6px 6px; }

  .ny-showcase-caption-title { font-size: 14px; }

}



/* 悬停放大效果 */

.ny-showcase-hero:hover img,

.ny-showcase-thumb:hover img { transform: scale(1.06); }



/* 响应式优化 */

@media (max-width: 992px) {

  .ny-showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 20px; }
  
  .ny-showcase-grid1 { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 20px; }

  .ny-showcase-hero { grid-column: 1 / -1; }

  .ny-showcase-hero-left { grid-column: 1 / -1; }

  /* 移动端让文字回归文流并左对齐 */

  .ny-showcase-left { position: relative; text-align: left; max-width: none; margin-bottom: 8px; justify-content: flex-start; align-items: flex-start; padding: 0; }

  .ny-showcase-right { position: relative; text-align: left; max-width: none; margin-bottom: 8px; justify-content: flex-start; align-items: flex-start; padding: 0; grid-column: 1 / -1; grid-row: 1 / 2; }

  .ny-showcase-sep { margin-left: 0; margin-right: 0; }

  .ny-showcase-thumbs { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }

  .ny-showcase-title { font-size: 34px; }

}

@media (max-width: 576px) {

  .ny-showcase-section { padding: 40px 0; }
  
  .ny-showcase-section1 { padding: 40px 0; }

  .ny-showcase-thumbs { grid-template-columns: 1fr 1fr; gap: 12px; }

  .ny-showcase-thumb img { height: 120px; }

  .ny-showcase-title { font-size: 28px; }

  .ny-showcase-subtitle { font-size: 16px; }

}

/* =============================

   内页：社媒覆盖（ny-coverage- 前缀）

   - 与首页样式隔离

   - 排版参考图：居中标题 + 五项指标

============================= */

.ny-coverage-section { background: #fff; padding: 60px 0; }



.ny-coverage-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; align-items: start; max-width:1000px; margin: 0 auto; text-align:center; }

.ny-cov-item { }

.ny-cov-label { font-size: 24px; font-weight: normal; color: #232cc7; line-height: 1.4; margin: 0; }

.ny-cov-number { font-size: 40px; font-weight: bold; color: #ffd700; letter-spacing: 1px; }

.ny-cov-number .unit { font-size: 0.6em; font-weight: 800; margin-left: 2px; }

.ny-cov-plus { font-size: 0.6em; font-weight: 800; vertical-align: super; margin-left: 2px; }



@media (max-width: 992px) {

  .ny-coverage-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; max-width: 100%; }

  .ny-cov-number { font-size: 36px; }
  
  .ny-cov-label { font-size: 20px; }

}

@media (max-width: 768px) {
  .ny-coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  
  .ny-cov-label { font-size: 18px; }
  
  .ny-cov-number { font-size: 34px; }
}

@media (max-width: 576px) {

  .ny-coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .ny-cov-number { font-size: 28px; }
  
  .ny-cov-label { font-size: 16px; }

}

/* =============================

   内页：媒体传播矩阵（ny-matrix- 前缀）

   - 两行：上平台图标、下媒体logo

   - 与首页样式隔离

============================= */

.ny-matrix-section { background: #f5f5f5; padding: 40px 0; }

.ny-matrix-row { background: #fff; border-radius: 8px; padding: 20px 24px; display: grid; grid-template-columns: 1fr 3fr; align-items: center; gap: 24px; margin-bottom: 18px; }

.ny-matrix-row.ny-matrix-bottom { grid-template-columns: 3fr 1fr; }

.ny-matrix-title { color: #ff9e00; font-size: 48px; font-weight: 900; line-height: 0.9; letter-spacing: 1px; margin: 0; }

.ny-matrix-phrase { display: flex; align-items: center; }

.ny-matrix-phrase1 { display: flex; align-items: center; justify-content: flex-end; }



/* 平台图标（文字占位的方块） */

.ny-matrix-brands { display: flex; gap: 28px; align-items: center; justify-content: center; flex-wrap: wrap; }

.ny-brand { width: 72px; height: 72px; border-radius: 16px; color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.08); transition: transform 0.25s ease, box-shadow 0.25s ease; }

.ny-brand:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }



/* 媒体Logo行（文字占位） */

.ny-matrix-logos { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }

.ny-matrix-logo { font-size: 20px; font-weight: 700; color: #555; white-space: nowrap; }



@media (max-width: 992px) {

  .ny-matrix-row { grid-template-columns: 1fr; gap: 16px; padding: 16px 18px; }
  
  .ny-matrix-row.ny-matrix-bottom { grid-template-columns: 1fr; }

  .ny-matrix-title { font-size: 40px; text-align: center; }
  
  .ny-matrix-phrase { justify-content: center; }
  
  .ny-matrix-section { padding: 30px 0; }

}

@media (max-width: 576px) {

  .ny-matrix-title { font-size: 34px; }

  .ny-brand { width: 64px; height: 64px; border-radius: 14px; }

  .ny-matrix-logo { font-size: 18px; }
  
  .ny-matrix-row { padding: 14px 16px; margin-bottom: 14px; }

}

/* =============================

   内页：媒体传播矩阵滚动增强（ny-matrix- 前缀）

   - 短语改为图片，左右各一张（img01/img02）

   - 品牌与媒体容器使用自定义JS横向滚动（marquee）

============================= */

.ny-matrix-title-img { display: block; max-width: 100%; height: auto; }

.ny-matrix-phrase img,

.ny-matrix-phrase1 img { height: 120px; object-fit: contain; }



.ny-matrix-brands, .ny-matrix-logos { overflow: hidden; }

.ny-matrix-marquee { width: 100%; position: relative; overflow: hidden; }

.ny-matrix-track,

.ny-matrix-track1 { display: inline-flex; align-items: center; will-change: transform; }

.ny-matrix-item { display: inline-flex; align-items: center; justify-content: center; }

.ny-matrix-marquee.brands .ny-matrix-item { margin-right: 74px; }

.ny-matrix-marquee.logos .ny-matrix-item { margin-right: 28px; }



/* 品牌图标尺寸（上行） */

.ny-matrix-marquee.brands .ny-matrix-item img { height: 120px; width: auto; display: block; border-radius: 12px; }



/* 媒体Logo尺寸（下行） */

.ny-matrix-marquee.logos .ny-matrix-item img { height: 72px; width: auto; display: block; border-radius: 12px;  }



@media (max-width: 992px) {

  .ny-matrix-phrase img,

  .ny-matrix-phrase1 img { height: 100px; }

  .ny-matrix-marquee.brands .ny-matrix-item img { height: 64px; }

  .ny-matrix-marquee.logos .ny-matrix-item img { height: 64px; }

}

@media (max-width: 576px) {

  .ny-matrix-phrase img,

  .ny-matrix-phrase1 img { height: 84px; }

  .ny-matrix-marquee.brands .ny-matrix-item img { height: 56px; }

  .ny-matrix-marquee.logos .ny-matrix-item img { height: 56px; }

}

/* =============================

   内页：第五板块（ny-bar-section）

   - 白色背景 + 单图 bar01.png

============================= */

.ny-bar-section { background: #fff; padding: 60px 0; }

@media (max-width: 992px) {
  .ny-bar-section { padding: 40px 0; }
}

@media (max-width: 576px) {
  .ny-bar-section { padding: 30px 0; }
}



/* =============================

   内页：关于我们统计（ny-about-stats- 前缀）

   - 复用首页 about-stats 排版，颜色按参考图

============================= */

.ny-about-stats-section { background: #fff; padding: 60px 0; }

.ny-about-stats {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 60px 80px;

    margin-top: 20px;

}

.ny-stat-item { text-align: center; position: relative; overflow: hidden; }

.ny-stat-number { font-size: 114px; font-weight: 900; color: #232cc7; line-height: 1; margin-bottom: 15px;font-family: "OPPOSans H", "Microsoft YaHei", Arial, sans-serif;font-family: "OPPOSans R", "Microsoft YaHei", Arial, sans-serif; }

.ny-stat-label { font-size: 42px; font-weight: normal; color: #232cc7; margin-bottom: 20px; }

.ny-stat-desc { font-size: 24px; line-height: 1.6; color: #666; text-align: left; }



@media (max-width: 992px) {

  .ny-about-stats-section { padding: 50px 0; }

  .ny-about-stats { gap: 40px; }

  .ny-stat-number { font-size: 56px; }

  .ny-stat-label { font-size: 18px; }

  .ny-stat-desc { font-size: 13px; }

}

@media (max-width: 768px) {

  .ny-about-stats { grid-template-columns: 1fr; gap: 30px; }

  .ny-stat-number { font-size: 48px; }

  .ny-stat-label { font-size: 16px; margin-bottom: 15px; }

  .ny-stat-desc { font-size: 12px; }

}



/* =============================

   内页：服务优势（ny-adv- 前缀）

   - 顶部标题用通用 idx-tit

   - 三条白底卡片，左蓝徽标右文案

============================= */

.ny-adv-section { background: #f5f5f5; padding: 60px 0; }

.ny-adv-list { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 20px; }

.ny-adv-item { display: grid; grid-template-columns: 160px 1fr; align-items: center; gap: 24px; background: #fff; border-radius: 12px; padding: 24px; }

.ny-adv-badge { color: #232cc7; display: flex; align-items: center; justify-content: center; height: 100%; min-height: 96px; border-right: #eee 5px solid; }

.ny-adv-badge-cn { font-size: 50px; font-weight: 800; line-height: 1.2; text-align: center; letter-spacing: 1px; }

.ny-adv-content { display: grid; gap: 8px; }

.ny-adv-en { color: #eba222; font-size: 30px; font-weight: bold; letter-spacing: 1px; }

.ny-adv-desc { color: #232cc7; font-size: 24px; line-height: 1.9; margin: 0;font-family: "OPPOSans", "Microsoft YaHei", Arial, sans-serif;}



@media (max-width: 992px) {

  .ny-adv-item { grid-template-columns: 180px 1fr; padding: 20px; }

  .ny-adv-badge-cn { font-size: 24px; }

  .ny-adv-en { font-size: 18px; }

  .ny-adv-desc { font-size: 14px; }

}

@media (max-width: 576px) {

  .ny-adv-item { grid-template-columns: 1fr; }

  .ny-adv-badge { min-height: 80px; }

  .ny-adv-badge-cn { font-size: 22px; }

}



/* =============================

   内页：服务优势图片（ny-advbar- 前缀）

   - 顶部标题采用通用 idx-tit

   - 下方整图展示

============================= */

.ny-advbar-section { padding: 60px 0; }

.ny-advbar-img { display: block; width: 100%; height: auto; max-width: 100%; margin: 20px auto 0; border-radius: 8px; }

@media (max-width: 576px) {

  .ny-advbar-section { padding: 40px 0; }

}

/* =============================

   内页：关于我们（ny-about- 前缀）

   - 左图右文，参考图圆角造型

============================= */

.ny-about-section { background: #f5f5f5; padding: 50px 0; }

.ny-about-grid { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 32px; align-items: center; }

.ny-about-photo { overflow: hidden; border-top-right-radius: 120px; border-bottom-left-radius: 120px; }

.ny-about-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ny-about-text p { font-size: 16px; color: #666; line-height: 2; margin: 0 0 12px; }



@media (max-width: 992px) {

  .ny-about-section { padding: 40px 0; }

  .ny-about-grid { grid-template-columns: 1fr; gap: 20px; }

  .ny-about-img { max-height: 220px; }

  .ny-about-text p { font-size: 15px; }

}



@media (max-width: 576px) {

  .ny-about-section { padding: 32px 0; }

  .ny-about-img { max-height: 200px; }

  .ny-about-text p { font-size: 14px; }

}


/* 首页服务项目：悬停时卡片背景变蓝 */
.services-grid .service-item:hover {
  background: #fff;
}

/* =============================
   内页：上一条/下一条导航（news-xq- 前缀）
   - 重命名为news-前缀，与首页样式隔离
   - 左右布局，带图标，响应式设计
============================= */
.news-xq-prevnext {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    background: #f8f9fa;
}

/* =============================
   内页：联系板块两列布局（ny-contact-2col）
   - 左侧：公司地址（上：icon+公司地址；下：详细地址）
   - 右侧：上电话、下邮箱（垂直堆叠）
   - 保持原ny-前缀，避免影响其他页面
============================= */
.ny-contact-2col {
  display: grid;
  grid-template-columns: 0.8fr 2.5fr;
  gap: 24px;
  margin-top: 24px;
}

.ny-contact-col-left,
.ny-contact-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ny-contact-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.ny-contact-header .ny-contact-icon i {
  color: #fff;
  font-size: 26px;
}

.ny-contact-header .ny-contact-label {
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  width: 60px; /* 固定宽度确保文字对齐统一 */
  text-align: center; /* 文字居中 */
}

.ny-contact-text {
  color: #fff;
  line-height: 1.8;
}

/* 响应式 */
@media (max-width: 992px) {
  .ny-contact-2col {
    grid-template-columns: 1fr;
  }
  .ny-contact-text { font-size: 16px; }
}

@media (max-width: 576px) {
  .ny-contact-2col {
    gap: 16px;
  }
  .ny-contact-2col .ny-contact-card {
    padding: 14px 16px;
  }
  .ny-contact-header .ny-contact-icon i {
    font-size: 18px;
  }
  .ny-contact-text { font-size: 15px; line-height: 1.6; }
  .ny-contact-header .ny-contact-label { font-size: 14px; width: 60px; }
}

.news-xq-prev,
.news-xq-next {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.news-xq-prev {
    justify-content: flex-start;
    text-align: left;
}

.news-xq-next {
    justify-content: flex-end;
    flex-direction: row;
}

.news-xq-prev i,
.news-xq-next i {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.news-xq-prev a,
.news-xq-next a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.news-xq-prev a:hover,
.news-xq-next a:hover {
    color: #232cc7;
}

/* 文本标签样式 */
.news-xq-prev::before,
.news-xq-next::before {
    content: none;
}

.news-xq-prev span,
.news-xq-next span {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-xq-prevnext {
        flex-direction: column;
        gap: 12px;
    }
    
    .news-xq-prev,
    .news-xq-next {
        width: 100%;
        justify-content: space-between;
    }
    
    .news-xq-next {
        flex-direction: row;
    }
}

@media (max-width: 576px) {
    .news-xq-prev,
    .news-xq-next {
        padding: 12px 16px;
    }
    
    .news-xq-prev i,
    .news-xq-next i {
        font-size: 16px;
    }
    
    .news-xq-prev span,
    .news-xq-next span {
        font-size: 13px;
    }
    
    .news-xq-prev a,
    .news-xq-next a {
        font-size: 14px;
    }
}



/* Choose section: hover swap between youshi1.png and youshi2.png */
.choose-section .choose-image-swap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.choose-section .choose-image-swap img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.25s ease;
margin: 0 auto;
}

.choose-section .choose-image-swap .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.choose-section .choose-image-swap:hover .img-hover {
  opacity: 1;
}

.choose-section .choose-image-swap:hover .img-default {
  opacity: 0;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .choose-section .choose-image-swap img {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .choose-section .choose-image-swap {
    position: relative;
    display: inline-block;
    max-width: 100%;
}
}

