       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            padding: 30px 0;
            background: linear-gradient(135deg, #1a6fc4, #0d47a1);
            color: white;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        h2 {
            font-size: 1.8rem;
            margin: 25px 0 15px;
            color: #0d47a1;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 8px;
        }
        
        h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: #1565c0;
        }
        
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .card-title {
            font-size: 1.3rem;
            color: #0d47a1;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .card-title i {
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .journal-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .journal-item {
            background: #f8f9fa;
            padding: 12px;
            border-radius: 6px;
            border-left: 4px solid #0d47a1;
        }
        
        .journal-name {
            font-weight: bold;
            color: #0d47a1;
        }
        
        .publish-method {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
        }
        
        .method-card {
            flex: 1;
            min-width: 300px;
            background: #e3f2fd;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #bbdefb;
        }
        
        .faq-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            background: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
        }
        
        .faq-question {
            font-weight: bold;
            color: #0d47a1;
            margin-bottom: 8px;
        }
        
        .expert-team {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .expert-card {
            background: white;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .expert-card:hover {
            transform: translateY(-5px);
        }
        
        .expert-name {
            font-weight: bold;
            margin: 10px 0 5px;
            color: #0d47a1;
        }
        
        .expert-field {
            color: #666;
            font-size: 0.9rem;
        }
        
        .encyclopedia {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .encyclopedia-item {
            margin-bottom: 10px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 6px;
        }
        
        .encyclopedia-term {
            font-weight: bold;
            color: #0d47a1;
        }
        
        .btn-consult {
            display: block;
            width: 200px;
            margin: 30px auto;
            padding: 15px;
            background: #ff5722;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
            transition: all 0.3s;
        }
        
        .btn-consult:hover {
            background: #e64a19;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 87, 34, 0.4);
        }
        
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        .link-item {
            background: #e3f2fd;
            padding: 8px 15px;
            border-radius: 20px;
            color: #0d47a1;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .link-item:hover {
            background: #bbdefb;
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .step {
            width: 18%;
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: #0d47a1;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
        }
        
        .step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 20px;
            right: -45%;
            width: 90%;
            height: 2px;
            background: #0d47a1;
        }
        
        .publish-time {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }
        
        .time-card {
            flex: 1;
            background: #e8f5e9;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #c8e6c9;
        }
        
        .time-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2e7d32;
            margin: 10px 0;
        }
        
        .cloud-platform {
            background: linear-gradient(135deg, #2196F3, #0D47A1);
            color: white;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .cloud-platform h2 {
            color: white;
            border-bottom: 2px solid rgba(255,255,255,0.3);
        }
        
        .cloud-platform p {
            text-align: center;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-platform {
            display: inline-block;
            padding: 12px 30px;
            background: white;
            color: #0D47A1;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .btn-platform:hover {
            background: #f5f5f5;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            border-top: 1px solid #e0e0e0;
            color: #666;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .two-column, .faq-container, .encyclopedia {
                grid-template-columns: 1fr;
            }
            
            .step {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
            
            .publish-time {
                flex-direction: column;
            }
        }/* CSS Document */

