     @media (max-width: 980px) {body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            background: linear-gradient(135deg, #0a2e5c 0%, #1a5aa3 100%);
	    background:#1a5aa3;
            color: #fff;
            min-height: 100vh;
            padding: 20px 15px;
            line-height: 1.5;
        }
        }
        .container {
            max-width: 480px;
            margin: 0 auto;
        }
        
        /* 页面标题 */
        .page-title {
            text-align: center;
            padding: 20px 0 30px;
        }
        
        .page-title h1 {
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 8px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .page-title p {
            font-size: 14px;
            opacity: 0.9;
            max-width: 300px;
            margin: 0 auto;
        }
        
        /* 期刊入口区域 - 重点部分 */
        .journals-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .journal-card {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 18px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
        }
        
        .journal-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }
        
        .journal-cover {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            flex-shrink: 0;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .journal-cover i {
            font-size: 28px;
            color: white;
        }
        
        .journal-info {
            flex-grow: 1;
        }
        
        .journal-title {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #fff;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.9;
            margin-bottom: 6px;
            color: #e3f2fd;
        }
        
        .journal-desc {
            font-size: 12px;
            opacity: 0.8;
            color: #bbdefb;
        }

  /* 响应式调整 */
        @media (max-width: 380px) {
            .journal-card {
                padding: 15px;
            }
            
            .journal-cover {
                width: 60px;
                height: 60px;
                margin-right: 15px;
            }
            
            .journal-title {
                font-size: 16px;
            }
            
            .journal-subtitle {
                font-size: 12px;
            }
            
            .journal-desc {
                font-size: 11px;
            }
        }
        
        /* 加载动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .journal-card {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        .journal-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .journal-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .journal-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .journal-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        /* 页脚信息 */
        .footer {
            text-align: center;
            font-size: 12px;
            opacity: 0.6;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }