/* CSS Document */

    /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, #1a3a8f 0%, #2c5aa0 100%);
            color: white;
            padding: 40px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .logo p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 主要内容区样式 */
        section {
            background-color: white;
            margin: 30px 0;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }
        
        h2 {
            color: #1a3a8f;
            border-left: 5px solid #1a3a8f;
            padding-left: 15px;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        h3 {
            color: #2c5aa0;
            margin: 15px 0 10px;
            font-size: 20px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        /* 发表方式样式 */
        .publish-methods {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        
        .method {
            flex: 1;
            padding: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .method:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .method h3 {
            color: #1a3a8f;
        }
        
        /* 期刊领域样式 */
        .fields-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .field {
            padding: 15px;
            background-color: #f9fafc;
            border-left: 3px solid #2c5aa0;
            border-radius: 4px;
        }
        
        /* 期刊名录样式 */
        .journal-list {
            margin-top: 20px;
        }
        
        .journal-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .journal-item:last-child {
            border-bottom: none;
        }
        
        /* 发表流程样式 */
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: #1a3a8f;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 15px;
        }
        
        .step p {
            font-size: 14px;
            padding: 0 10px;
        }
        
        /* 见刊时间样式 */
        .timeline {
            margin-top: 20px;
        }
        
        .time-item {
            display: flex;
            margin-bottom: 15px;
            align-items: center;
        }
        
        .time-period {
            background-color: #1a3a8f;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin-right: 15px;
            min-width: 120px;
            text-align: center;
        }
        
        /* 咨询按钮样式 */
        .consult-btn {
            display: inline-block;
            background-color: #1a3a8f;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            margin-top: 10px;
        }
        
        .consult-btn:hover {
            background-color: #2c5aa0;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* 相关链接样式 */
        .links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .links a {
            color: #2c5aa0;
            text-decoration: none;
            padding: 8px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .links a:hover {
            background-color: #f0f5ff;
            border-color: #2c5aa0;
        }
        
        /* 常见问题样式 */
        .faq-list {
            margin-top: 20px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: #f9fafc;
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }
        
        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 15px;
            max-height: 500px;
        }
        
        /* 专家团队样式 */
        .experts {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .expert {
            text-align: center;
            padding: 20px;
            background-color: #f9fafc;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .expert:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .expert-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #e0e0e0;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #666;
        }
        
        /* 南核百科样式 */
        .encyclopedia {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .encyclopedia-item {
            padding: 15px;
            background-color: #f9fafc;
            border-radius: 5px;
            border-left: 3px solid #2c5aa0;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #1a3a8f;
            color: white;
            padding: 30px 0;
            text-align: center;
            margin-top: 50px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 10px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 8px;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .publish-methods {
                flex-direction: column;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                margin-bottom: 30px;
            }
        }