/* CSS Document */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 1200px;
            max-width: 90%;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(135deg, #1a6aa2 0%, #0d4d80 100%);
            color: white;
            padding: 30px 0;
            text-align: center;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        nav {
            background-color: #fff;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        nav ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
            padding: 15px;
        }
        
        nav li {
            margin: 0 15px;
        }
        
        nav a {
            text-decoration: none;
            color: #1a6aa2;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        nav a:hover {
            background-color: #e6f2ff;
        }
        
        section {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        h2 {
            color: #1a6aa2;
            border-left: 5px solid #1a6aa2;
            padding-left: 15px;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        h3 {
            color: #0d4d80;
            margin: 20px 0 10px;
        }
        
        .intro {
            text-align: justify;
            font-size: 1.1rem;
        }
        
        .publish-methods {
            display: flex;
            gap: 30px;
            margin-top: 20px;
        }
        
        .method {
            flex: 1;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }
        
        .method h3 {
            color: #1a6aa2;
            display: flex;
            align-items: center;
        }
        
        .method h3::before {
            content: "?";
            margin-right: 10px;
            color: #1a6aa2;
            font-size: 1.5rem;
        }
        
        .fields-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .field {
            background-color: #f0f7ff;
            padding: 15px;
            border-radius: 6px;
            border-left: 4px solid #1a6aa2;
        }
        
        .journals-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .journal {
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 6px;
            border: 1px solid #e0e0e0;
        }
        
        .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: #1a6aa2;
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: #1a6aa2;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 15px;
        }
        
        .time-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .time-table th, .time-table td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }
        
        .time-table th {
            background-color: #f0f7ff;
            color: #1a6aa2;
        }
        
        .time-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .consultation-form {
            background-color: #f0f7ff;
            padding: 25px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #0d4d80;
        }
        
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .btn {
            background-color: #1a6aa2;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #0d4d80;
        }
        
        .links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .links a {
            color: #1a6aa2;
            text-decoration: none;
            padding: 8px 15px;
            background-color: #f0f7ff;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .links a:hover {
            background-color: #e6f2ff;
            text-decoration: underline;
        }
        
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-weight: bold;
            color: #0d4d80;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .faq-question::before {
            content: "Q: ";
            margin-right: 10px;
            color: #1a6aa2;
        }
        
        .faq-answer {
            color: #555;
            padding-left: 30px;
        }
        
        .faq-answer::before {
            content: "A: ";
            margin-right: 10px;
            color: #1a6aa2;
            font-weight: bold;
        }
        
        .experts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        
        .expert {
            text-align: center;
            padding: 20px 15px;
            background-color: #f9f9f9;
            border-radius: 8px;
            transition: transform 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;
            color: #888;
            font-size: 2.5rem;
        }
        
        .expert-name {
            font-weight: bold;
            margin-bottom: 5px;
            color: #1a6aa2;
        }
        
        .expert-title {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .wiki-list {
            columns: 2;
            column-gap: 30px;
            margin-top: 20px;
        }
        
        .wiki-item {
            margin-bottom: 15px;
            break-inside: avoid;
            padding-left: 20px;
            position: relative;
        }
        
        .wiki-item::before {
            content: "?";
            color: #1a6aa2;
            position: absolute;
            left: 0;
        }
        
        footer {
            text-align: center;
            padding: 30px 0;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #e0e0e0;
            margin-top: 50px;
        }
        
        @media (max-width: 992px) {
            .fields-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .journals-list {
                grid-template-columns: 1fr;
            }
            
            .experts-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .publish-methods {
                flex-direction: column;
            }
            
            .fields-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 30px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .experts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .wiki-list {
                columns: 1;
            }
        }
        
        @media (max-width: 576px) {
            .experts-grid {
                grid-template-columns: 1fr;
            }
        }
