   * {
            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 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(135deg, #1a5fb4 0%, #2d7bc4 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            border-radius: 0 0 10px 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        section {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        h2 {
            color: #1a5fb4;
            border-left: 5px solid #1a5fb4;
            padding-left: 15px;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        h3 {
            color: #2d7bc4;
            margin: 15px 0 10px;
            font-size: 1.4rem;
        }
        
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .intro-box {
            background: #e8f4ff;
            border-left: 4px solid #1a5fb4;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .publish-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .method {
            flex: 1;
            min-width: 300px;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }
        
        .method h3 {
            display: flex;
            align-items: center;
        }
        
        .method h3:before {
          
            color: #1a5fb4;
            font-size: 2rem;
            margin-right: 10px;
        }
        
        .fields-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .field {
            background: #f0f7ff;
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid #2d7bc4;
        }
        
        .journals-list {
            margin-top: 20px;
        }
        
        .journal {
            padding: 15px;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .journal:last-child {
            border-bottom: none;
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .step {
            width: 18%;
            min-width: 150px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: #1a5fb4;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
        }
        
        .time-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            padding: 15px;
            background: #f0f7ff;
            border-radius: 8px;
        }
        
        .time-info span {
            font-weight: bold;
            color: #1a5fb4;
            margin: 0 5px;
        }
        
        .consult-btn {
            display: block;
            width: 200px;
            margin: 30px auto;
            padding: 12px 20px;
            background: #1a5fb4;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
        }
        
        .consult-btn:hover {
            background: #2d7bc4;
            transform: translateY(-2px);
            box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
        }
        
        .links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .link {
            padding: 8px 15px;
            background: #f0f7ff;
            border-radius: 20px;
            color: #1a5fb4;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .link:hover {
            background: #1a5fb4;
            color: white;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 15px;
        }
        
        .faq-question {
            font-weight: bold;
            color: #1a5fb4;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .faq-question:before {
            content: "Q:";
            margin-right: 10px;
            background: #1a5fb4;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        
        .faq-answer {
            margin-top: 10px;
            padding-left: 35px;
            color: #555;
        }
        
        .experts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .expert {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .expert: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: #e0e0e0;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #1a5fb4;
        }
        
        .expert-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .expert-title {
            color: #1a5fb4;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .encyclopedia-list {
            margin-top: 20px;
            column-count: 2;
            column-gap: 30px;
        }
        
        .encyclopedia-item {
            margin-bottom: 15px;
            break-inside: avoid;
            padding-left: 20px;
            position: relative;
        }
        
        .encyclopedia-item:before {
            content: "?";
            color: #1a5fb4;
            position: absolute;
            left: 0;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            color: #666;
            border-top: 1px solid #e0e0e0;
        }
        
        /* ×ÉÑ¯µ¯´°ÑùÊ½ */
        .consult-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: white;
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }
        
        .modal-title {
            margin-bottom: 20px;
            color: #1a5fb4;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .submit-btn {
            width: 100%;
            padding: 12px;
            background: #1a5fb4;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 10px;
        }
        
        @media (max-width: 768px) {
            .publish-methods, .process-steps {
                flex-direction: column;
            }
            
            .method, .step {
                width: 100%;
            }
            
            .encyclopedia-list {
                column-count: 1;
            }
        }/* CSS Document */

