        /* 主体 */
        .container {
            max-width:1200px; width:100%;
            margin:30px auto; padding:0 15px;
            display:flex; flex-wrap:wrap; gap:25px;
        }

        /* ========== 左侧：清大介绍 ========== */
        .left-box {
            flex:1; min-width:300px;
            background:var(--white);
            border-radius:12px; padding:10px;
            box-shadow:0 5px 20px rgba(0,0,0,0.06);
        }

        .page-title {
            font-size:26px;
            color:#333;
            line-height:1.5;
            margin-bottom:15px;
            font-weight:bold;
        }

        .page-info {
            font-size:14px;
            color:#999;
            margin-bottom:30px;
            padding-bottom:20px;
            border-bottom:1px dashed #eee;
        }

        .page-content {
            font-size:16px;
            line-height:2;
            color:#444;
        }
        .page-content p {
            margin-bottom:20px;
        }
        .page-content img {
            max-width:100%;
            height:auto;
            border-radius:8px;
            margin:10px 0 20px;
            display:block;
        }

        /* 标题模块 */
        .module-title {
            font-size:20px;
            color:var(--tsinghua-purple);
            margin:30px 0 15px;
            padding-bottom:8px;
            border-bottom:2px solid var(--tsinghua-purple);
            font-weight:bold;
        }
		
		        /* 右侧课堂风采 全局统一 */
        .right-photo-grid {
            display:grid; grid-template-columns:repeat(2,1fr); gap:8px;
        }
        .right-photo-item { border-radius:6px; overflow:hidden; }
        .right-photo-item img {
            width:100%; height:85px; object-fit:cover;
        }
        .right-photo-item p {
            text-align:center; font-size:12px; color:#666; padding:5px 0 0;
        }
