/* 核心业务页面样式 */

.core-business-page {
    padding: 0 0 40px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* 轮播图样式 - 横屏全屏显示 */
.carousel-section {
    margin-bottom: 40px;
    margin-top: 70px;
    background: transparent;
    color: white;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.carousel-container {
    width: 100%;
    margin: 0;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
    width: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.carousel-slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(30, 136, 229, 0.9));
    position: relative;
    overflow: hidden;
}


.carousel-slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(30, 136, 229, 0.9));
}

.slide-content {
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
    animation: slideInUp 0.8s ease-out;
    margin: 0 auto;
}

/* 合规伙伴内容样式 */
.compliance-partner-content {
    text-align: left;
    padding: 60px 80px;
    position: relative;
    z-index: 1;
}

.compliance-title {
    font-size: 56px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.title-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    margin-bottom: 40px;
    border-radius: 2px;
}

.company-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-list li {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* 生物基材料内容样式 */
.bio-based-content {
    text-align: center;
    padding: 40px 60px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-based-header {
    margin-bottom: 30px;
}

.bio-based-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.bio-based-main {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(30, 136, 229, 0.95));
    padding: 60px 80px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.bio-based-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(60deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px),
        repeating-linear-gradient(-60deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
    opacity: 0.5;
    pointer-events: none;
}

.bio-based-english {
    font-size: 28px;
    font-weight: 600;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.bio-based-title {
    font-size: 72px;
    font-weight: bold;
    color: white;
    margin: 20px 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.bio-based-desc {
    font-size: 32px;
    font-weight: 500;
    color: white;
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .bio-based-content {
        padding: 30px 40px;
    }
    
    .bio-based-main {
        padding: 50px 60px;
    }
    
    .bio-based-subtitle {
        font-size: 22px;
    }
    
    .bio-based-english {
        font-size: 24px;
    }
    
    .bio-based-title {
        font-size: 60px;
    }
    
    .bio-based-desc {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .bio-based-content {
        padding: 20px 30px;
    }
    
    .bio-based-main {
        padding: 40px 30px;
    }
    
    .bio-based-subtitle {
        font-size: 18px;
    }
    
    .bio-based-english {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .bio-based-title {
        font-size: 48px;
    }
    
    .bio-based-desc {
        font-size: 24px;
    }
}

.slide-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slide-icon i {
    font-size: 40px;
    color: white;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.slide-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.slide-buttons .btn-primary,
.slide-buttons .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.slide-buttons .btn-primary {
    background: #3498db;
    color: white;
}

.slide-buttons .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.slide-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.slide-buttons .btn-secondary:hover {
    background: white;
    color: #3498db;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    pointer-events: none;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 核心业务标题样式 */
.business-title-section {
    text-align: center;
    padding: 40px 0;
    background: transparent;
}

.business-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.wechat-consultation-section {
    text-align: center;
    margin-top: 20px;
}

.wechat-consultation-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.qr-code {
    margin-top: 10px;
}

.qr-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.qr-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* 数据跨境交易内容样式 */
.trading-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.trading-item {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.trading-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.trading-item h3 {
    color: #3498db;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trading-item h3::before {
    content: '★';
    color: #3498db;
    font-size: 1.2rem;
}

.trading-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* 服务客户统计数据样式 */
.stats-section {
    margin: 30px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.stats-description {
    margin-top: 20px;
}

.stats-description p {
    font-size: 1.2rem;
    color: #3498db;
    font-weight: 600;
    margin: 0;
}

/* 合作伙伴Logo展示样式 */
.partners-section {
    margin-top: 40px;
}

.partners-section h4 {
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 80px;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* 服务客户内容样式 */
.service-clients-content {
    margin-top: 30px;
}

.business-layout {
    display: flex;
    width: 100%;
    margin: 0;
    background: white;
    border-radius: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: visible;
    min-height: auto;
}

/* 左侧菜单样式 */
.business-sidebar {
    width: 320px;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    padding: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.business-sidebar .business-nav {
    padding: 0;
}

.business-sidebar .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.business-sidebar .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-sidebar .nav-item:last-child {
    border-bottom: none;
}

.business-sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 25px 35px;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.business-sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.business-sidebar .nav-item.active .nav-link {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.business-sidebar .nav-link i {
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.business-sidebar .nav-link span {
    font-size: 1rem;
    font-weight: 500;
}

/* 右侧内容区域 */
.business-content {
    flex: 1;
    padding: 60px 80px;
    background: white;
    overflow-y: visible;
    max-height: none;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* 子菜单样式 */
.submenu-section {
    margin-top: 30px;
}

.submenu-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.submenu-btn {
    padding: 12px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submenu-btn:hover {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.submenu-btn.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #3498db;
    color: white;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.subsection-content {
    position: relative;
}

.subsection {
    display: none;
    animation: fadeIn 0.3s ease;
}

.subsection.active {
    display: block;
}

.subsection h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.section-intro {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
}

.section-intro p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* 分子设计与筛查特殊样式 */
.method-list,
.application-list,
.aop-process,
.service-list {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 3px solid #3498db;
}

.method-list strong,
.application-list strong,
.aop-process strong,
.service-list strong {
    color: #3498db;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.method-list,
.application-list,
.service-list {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.aop-process {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: center;
    font-weight: 500;
}

/* 软件及数据库特殊样式 */
.software-features {
    background: rgba(76, 175, 80, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 3px solid #4caf50;
}

.software-features strong {
    color: #4caf50;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.software-features {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* 计算毒理培训学院特殊样式 */
.training-link {
    margin-top: 15px;
    text-align: center;
}

.training-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.training-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.training-btn i {
    font-size: 12px;
}

.training-features {
    background: rgba(255, 107, 53, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 3px solid #3498db;
}

.training-features strong {
    color: #3498db;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.training-features {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* 工业化学品REACH特殊样式 */
.reach-features {
    background: rgba(33, 150, 243, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 3px solid #2196f3;
}

.reach-features strong {
    color: #2196f3;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.reach-features {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* 内容网格 */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* REACH服务卡片点击效果 */
.feature-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* REACH服务详情模态框 */
.reach-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reach-modal.active {
    display: flex;
    opacity: 1;
}

.reach-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.reach-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.3s ease;
}

.reach-modal.active .reach-modal-content {
    transform: scale(1) translateY(0);
}

.reach-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.reach-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reach-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.reach-modal-title-text h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.reach-modal-title-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.reach-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s ease;
}

.reach-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.reach-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.reach-modal-about {
    margin-bottom: 30px;
}

.reach-modal-about h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.reach-modal-about p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.reach-modal-services h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.service-item {
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(135deg, #e8f0ff, #d0e0ff);
    transform: translateX(5px);
}

.reach-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.reach-modal-prev,
.reach-modal-next {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.reach-modal-prev:hover,
.reach-modal-next:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.reach-modal-consult {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.reach-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .reach-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .reach-modal-header {
        padding: 20px;
    }
    
    .reach-modal-title {
        gap: 15px;
    }
    
    .reach-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .reach-modal-title-text h2 {
        font-size: 24px;
    }
    
    .reach-modal-body {
        padding: 20px;
    }
    
    .reach-modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .reach-modal-prev,
    .reach-modal-next,
    .reach-modal-consult {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.feature-card h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 18px;
    font-weight: 600;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1rem;
}

/* 查看详情提示样式 */
.detail-hint {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 10;
}

.detail-hint i {
    font-size: 0.7rem;
}

.feature-card:hover .detail-hint {
    opacity: 1;
    transform: translateY(0);
}

/* 为有模态框的卡片添加特殊样式 */
.feature-card[data-service] {
    cursor: pointer;
}

.feature-card[data-service]:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* 客户网格 */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.client-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.client-category h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.client-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.client-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.client-info h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.client-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

/* 案例网格 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.case-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-header h4 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.case-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-content {
    padding: 25px;
}

.case-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.case-content p:last-child {
    margin-bottom: 0;
}

.case-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* 下载网格 */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.download-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.download-category h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.download-info {
    flex: 1;
}

.download-info h5 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.download-info p {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin: 0;
}

.download-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 轮播图响应式样式 - 横屏全屏适配 */
@media (max-width: 1200px) {
    .carousel-wrapper {
        height: 500px;
    }
    
    .slide-content {
        max-width: 1200px;
        padding: 60px 40px 0;
    }
    
    .compliance-partner-content {
        padding: 40px 50px;
    }
    
    .compliance-title {
        font-size: 42px;
    }
    
    .company-list li {
        font-size: 18px;
    }
    
    .slide-content h2 {
        font-size: 42px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .slide-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
    }
    
    .slide-icon i {
        font-size: 50px;
    }
    
    .slide-features {
        gap: 10px;
    }
    
    .feature-tag {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .carousel-controls {
        padding: 0 40px;
        max-width: 1200px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        height: 350px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .compliance-partner-content {
        padding: 30px 25px;
    }
    
    .compliance-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .title-underline {
        width: 80px;
        height: 4px;
        margin-bottom: 25px;
    }
    
    .company-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slide-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .slide-icon i {
        font-size: 24px;
    }
    
    .slide-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .feature-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .carousel-controls {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .carousel-indicators {
        bottom: 25px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }
    
    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* 咨询模态框样式 */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.consultation-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.consultation-modal-content {
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.3s ease;
}

.consultation-modal.active .consultation-modal-content {
    transform: scale(1) translateY(0);
}

.consultation-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 15px 15px 0 0;
}

.consultation-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.consultation-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.consultation-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.consultation-modal-body {
    padding: 30px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.consultation-form input.error,
.consultation-form select.error,
.consultation-form textarea.error {
    border-color: #e74c3c;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.consultation-form .checkbox-group {
    margin-top: 25px;
}

.consultation-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.consultation-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.consultation-form .link {
    color: #3498db;
    text-decoration: none;
}

.consultation-form .link:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.btn-cancel,
.btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 字段错误样式 */
.field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* 认证表单样式 */
.auth-form {
    padding: 20px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-form input.error {
    border-color: #e74c3c;
}

.auth-form .checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.auth-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.auth-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.auth-form .forgot-password {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.auth-form .forgot-password:hover {
    text-decoration: underline;
}

.auth-form .btn-auth-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-form .btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.auth-form .btn-auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 注册类型选择器 */
.register-type-selector {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #3498db;
    background: #3498db;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* 企业字段 */
.enterprise-fields {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.enterprise-fields textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
    min-height: 80px;
}

.enterprise-fields textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.enterprise-fields textarea.error {
    border-color: #e74c3c;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .core-business-page {
        padding: 0 0 20px 0;
    }
    
    .business-title {
        font-size: 2rem;
    }
    
    .business-layout {
        flex-direction: column;
        width: 100%;
    }
    
    .business-sidebar {
        width: 100%;
        order: 2;
        position: relative;
        height: auto;
        overflow-y: visible;
    }
    
    .business-sidebar .business-nav {
        display: flex;
        overflow-x: auto;
        padding: 0;
    }
    
    .business-sidebar .nav-list {
        display: flex;
        min-width: max-content;
    }
    
    .business-sidebar .nav-item {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .business-sidebar .nav-item:last-child {
        border-right: none;
    }
    
    .business-sidebar .nav-link {
        white-space: nowrap;
        min-width: 150px;
    }
    
    .business-content {
        order: 1;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .core-business-page {
        padding: 0 0 15px 0;
    }
    
    .business-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .business-title-section {
        padding: 30px 0;
    }
    
    .trading-content {
        gap: 25px;
    }
    
    .trading-item {
        padding: 25px;
    }
    
    .trading-item h3 {
        font-size: 1.3rem;
    }
    
    .business-layout {
        width: 100%;
    }
    
    .business-content {
        padding: 30px 25px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clients-grid,
    .cases-grid,
    .download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submenu-nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .submenu-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .core-business-page {
        padding: 0 0 10px 0;
    }
    
    .business-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .business-title-section {
        padding: 25px 0;
    }
    
    .trading-content {
        gap: 20px;
    }
    
    .trading-item {
        padding: 20px;
    }
    
    .trading-item h3 {
        font-size: 1.2rem;
    }
    
    .trading-item p {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .stats-description p {
        font-size: 1rem;
    }
    
    .partners-section h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 12px;
    }
    
    .partner-logo {
        height: 60px;
        padding: 10px;
    }
    
    .business-layout {
        width: 100%;
    }
    
    .business-content {
        padding: 20px 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .detail-hint {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .detail-hint i {
        font-size: 0.65rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .client-item,
    .download-item {
        padding: 12px;
    }
    
    .case-content {
        padding: 20px;
    }
}

/* 物质毒性预测模态框样式 */
.toxicity-prediction-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.toxicity-prediction-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.toxicity-prediction-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
    animation: toxicity-prediction-modal-slide-in 0.3s ease-out;
}

@keyframes toxicity-prediction-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.toxicity-prediction-modal-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toxicity-prediction-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.toxicity-prediction-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.toxicity-prediction-modal-title-text h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.toxicity-prediction-modal-title-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.toxicity-prediction-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.toxicity-prediction-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.toxicity-prediction-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.toxicity-prediction-modal-about {
    margin-bottom: 30px;
}

.toxicity-prediction-modal-about h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.toxicity-prediction-modal-about p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.toxicity-prediction-modal-services h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.service-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.service-section h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.subsection {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

.subsection h5 {
    color: #333;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.subsection h6 {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.sub-subsection {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 6px;
    border-left: 2px solid #3498db;
}

.sub-subsection h6 {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.sub-subsection p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.service-items {
    display: grid;
    gap: 12px;
}

.service-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toxicity-prediction-modal-footer {
    padding: 30px 40px;
    background: #f8f9ff;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.toxicity-prediction-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toxicity-prediction-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .toxicity-prediction-modal-content {
        margin: 2vh auto;
        max-width: 95%;
        max-height: 96vh;
    }
    
    .toxicity-prediction-modal-header {
        padding: 20px 25px;
    }
    
    .toxicity-prediction-modal-title {
        gap: 15px;
    }
    
    .toxicity-prediction-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .toxicity-prediction-modal-title-text h2 {
        font-size: 22px;
    }
    
    .toxicity-prediction-modal-title-text p {
        font-size: 14px;
    }
    
    .toxicity-prediction-modal-body {
        padding: 25px;
    }
    
    .toxicity-prediction-modal-about h3,
    .toxicity-prediction-modal-services h3 {
        font-size: 20px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-section h4 {
        font-size: 18px;
    }
    
    .subsection {
        padding: 15px;
    }
    
    .subsection h5 {
        font-size: 16px;
    }
    
    .sub-subsection {
        padding: 12px;
    }
    
    .toxicity-prediction-modal-footer {
        padding: 20px 25px;
    }
    
    .toxicity-prediction-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* COSMOS毒性预测模态框样式 */
.cosmos-toxicity-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.cosmos-toxicity-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cosmos-toxicity-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
    animation: cosmos-toxicity-modal-slide-in 0.3s ease-out;
}

@keyframes cosmos-toxicity-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cosmos-toxicity-modal-header {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cosmos-toxicity-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cosmos-toxicity-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cosmos-toxicity-modal-title-text h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.cosmos-toxicity-modal-title-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.cosmos-toxicity-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.cosmos-toxicity-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cosmos-toxicity-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.cosmos-toxicity-modal-about {
    margin-bottom: 30px;
}

.cosmos-toxicity-modal-about h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.cosmos-toxicity-modal-about p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cosmos-toxicity-modal-services h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.cosmos-toxicity-modal-footer {
    padding: 30px 40px;
    background: #f8f9ff;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.cosmos-toxicity-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cosmos-toxicity-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* 化妆品原料信息报送模态框样式 */
.cosmetics-ingredient-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.cosmetics-ingredient-info-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cosmetics-ingredient-info-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
    animation: cosmetics-ingredient-info-modal-slide-in 0.3s ease-out;
}

@keyframes cosmetics-ingredient-info-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cosmetics-ingredient-info-modal-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cosmetics-ingredient-info-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cosmetics-ingredient-info-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cosmetics-ingredient-info-modal-title-text h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.cosmetics-ingredient-info-modal-title-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.cosmetics-ingredient-info-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.cosmetics-ingredient-info-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cosmetics-ingredient-info-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.cosmetics-ingredient-info-modal-about {
    margin-bottom: 30px;
}

.cosmetics-ingredient-info-modal-about h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.cosmetics-ingredient-info-modal-about p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cosmetics-ingredient-info-modal-services h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.cosmetics-ingredient-info-modal-footer {
    padding: 30px 40px;
    background: #f8f9ff;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.cosmetics-ingredient-info-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cosmetics-ingredient-info-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* 化妆品注册备案模态框样式 */
.cosmetics-registration-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.cosmetics-registration-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cosmetics-registration-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
    animation: cosmetics-registration-modal-slide-in 0.3s ease-out;
}

@keyframes cosmetics-registration-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cosmetics-registration-modal-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cosmetics-registration-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cosmetics-registration-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cosmetics-registration-modal-title-text h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.cosmetics-registration-modal-title-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.cosmetics-registration-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.cosmetics-registration-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cosmetics-registration-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.cosmetics-registration-modal-about {
    margin-bottom: 30px;
}

.cosmetics-registration-modal-about h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.cosmetics-registration-modal-about p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cosmetics-registration-modal-services h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.cosmetics-registration-modal-footer {
    padding: 30px 40px;
    background: #f8f9ff;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.cosmetics-registration-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cosmetics-registration-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cosmos-toxicity-modal-content,
    .cosmetics-ingredient-info-modal-content,
    .cosmetics-registration-modal-content {
        margin: 2vh auto;
        max-width: 95%;
        max-height: 96vh;
    }
    
    .cosmos-toxicity-modal-header,
    .cosmetics-ingredient-info-modal-header,
    .cosmetics-registration-modal-header {
        padding: 20px 25px;
    }
    
    .cosmos-toxicity-modal-title,
    .cosmetics-ingredient-info-modal-title,
    .cosmetics-registration-modal-title {
        gap: 15px;
    }
    
    .cosmos-toxicity-modal-icon,
    .cosmetics-ingredient-info-modal-icon,
    .cosmetics-registration-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .cosmos-toxicity-modal-title-text h2,
    .cosmetics-ingredient-info-modal-title-text h2,
    .cosmetics-registration-modal-title-text h2 {
        font-size: 22px;
    }
    
    .cosmos-toxicity-modal-title-text p,
    .cosmetics-ingredient-info-modal-title-text p,
    .cosmetics-registration-modal-title-text p {
        font-size: 14px;
    }
    
    .cosmos-toxicity-modal-body,
    .cosmetics-ingredient-info-modal-body,
    .cosmetics-registration-modal-body {
        padding: 25px;
    }
    
    .cosmos-toxicity-modal-about h3,
    .cosmos-toxicity-modal-services h3,
    .cosmetics-ingredient-info-modal-about h3,
    .cosmetics-ingredient-info-modal-services h3,
    .cosmetics-registration-modal-about h3,
    .cosmetics-registration-modal-services h3 {
        font-size: 20px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-section h4 {
        font-size: 18px;
    }
    
    .cosmos-toxicity-modal-footer,
    .cosmetics-ingredient-info-modal-footer,
    .cosmetics-registration-modal-footer {
        padding: 20px 25px;
    }
    
    .cosmos-toxicity-modal-consult,
    .cosmetics-ingredient-info-modal-consult,
    .cosmetics-registration-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* QSAR模型构建模态框样式 */
.qsar-model-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.qsar-model-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.qsar-model-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
    animation: qsar-model-modal-slide-in 0.3s ease-out;
}

@keyframes qsar-model-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qsar-model-modal-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qsar-model-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.qsar-model-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.qsar-model-modal-title-text h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.qsar-model-modal-title-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.qsar-model-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.qsar-model-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.qsar-model-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.qsar-model-modal-about {
    margin-bottom: 30px;
}

.qsar-model-modal-about h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.qsar-model-modal-about p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.qsar-model-modal-services h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.service-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.service-section h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-items {
    display: grid;
    gap: 12px;
}

.service-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qsar-model-modal-footer {
    padding: 30px 40px;
    background: #f8f9ff;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.qsar-model-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qsar-model-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .qsar-model-modal-content {
        margin: 2vh auto;
        max-width: 95%;
        max-height: 96vh;
    }
    
    .qsar-model-modal-header {
        padding: 20px 25px;
    }
    
    .qsar-model-modal-title {
        gap: 15px;
    }
    
    .qsar-model-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .qsar-model-modal-title-text h2 {
        font-size: 22px;
    }
    
    .qsar-model-modal-title-text p {
        font-size: 14px;
    }
    
    .qsar-model-modal-body {
        padding: 25px;
    }
    
    .qsar-model-modal-about h3,
    .qsar-model-modal-services h3 {
        font-size: 20px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-section h4 {
        font-size: 18px;
    }
    
    .qsar-model-modal-footer {
        padding: 20px 25px;
    }
    
    .qsar-model-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ICH M7 模态框样式 */
.ich-m7-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.ich-m7-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.ich-m7-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
    animation: ich-m7-modal-slide-in 0.3s ease-out;
}

@keyframes ich-m7-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ich-m7-modal-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ich-m7-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ich-m7-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ich-m7-modal-title-text h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.ich-m7-modal-title-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.ich-m7-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.ich-m7-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ich-m7-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.ich-m7-modal-about {
    margin-bottom: 30px;
}

.ich-m7-modal-about h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.ich-m7-modal-about p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.ich-m7-modal-services h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.service-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.service-section h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-items {
    display: grid;
    gap: 12px;
}

.service-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ich-m7-modal-footer {
    padding: 30px 40px;
    background: #f8f9ff;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.ich-m7-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ich-m7-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .ich-m7-modal-content {
        margin: 2vh auto;
        max-width: 95%;
        max-height: 96vh;
    }
    
    .ich-m7-modal-header {
        padding: 20px 25px;
    }
    
    .ich-m7-modal-title {
        gap: 15px;
    }
    
    .ich-m7-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .ich-m7-modal-title-text h2 {
        font-size: 22px;
    }
    
    .ich-m7-modal-title-text p {
        font-size: 14px;
    }
    
    .ich-m7-modal-body {
        padding: 25px;
    }
    
    .ich-m7-modal-about h3,
    .ich-m7-modal-services h3 {
        font-size: 20px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-section h4 {
        font-size: 18px;
    }
    
    .ich-m7-modal-footer {
        padding: 20px 25px;
    }
    
    .ich-m7-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* 化妆品注册备案模态框样式 */
.cosmetics-registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.cosmetics-registration-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cosmetics-registration-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cosmetics-registration-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: cosmeticsRegistrationModalSlideIn 0.3s ease-out;
}

@keyframes cosmeticsRegistrationModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cosmetics-registration-modal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cosmetics-registration-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cosmetics-registration-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.cosmetics-registration-modal-title-text h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.cosmetics-registration-modal-title-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.cosmetics-registration-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cosmetics-registration-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.cosmetics-registration-modal-body {
    background: white;
    padding: 40px;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

.cosmetics-registration-modal-about {
    margin-bottom: 30px;
}

.cosmetics-registration-modal-about h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cosmetics-registration-modal-about p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.cosmetics-registration-modal-services h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.service-section {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
}

.service-section h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-section h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.service-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.subsection {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e6ff;
}

.subsection h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.subsection h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sub-subsection {
    margin: 15px 0;
    padding: 15px;
    background: #f0f4ff;
    border-radius: 8px;
}

.sub-subsection h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.service-item {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e6ff;
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 评估要求对照表样式 */
.assessment-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-header .table-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.table-row .table-cell {
    border-right: 1px solid #f0f0f0;
}

.table-cell:last-child {
    border-right: none;
}

.table-row .table-cell:first-child {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.table-row .table-cell:not(:first-child) {
    color: #666;
}

/* 响应式表格 */
@media (max-width: 1200px) {
    .assessment-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        min-width: 1200px;
    }
    
    .table-cell {
        min-width: 100px;
        font-size: 12px;
    }
    
    .table-header .table-cell {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .table-cell {
        padding: 8px 4px;
        font-size: 11px;
    }
    
    .table-header .table-cell {
        font-size: 10px;
    }
}

.cosmetics-registration-modal-footer {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
}

.cosmetics-registration-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cosmetics-registration-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cosmetics-registration-modal-content {
        margin: 2vh auto;
        max-width: 95%;
        max-height: 96vh;
    }
    
    .cosmetics-registration-modal-header {
        padding: 20px 25px;
    }
    
    .cosmetics-registration-modal-title {
        gap: 15px;
    }
    
    .cosmetics-registration-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .cosmetics-registration-modal-title-text h2 {
        font-size: 22px;
    }
    
    .cosmetics-registration-modal-title-text p {
        font-size: 14px;
    }
    
    .cosmetics-registration-modal-body {
        padding: 25px;
    }
    
    .cosmetics-registration-modal-about h3,
    .cosmetics-registration-modal-services h3 {
        font-size: 20px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-section h4 {
        font-size: 18px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .cosmetics-registration-modal-footer {
        padding: 20px 25px;
    }
    
    .cosmetics-registration-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* 农用化学品模态框通用样式 */
.benefit-analysis-modal,
.dietary-risk-assessment-modal,
.environmental-risk-assessment-modal,
.health-risk-assessment-modal,
.pesticide-qsar-prediction-modal,
.pesticide-registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.benefit-analysis-modal.active,
.dietary-risk-assessment-modal.active,
.environmental-risk-assessment-modal.active,
.health-risk-assessment-modal.active,
.pesticide-qsar-prediction-modal.active,
.pesticide-registration-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-analysis-modal-overlay,
.dietary-risk-assessment-modal-overlay,
.environmental-risk-assessment-modal-overlay,
.health-risk-assessment-modal-overlay,
.pesticide-qsar-prediction-modal-overlay,
.pesticide-registration-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.benefit-analysis-modal-content,
.dietary-risk-assessment-modal-content,
.environmental-risk-assessment-modal-content,
.health-risk-assessment-modal-content,
.pesticide-qsar-prediction-modal-content,
.pesticide-registration-modal-content {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: agrochemicalModalSlideIn 0.3s ease-out;
}

@keyframes agrochemicalModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 效益分析报告模态框 - 绿色主题 */
.benefit-analysis-modal-content {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* 膳食风险评估模态框 - 橙色主题 */
.dietary-risk-assessment-modal-content {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* 环境风险评估模态框 - 蓝色主题 */
.environmental-risk-assessment-modal-content {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* 健康风险评估模态框 - 红色主题 */
.health-risk-assessment-modal-content {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* 农药杂志毒性QSAR预测模态框 - 紫色主题 */
.pesticide-qsar-prediction-modal-content {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* 农药登记模态框 - 深蓝色主题 */
.pesticide-registration-modal-content {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* 模态框头部样式 */
.benefit-analysis-modal-header,
.dietary-risk-assessment-modal-header,
.environmental-risk-assessment-modal-header,
.health-risk-assessment-modal-header,
.pesticide-qsar-prediction-modal-header,
.pesticide-registration-modal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.benefit-analysis-modal-title,
.dietary-risk-assessment-modal-title,
.environmental-risk-assessment-modal-title,
.health-risk-assessment-modal-title,
.pesticide-qsar-prediction-modal-title,
.pesticide-registration-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-analysis-modal-icon,
.dietary-risk-assessment-modal-icon,
.environmental-risk-assessment-modal-icon,
.health-risk-assessment-modal-icon,
.pesticide-qsar-prediction-modal-icon,
.pesticide-registration-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.benefit-analysis-modal-title-text h2,
.dietary-risk-assessment-modal-title-text h2,
.environmental-risk-assessment-modal-title-text h2,
.health-risk-assessment-modal-title-text h2,
.pesticide-qsar-prediction-modal-title-text h2,
.pesticide-registration-modal-title-text h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.benefit-analysis-modal-title-text p,
.dietary-risk-assessment-modal-title-text p,
.environmental-risk-assessment-modal-title-text p,
.health-risk-assessment-modal-title-text p,
.pesticide-qsar-prediction-modal-title-text p,
.pesticide-registration-modal-title-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.benefit-analysis-modal-close,
.dietary-risk-assessment-modal-close,
.environmental-risk-assessment-modal-close,
.health-risk-assessment-modal-close,
.pesticide-qsar-prediction-modal-close,
.pesticide-registration-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.benefit-analysis-modal-close:hover,
.dietary-risk-assessment-modal-close:hover,
.environmental-risk-assessment-modal-close:hover,
.health-risk-assessment-modal-close:hover,
.pesticide-qsar-prediction-modal-close:hover,
.pesticide-registration-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* 模态框主体样式 */
.benefit-analysis-modal-body,
.dietary-risk-assessment-modal-body,
.environmental-risk-assessment-modal-body,
.health-risk-assessment-modal-body,
.pesticide-qsar-prediction-modal-body,
.pesticide-registration-modal-body {
    background: white;
    padding: 40px;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

.benefit-analysis-modal-about,
.dietary-risk-assessment-modal-about,
.environmental-risk-assessment-modal-about,
.health-risk-assessment-modal-about,
.pesticide-qsar-prediction-modal-about,
.pesticide-registration-modal-about {
    margin-bottom: 30px;
}

.benefit-analysis-modal-about h3,
.dietary-risk-assessment-modal-about h3,
.environmental-risk-assessment-modal-about h3,
.health-risk-assessment-modal-about h3,
.pesticide-qsar-prediction-modal-about h3,
.pesticide-registration-modal-about h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-analysis-modal-about p,
.dietary-risk-assessment-modal-about p,
.environmental-risk-assessment-modal-about p,
.health-risk-assessment-modal-about p,
.pesticide-qsar-prediction-modal-about p,
.pesticide-registration-modal-about p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.benefit-analysis-modal-services h3,
.dietary-risk-assessment-modal-services h3,
.environmental-risk-assessment-modal-services h3,
.health-risk-assessment-modal-services h3,
.pesticide-qsar-prediction-modal-services h3,
.pesticide-registration-modal-services h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.dietary-risk-assessment-modal-services h3 {
    border-bottom-color: #FF9800;
}

.environmental-risk-assessment-modal-services h3 {
    border-bottom-color: #2196F3;
}

.health-risk-assessment-modal-services h3 {
    border-bottom-color: #F44336;
}

.pesticide-qsar-prediction-modal-services h3 {
    border-bottom-color: #9C27B0;
}

.pesticide-registration-modal-services h3 {
    border-bottom-color: #3F51B5;
}

/* 模态框底部样式 */
.benefit-analysis-modal-footer,
.dietary-risk-assessment-modal-footer,
.environmental-risk-assessment-modal-footer,
.health-risk-assessment-modal-footer,
.pesticide-qsar-prediction-modal-footer,
.pesticide-registration-modal-footer {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
}

.benefit-analysis-modal-consult,
.dietary-risk-assessment-modal-consult,
.environmental-risk-assessment-modal-consult,
.health-risk-assessment-modal-consult,
.pesticide-qsar-prediction-modal-consult,
.pesticide-registration-modal-consult {
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-analysis-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.dietary-risk-assessment-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.environmental-risk-assessment-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.health-risk-assessment-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.pesticide-qsar-prediction-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.pesticide-registration-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.benefit-analysis-modal-consult:hover,
.dietary-risk-assessment-modal-consult:hover,
.environmental-risk-assessment-modal-consult:hover,
.health-risk-assessment-modal-consult:hover,
.pesticide-qsar-prediction-modal-consult:hover,
.pesticide-registration-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .benefit-analysis-modal-content,
    .dietary-risk-assessment-modal-content,
    .environmental-risk-assessment-modal-content,
    .health-risk-assessment-modal-content,
    .pesticide-qsar-prediction-modal-content,
    .pesticide-registration-modal-content {
        margin: 2vh auto;
        max-width: 95%;
        max-height: 96vh;
    }
    
    .benefit-analysis-modal-header,
    .dietary-risk-assessment-modal-header,
    .environmental-risk-assessment-modal-header,
    .health-risk-assessment-modal-header,
    .pesticide-qsar-prediction-modal-header,
    .pesticide-registration-modal-header {
        padding: 20px 25px;
    }
    
    .benefit-analysis-modal-title,
    .dietary-risk-assessment-modal-title,
    .environmental-risk-assessment-modal-title,
    .health-risk-assessment-modal-title,
    .pesticide-qsar-prediction-modal-title,
    .pesticide-registration-modal-title {
        gap: 15px;
    }
    
    .benefit-analysis-modal-icon,
    .dietary-risk-assessment-modal-icon,
    .environmental-risk-assessment-modal-icon,
    .health-risk-assessment-modal-icon,
    .pesticide-qsar-prediction-modal-icon,
    .pesticide-registration-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .benefit-analysis-modal-title-text h2,
    .dietary-risk-assessment-modal-title-text h2,
    .environmental-risk-assessment-modal-title-text h2,
    .health-risk-assessment-modal-title-text h2,
    .pesticide-qsar-prediction-modal-title-text h2,
    .pesticide-registration-modal-title-text h2 {
        font-size: 22px;
    }
    
    .benefit-analysis-modal-title-text p,
    .dietary-risk-assessment-modal-title-text p,
    .environmental-risk-assessment-modal-title-text p,
    .health-risk-assessment-modal-title-text p,
    .pesticide-qsar-prediction-modal-title-text p,
    .pesticide-registration-modal-title-text p {
        font-size: 14px;
    }
    
    .benefit-analysis-modal-body,
    .dietary-risk-assessment-modal-body,
    .environmental-risk-assessment-modal-body,
    .health-risk-assessment-modal-body,
    .pesticide-qsar-prediction-modal-body,
    .pesticide-registration-modal-body {
        padding: 25px;
    }
    
    .benefit-analysis-modal-about h3,
    .dietary-risk-assessment-modal-about h3,
    .environmental-risk-assessment-modal-about h3,
    .health-risk-assessment-modal-about h3,
    .pesticide-qsar-prediction-modal-about h3,
    .pesticide-registration-modal-about h3,
    .benefit-analysis-modal-services h3,
    .dietary-risk-assessment-modal-services h3,
    .environmental-risk-assessment-modal-services h3,
    .health-risk-assessment-modal-services h3,
    .pesticide-qsar-prediction-modal-services h3,
    .pesticide-registration-modal-services h3 {
        font-size: 20px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-section h4 {
        font-size: 18px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .benefit-analysis-modal-footer,
    .dietary-risk-assessment-modal-footer,
    .environmental-risk-assessment-modal-footer,
    .health-risk-assessment-modal-footer,
    .pesticide-qsar-prediction-modal-footer,
    .pesticide-registration-modal-footer {
        padding: 20px 25px;
    }
    
    .benefit-analysis-modal-consult,
    .dietary-risk-assessment-modal-consult,
    .environmental-risk-assessment-modal-consult,
    .health-risk-assessment-modal-consult,
    .pesticide-qsar-prediction-modal-consult,
    .pesticide-registration-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Kosher产品专家咨询模态框样式 */
.kosher-consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.kosher-consultation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.kosher-consultation-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: kosherModalSlideIn 0.4s ease-out;
}

@keyframes kosherModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.kosher-consultation-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.kosher-consultation-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kosher-consultation-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.kosher-consultation-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.kosher-consultation-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kosher-consultation-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.kosher-consultation-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.kosher-consultation-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.kosher-consultation-modal-close i {
    color: #fff;
    font-size: 18px;
}

.kosher-consultation-modal-body {
    padding: 30px 40px;
    background: #fff;
    margin: 0;
}

.kosher-consultation-modal-about {
    margin-bottom: 35px;
}

.kosher-consultation-modal-about h3 {
    color: #3498db;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kosher-consultation-modal-about h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.kosher-consultation-modal-about p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.kosher-consultation-modal-services h3 {
    color: #3498db;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kosher-consultation-modal-services h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.kosher-consultation-modal-services .service-section {
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #FFF8F5 0%, #FFF0E6 100%);
    border-radius: 15px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.kosher-consultation-modal-services .service-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.kosher-consultation-modal-services .service-section h4 {
    color: #3498db;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kosher-consultation-modal-services .service-section h4::before {
    content: '★';
    color: #F7931E;
    font-size: 18px;
}

.kosher-consultation-modal-services .service-section p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.kosher-consultation-modal-footer {
    padding: 25px 40px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.kosher-consultation-modal-consult {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.kosher-consultation-modal-consult:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.kosher-consultation-modal-consult i {
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .kosher-consultation-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .kosher-consultation-modal-header {
        padding: 20px 25px 15px;
    }
    
    .kosher-consultation-modal-title {
        gap: 15px;
    }
    
    .kosher-consultation-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .kosher-consultation-modal-icon i {
        font-size: 24px;
    }
    
    .kosher-consultation-modal-title-text h2 {
        font-size: 24px;
    }
    
    .kosher-consultation-modal-title-text p {
        font-size: 14px;
    }
    
    .kosher-consultation-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .kosher-consultation-modal-close i {
        font-size: 16px;
    }
    
    .kosher-consultation-modal-body {
        padding: 20px 25px;
    }
    
    .kosher-consultation-modal-about h3,
    .kosher-consultation-modal-services h3 {
        font-size: 20px;
    }
    
    .kosher-consultation-modal-about p {
        font-size: 15px;
    }
    
    .kosher-consultation-modal-services .service-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .kosher-consultation-modal-services .service-section h4 {
        font-size: 18px;
    }
    
    .kosher-consultation-modal-services .service-section p {
        font-size: 14px;
    }
    
    .kosher-consultation-modal-footer {
        padding: 20px 25px 25px;
    }
    
    .kosher-consultation-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Halal清真认证模态框样式 */
.halal-certification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.halal-certification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.halal-certification-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(46, 125, 50, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: halalModalSlideIn 0.4s ease-out;
}

@keyframes halalModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.halal-certification-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.halal-certification-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.halal-certification-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.halal-certification-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.halal-certification-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.halal-certification-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.halal-certification-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.halal-certification-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.halal-certification-modal-close i {
    color: #fff;
    font-size: 18px;
}

.halal-certification-modal-body {
    padding: 30px 40px;
    background: #fff;
    margin: 0;
}

.halal-certification-modal-about {
    margin-bottom: 35px;
}

.halal-certification-modal-about h3 {
    color: #2E7D32;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.halal-certification-modal-about h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 2px;
}

.halal-certification-modal-about p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.halal-certification-modal-services h3 {
    color: #2E7D32;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.halal-certification-modal-services h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 2px;
}

/* 认证流程步骤样式 */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2E7D32;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.step-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.halal-certification-modal-services .service-section {
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.halal-certification-modal-services .service-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.halal-certification-modal-services .service-section h4 {
    color: #2E7D32;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.halal-certification-modal-services .service-section h4::before {
    content: '◇';
    color: #4CAF50;
    font-size: 18px;
}

.halal-certification-modal-services .service-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.halal-certification-modal-services .service-item {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.halal-certification-modal-services .service-item:last-child {
    border-bottom: none;
}

.halal-certification-modal-footer {
    padding: 25px 40px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.halal-certification-modal-consult {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.halal-certification-modal-consult:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.halal-certification-modal-consult i {
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .halal-certification-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .halal-certification-modal-header {
        padding: 20px 25px 15px;
    }
    
    .halal-certification-modal-title {
        gap: 15px;
    }
    
    .halal-certification-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .halal-certification-modal-icon i {
        font-size: 24px;
    }
    
    .halal-certification-modal-title-text h2 {
        font-size: 24px;
    }
    
    .halal-certification-modal-title-text p {
        font-size: 14px;
    }
    
    .halal-certification-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .halal-certification-modal-close i {
        font-size: 16px;
    }
    
    .halal-certification-modal-body {
        padding: 20px 25px;
    }
    
    .halal-certification-modal-about h3,
    .halal-certification-modal-services h3 {
        font-size: 20px;
    }
    
    .halal-certification-modal-about p {
        font-size: 15px;
    }
    
    .process-steps {
        gap: 15px;
    }
    
    .process-step {
        padding: 15px;
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .halal-certification-modal-services .service-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .halal-certification-modal-services .service-section h4 {
        font-size: 18px;
    }
    
    .halal-certification-modal-services .service-item {
        font-size: 14px;
    }
    
    .halal-certification-modal-footer {
        padding: 20px 25px 25px;
    }
    
    .halal-certification-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* 食品接触材料FCM模态框样式 */
.fcm-certification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

/* 海关联盟SGR认证模态框样式 */
.sgr-certification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.fcm-certification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.fcm-certification-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(25, 118, 210, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: fcmModalSlideIn 0.4s ease-out;
}

@keyframes fcmModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fcm-certification-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fcm-certification-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fcm-certification-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.fcm-certification-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.fcm-certification-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fcm-certification-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.fcm-certification-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fcm-certification-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.fcm-certification-modal-close i {
    color: #fff;
    font-size: 18px;
}

.fcm-certification-modal-body {
    padding: 30px 40px;
    background: #fff;
    margin: 0;
}

.fcm-certification-modal-about {
    margin-bottom: 35px;
}

.fcm-certification-modal-about h3 {
    color: #1976D2;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fcm-certification-modal-about h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

.fcm-certification-modal-about p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.fcm-certification-modal-services h3 {
    color: #1976D2;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fcm-certification-modal-services h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

.fcm-certification-modal-services p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px 0;
    text-align: justify;
}

.fcm-certification-modal-services .service-section {
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
    border-radius: 15px;
    border-left: 4px solid #1976D2;
    transition: all 0.3s ease;
}

.fcm-certification-modal-services .service-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15);
}

.fcm-certification-modal-services .service-section h4 {
    color: #1976D2;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fcm-certification-modal-services .service-section h4::before {
    content: '◆';
    color: #42A5F5;
    font-size: 18px;
}

.fcm-certification-modal-services .service-section p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.fcm-certification-modal-services .service-section p:last-child {
    margin-bottom: 0;
}

.test-explanation {
    background: rgba(25, 118, 210, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #42A5F5;
    margin-top: 15px;
}

.test-explanation p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.test-explanation strong {
    color: #1976D2;
    font-weight: 600;
}

.fcm-certification-modal-services .service-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fcm-certification-modal-services .service-item {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
}

.fcm-certification-modal-services .service-item:last-child {
    border-bottom: none;
}

.fcm-certification-modal-footer {
    padding: 25px 40px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.fcm-certification-modal-consult {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fcm-certification-modal-consult:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.fcm-certification-modal-consult i {
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .fcm-certification-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .fcm-certification-modal-header {
        padding: 20px 25px 15px;
    }
    
    .fcm-certification-modal-title {
        gap: 15px;
    }
    
    .fcm-certification-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .fcm-certification-modal-icon i {
        font-size: 24px;
    }
    
    .fcm-certification-modal-title-text h2 {
        font-size: 24px;
    }
    
    .fcm-certification-modal-title-text p {
        font-size: 14px;
    }
    
    .fcm-certification-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .fcm-certification-modal-close i {
        font-size: 16px;
    }
    
    .fcm-certification-modal-body {
        padding: 20px 25px;
    }
    
    .fcm-certification-modal-about h3,
    .fcm-certification-modal-services h3 {
        font-size: 20px;
    }
    
    .fcm-certification-modal-about p,
    .fcm-certification-modal-services p {
        font-size: 15px;
    }
    
    .fcm-certification-modal-services .service-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .fcm-certification-modal-services .service-section h4 {
        font-size: 18px;
    }
    
    .fcm-certification-modal-services .service-section p {
        font-size: 14px;
    }
    
    .test-explanation {
        padding: 15px;
    }
    
    .test-explanation p {
        font-size: 14px;
    }
    
    .fcm-certification-modal-services .service-item {
        font-size: 14px;
    }
    
    .fcm-certification-modal-footer {
        padding: 20px 25px 25px;
    }
    
    .fcm-certification-modal-consult {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* SGR认证模态框样式 */
.sgr-certification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.sgr-certification-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: sgrModalSlideIn 0.4s ease-out;
}

@keyframes sgrModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sgr-certification-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sgr-certification-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sgr-certification-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.sgr-certification-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.sgr-certification-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sgr-certification-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.sgr-certification-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sgr-certification-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.sgr-certification-modal-close i {
    color: #fff;
    font-size: 18px;
}

.sgr-certification-modal-body {
    padding: 30px 40px;
}

.sgr-certification-modal-about {
    margin-bottom: 35px;
}

.sgr-certification-modal-about h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sgr-certification-modal-about p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: justify;
}

.sgr-certification-modal-services h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sgr-certification-modal-services .service-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sgr-certification-modal-services .service-section h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sgr-certification-modal-services .service-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.sgr-certification-modal-services .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.sgr-certification-modal-services .service-item {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.sgr-certification-modal-footer {
    padding: 20px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sgr-certification-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sgr-certification-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.sgr-certification-modal-consult i {
    font-size: 18px;
}

/* SGR模态框响应式设计 */
@media (max-width: 768px) {
    .sgr-certification-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .sgr-certification-modal-header {
        padding: 25px 25px 15px;
    }
    
    .sgr-certification-modal-title {
        gap: 15px;
    }
    
    .sgr-certification-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .sgr-certification-modal-icon i {
        font-size: 24px;
    }
    
    .sgr-certification-modal-title-text h2 {
        font-size: 24px;
    }
    
    .sgr-certification-modal-title-text p {
        font-size: 14px;
    }
    
    .sgr-certification-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .sgr-certification-modal-close i {
        font-size: 16px;
    }
    
    .sgr-certification-modal-body {
        padding: 25px 25px;
    }
    
    .sgr-certification-modal-about h3,
    .sgr-certification-modal-services h3 {
        font-size: 20px;
    }
    
    .sgr-certification-modal-about p {
        font-size: 15px;
    }
    
    .sgr-certification-modal-services .service-section {
        padding: 15px;
    }
    
    .sgr-certification-modal-services .service-section h4 {
        font-size: 16px;
    }
    
    .sgr-certification-modal-services .service-section p {
        font-size: 14px;
    }
    
    .sgr-certification-modal-services .service-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .sgr-certification-modal-services .service-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .sgr-certification-modal-footer {
        padding: 15px 25px 25px;
    }
    
    .sgr-certification-modal-consult {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sgr-certification-modal-content {
        width: 98%;
        border-radius: 12px;
    }
    
    .sgr-certification-modal-header {
        padding: 20px 20px 12px;
    }
    
    .sgr-certification-modal-title {
        gap: 12px;
    }
    
    .sgr-certification-modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .sgr-certification-modal-icon i {
        font-size: 20px;
    }
    
    .sgr-certification-modal-title-text h2 {
        font-size: 20px;
    }
    
    .sgr-certification-modal-title-text p {
        font-size: 13px;
    }
    
    .sgr-certification-modal-close {
        width: 35px;
        height: 35px;
    }
    
    .sgr-certification-modal-close i {
        font-size: 14px;
    }
    
    .sgr-certification-modal-body {
        padding: 20px 20px;
    }
    
    .sgr-certification-modal-about h3,
    .sgr-certification-modal-services h3 {
        font-size: 18px;
    }
    
    .sgr-certification-modal-about p {
        font-size: 14px;
    }
    
    .sgr-certification-modal-services .service-section {
        padding: 12px;
    }
    
    .sgr-certification-modal-services .service-section h4 {
        font-size: 15px;
    }
    
    .sgr-certification-modal-services .service-section p {
        font-size: 13px;
    }
    
    .sgr-certification-modal-services .service-item {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .sgr-certification-modal-footer {
        padding: 12px 20px 20px;
    }
    
    .sgr-certification-modal-consult {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* WERCSmart注册模态框样式 */
.wercsmart-registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.wercsmart-registration-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.wercsmart-registration-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: wercsmartModalSlideIn 0.4s ease-out;
}

@keyframes wercsmartModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wercsmart-registration-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.wercsmart-registration-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wercsmart-registration-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.wercsmart-registration-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.wercsmart-registration-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wercsmart-registration-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.wercsmart-registration-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wercsmart-registration-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.wercsmart-registration-modal-close i {
    color: #fff;
    font-size: 18px;
}

.wercsmart-registration-modal-body {
    padding: 30px 40px;
}

.wercsmart-registration-modal-about {
    margin-bottom: 35px;
}

.wercsmart-registration-modal-about h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wercsmart-registration-modal-about p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: justify;
}

.wercsmart-registration-modal-services h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wercsmart-registration-modal-services .service-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wercsmart-registration-modal-services .service-section h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wercsmart-registration-modal-services .service-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.wercsmart-registration-modal-services .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.wercsmart-registration-modal-services .service-item {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.wercsmart-registration-modal-footer {
    padding: 20px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wercsmart-registration-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #333;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wercsmart-registration-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 154, 158, 0.4);
}

.wercsmart-registration-modal-consult i {
    font-size: 18px;
}

/* WERCSmart模态框响应式设计 */
@media (max-width: 768px) {
    .wercsmart-registration-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .wercsmart-registration-modal-header {
        padding: 25px 25px 15px;
    }
    
    .wercsmart-registration-modal-title {
        gap: 15px;
    }
    
    .wercsmart-registration-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .wercsmart-registration-modal-icon i {
        font-size: 24px;
    }
    
    .wercsmart-registration-modal-title-text h2 {
        font-size: 24px;
    }
    
    .wercsmart-registration-modal-title-text p {
        font-size: 14px;
    }
    
    .wercsmart-registration-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .wercsmart-registration-modal-close i {
        font-size: 16px;
    }
    
    .wercsmart-registration-modal-body {
        padding: 25px 25px;
    }
    
    .wercsmart-registration-modal-about h3,
    .wercsmart-registration-modal-services h3 {
        font-size: 20px;
    }
    
    .wercsmart-registration-modal-about p {
        font-size: 15px;
    }
    
    .wercsmart-registration-modal-services .service-section {
        padding: 15px;
    }
    
    .wercsmart-registration-modal-services .service-section h4 {
        font-size: 16px;
    }
    
    .wercsmart-registration-modal-services .service-section p {
        font-size: 14px;
    }
    
    .wercsmart-registration-modal-services .service-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .wercsmart-registration-modal-services .service-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .wercsmart-registration-modal-footer {
        padding: 15px 25px 25px;
    }
    
    .wercsmart-registration-modal-consult {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .wercsmart-registration-modal-content {
        width: 98%;
        border-radius: 12px;
    }
    
    .wercsmart-registration-modal-header {
        padding: 20px 20px 12px;
    }
    
    .wercsmart-registration-modal-title {
        gap: 12px;
    }
    
    .wercsmart-registration-modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .wercsmart-registration-modal-icon i {
        font-size: 20px;
    }
    
    .wercsmart-registration-modal-title-text h2 {
        font-size: 20px;
    }
    
    .wercsmart-registration-modal-title-text p {
        font-size: 13px;
    }
    
    .wercsmart-registration-modal-close {
        width: 35px;
        height: 35px;
    }
    
    .wercsmart-registration-modal-close i {
        font-size: 14px;
    }
    
    .wercsmart-registration-modal-body {
        padding: 20px 20px;
    }
    
    .wercsmart-registration-modal-about h3,
    .wercsmart-registration-modal-services h3 {
        font-size: 18px;
    }
    
    .wercsmart-registration-modal-about p {
        font-size: 14px;
    }
    
    .wercsmart-registration-modal-services .service-section {
        padding: 12px;
    }
    
    .wercsmart-registration-modal-services .service-section h4 {
        font-size: 15px;
    }
    
    .wercsmart-registration-modal-services .service-section p {
        font-size: 13px;
    }
    
    .wercsmart-registration-modal-services .service-item {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .wercsmart-registration-modal-footer {
        padding: 12px 20px 20px;
    }
    
    .wercsmart-registration-modal-consult {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* SCIP通报模态框样式 */
.scip-notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.scip-notification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.scip-notification-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: scipModalSlideIn 0.4s ease-out;
}

@keyframes scipModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.scip-notification-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.scip-notification-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.scip-notification-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.scip-notification-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.scip-notification-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scip-notification-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.scip-notification-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scip-notification-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.scip-notification-modal-close i {
    color: #fff;
    font-size: 18px;
}

.scip-notification-modal-body {
    padding: 30px 40px;
}

.scip-notification-modal-about {
    margin-bottom: 35px;
}

.scip-notification-modal-about h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scip-notification-modal-about p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: justify;
}

.scip-notification-modal-services h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scip-notification-modal-services .service-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scip-notification-modal-services .service-section h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.scip-notification-modal-services .service-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.scip-notification-modal-services .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.scip-notification-modal-services .service-item {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.scip-notification-modal-services .process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.scip-notification-modal-services .process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.scip-notification-modal-services .step-number {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.scip-notification-modal-services .step-content h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.scip-notification-modal-footer {
    padding: 20px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.scip-notification-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.scip-notification-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.scip-notification-modal-consult i {
    font-size: 18px;
}

/* SCIP模态框响应式设计 */
@media (max-width: 768px) {
    .scip-notification-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .scip-notification-modal-header {
        padding: 25px 25px 15px;
    }
    
    .scip-notification-modal-title {
        gap: 15px;
    }
    
    .scip-notification-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .scip-notification-modal-icon i {
        font-size: 24px;
    }
    
    .scip-notification-modal-title-text h2 {
        font-size: 24px;
    }
    
    .scip-notification-modal-title-text p {
        font-size: 14px;
    }
    
    .scip-notification-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .scip-notification-modal-close i {
        font-size: 16px;
    }
    
    .scip-notification-modal-body {
        padding: 25px 25px;
    }
    
    .scip-notification-modal-about h3,
    .scip-notification-modal-services h3 {
        font-size: 20px;
    }
    
    .scip-notification-modal-about p {
        font-size: 15px;
    }
    
    .scip-notification-modal-services .service-section {
        padding: 15px;
    }
    
    .scip-notification-modal-services .service-section h4 {
        font-size: 16px;
    }
    
    .scip-notification-modal-services .service-section p {
        font-size: 14px;
    }
    
    .scip-notification-modal-services .service-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .scip-notification-modal-services .service-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .scip-notification-modal-services .process-step {
        padding: 12px;
    }
    
    .scip-notification-modal-services .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .scip-notification-modal-services .step-content h5 {
        font-size: 14px;
    }
    
    .scip-notification-modal-footer {
        padding: 15px 25px 25px;
    }
    
    .scip-notification-modal-consult {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .scip-notification-modal-content {
        width: 98%;
        border-radius: 12px;
    }
    
    .scip-notification-modal-header {
        padding: 20px 20px 12px;
    }
    
    .scip-notification-modal-title {
        gap: 12px;
    }
    
    .scip-notification-modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .scip-notification-modal-icon i {
        font-size: 20px;
    }
    
    .scip-notification-modal-title-text h2 {
        font-size: 20px;
    }
    
    .scip-notification-modal-title-text p {
        font-size: 13px;
    }
    
    .scip-notification-modal-close {
        width: 35px;
        height: 35px;
    }
    
    .scip-notification-modal-close i {
        font-size: 14px;
    }
    
    .scip-notification-modal-body {
        padding: 20px 20px;
    }
    
    .scip-notification-modal-about h3,
    .scip-notification-modal-services h3 {
        font-size: 18px;
    }
    
    .scip-notification-modal-about p {
        font-size: 14px;
    }
    
    .scip-notification-modal-services .service-section {
        padding: 12px;
    }
    
    .scip-notification-modal-services .service-section h4 {
        font-size: 15px;
    }
    
    .scip-notification-modal-services .service-section p {
        font-size: 13px;
    }
    
    .scip-notification-modal-services .service-item {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .scip-notification-modal-services .process-step {
        padding: 10px;
        gap: 10px;
    }
    
    .scip-notification-modal-services .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .scip-notification-modal-services .step-content h5 {
        font-size: 13px;
    }
    
    .scip-notification-modal-footer {
        padding: 12px 20px 20px;
    }
    
    .scip-notification-modal-consult {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* SVHC检测模态框样式 */
.svhc-detection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.svhc-detection-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.svhc-detection-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: svhcModalSlideIn 0.4s ease-out;
}

@keyframes svhcModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.svhc-detection-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.svhc-detection-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.svhc-detection-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.svhc-detection-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.svhc-detection-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.svhc-detection-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.svhc-detection-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.svhc-detection-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.svhc-detection-modal-close i {
    color: #fff;
    font-size: 18px;
}

.svhc-detection-modal-body {
    padding: 30px 40px;
}

.svhc-detection-modal-about {
    margin-bottom: 35px;
}

.svhc-detection-modal-about h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.svhc-detection-modal-about p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: justify;
}

.svhc-detection-modal-services h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.svhc-detection-modal-services .service-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.svhc-detection-modal-services .service-section h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.svhc-detection-modal-services .service-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.svhc-detection-modal-services .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.svhc-detection-modal-services .service-item {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.svhc-detection-modal-services .process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.svhc-detection-modal-services .process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.svhc-detection-modal-services .step-number {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.svhc-detection-modal-services .step-content h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.svhc-detection-modal-footer {
    padding: 20px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.svhc-detection-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.svhc-detection-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.svhc-detection-modal-consult i {
    font-size: 18px;
}

/* SVHC检测模态框响应式设计 */
@media (max-width: 768px) {
    .svhc-detection-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .svhc-detection-modal-header {
        padding: 25px 25px 15px;
    }
    
    .svhc-detection-modal-title {
        gap: 15px;
    }
    
    .svhc-detection-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .svhc-detection-modal-icon i {
        font-size: 24px;
    }
    
    .svhc-detection-modal-title-text h2 {
        font-size: 24px;
    }
    
    .svhc-detection-modal-title-text p {
        font-size: 14px;
    }
    
    .svhc-detection-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .svhc-detection-modal-close i {
        font-size: 16px;
    }
    
    .svhc-detection-modal-body {
        padding: 25px 25px;
    }
    
    .svhc-detection-modal-about h3,
    .svhc-detection-modal-services h3 {
        font-size: 20px;
    }
    
    .svhc-detection-modal-about p {
        font-size: 15px;
    }
    
    .svhc-detection-modal-services .service-section {
        padding: 15px;
    }
    
    .svhc-detection-modal-services .service-section h4 {
        font-size: 16px;
    }
    
    .svhc-detection-modal-services .service-section p {
        font-size: 14px;
    }
    
    .svhc-detection-modal-services .service-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .svhc-detection-modal-services .service-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .svhc-detection-modal-services .process-step {
        padding: 12px;
    }
    
    .svhc-detection-modal-services .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .svhc-detection-modal-services .step-content h5 {
        font-size: 14px;
    }
    
    .svhc-detection-modal-footer {
        padding: 15px 25px 25px;
    }
    
    .svhc-detection-modal-consult {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .svhc-detection-modal-content {
        width: 98%;
        border-radius: 12px;
    }
    
    .svhc-detection-modal-header {
        padding: 20px 20px 12px;
    }
    
    .svhc-detection-modal-title {
        gap: 12px;
    }
    
    .svhc-detection-modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .svhc-detection-modal-icon i {
        font-size: 20px;
    }
    
    .svhc-detection-modal-title-text h2 {
        font-size: 20px;
    }
    
    .svhc-detection-modal-title-text p {
        font-size: 13px;
    }
    
    .svhc-detection-modal-close {
        width: 35px;
        height: 35px;
    }
    
    .svhc-detection-modal-close i {
        font-size: 14px;
    }
    
    .svhc-detection-modal-body {
        padding: 20px 20px;
    }
    
    .svhc-detection-modal-about h3,
    .svhc-detection-modal-services h3 {
        font-size: 18px;
    }
    
    .svhc-detection-modal-about p {
        font-size: 14px;
    }
    
    .svhc-detection-modal-services .service-section {
        padding: 12px;
    }
    
    .svhc-detection-modal-services .service-section h4 {
        font-size: 15px;
    }
    
    .svhc-detection-modal-services .service-section p {
        font-size: 13px;
    }
    
    .svhc-detection-modal-services .service-item {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .svhc-detection-modal-services .process-step {
        padding: 10px;
        gap: 10px;
    }
    
    .svhc-detection-modal-services .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .svhc-detection-modal-services .step-content h5 {
        font-size: 13px;
    }
    
    .svhc-detection-modal-footer {
        padding: 12px 20px 20px;
    }
    
    .svhc-detection-modal-consult {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* 全球化学品GHS/MSDS模态框样式 */
.global-ghs-msds-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.global-ghs-msds-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.global-ghs-msds-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: globalGhsModalSlideIn 0.4s ease-out;
}

@keyframes globalGhsModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.global-ghs-msds-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.global-ghs-msds-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.global-ghs-msds-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.global-ghs-msds-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.global-ghs-msds-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.global-ghs-msds-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.global-ghs-msds-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.global-ghs-msds-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.global-ghs-msds-modal-close i {
    color: #fff;
    font-size: 18px;
}

.global-ghs-msds-modal-body {
    padding: 30px 40px;
}

.global-ghs-msds-modal-about {
    margin-bottom: 35px;
}

.global-ghs-msds-modal-about h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.global-ghs-msds-modal-about p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: justify;
}

.global-ghs-msds-modal-services h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.global-ghs-msds-modal-services .service-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.global-ghs-msds-modal-services .service-section h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.global-ghs-msds-modal-services .service-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.global-ghs-msds-modal-services .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.global-ghs-msds-modal-services .service-item {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.global-ghs-msds-modal-footer {
    padding: 20px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.global-ghs-msds-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.global-ghs-msds-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.global-ghs-msds-modal-consult i {
    font-size: 18px;
}

/* 化学品运输鉴定模态框样式 */
.chemical-transport-identification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.chemical-transport-identification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.chemical-transport-identification-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: transportModalSlideIn 0.4s ease-out;
}

@keyframes transportModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chemical-transport-identification-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chemical-transport-identification-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.chemical-transport-identification-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.chemical-transport-identification-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.chemical-transport-identification-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chemical-transport-identification-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.chemical-transport-identification-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chemical-transport-identification-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.chemical-transport-identification-modal-close i {
    color: #fff;
    font-size: 18px;
}

.chemical-transport-identification-modal-body {
    padding: 30px 40px;
}

.chemical-transport-identification-modal-about {
    margin-bottom: 35px;
}

.chemical-transport-identification-modal-about h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chemical-transport-identification-modal-about p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: justify;
}

.chemical-transport-identification-modal-services h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chemical-transport-identification-modal-services .service-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chemical-transport-identification-modal-services .service-section h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.chemical-transport-identification-modal-services .service-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.chemical-transport-identification-modal-services .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.chemical-transport-identification-modal-services .service-item {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.chemical-transport-identification-modal-footer {
    padding: 20px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.chemical-transport-identification-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chemical-transport-identification-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.chemical-transport-identification-modal-consult i {
    font-size: 18px;
}

/* 化学品物理危险性分类鉴定模态框样式 */
.physical-hazard-classification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.physical-hazard-classification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.physical-hazard-classification-modal-content {
    position: relative;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: physicalHazardModalSlideIn 0.4s ease-out;
}

@keyframes physicalHazardModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.physical-hazard-classification-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.physical-hazard-classification-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.physical-hazard-classification-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.physical-hazard-classification-modal-icon i {
    font-size: 28px;
    color: #fff;
}

.physical-hazard-classification-modal-title-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.physical-hazard-classification-modal-title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.physical-hazard-classification-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.physical-hazard-classification-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.physical-hazard-classification-modal-close i {
    color: #fff;
    font-size: 18px;
}

.physical-hazard-classification-modal-body {
    padding: 30px 40px;
}

.physical-hazard-classification-modal-about {
    margin-bottom: 35px;
}

.physical-hazard-classification-modal-about h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.physical-hazard-classification-modal-about p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px 0;
    text-align: justify;
}

.physical-hazard-classification-modal-services h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.physical-hazard-classification-modal-services .service-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.physical-hazard-classification-modal-services .service-section h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.physical-hazard-classification-modal-services .service-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.physical-hazard-classification-modal-services .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.physical-hazard-classification-modal-services .service-item {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.physical-hazard-classification-modal-footer {
    padding: 20px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.physical-hazard-classification-modal-consult {
    background: linear-gradient(135deg, #3498db 0%, #1e88e5 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.physical-hazard-classification-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.physical-hazard-classification-modal-consult i {
    font-size: 18px;
}

/* 化学品分类及运输鉴定模态框响应式设计 */
@media (max-width: 768px) {
    .global-ghs-msds-modal-content,
    .chemical-transport-identification-modal-content,
    .physical-hazard-classification-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .global-ghs-msds-modal-header,
    .chemical-transport-identification-modal-header,
    .physical-hazard-classification-modal-header {
        padding: 25px 25px 15px;
    }
    
    .global-ghs-msds-modal-title,
    .chemical-transport-identification-modal-title,
    .physical-hazard-classification-modal-title {
        gap: 15px;
    }
    
    .global-ghs-msds-modal-icon,
    .chemical-transport-identification-modal-icon,
    .physical-hazard-classification-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .global-ghs-msds-modal-icon i,
    .chemical-transport-identification-modal-icon i,
    .physical-hazard-classification-modal-icon i {
        font-size: 24px;
    }
    
    .global-ghs-msds-modal-title-text h2,
    .chemical-transport-identification-modal-title-text h2,
    .physical-hazard-classification-modal-title-text h2 {
        font-size: 24px;
    }
    
    .global-ghs-msds-modal-title-text p,
    .chemical-transport-identification-modal-title-text p,
    .physical-hazard-classification-modal-title-text p {
        font-size: 14px;
    }
    
    .global-ghs-msds-modal-close,
    .chemical-transport-identification-modal-close,
    .physical-hazard-classification-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .global-ghs-msds-modal-close i,
    .chemical-transport-identification-modal-close i,
    .physical-hazard-classification-modal-close i {
        font-size: 16px;
    }
    
    .global-ghs-msds-modal-body,
    .chemical-transport-identification-modal-body,
    .physical-hazard-classification-modal-body {
        padding: 25px 25px;
    }
    
    .global-ghs-msds-modal-about h3,
    .global-ghs-msds-modal-services h3,
    .chemical-transport-identification-modal-about h3,
    .chemical-transport-identification-modal-services h3,
    .physical-hazard-classification-modal-about h3,
    .physical-hazard-classification-modal-services h3 {
        font-size: 20px;
    }
    
    .global-ghs-msds-modal-about p,
    .chemical-transport-identification-modal-about p,
    .physical-hazard-classification-modal-about p {
        font-size: 15px;
    }
    
    .global-ghs-msds-modal-services .service-section,
    .chemical-transport-identification-modal-services .service-section,
    .physical-hazard-classification-modal-services .service-section {
        padding: 15px;
    }
    
    .global-ghs-msds-modal-services .service-section h4,
    .chemical-transport-identification-modal-services .service-section h4,
    .physical-hazard-classification-modal-services .service-section h4 {
        font-size: 16px;
    }
    
    .global-ghs-msds-modal-services .service-section p,
    .chemical-transport-identification-modal-services .service-section p,
    .physical-hazard-classification-modal-services .service-section p {
        font-size: 14px;
    }
    
    .global-ghs-msds-modal-services .service-items,
    .chemical-transport-identification-modal-services .service-items,
    .physical-hazard-classification-modal-services .service-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .global-ghs-msds-modal-services .service-item,
    .chemical-transport-identification-modal-services .service-item,
    .physical-hazard-classification-modal-services .service-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .global-ghs-msds-modal-footer,
    .chemical-transport-identification-modal-footer,
    .physical-hazard-classification-modal-footer {
        padding: 15px 25px 25px;
    }
    
    .global-ghs-msds-modal-consult,
    .chemical-transport-identification-modal-consult,
    .physical-hazard-classification-modal-consult {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .global-ghs-msds-modal-content,
    .chemical-transport-identification-modal-content,
    .physical-hazard-classification-modal-content {
        width: 98%;
        border-radius: 12px;
    }
    
    .global-ghs-msds-modal-header,
    .chemical-transport-identification-modal-header,
    .physical-hazard-classification-modal-header {
        padding: 20px 20px 12px;
    }
    
    .global-ghs-msds-modal-title,
    .chemical-transport-identification-modal-title,
    .physical-hazard-classification-modal-title {
        gap: 12px;
    }
    
    .global-ghs-msds-modal-icon,
    .chemical-transport-identification-modal-icon,
    .physical-hazard-classification-modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .global-ghs-msds-modal-icon i,
    .chemical-transport-identification-modal-icon i,
    .physical-hazard-classification-modal-icon i {
        font-size: 20px;
    }
    
    .global-ghs-msds-modal-title-text h2,
    .chemical-transport-identification-modal-title-text h2,
    .physical-hazard-classification-modal-title-text h2 {
        font-size: 20px;
    }
    
    .global-ghs-msds-modal-title-text p,
    .chemical-transport-identification-modal-title-text p,
    .physical-hazard-classification-modal-title-text p {
        font-size: 13px;
    }
    
    .global-ghs-msds-modal-close,
    .chemical-transport-identification-modal-close,
    .physical-hazard-classification-modal-close {
        width: 35px;
        height: 35px;
    }
    
    .global-ghs-msds-modal-close i,
    .chemical-transport-identification-modal-close i,
    .physical-hazard-classification-modal-close i {
        font-size: 14px;
    }
    
    .global-ghs-msds-modal-body,
    .chemical-transport-identification-modal-body,
    .physical-hazard-classification-modal-body {
        padding: 20px 20px;
    }
    
    .global-ghs-msds-modal-about h3,
    .global-ghs-msds-modal-services h3,
    .chemical-transport-identification-modal-about h3,
    .chemical-transport-identification-modal-services h3,
    .physical-hazard-classification-modal-about h3,
    .physical-hazard-classification-modal-services h3 {
        font-size: 18px;
    }
    
    .global-ghs-msds-modal-about p,
    .chemical-transport-identification-modal-about p,
    .physical-hazard-classification-modal-about p {
        font-size: 14px;
    }
    
    .global-ghs-msds-modal-services .service-section,
    .chemical-transport-identification-modal-services .service-section,
    .physical-hazard-classification-modal-services .service-section {
        padding: 12px;
    }
    
    .global-ghs-msds-modal-services .service-section h4,
    .chemical-transport-identification-modal-services .service-section h4,
    .physical-hazard-classification-modal-services .service-section h4 {
        font-size: 15px;
    }
    
    .global-ghs-msds-modal-services .service-section p,
    .chemical-transport-identification-modal-services .service-section p,
    .physical-hazard-classification-modal-services .service-section p {
        font-size: 13px;
    }
    
    .global-ghs-msds-modal-services .service-item,
    .chemical-transport-identification-modal-services .service-item,
    .physical-hazard-classification-modal-services .service-item {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .global-ghs-msds-modal-footer,
    .chemical-transport-identification-modal-footer,
    .physical-hazard-classification-modal-footer {
        padding: 12px 20px 20px;
    }
    
    .global-ghs-msds-modal-consult,
    .chemical-transport-identification-modal-consult,
    .physical-hazard-classification-modal-consult {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* 生物基材料REACH注册模态框样式 */
.bio-based-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.bio-based-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.bio-based-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 90%;
    animation: bio-based-modal-slide-in 0.3s ease-out;
}

@keyframes bio-based-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bio-based-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.bio-based-modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.bio-based-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bio-based-modal-icon i {
    font-size: 28px;
    color: white;
}

.bio-based-modal-title-text {
    flex: 1;
}

.bio-based-modal-title-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: white;
    line-height: 1.3;
}

.bio-based-modal-close {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bio-based-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.bio-based-modal-close i {
    font-size: 20px;
    color: white;
}

.bio-based-modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

.bio-based-modal-article {
    line-height: 1.8;
    color: #333;
}

.bio-based-modal-article .article-intro {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.bio-based-modal-article h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.bio-based-modal-article p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.bio-based-modal-footer {
    padding: 20px 40px 30px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
    background: #f8f9fa;
}

.bio-based-modal-consult {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.bio-based-modal-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.bio-based-modal-consult i {
    font-size: 18px;
}

/* 生物基材料模态框响应式设计 */
@media (max-width: 768px) {
    .bio-based-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .bio-based-modal-header {
        padding: 25px 25px 15px;
    }
    
    .bio-based-modal-title {
        gap: 15px;
    }
    
    .bio-based-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .bio-based-modal-icon i {
        font-size: 24px;
    }
    
    .bio-based-modal-title-text h2 {
        font-size: 20px;
    }
    
    .bio-based-modal-close {
        width: 40px;
        height: 40px;
    }
    
    .bio-based-modal-close i {
        font-size: 16px;
    }
    
    .bio-based-modal-body {
        padding: 25px 25px;
    }
    
    .bio-based-modal-article .article-intro {
        font-size: 16px;
        padding: 15px;
    }
    
    .bio-based-modal-article h3 {
        font-size: 20px;
    }
    
    .bio-based-modal-article p {
        font-size: 15px;
    }
    
    .bio-based-modal-footer {
        padding: 15px 25px 25px;
    }
    
    .bio-based-modal-consult {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .bio-based-modal-content {
        width: 98%;
        border-radius: 12px;
    }
    
    .bio-based-modal-header {
        padding: 20px 20px 12px;
    }
    
    .bio-based-modal-title {
        gap: 12px;
    }
    
    .bio-based-modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .bio-based-modal-icon i {
        font-size: 20px;
    }
    
    .bio-based-modal-title-text h2 {
        font-size: 18px;
    }
    
    .bio-based-modal-close {
        width: 35px;
        height: 35px;
    }
    
    .bio-based-modal-close i {
        font-size: 14px;
    }
    
    .bio-based-modal-body {
        padding: 20px 20px;
    }
    
    .bio-based-modal-article .article-intro {
        font-size: 15px;
        padding: 12px;
    }
    
    .bio-based-modal-article h3 {
        font-size: 18px;
    }
    
    .bio-based-modal-article p {
        font-size: 14px;
    }
    
    .bio-based-modal-footer {
        padding: 12px 20px 20px;
    }
    
    .bio-based-modal-consult {
        padding: 10px 25px;
        font-size: 14px;
    }
}
