/* ============================================
   SCI论文润色页面样式 - modification_polish-v2.css
   独立完整版本 - 与首页风格一致
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.polish-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container - 与首页保持一致（1400px） */
.container {
    max-width: 1400px;  /* 从1200px改为1400px */
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Hero Section
   ============================================ */
.polish-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 48% 52%;                 /* 调整比例：文字48%，图片52%（图片往右） */
    gap: 40px;                                      /* 减小间距 */
    align-items: center;
}

/* 左侧内容区域 */
.hero-content {
    color: white;
    padding-right: 20px;                            /* 右侧留白 */
}

/* 右侧图片区域 */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;                                   /* 图片占满容器 */
    height: auto;
    max-height: 520px;                             /* 增大高度（440→520） */
    min-height: 400px;                             /* 最小高度保证 */
    object-fit: cover;
    border-radius: 24px;                           /* 更大圆角 */
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),           /* 主阴影 */
        0 10px 30px rgba(255, 141, 58, 0.2);      /* 橙色光晕 */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover img {
    transform: scale(1.03) translateY(-5px);         /* 悬停微放大上浮 */
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(255, 141, 58, 0.3);
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3rem;                               /* 恢复正常字号 */
    font-weight: 700;                               /* 粗体 */
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff !important;                      /* 纯白色 */
    -webkit-text-fill-color: #ffffff !important;    /* 强制白色 */
    background: none !important;                    /* 移除渐变背景 */
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);        /* 轻微阴影 */
}

/* "润色"二字 - 简洁橙色 */
.hero-title .highlight {
    color: #FF8D3A !important;                       /* 橙色 */
    -webkit-text-fill-color: #FF8D3A !important;    /* 强制橙色 */
    text-shadow: none;                              /* 无发光效果 */
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    opacity: 0.95;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.15);
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;  /* 按钮居中 */
    margin-top: 30px;        /* 增加上边距 */
}

.btn-primary,
.btn-secondary,
.btn-service,
.btn-consult,
.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #FF8D3A;
    color: white;
    box-shadow: 0 4px 16px rgba(255,141,58,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,141,58,0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: #FF8D3A;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
    border: 2px solid #FFB366;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
    color: white;
    padding: 6px 44px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.15) rotate(5deg);
}

.service-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: "✓";
    color: #FF8D3A;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF8D3A;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.price-unit {
    font-size: 1.25rem;
    font-weight: 600;
}

.price-custom {
    font-size: 1.75rem;
}

.price-time {
    font-size: 0.9rem;
    color: #999;
    display: block;
}

.btn-service {
    display: block;           /* 改为块级元素 */
    width: fit-content;      /* 自适应宽度 */
    margin: 20px auto 0;     /* 居中显示 */
    text-align: center;
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
    color: white;
    padding: 14px 40px;      /* 调整内边距 */
    font-size: 1rem;
    border-radius: 50px;     /* 圆角按钮 */
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,141,58,0.4);
}

/* ============================================
   Process Section
   ============================================ */
.process-section {
    padding: 80px 0;
    background: #f9fafb;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255,141,58,0.35);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 6px 20px rgba(255,141,58,0.35); 
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 10px 30px rgba(255,141,58,0.45); 
    }
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon img {
    transform: rotate(5deg) scale(1.1);
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.team-tab-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-tab-item:hover {
    background: white;
    border-color: #FFB366;
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.team-tab-item.active {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
    border-color: #FF8D3A;
    box-shadow: 0 6px 20px rgba(255,141,58,0.2);
}

.tab-avatar {
    flex-shrink: 0;
}

.tab-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-tab-item:hover .tab-avatar img,
.team-tab-item.active .tab-avatar img {
    transform: scale(1.1);
}

.tab-info {
    flex: 1;
}

.editor-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.editor-school {
    font-size: 0.875rem;
    color: #FF8D3A;
    font-weight: 600;
    margin-bottom: 4px;
}

.editor-intro {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.team-details {
    min-height: 300px;
}

.team-detail-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.team-detail-item.active {
    display: block;
}

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

.detail-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.detail-card {
    background: #f9fafb;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid #FF8D3A;
    transition: all 0.3s ease;
}

.detail-card:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.card-label {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.rating-stars {
    display: flex;
    gap: 6px;
}

.star {
    font-size: 1.75rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.detail-card .star {
    color: #FFD700;
    animation: twinkle 2s infinite;
}

.detail-card .star:nth-child(1) { animation-delay: 0s; }
.detail-card .star:nth-child(2) { animation-delay: 0.2s; }
.detail-card .star:nth-child(3) { animation-delay: 0.4s; }
.detail-card .star:nth-child(4) { animation-delay: 0.6s; }
.detail-card .star:nth-child(5) { animation-delay: 0.8s; }

@keyframes twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.consult-btn-wrapper {
    text-align: center;
}

.btn-consult {
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
    color: white;
    padding: 16px 48px;
    font-size: 1rem;
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,141,58,0.4);
}

.more-link {
    display: block !important;                    /* 块级元素 - 占满宽度 */
    width: 100% !important;                       /* 宽度100% */
    text-align: center !important;                /* 文字居中（重要！） */
    margin-top: 48px;
    background: transparent !important;            /* 透明背景 - 去除白色 */
    padding: 0 !important;                         /* 无内边距 */
    border: none !important;                       /* 无边框 */
}

.more-link a {
    display: inline-block !important;              /* 行内块级 - 可居中 */
    color: #ffffff !important;                    /* 白色文字 */
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 14px 45px !important;                /* 内边距（稍大） */
    background: linear-gradient(135deg, #FF8D3A 0%, #FF6B1A 100%) !important;  /* 橙色渐变 */
    border-radius: 50px !important;               /* 胶囊形状 */
    box-shadow: 0 5px 20px rgba(255, 141, 58, 0.4) !important;  /* 阴影 */
    position: relative;
    overflow: hidden;
    border: none !important;                      /* 确保无额外边框 */
}

/* 动态光效效果 */
.more-link a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.more-link a:hover::before {
    width: 300px;
    height: 300px;
}

.more-link a:hover {
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05);     /* 上浮+放大 */
    box-shadow: 0 8px 30px rgba(255, 141, 58, 0.6) !important;  /* 阴影增强 */
}

/* ============================================
   Field Section
   ============================================ */
.field-section {
    padding: 80px 0;
    background: #f9fafb;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.field-item {
    background: white;
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.field-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: transparent;
}

.field-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.field-item:hover img {
    transform: scale(1.2) rotate(5deg);
    filter: grayscale(0%);
}

.field-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.field-item p {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

.more-fields {
    text-align: center;
    margin-top: 40px;
    color: #999;
    font-size: 1rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.1875rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-cta-primary {
    background: white;
    color: #FF8D3A;
    font-size: 1.0625rem;
    padding: 18px 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.0625rem;
    padding: 16px 38px;
}

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image img {
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .team-tabs {
        grid-template-columns: 1fr;
    }
    
    .detail-cards {
        grid-template-columns: 1fr;
    }
    
    .fields-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .polish-hero {
        padding: 60px 0;
    }
    
    .services-section,
    .process-section,
    .team-section,
    .field-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .fields-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .field-item {
        padding: 20px 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 320px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .team-tab-item {
        padding: 16px;
    }
    
    .tab-avatar img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-container,
    .cta-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.625rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .fields-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Footer Fix - 修复底部布局
   ============================================ */
.polish-page + footer,
.polish-page ~ .page-wrapper {
    clear: both;
    position: relative;
    width: 100%;
}

.page-wrapper {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
    margin-top: auto;
}

.page-wrapper .container {
    max-width: 1400px;  /* 与首页一致 */
    margin: 0 auto;
    padding: 0 20px;
}

.page-wrapper .top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.page-wrapper .bottom {
    padding: 30px 0;
    text-align: center;
    border-top: none;
}

.page-wrapper .bottom p {
    font-size: 14px;
    line-height: 1.8;
    color: #95a5a6;
}

/* Footer Links */
.page-wrapper a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-wrapper a:hover {
    color: #FF8D3A;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .page-wrapper {
        padding-top: 40px;
    }

    .page-wrapper .top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-wrapper .bottom {
        padding: 24px 0;
    }
}

/* ============================================
   1. 导航栏彻底修复 - Navigation Complete Fix
   ============================================ */

/* 重置导航容器 */
div.navigation {
    position: relative !important;
    z-index: 9999 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100px !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0.25rem 0.0625rem #fceee2 !important;
    display: block !important;
}

/* 核心导航容器 - 使用Flex强制布局 */
div.navigation > div.nav,
.navigation div.nav {
    width: 100% !important;
    max-width: 1400px !important;  /* 与首页一致 */
    height: auto !important;
    min-height: 100px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    
    /* 关键：使用Flex替代float */
    display: flex !important;
    display: -webkit-flex !important;
    flex-direction: row !important;
    -webkit-flex-direction: row !important;
    align-items: center !important;
    -webkit-align-items: center !important;
    justify-content: space-between !important;
    -webkit-justify-content: space-between !important;
    
    /* 清除float影响 */
    float: none !important;
    clear: both !important;
    overflow: visible !important;
}

/* Logo区域固定 */
div.navigation div.nav > h1,
div.navigation div.nav h1 {
    display: inline-block !important;
    float: none !important;
    flex-shrink: 0 !important;
    order: 1 !important;
    margin: 0 !important;
    padding: 10px 0 !important;
}

div.navigation div.nav h1 a,
div.navigation div.nav h1 > a {
    display: block !important;
}

/* Logo图片样式 */
div.navigation div.nav img.logo,
.navigation .nav .logo,
img.logo[alt*="SCI"] {
    float: none !important;
    display: block !important;
    width: auto !important;
    max-width: 200px !important;
    height: auto !important;
    max-height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 隐藏分隔线（Logo和导航之间的竖线） */
div.navigation div.nav img.line,
.navigation .nav .line {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* 导航菜单容器 - 右侧对齐 */
div.navigation div.nav > ul.nav_list,
.navigation .nav ul.nav_list,
ul.nav_list {
    /* 清除所有float */
    float: none !important;
    clear: none !important;
    
    /* Flex布局 */
    display: flex !important;
    display: -webkit-flex !important;
    flex-direction: row !important;
    -webkit-flex-direction: row !important;
    flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    align-items: center !important;
    -webkit-align-items: center !important;
    justify-content: flex-end !important;
    -webkit-justify-content: flex-end !important;
    
    /* 尺寸控制 */
    width: auto !important;
    max-width: 900px !important;
    height: auto !important;
    min-height: 100px !important;
    margin: 0 !important;
    padding: 0 !important;
    
    /* 顺序 */
    order: 2 !important;
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    
    /* 列表样式重置 */
    list-style: none !important;
}

/* 导航菜单项 */
div.navigation div.nav ul.nav_list > li,
.navigation .nav .nav_list > li,
ul.nav_list > li {
    /* 清除float */
    float: none !important;
    clear: none !important;
    
    /* Flex项 */
    display: flex !important;
    display: -webkit-flex !important;
    align-items: center !important;
    -webkit-align-items: center !important;
    justify-content: center !important;
    
    /* 尺寸 */
    height: auto !important;
    min-height: 100px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    
    /* 定位 */
    position: relative !important;
    box-sizing: border-box !important;
}

/* 导航链接样式 */
div.navigation div.nav ul.nav_list > li > a,
.navigation .nav .nav_list > li > a,
ul.nav_list > li > a {
    /* 布局 */
    display: flex !important;
    display: -webkit-flex !important;
    align-items: center !important;
    -webkit-align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    min-height: 60px !important;
    width: auto !important;
    white-space: nowrap !important;
    
    /* 间距 */
    padding: 12px 16px !important;
    margin: 0 !important;
    
    /* 文字 */
    font-size: 15px !important;
    color: #333 !important;
    text-decoration: none !important;
    border-right: 1px solid #dcdcdc !important;
    
    /* 移除margin-top */
    margin-top: 0 !important;
}

/* 隐藏三角形图标 */
div.navigation div.nav ul.nav_list > li > img,
.navigation .nav .nav_list > li > img[src*="triangle"],
ul.nav_list > li > img[src*="triangle"] {
    display: none !important;
    visibility: hidden !important;
}

/* Header整体重置 */
div.header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* 顶部Banner区域 */
div.header > div[style*="height: 90px"] {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

div.header > div[style*="height: 90px"] > a,
div.header > div[style*="height: 90px"] a > img {
    display: block !important;
    width: 100% !important;
    max-width: 1920px !important;
    height: auto !important;
    margin: 0 auto !important;
}

/* 顶部信息栏 */
div.header > div.top {
    width: 100% !important;
    max-width: 1400px !important;  /* 与首页一致 */
    margin: 0 auto !important;
    padding: 10px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

/* Banner修复 */
.inside_banner {
    width: 100% !important;
    height: 240px !important;
    background-size: cover !important;
    background-position: center top !important;
    overflow: hidden;
}

/* 面包屑导航 */
.inside_menu {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.inside_menu .middle h2 {
    font-size: 14px !important;
    color: #666 !important;
    font-weight: normal !important;
}

.inside_menu .middle h2 a {
    color: #FF8D3A !important;
    text-decoration: none;
}

.inside_menu .middle h2 a:hover {
    text-decoration: underline;
}

/* ============================================
   3. 确保服务流程无数字编号
   ============================================ */
.process-step .step-number {
    display: none !important;
}

/* ============================================
   4. 编辑团队改为横向一排（3条数据）
   ============================================ */
.team-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
}

.team-tab-item {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 20px !important;
    background: #f9fafb !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-tab-item:hover,
.team-tab-item.active {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%) !important;
    border-color: #FF8D3A !important;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255,141,58,0.15);
}

.tab-avatar {
    flex-shrink: 0;
}

.tab-avatar img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tab-info {
    flex: 1;
    min-width: 0;
}

.editor-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 4px !important;
}

.editor-school {
    font-size: 13px !important;
    color: #FF8D3A !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
}

.editor-intro {
    font-size: 12px !important;
    color: #666 !important;
    line-height: 1.4 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 团队详情区域 */
.team-details {
    min-height: 280px;
}

/* ============================================
   5. 学科领域确保2排×5列=10条
   ============================================ */
.fields-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
    max-width: 1100px;
    margin: 0 auto;
}

.field-item {
    background: white;
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.field-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: transparent;
}

.field-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.field-item:hover img {
    transform: scale(1.15) rotate(5deg);
}

.field-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.field-item p {
    font-size: 11px;
    color: #999;
    font-style: italic;
}

/* 隐藏第11个及以后的学科 */
.fields-grid .field-item:nth-child(n+11) {
    display: none !important;
}

/* ============================================
   6. Footer彻底修复
   ============================================ */
footer,
.page-wrapper,
.footer {
    clear: both !important;
    position: relative !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.page-wrapper,
.footer {
    background: #2c3e50 !important;
    color: #ecf0f1 !important;
    padding-top: 60px !important;
}

.page-wrapper .container,
.footer .container {
    max-width: 1400px !important;  /* 与首页一致 */
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.page-wrapper .top,
.footer .top {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    clear: both !important;
}

.page-wrapper .bottom,
.footer .bottom {
    padding: 30px 0 !important;
    text-align: center !important;
    border-top: none !important;
    clear: both !important;
    position: relative !important;
}

.page-wrapper .bottom p,
.footer .bottom p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #95a5a6 !important;
    margin: 0 !important;
}

/* Footer链接 */
.page-wrapper a,
.footer a {
    color: #bdc3c7 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.page-wrapper a:hover,
.footer a:hover {
    color: #FF8D3A !important;
}

/* ============================================
   问题3：缩小服务卡片按钮尺寸 - Smaller Service Buttons
   ============================================ */

.btn-service-small {
    display: block !important;           /* 块级元素 */
    margin: 20px auto 0 !important;     /* 居中显示 */
    padding: 12px 35px !important;      /* 缩小内边距 */
    font-size: 14px !important;          /* 缩小字号 */
    min-width: auto !important;
    width: fit-content !important;       /* 自适应宽度 */
    border-radius: 50px !important;      /* 圆角按钮 */
}

/* ============================================
   问题4：全新炫丽编辑团队展示设计 - Dazzling Team Display
   ============================================ */

/* 团队区域 - 炫丽深色渐变背景 */
.team-section-new {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;  /* 深色星空渐变 */
    padding: 80px 0 !important;
    margin: 60px 0 !important;
    position: relative;
    overflow: hidden;
}

/* 背景装饰效果 */
.team-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,141,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.team-section-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* 标题区域 */
.team-section-new .section-header {
    position: relative;
    z-index: 2;
}

.team-section-new .section-title {
    color: #ffffff !important;                    /* 白色标题 */
    font-size: 36px !important;
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.team-section-new .highlight {
    color: #FF8D3A !important;                     /* 橙色高亮 */
}

.team-section-new .section-subtitle {
    color: rgba(255,255,255,0.85) !important;      /* 半透明白色副标题 */
    font-size: 18px !important;
    text-align: center;
    margin-top: 5px !important;
}

/* 团队容器 - Grid布局（一排4个专家） */
.team-cards-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)) !important;  /* 从340px改为290px以容纳4个 */
    gap: 25px !important;                                                      /* 从30px改为25px */
    margin-top: 50px !important;
    position: relative;
    z-index: 2;
}

/* 单个专家卡片 - 玻璃态设计 */
.team-card-new {
    background: rgba(255, 255, 255, 0.08) !important;   /* 半透明玻璃态 */
    backdrop-filter: blur(10px) !important;               /* 毛玻璃效果 */
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;  /* 玻璃边框 */
    position: relative;
}

/* 卡片光效动画 */
.team-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transition: left 0.6s ease;
}

.team-card-new:hover::before {
    left: 100%;
}

.team-card-new:hover {
    transform: translateY(-10px) scale(1.02) !important;     /* 上浮+放大 */
    box-shadow: 0 16px 48px rgba(255, 141, 58, 0.35) !important;  /* 橙色阴影 */
    border-color: rgba(255, 141, 58, 0.6) !important;             /* 橙色发光边框 */
    background: rgba(255, 255, 255, 0.12) !important;              /* 提高透明度 */
}

/* 卡片头部 - 头像和信息（深色主题） */
.team-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 25px 25px 20px !important;
    background: linear-gradient(135deg, rgba(255,141,58,0.15) 0%, rgba(255,255,255,0.05) 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    position: relative;
    z-index: 1;
}

.editor-avatar {
    flex-shrink: 0 !important;
}

.editor-avatar img {
    width: 80px !important;                           /* 稍大头像 */
    height: 80px !important;
    border-radius: 50% !important;
    border: 3px solid #FF8D3A !important;            /* 橙色边框 */
    object-fit: cover !important;
    box-shadow: 0 4px 15px rgba(255, 141, 58, 0.4) !important;  /* 橙色光晕 */
    transition: all 0.3s ease !important;
}

.team-card-new:hover .editor-avatar img {
    transform: scale(1.08) rotate(5deg) !important;   /* 悬停时放大旋转 */
    box-shadow: 0 6px 20px rgba(255, 141, 58, 0.6) !important;
}

.editor-info {
    flex: 1 !important;
}

.editor-name {
    font-size: 20px !important;                       /* 更大字号 */
    font-weight: bold !important;
    color: #ffffff !important;                        /* 白色名字 */
    margin: 0 0 8px 0 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.editor-school {
    font-size: 14px !important;
    color: #FFB366 !important;                        /* 浅橙色学校名 */
    margin: 0 0 8px 0 !important;
    font-weight: 600 !important;
}

.editor-intro-short {
    font-size: 13px !important;
    color: rgba(255,255,255,0.7) !important;          /* 半透明白色 */
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* 卡片主体 - 详细信息（深色主题） */
.team-card-body {
    padding: 22px 25px !important;
    position: relative;
    z-index: 1;
}

.info-row {
    display: flex !important;
    margin-bottom: 14px !important;
    line-height: 1.7 !important;
}

.info-row:last-child {
    margin-bottom: 0 !important;
}

.info-label {
    font-size: 14px !important;
    font-weight: bold !important;
    color: #FFB366 !important;                          /* 浅橙色标签 */
    min-width: 85px !important;
    flex-shrink: 0 !important;
}

.info-value {
    font-size: 14px !important;
    color: rgba(255,255,255,0.8) !important;            /* 半透明白色内容 */
    flex: 1 !important;
}

/* 星级评分 */
.rating-stars-inline {
    display: inline-flex !important;
    gap: 3px !important;
}

.star-filled {
    color: #FFD700 !important;                           /* 金色星星 */
    font-size: 18px !important;
    text-shadow: 0 2px 4px rgba(255,215,0,0.5);        /* 星星光晕 */
}

/* 卡片底部 - 咨询按钮（深色主题） */
.team-card-footer {
    padding: 18px 25px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    text-align: center !important;
    background: linear-gradient(to top, rgba(255,141,58,0.08) 0%, transparent 100%) !important;
    position: relative;
    z-index: 1;
}

.btn-consult-new {
    display: inline-block !important;
    padding: 12px 40px !important;                       /* 更大内边距 */
    background: linear-gradient(135deg, #FF8D3A 0%, #FF6B1A 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 25px !important;                      /* 更圆角 */
    font-size: 15px !important;                         /* 更大字号 */
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 0 4px 15px rgba(255, 141, 58, 0.4) !important;
    position: relative;
    overflow: hidden;
}

/* 按钮光效 */
.btn-consult-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-consult-new:hover::before {
    width: 200px;
    height: 200px;
}

.btn-consult-new:hover {
    transform: scale(1.08) translateY(-2px) !important;   /* 放大+上浮 */
    box-shadow: 0 8px 25px rgba(255, 141, 58, 0.7) !important;  /* 强烈阴影 */
    background: linear-gradient(135deg, #FF9D5C 0%, #FF8D3A 100%) !important;  /* 亮橙色 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .team-cards-container {
        grid-template-columns: 1fr !important;
    }
    
    .team-card-header {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .info-row {
        flex-direction: column !important;
    }
    
    .info-label {
        min-width: auto !important;
        margin-bottom: 5px !important;
    }
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .team-tabs {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .fields-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .fields-grid .field-item:nth-child(n+9) {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* 导航栏移动端 */
    .navigation .nav {
        flex-direction: column !important;
        height: auto !important;
        padding: 10px 20px !important;
    }

    .navigation .nav .logo {
        margin: 5px 0 !important;
    }

    .navigation .nav .nav_list {
        flex-wrap: wrap !important;
        justify-content: center !important;
        min-height: auto !important;
    }

    .navigation .nav .nav_list > li {
        min-height: auto !important;
    }

    /* 团队移动端 */
    .team-tabs {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .team-tab-item {
        padding: 16px !important;
    }

    /* 领域移动端 */
    .fields-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .field-item {
        padding: 20px 12px !important;
    }

    .field-item img {
        width: 50px !important;
        height: 50px !important;
    }

    /* Footer移动端 */
    .page-wrapper,
    .footer {
        padding-top: 40px !important;
    }

    .page-wrapper .top,
    .footer .top {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .page-wrapper .bottom,
    .footer .bottom {
        padding: 24px 0 !important;
    }
}

/* ============================================
   问题1：登录注册按钮样式修复 - Login/Register Buttons Fix
   ============================================ */

/* 登录注册容器 */
div.header > div.top ul.login,
.header .top ul.login,
ul.login {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* 登录注册按钮项 */
div.header > div.top ul.login > li,
.header .top ul.login > li,
ul.login > li {
    float: none !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 8px 20px !important;
    text-align: center !important;
    border-radius: 4px !important;
}

/* 登录按钮（边框样式） */
ul.login > li.dl,
li.dl[style*="border"] {
    border: 1px solid #e77817 !important;
    width: auto !important;
    min-width: 69px !important;
    background: transparent !important;
}

ul.login > li.dl a,
li.dl a {
    color: #e67410 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 1.5 !important;
}

/* 注册/退出按钮（实心背景） */
ul.login > li.zc,
li.zc[style*="background"] {
    border: 1px solid #e77919 !important;
    width: auto !important;
    min-width: 69px !important;
    background: #e77919 !important;
    margin-left: 15px !important;
}

ul.login > li.zc a,
li.zc a {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 1.5 !important;
}

/* 顶部信息栏整体布局优化 */
div.header > div.top,
.header .top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    min-height: 50px !important;
    padding: 10px 20px !important;
}

/* 电话号码区域 */
div.header > div.top span.phone_number,
.header .top span.phone_number {
    margin-left: 8px !important;
    color: #333 !important;
    font-size: 16px !important;
    font-weight: bold !important;
}

/* 语言切换 */
div.header > div.top span.earth_language,
.header .top span.earth_language {
    margin-left: 15px !important;
}

/* ============================================
   问题2：面包屑导航和移动标题修复 - Breadcrumb Navigation Fix
   ============================================ */

/* 面包屑导航容器 */
div.inside_menu,
.inside_menu {
    width: 100% !important;
    background: #f8f9fa !important;
    border-bottom: 2px solid #e9ecef !important;
    padding: 15px 0 !important;
    margin: 0 !important;
    clear: both !important;
}

/* 中间内容区 */
div.inside_menu > div.middle,
.inside_menu .middle {
    max-width: 1400px !important;  /* 与首页一致 */
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
}

/* 面包屑标题h2 */
div.inside_menu > div.middle > h2,
.inside_menu .middle h2 {
    font-size: 14px !important;
    font-weight: normal !important;
    color: #666666 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
    display: block !important;
    position: relative !important;
}

/* 面包屑链接样式 */
div.inside_menu > div.middle > h2 a,
.inside_menu .middle h2 a {
    color: #FF8D3A !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

div.inside_menu > div.middle > h2 a:hover,
.inside_menu .middle h2 a:hover {
    color: #E5732A !important;
    text-decoration: underline !important;
}

/* 右侧滚动公告框 */
div.right_srollBox,
.right_srollBox {
    float: right !important;
    display: inline-block !important;
    max-width: 400px !important;
    overflow: hidden !important;
    margin-top: 0 !important;
}

div.right_srollBox a,
.right_srollBox a {
    color: #666 !important;
    text-decoration: none !important;
    font-size: 13px !important;
}

div.right_srollBox marquee,
.right_srollBox marquee {
    display: block !important;
}

/* Banner图片修复 */
div.inside_banner,
.inside_banner {
    width: 100% !important;
    height: 240px !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 清除浮动 */
.clearfloat {
    clear: both !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ============================================
   问题3：导航栏当前页面高亮 - Current Page Highlight
   ============================================ */

/* SCI论文润色页面高亮（基于URL或class判断） */

/* ============================================
   问题2：导航栏高亮改为橙色（与首页一致）- Orange Highlight
   ============================================ */

/* SCI论文润色页面 - 首页导航结构的高亮 */
.main-nav .nav-list .nav-item.active,
.main-nav .nav-list .nav-item:has(a[href*="polish"]),
.main-nav .nav-list .nav-item:has(a[href*="modification"]) {
    background-color: #FF8D3A !important;  /* 橙色背景 */
    border-radius: 4px !important;
}

/* 高亮链接文字和下划线 */
.main-nav .nav-list .nav-item.active > a,
.main-nav .nav-list .nav-item:has(a[href*="polish"]) > a,
.main-nav .nav-list .nav-item:has(a[href*="modification"]) > a {
    background-color: #FF8D3A !important;  /* 橙色背景 */
    color: #ffffff !important;             /* 白色文字 */
    font-weight: bold !important;
}

/* 当前页面的下划线效果 */
.main-nav .nav-list .nav-item.active > a:before,
.main-nav .nav-list .nav-item:has(a[href*="polish"]) > a:before,
.main-nav .nav-list .nav-item:has(a[href*="modification"]) > a:before {
    transform: scale(1) !important;
    background: #ffffff !important;        /* 白色下划线 */
    height: 3px !important;
}

/* ============================================
   问题3：编辑团队详情区域修复 - 只显示当前激活的详情
   ============================================ */

/* 默认隐藏所有详情项 */
.team-details .team-detail-item {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* 只显示激活的详情项 */
.team-details .team-detail-item.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
}

/* Tab区域：隐藏第4个及以后的tab */
.team-tabs .team-tab-item:nth-child(n+4) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* 确保前3个tab显示 */
.team-tabs .team-tab-item:nth-child(-n+3) {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* ============================================
   问题5：Footer彻底终极修复 - Footer Ultimate Fix
   ============================================ */

/* 重置所有footer相关元素 */
footer,
.page-wrapper,
.footer,
div.page-wrapper,
div.footer {
    /* 基础重置 */
    box-sizing: border-box !important;

    /* 定位重置 */
    position: relative !important;
    static: static !important;
    float: none !important;
    clear: both !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    /* 尺寸重置 */
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    /* 显示重置 */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    z-index: auto !important;
}

/* Footer主体背景和内边距 */
.page-wrapper,
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: #ecf0f1 !important;
    padding: 60px 0 0 !important;
    margin-top: 40px !important;
}

/* Footer容器 */
.page-wrapper > *,
.footer > * {
    max-width: 1400px !important;  /* 与首页一致 */
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Footer顶部区域 */
.page-wrapper .top,
.footer .top,
.page-wrapper > div[class*="top"],
.footer > div[class*="top"] {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    grid-gap: 40px !important;
    gap: 40px !important;
    padding-bottom: 40px !important;
    margin-bottom: 30px !important;
    border-bottom: 2px solid rgba(255,255,255,0.1) !important;
    background: transparent !important;
    float: none !important;
    clear: both !important;
    overflow: visible !important;
}

/* Footer底部版权区 */
.page-wrapper .bottom,
.footer .bottom,
.page-wrapper > div[class*="bottom"],
.footer > div[class*="bottom"] {
    padding: 30px 20px !important;
    text-align: center !important;
    background: rgba(0,0,0,0.2) !important;
    border-top: none !important;
    margin: 0 !important;
    clear: both !important;
    float: none !important;
}

/* 版权文字 */
.page-wrapper .bottom p,
.footer .bottom p,
.page-wrapper .bottom div,
.footer .bottom div {
    font-size: 13px !important;
    line-height: 2 !important;
    color: #95a5a6 !important;
    margin: 5px 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

/* Footer所有链接 */
.page-wrapper a,
.footer a {
    color: #bdc3c7 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline !important;
}

.page-wrapper a:hover,
.footer a:hover {
    color: #FF8D3A !important;
    text-decoration: underline !important;
}

/* Footer标题 */
.page-wrapper h3,
.footer h3,
.page-wrapper h4,
.footer h4 {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #FF8D3A !important;
    display: block !important;
}

/* Footer列表 */
.page-wrapper ul,
.footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.page-wrapper ul li,
.footer ul li {
    padding: 8px 0 !important;
    border-bottom: 1px dotted rgba(255,255,255,0.1) !important;
}

.page-wrapper ul li:last-child,
.footer ul li:last-child {
    border-bottom: none !important;
}

/* 确保Footer在页面底部 */
html,
body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}

body > *:not(footer):not(.page-wrapper):not(.footer) {
    flex-shrink: 0 !important;
}

footer,
.page-wrapper,
.footer {
    margin-top: auto !important;
    flex-shrink: 0 !important;
}

/* ============================================
   问题4：独立Footer样式 - Independent Footer
   ============================================ */

.polish-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: #ecf0f1 !important;
    padding: 60px 0 30px !important;
    margin-top: 50px !important;
    width: 100% !important;
    position: relative !important;
    clear: both !important;
    float: none !important;
}

/* Footer顶部区域 */
.polish-footer .footer-top {
    max-width: 1400px !important;  /* 与首页一致 */
    margin: 0 auto 40px !important;
    padding: 0 20px !important;
}

/* Footer列布局 - Grid */
.polish-footer .footer-columns {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px !important;
}

/* 单个Footer列 */
.polish-footer .footer-column h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #FF8D3A !important;  /* 橙色下划线 */
}

/* Footer链接列表 */
.polish-footer .footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.polish-footer .footer-column ul li {
    margin: 10px 0 !important;
    border-bottom: none !important;
}

.polish-footer .footer-column ul li a {
    color: #bdc3c7 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.polish-footer .footer-column ul li a:hover {
    color: #FF8D3A !important;  /* 橙色悬停 */
    transform: translateX(5px) !important;
}

/* 联系方式区域 */
.polish-footer .contact-info p {
    margin: 10px 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.polish-footer .contact-info .phone {
    font-size: 22px !important;
    font-weight: bold !important;
    color: #FF8D3A !important;  /* 橙色电话号码 */
    margin: 15px 0 !important;
}

/* Footer微信二维码 */
.polish-footer .footer-wechat {
    margin-top: 15px !important;
}

.polish-footer .footer-wechat img {
    width: 120px !important;
    height: 120px !important;
    border: 3px solid #FF8D3A !important;  /* 橙色边框 */
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.polish-footer .footer-wechat img:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(255, 141, 58, 0.4) !important;
}

/* Footer底部区域 */
.polish-footer .footer-bottom {
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 25px 20px !important;
    margin-top: 40px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.polish-footer .footer-bottom .container {
    max-width: 1400px !important;  /* 与首页一致 */
    margin: 0 auto !important;
    text-align: center !important;
}

/* Footer链接行 */
.polish-footer .footer-links {
    margin-bottom: 20px !important;
    font-size: 13px !important;
}

.polish-footer .footer-links a {
    color: #95a5a6 !important;
    text-decoration: none !important;
    margin: 0 8px !important;
    transition: color 0.3s ease !important;
}

.polish-footer .footer-links a:hover {
    color: #FF8D3A !important;  /* 橙色悬停 */
}

/* 版权信息 */
.polish-footer .copyright {
    margin: 15px 0 !important;
    font-size: 12px !important;
    color: #7f8c8d !important;
    line-height: 1.8 !important;
}

/* 认证标识 */
.polish-footer .certifications {
    margin-top: 15px !important;
}

.polish-footer .certifications span {
    display: inline-block !important;
    margin: 0 10px !important;
    padding: 5px 15px !important;
    background: rgba(255, 141, 58, 0.1) !important;  /* 浅橙色背景 */
    border: 1px solid rgba(255, 141, 58, 0.3) !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    color: #FF8D3A !important;
}

/* ========== Footer 样式（从index-new.css移植，去除.page-wrapper依赖）========== */

.bottom {
    background: #2d3436 !important;
    color: #b2bec3 !important;
    padding: 60px 0 0 !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
}

.bottom .middle {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    height: auto !important;
}

.bottom .bottom01 {
    display: flex !important;
    gap: 50px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
}

.bottom .bottom01_text {
    width: 300px !important;
    flex-shrink: 0 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

.bottom .bottom01_text img {
    height: 80px !important;
    margin-bottom: 20px !important;
}

.bottom .bottom01_text p {
    font-size: 13px !important;
    line-height: 1.8 !important;
    color: #636e72 !important;
}

.bottom .bottom01 > ul {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    flex: 1 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

.bottom .bottom01 > ul li {
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

.bottom .bottom01 > ul li h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    margin-bottom: 15px !important;
    line-height: 1.5 !important;
}

.bottom .bottom01 > ul li a {
    display: block !important;
    font-size: 13px !important;
    color: #b2bec3 !important;
    padding: 5px 0 !important;
    transition: var(--transition) !important;
    line-height: 1.75rem !important;
    height: auto !important;
}

.bottom .bottom01 > ul li a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px !important;
}

.bottom .bottom01 > ul li div {
    margin-top: 15px !important;
}

.bottom .bottom01 > ul li div h3 {
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

.bottom .bottom01 > ul li div a {
    display: inline-block !important;
    margin-right: 10px !important;
}

.bottom .bottom01 > ul li div img {
    width: 32px !important;
    height: 32px !important;
}

.bottom .bottom02 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 25px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

.bottom .bottom02_left {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    flex: 1 !important;
}

.bottom .bottom02_left a {
    font-size: 12px !important;
    color: #636e72 !important;
    transition: var(--transition) !important;
}

.bottom .bottom02_left a:hover {
    color: var(--primary-color) !important;
}

.bottom .bottom02_right {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    background: rgba(255,255,255,0.05) !important;
    padding: 15px 25px !important;
    border-radius: var(--border-radius) !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
}

.bottom .bottom02_right p {
    text-align: right !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

.bottom .bottom02_right img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 8px !important;
    float: none !important;
    margin-right: 0 !important;
}

.bottom .bottom03 {
    padding: 20px 0 !important;
    text-align: center !important;
    position: relative !important;
    top: auto !important;
}

.bottom .bottom03 p {
    font-size: 13px !important;
    color: #636e72 !important;
}

.bottom .bottom03 a {
    color: #636e72 !important;
    transition: var(--transition) !important;
}

.bottom .bottom03 a:hover {
    color: var(--primary-color) !important;
}

.frame_suspended,
.frame_suspended1 {
    z-index: 9999 !important;
}