/* 栅格布局系统 - 12栅格 */

.grid-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.grid-col-1 { flex: 0 0 8.333%; max-width: 8.333%; padding: 0 15px; }
.grid-col-2 { flex: 0 0 16.666%; max-width: 16.666%; padding: 0 15px; }
.grid-col-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
.grid-col-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.grid-col-5 { flex: 0 0 41.666%; max-width: 41.666%; padding: 0 15px; }
.grid-col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.grid-col-7 { flex: 0 0 58.333%; max-width: 58.333%; padding: 0 15px; }
.grid-col-8 { flex: 0 0 66.666%; max-width: 66.666%; padding: 0 15px; }
.grid-col-9 { flex: 0 0 75%; max-width: 75%; padding: 0 15px; }
.grid-col-10 { flex: 0 0 83.333%; max-width: 83.333%; padding: 0 15px; }
.grid-col-11 { flex: 0 0 91.666%; max-width: 91.666%; padding: 0 15px; }
.grid-col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }

/* 页面标题区 */
.page-header {
    background: url('../image/img_lmstq.png') center/cover no-repeat;
    color: var(--dark-gray);
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin-top: 70px;
    position: relative;
}

.page-header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* 内容卡片 */
.content-card {
    /* background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.content-card h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--forest-green);
    padding-bottom: var(--spacing-xs);
}

.content-card h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.content-card h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.content-card p {
    line-height: 1.8;
    color: #666;
    margin-bottom: var(--spacing-sm);
}

.content-card ul,
.content-card ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.content-card li {
    margin-bottom: var(--spacing-xs);
    color: #666;
}

/* 关于我们页面特定样式 */
.company-intro {
    padding: var(--spacing-xl) 0;
    background: #F5F9FF;
}

.intro-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.intro-title-group {
    margin-bottom: var(--spacing-md);
}

.intro-title-en {
    font-size: 72px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.intro-title-cn {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0;
}

.intro-image {
    width: 100%;
    height: 480px;
    background: url(../image/润泓科技大厦.png) center / cover no-repeat;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.image-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.company-culture {
    margin-top: var(--spacing-md);
}

.culture-title {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.culture-year {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.year-number {
    font-size: 80px;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: 1;
}

.year-text {
    font-size: 24px;
    color: var(--dark-gray);
    font-weight: 500;
}

.culture-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.culture-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
    position: relative;
}

.culture-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.culture-label {
    font-weight: bold;
    color: var(--dark-gray);
    min-width: 100px;
    flex-shrink: 0;
}

.culture-content {
    color: #666;
    line-height: 1.6;
    flex: 1;
}

.intro-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding-left: var(--spacing-lg);
}

.intro-key-phrases {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.key-phrase {
    font-size: 32px;
    font-weight: bold;
    color: #66666600;
    line-height: 1.2;
}

.intro-content {
    margin-bottom: var(--spacing-lg);
}

.company-name {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: var(--spacing-md);
}

.our-advantages {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid #eee;
}

.advantages-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.advantages-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: var(--spacing-md);
}

.advantages-icons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    flex: 1;
    min-width: 100px;
}

.advantage-icon {
    font-size: 48px;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--spacing-xs);
}

.advantage-item:hover .advantage-icon {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.advantage-label {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 500;
}

.core-strength {
    padding: var(--spacing-xl) 0;
    background: url(../image/gywm_img_hxsl.png) center / cover no-repeat;
}

.patent-showcase {
    position: relative;
    /* padding: var(--spacing-lg) 0; */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
}

.strength-section {
    margin-bottom: var(--spacing-lg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.team-item {
    text-align: center;
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.team-item h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.team-item p {
    font-size: 14px;
    color: #666;
}

/* 技术专利使用和首页核心实力一样的样式 */
.patent-showcase .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.patent-showcase .stat-card {
    text-align: center;
    transition: all 0.3s ease;
}

.patent-showcase .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.patent-showcase .stat-number {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, rgb(104, 187, 250), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.patent-showcase .stat-label {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 500;
}

.patent-stats {
    display: flex;
    justify-content: space-around;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--forest-green));
    border-radius: 8px;
    color: var(--white);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
}

.stat-desc {
    font-size: 16px;
    opacity: 0.9;
}

/* 软件著作权轮播 */
.patent-carousel-section {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.patent-carousel-section h4 {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.patent-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.patent-carousel {
    width: 100%;
    overflow: hidden;
}

.patent-carousel-track {
    display: flex;
    gap: var(--spacing-md);
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.patent-carousel-item {
    flex: 0 0 calc(25% - var(--spacing-md) * 3 / 4);
    min-width: 0;
    display: flex;
    align-items: stretch;
    height: 400px;
}

/* 无限滚动动画 - 滚动到第一组图片结束位置 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 鼠标悬停时暂停动画 */
.patent-carousel-wrapper:hover .patent-carousel-track {
    animation-play-state: paused;
}

@media (max-width: 1024px) {
    .patent-carousel-item {
        flex: 0 0 calc(33.333% - var(--spacing-md) * 2 / 3);
        height: 350px;
    }
}

@media (max-width: 768px) {
    .patent-carousel-item {
        flex: 0 0 calc(50% - var(--spacing-md) / 2);
        height: 300px;
    }
}

.patent-carousel-item img {
    width: 100%;
    height: 100%;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    object-fit: contain;
    /* background: var(--white); */
    padding: var(--spacing-sm);
}

.patent-carousel-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


.patent-list {
    margin-top: var(--spacing-md);
}

.patent-list h4 {
    margin-bottom: var(--spacing-sm);
}

.patent-list ul {
    list-style: none;
    margin-left: 0;
}

.patent-list li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid #eee;
}

.patent-list li:last-child {
    border-bottom: none;
}

.qualification-list,
.award-list {
    list-style: none;
    margin-left: 0;
}

.qualification-list li,
.award-list li {
    padding: var(--spacing-sm) 0;
    font-size: 16px;
    color: #666;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.certificate-item {
    aspect-ratio: 4/3;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    border-color: var(--forest-green);
    background: #f0f8f5;
}

.cert-placeholder {
    color: #999;
    font-size: 14px;
    text-align: center;
}

/* 核心业务页面特定样式 */
.business-section {
    padding: 60px 0 0 0;
}

/* 第一产业特殊布局 */
.primary-industry-section {
    background: var(--white);
}

.primary-industry-wrapper {
    display: flex;
    /* gap: var(--spacing-xl); */
    align-items: flex-start;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 左侧导航菜单 */
.primary-industry-nav {
    flex-shrink: 0;
    width: 200px;
    align-items: center;
}

.industry-nav-menu {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    background: var(--white);
    border-radius: 8px;
}

.industry-nav-item {
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--dark-gray);
    text-decoration: none;
    /* border-radius: 6px; */
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
}

.industry-nav-item:hover {
    background: rgba(26, 126, 226, 0.1);
    color: var(--primary-blue);
}

.industry-nav-item.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.industry-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;

    border-radius: 0 4px 4px 0;
}

/* 右侧内容区域 */
.primary-industry-content {
    flex: 1;
    position: relative;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.industry-content-panel {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.industry-content-panel.active {
    display: block;
}

.industry-content-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.industry-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.industry-detail-btn {
    position: absolute;
    left: 60px;
    bottom: 60px;
    padding: 12px 32px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    z-index: 10;
}

.industry-detail-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.industry-detail-btn:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 126, 226, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header .section-title {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.business-detail-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--forest-green);
}

.business-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.business-icon-large {
    font-size: 64px;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.business-detail-card h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.business-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.content-item {
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: 8px;
}

.content-item h4 {
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
}

/* 第一产业卡片布局样式 */
.primary-industry-cards {
    display: grid;
    grid-template-columns: 1fr;
    /* gap: var(--spacing-lg); */
}

/* 每个卡片都占整行 */
.primary-industry-card {
    grid-column: span 1;
}

.primary-industry-card {
    display: flex;
    align-items: stretch;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
    min-height: 400px;
    flex-direction: row; /* 默认左图右文 */
    gap: 16px; /* 图片与文字横向间隔 */
}

/* 反向布局：左文右图 */
.primary-industry-card.card-reverse {
    flex-direction: row-reverse;
}

.primary-industry-card:hover {
    transform: none;
    box-shadow: none;
}

.primary-card-image {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.primary-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    
}

.bcontainer{
    width: 960px;
    margin: 0 auto;
}

.Plant{
    background-image: url('../image/img_lmszjc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Bqsmanage{
    background-image: url('../image/img_bqs.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Trade{
    background-image: url('../image/img_ncjyzx.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Proce{
    background-image: url('../image/img_bcjg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.supChain{
    background-image: url('../image/img_gyl.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.FSCtrace{
    background-image: url('../image/img_FSCtrace.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.woodData{
    background-image: url('../image/img_woodata.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.primary-card-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.primary-card-desc {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.primary-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.primary-card-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.feature-icon {
    /* padding: 4px; */
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.feature-icon img{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.feature-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.feature-content strong {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 2px;
    padding-right: 10px;
}

.feature-content span {
    font-size: 13px;
    color: var(--light-gray);
    line-height: 1.5;
}

.primary-card-btn {
    display: inline-block;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
    cursor: pointer;
    text-decoration: none;
}

.primary-card-btn img {
    height: 40px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.primary-card-btn:hover {
    transform: translateY(-2px);
}

.primary-card-btn:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .primary-industry-card {
        flex-direction: column !important;
    }

    .primary-industry-card.card-reverse {
        flex-direction: column !important;
    }

    .primary-card-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .primary-industry-cards {
        gap: var(--spacing-md);
    }

    .primary-industry-card {
        min-height: auto;
        flex-direction: column !important;
    }

    .primary-industry-card.card-reverse {
        flex-direction: column !important;
    }

    .primary-card-image {
        min-height: 200px;
    }

    .primary-card-content {
        padding: var(--spacing-md);
    }

    .primary-card-content h3 {
        font-size: 20px;
    }

    .primary-card-desc {
        font-size: 13px;
    }

    .feature-content strong {
        font-size: 15px;
    }

    .feature-content span {
        font-size: 12px;
    }

    .primary-card-btn img {
        height: 36px;
    }
}

/* 解决方案页面样式 */
.solutions-section {
    padding: var(--spacing-xl) 0;
    background: #f8f9fa;
}

.solution-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.solution-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.solution-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid #eee;
}

.solution-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-sm);
}

.solution-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.solution-subtitle {
    font-size: 18px;
    color: #666;
}

.solution-content h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
    border-left: 4px solid var(--forest-green);
    padding-left: var(--spacing-sm);
}

.solution-feature {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: #f8f9fa;
    border-radius: 8px;
}

.solution-feature h4 {
    color: var(--forest-green);
    margin-bottom: var(--spacing-xs);
}

.solution-feature p {
    color: #666;
    line-height: 1.6;
}

.solution-cta {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid #eee;
}

/* 成功案例页面样式 */
.cases-section {
    padding: var(--spacing-xl) 0;
    background: #f8f9fa;
}

.case-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.case-image {
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.case-placeholder {
    font-size: 80px;
    opacity: 0.3;
}

.case-content {
    padding: var(--spacing-md);
}

.case-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--forest-green);
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
}

.case-content h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.case-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: #999;
    font-size: 14px;
}

.case-content h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.case-results {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--forest-green));
    border-radius: 8px;
    color: var(--white);
}

.result-item {
    flex: 1;
    text-align: center;
}

.result-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
}

.result-label {
    font-size: 14px;
    opacity: 0.9;
}

/* 新闻动态页面样式 */
.news-filter {
    padding: var(--spacing-md) 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.filter-left {
    display: flex;
    gap: var(--spacing-sm);
}

.filter-select {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: var(--white);
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.news-search {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
}

.news-search input {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 200px;
}

.news-search input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-btn {
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.search-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.search-btn:hover {
    color: var(--primary-blue);
}

.refresh-btn {
    width: 40px;
    height: 40px;
    background: #333;
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: #555;
}

.news-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.news-list {
    margin-bottom: var(--spacing-lg);
}

.news-item {
    display: flex;
    gap: var(--spacing-md);
    background: var(--white);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #f8f9fa;
}

/* 日期块 */
.news-date-block {
    flex-shrink: 0;
    width: 140px; /* 固定宽度，避免百分比带来的收缩差异 */
    background: #d4d4d4;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    border-radius: 4px;
    text-align: center;
}

.news-date-block-first {
    background: var(--primary-blue);
}

.date-day {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.date-month {
    font-size: 14px;
    opacity: 0.9;
}

/* 新闻内容区域 */
.news-content-wrapper {
    flex: 1;
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.news-main-content {
    flex: 1;
    
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--primary-blue);
}

.news-meta-info {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 14px;
    color: #999;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-views svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.news-share svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.news-share:hover {
    color: var(--primary-blue);
}

.news-excerpt {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 0;
    box-sizing: border-box;
}

.news-thumbnail {
    flex: 0 0 240px;          /* 固定宽度，不参与收缩 */
    height: 160px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-placeholder {
    font-size: 32px;
    opacity: 0.3;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.page-btn {
    padding: 8px 20px;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    color: var(--white);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: #666;
}

/* 联系我们页面样式 */
.page-title-en {
    font-size: 120px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.page-title-cn {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: var(--spacing-sm) 0 0 0;
}

.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.contact-content-wrapper {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* 左侧：联系信息（深蓝色背景） */
.contact-info-box {
    flex: 1;
    background: #1a3a5c;
    padding: var(--spacing-xl);
    color: var(--white);
}

.contact-info-box .footer-logo {
    margin-bottom: var(--spacing-lg);
}

.contact-info-box .footer-logo img {
    height: 50px;
    width: auto;
    /* filter: brightness(0) invert(1); */
}

.fotlogo {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}

/* 右侧：在线留言表单 */
.contact-form-box {
    flex: 1;
    background: var(--white);
    padding: var(--spacing-xl);
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--primary-blue);
    display: inline-block;
}

.contact-form {
    margin-top: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 验证码组 */
.verification-group {
    margin-bottom: var(--spacing-lg);
}

.captcha-wrapper {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.captcha-input {
    flex: 1;
    max-width: 150px;
}

.captcha-image {
    width: 100px;
    height: 40px;
    background: #4CAF50;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
    transform: rotate(-5deg);
}

.btn-sys {
    padding: 12px 40px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 114px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit {
    padding: 12px 40px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
}

.btn-submit:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 126, 226, 0.3);
}

/* 地图区域 */
.map-section {
    padding: var(--spacing-xl) 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: var(--spacing-xs);
}

.map-placeholder small {
    font-size: 14px;
}

.qr-codes {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.qr-item {
    text-align: center;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
    color: #999;
    font-size: 12px;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: var(--spacing-lg);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    right: var(--spacing-md);
    top: var(--spacing-md);
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-blue);
}

.modal-content h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

/* 新闻详情页样式 */
.breadcrumb-section {
    padding: var(--spacing-md) 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.breadcrumb .separator {
    color: #999;
    margin: 0 var(--spacing-xs);
}

.breadcrumb .current {
    color: var(--dark-gray);
}

.news-detail-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.news-detail {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #eee;
}

.news-detail-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.news-category-tag {
    padding: 4px 12px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.news-date {
    color: #666;
}

.news-detail-meta .news-views,
.news-detail-meta .news-share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-detail-meta .news-views svg,
.news-detail-meta .news-share-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.news-share-btn {
    cursor: pointer;
    transition: color 0.3s ease;
}

.news-share-btn:hover {
    color: var(--primary-blue);
}

.news-detail-image {
    width: 100%;
    margin-bottom: var(--spacing-lg);
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: var(--spacing-xl);
}

/* .news-detail-content p {
    margin-bottom: var(--spacing-md);
} */

.news-detail-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--primary-blue);
}

.news-detail-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.news-detail-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.news-detail-content strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.news-share-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: var(--spacing-xl);
}

.share-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.share-btn {
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: #f0f7ff;
}

.share-wechat:hover {
    border-color: #07c160;
    color: #07c160;
    background: #f0f9f5;
}

.share-weibo:hover {
    border-color: #e6162d;
    color: #e6162d;
    background: #fff0f2;
}

/* 相关新闻 */
.related-news {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid #eee;
}

.related-news-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block;
}

.related-news-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.related-news-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-news-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.related-news-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.related-news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-news-content {
    flex: 1;
}

.related-news-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.related-news-content h3 a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-news-content h3 a:hover {
    color: var(--primary-blue);
}

.related-news-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 12px;
    color: #999;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .grid-col-1,
    .grid-col-2,
    .grid-col-3,
    .grid-col-4,
    .grid-col-5,
    .grid-col-6,
    .grid-col-7,
    .grid-col-8,
    .grid-col-9,
    .grid-col-10,
    .grid-col-11,
    .grid-col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .content-card h2 {
        font-size: 24px;
    }

    .content-card h3 {
        font-size: 20px;
    }

    .patent-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .business-content-grid {
        grid-template-columns: 1fr;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-left {
        flex-direction: column;
        width: 100%;
    }

    .filter-select {
        width: 100%;
    }

    .news-search {
        width: 100%;
    }

    .news-search input {
        flex: 1;
    }

    .refresh-btn {
        width: 100%;
    }

    .news-item {
        flex-direction: column;
    }

    .news-date-block {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }

    .date-day {
        font-size: 24px;
    }

    .news-content-wrapper {
        flex-direction: column;
    }

    .news-thumbnail {
        width: 100%;
        height: 200px;
    }

    .primary-industry-wrapper {
        flex-direction: column;
    }

    .primary-industry-nav {
        width: 100%;
    }

    .industry-nav-menu {
        flex-direction: row;
        overflow-x: auto;
    }

    .industry-nav-item {
        white-space: nowrap;
    }

    .industry-content-image {
        min-height: 300px;
    }

    .industry-detail-btn {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }

    .case-results {
        flex-direction: column;
    }

    .info-item {
        flex-direction: column;
    }

    .qr-codes {
        flex-direction: column;
        align-items: center;
    }

    .page-title-en {
        font-size: 60px;
    }

    .page-title-cn {
        font-size: 28px;
    }

    .contact-content-wrapper {
        flex-direction: column;
    }

    .contact-info-box {
        padding: var(--spacing-lg);
    }

    .contact-form-box {
        padding: var(--spacing-lg);
    }

    .captcha-wrapper {
        flex-wrap: wrap;
    }

    .btn-submit {
        width: 100%;
        float: none;
    }

    .map-container {
        height: 300px;
    }

    .intro-title-en {
        font-size: 48px;
    }

    .intro-title-cn {
        font-size: 28px;
    }

    .intro-image {
        height: 250px;
    }

    .year-number {
        font-size: 60px;
    }

    .year-text {
        font-size: 20px;
    }

    .intro-right {
        padding-left: 0;
        margin-top: var(--spacing-lg);
    }

    .key-phrase {
        font-size: 24px;
    }

    .company-name {
        font-size: 28px;
    }

    .advantages-icons {
        gap: var(--spacing-md);
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .news-detail-title {
        font-size: 24px;
    }

    .news-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .news-detail-content h2 {
        font-size: 20px;
    }

    .news-share-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .share-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .share-btn {
        flex: 1;
        min-width: 80px;
    }

    .related-news-item {
        flex-direction: column;
    }

    .related-news-thumbnail {
        width: 100%;
        height: 150px;
    }
}

/* ========== 项目详情页样式 ========== */
.project-detail-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: #f3f8ff;
    min-height: 100vh;
}

/* 顶部横幅图片区域 */
.project-detail-hero {
    width: 100%;
    margin: 0 auto;
    padding: 32px 0;
    background: #f3f8ff;
    position: relative;
    overflow: hidden;
}

.project-detail-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

/* 内容容器 */
.project-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: var(--spacing-xl) var(--spacing-sm); */
}

.project-detail-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* 介绍段落 */
.project-detail-content > p:first-of-type {
    font-size: 18px;
    line-height: 2;
    color: #555;
    /* margin-bottom: var(--spacing-xl); */
    text-align: justify;
}

/* 标题样式 */
.project-detail-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 60px 0 40px 0;
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--primary-blue);
    position: relative;
}

.project-detail-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
}

/* 列表样式 */
.project-detail-content ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.project-detail-content ul li {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
    position: relative;
    line-height: 1.8;
    color: #555;
}

.project-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.project-detail-content ul li strong {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 17px;
    display: inline;
}

/* 应用场景表格 */
.project-scenario-table-wrapper {
    margin: var(--spacing-lg) 0;
    overflow-x: auto;
}

.project-scenario-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.project-scenario-table thead {
    background: var(--primary-blue);
    color: var(--white);
}

.project-scenario-table th {
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.project-scenario-table th:last-child {
    border-right: none;
}

.project-scenario-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.project-scenario-table tbody tr:hover {
    background-color: #f8f9ff;
}

.project-scenario-table tbody tr:last-child {
    border-bottom: none;
}

.project-scenario-table td {
    padding: var(--spacing-md);
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    vertical-align: top;
}

.project-scenario-table td:first-child {
    font-weight: 600;
    color: var(--dark-gray);
    width: 20%;
}

.project-scenario-table td:nth-child(2) {
    width: 35%;
}

.project-scenario-table td:last-child {
    width: 45%;
    color: var(--primary-blue);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .project-detail-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .project-detail-content {
        font-size: 15px;
    }

    .project-detail-content > p:first-of-type {
        font-size: 16px;
        line-height: 1.8;
    }

    .project-detail-content h2 {
        font-size: 22px;
        margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
    }

    .project-detail-content ul li {
        padding-left: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }

    .project-scenario-table {
        font-size: 14px;
    }

    .project-scenario-table th,
    .project-scenario-table td {
        padding: var(--spacing-sm);
        font-size: 13px;
    }

    .project-scenario-table td:first-child,
    .project-scenario-table td:nth-child(2),
    .project-scenario-table td:last-child {
        width: auto;
        display: block;
        width: 100%;
    }

    .project-scenario-table thead {
        display: none;
    }

    .project-scenario-table tbody tr {
        display: block;
        margin-bottom: var(--spacing-md);
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: var(--spacing-sm);
    }

    .project-scenario-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .project-scenario-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--dark-gray);
        display: block;
        margin-bottom: 4px;
    }
}
