 /* 头部区域 (图片+右侧信息) */
        .school-header {
            display: flex;
            gap: 28px;
			padding-bottom:20px;
            border-bottom: 1px solid #b1c5e3;
            flex-wrap: wrap;
        }
		.school-content-area{
		margin:10px auto;

		}
        .school-img-wrap {
            flex-shrink: 0;
            width: 260px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.6);
            background: #f0f4fc;
        }
        .school-img {
                width: 60%;
    height: auto;
    display: block;
    /* object-fit: cover; */
    transition: transform 0.2s;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px auto;
        }
        .school-img-wrap:hover .school-img {
            transform: scale(1.02);
        }
        .school-info-right {
            flex: 1;
            min-width: 220px;
        }
        .title-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 18px;
        }
        .school-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e2b3c;
            letter-spacing: -0.3px;
            line-height: 1.2;
        }
        .hot-badge {
            background: linear-gradient(135deg, #FFD966, #FFB347);
            padding: 2px 14px;
            border-radius: 5px;
            font-size: 13px;
            color: #2c2b26;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            white-space: nowrap;
            backdrop-filter: blur(2px);
            letter-spacing: 1px;
        }
        .info-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 6px;
        }
        .info-row {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            font-size: 15px;
            line-height: 1.2;
            border-bottom: 1px dashed #b1c5e3;
            padding-bottom: 5px;
        }
        .info-label {
            width: 140px;
            font-weight: 600;
            color: #2A60B2;
            flex-shrink: 0;
        }
        .info-value {
            color: #2c3e50;
            font-weight: 500;
            word-break: break-all;
            flex: 1;
        }
        .info-value a {
            color: #2A60B2;
            text-decoration: none;
            border-bottom: 1px solid #bfd6ff;
        }
        .info-value a:hover {
            color: #ff7e5f;
            border-bottom-color: #ff7e5f;
        }
        /* 新增样式：合并行的内部双字段布局 */
        .merged-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 32px;
            align-items: baseline;
            width: 100%;
        }
        .merged-item {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 8px;
            flex: 1 1 auto;
        }
        .merged-label {
            font-weight: 600;
            color: #2A60B2;
            font-size: 15px;
            white-space: nowrap;
        }
        .merged-value {
            color: #2c3e50;
            font-weight: 500;
            word-break: break-all;
        }
        .merged-value a {
            color: #2A60B2;
            text-decoration: none;
            border-bottom: 1px solid #bfd6ff;
        }
        .merged-value a:hover {
            color: #ff7e5f;
            border-bottom-color: #ff7e5f;
        }
        /* 内容区域 (头部下方) */
        .content-section-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e2b3c;
            margin-bottom: 20px;
            padding-left: 12px;
            border-left: 6px solid #2A60B2;
        }
        .school-desc {
			font-size: 18px;
    line-height: 1.85;
    color: #2c3e50;
    margin: 25px 0 20px;
        }
        .school-desc p {
            margin: 1.3em 0;
        }
        .school-desc p:last-child {
            margin-bottom: 0;
        }
        .school-mimi {
        border-bottom: 1px dashed #b1c5e3;
        padding-bottom: 10px;
    }
        
        
        
                /* ========= 新增模块样式结束 ========= */
        /* ========= 新增：圈起来的块（报名社区卡片） ========= */
        .action-card {
            
            padding: 24px 28px;
            background: linear-gradient(135deg, #FFF9F0, #FFF5E6);
            border-radius: 6px;
            border: 2px solid #FFE0B5;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .action-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
        }
        .action-text {
            font-size: 18px;
            font-weight: 500;
            color: #b45f1b;
            margin-bottom: 24px;
            line-height: 1.5;
            letter-spacing: 0.5px;
        }
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        .action-btn {
            display: inline-block;
            padding: 5px 50px;
            border-radius: 60px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            background: white;
            border: 2px solid #FFB347;
            color: #b45f1b;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }
        .action-btn:first-child {
            background: #FFB347;
            color: white;
            border-color: #FFB347;
        }
        .action-btn:first-child:hover {
            background: #ff9f1a;
            transform: scale(1.02);
            box-shadow: 0 8px 18px rgba(255, 179, 71, 0.3);
        }
        
        
        
        /* 移动端适配：新增模块响应式 */
        @media (max-width: 767px) {
            .school-header {
                gap: 18px;
            }
            .school-img-wrap {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }
            .title-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .school-title {
                font-size: 22px;
				margin: 0 auto;
            }
			.school-mimi{
			
			}
            .hot-badge {
                white-space: normal;
                font-size: 13px;
                padding: 2px 14px;
            }
            .info-label {
                width: 120px;
                font-size: 14px;
            }
            .info-row {
                font-size: 14px;
                gap: 6px;
            }
            .merged-row {
                gap: 16px;
                flex-direction: column;
            }
            .merged-item {
                flex: auto;
            }
            .merged-label {
                width: 120px;
                white-space: normal;
            }
            .content-section-title {
                font-size: 20px;
            }
            .school-desc {
                line-height: 1.75;
                font-size: 16px;
            }
            
            .action-btn {
                padding: 5px 10px;
                font-size: 12px;
            }
        }