        * {
            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;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: #1a5fb4;
            color: white;
            padding: 20px 0;
            text-align: center;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        header h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        nav {
            background-color: #2d7fd6;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 15px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 3px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: #1a5fb4;
        }
        
        section {
            background-color: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        h2 {
            color: #1a5fb4;
            border-left: 5px solid #1a5fb4;
            padding-left: 10px;
            margin-bottom: 15px;
        }
        
        h3 {
            color: #2d7fd6;
            margin: 15px 0 10px;
        }
        
        p {
            margin-bottom: 10px;
        }
        
        .intro {
            text-indent: 2em;
        }
        
        .publish-methods {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .method {
            width: 48%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .method h3 {
            color: #1a5fb4;
        }
        
        .fields-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 15px;
        }
        
        .field-item {
            padding: 10px;
            background-color: #f0f7ff;
            border-radius: 5px;
            border-left: 3px solid #2d7fd6;
        }
        
        .journals-list {
            margin-top: 15px;
        }
        
        .journal-item {
            padding: 10px;
            border-bottom: 1px dashed #ddd;
        }
        
        .journal-item:last-child {
            border-bottom: none;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #2d7fd6;
            z-index: 1;
        }
        
        .step {
            width: 18%;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: #2d7fd6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 10px;
        }
        
        .time-info {
            padding: 15px;
            background-color: #f0f7ff;
            border-radius: 5px;
            margin-top: 15px;
        }
        
        .consult-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #1a5fb4;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            text-align: center;
        }
        
        .links {
            display: flex;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        
        .links a {
            margin-right: 15px;
            margin-bottom: 10px;
            color: #1a5fb4;
            text-decoration: none;
        }
        
        .links a:hover {
            text-decoration: underline;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        
        .faq-question {
            font-weight: bold;
            color: #1a5fb4;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            margin-top: 10px;
            display: none;
            padding-left: 15px;
            border-left: 2px solid #2d7fd6;
        }
        
        .experts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .expert-card {
            text-align: center;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        
        .expert-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .expert-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: #666;
        }
        
        .vp-encyclopedia {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 15px;
        }
        
        .vp-item {
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 5px;
            border-left: 3px solid #1a5fb4;
        }
        
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            border-radius: 5px;
            margin-top: 20px;
        }
        
        @media (max-width: 1200px) {
            .container {
                width: 100%;
                padding: 10px;
            }
            
            .fields-grid, .experts-grid, .vp-encyclopedia {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .publish-methods, .process-steps {
                flex-direction: column;
            }
            
            .method, .step {
                width: 100%;
                margin-bottom: 15px;
            }
            
            .fields-grid, .experts-grid, .vp-encyclopedia {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 5px 0;
            }
        }
/* CSS Document */

