* {margin: 0;padding: 0;box-sizing: border-box;}
body {
	font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, 'Segoe UI', Roboto, Arial, sans-serif;background-color: #F5F7FA;color: #333;line-height: 1.5;
}

:root { --primary-red: #C41E3A; --primary-red-dark: #9B1D2C; --gold: #D4AF37; --gold-dark: #B8960C; --dark-blue: #1E2A3A; --gray-bg: #F5F7FA; --gray-light: #E8ECF0; --white: #FFFFFF; --text-dark: #222; --text-gray: #666; --shadow: 0 4px 12px rgba(0, 0, 0, 0.08); --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12); --transition: all 0.3s ease; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* 顶部导航栏 */
.header { background-color: var(--white); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #e53e30;padding: 5px 0;}
.header .container { display: flex; justify-content: space-between; align-items: center; height:54px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 50px; height:48px; background: linear-gradient(135deg, #e70015 0%, #A5122E 100%); border-radius:50%; display: flex; align-items: center; justify-content: center; color:#eac23c; font-size:15px; font-weight: bold; box-shadow: var(--shadow); }
.logo-text { font-size:20px; font-weight: 600; line-height: 1.3;color: #b12b1e; }
.logo-text small { font-size:18px; font-weight: normal; color: var(--text-gray); display: block; }
.nav-menu { display: flex; gap:5px; }
.nav-menu a { display: inline-block;padding:8px 12px;font-weight:900;color:#333;text-decoration: none;border-radius: 40px;transition: all 0.25s ease;font-size: 18px; }
.nav-menu a:hover, .nav-menu a.active {background-color: #e53e30;color: white;box-shadow: 0 4px 10px rgba(229, 62, 48, 0.3); }

/* 主视觉Banner */
/*C41E3A linear-gradient(135deg, #a12228 0%, #CF7979 100%)*/
/*linear-gradient(135deg, #a40709 0%, #c56a6b 100%)*/
.hero { background: linear-gradient(180deg, #e70015 0%, #bc1719 100%); color: var(--white); padding: 50px 0; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(196,30,58,0.15) 0%, transparent 70%); transform: rotate(15deg); }
.hero .container { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; }
.hero-content { flex: 1; min-width: 280px; }
.hero-badge { background: rgba(212, 175, 55, 0.2); border: 1px solid var(--gold); display: inline-block; padding: 6px 16px; border-radius: 40px; font-size:20px; color: var(--gold); margin-bottom: 20px; }
.hero h1 { font-size: 42px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; color: #fceab9;}
.hero h1 span { color: var(--gold); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
/* 主视觉Banner 三个圆圈*/
.bg-decoration { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 0; margin-top:-50px;}
.bg-decoration .shape { position: absolute; background: rgba(255, 255, 255, 0.15); border-radius: 50%; }
.shape-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -200px; right: -150px; }
.shape-3 { width: 200px; height: 200px; top: 30%; right: 10%; }

/*border: 2px solid #F29B12;*/
.btn-primary { color: var(--white); border: none; padding: 12px 32px; border-radius: 40px; font-size: 16px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-block;border: 2px solid #F29B12; }
.btn-primary:hover { background:#F29B12; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 10px 30px; border-radius: 40px; font-size: 16px; font-weight: 500; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-block; }
.btn-outline:hover { background: var(--white); color: var(--primary-red); border-color: var(--white);transform: translateY(-2px); }
/* 通知文件区 */
.main-note{cursor: pointer;transition: var(--transition);}
.main-note:hover{transform: translateY(-8px);}

/* 三个类别卡片区域 */
.section { padding:30px; }
.section-title { text-align: center; margin-bottom:20px; }
.section-title h2 { font-size:30px; color:#555; margin-bottom: 12px; }
.section-title h2 span { color: var(--primary-red); border-bottom: 3px solid var(--gold); display: inline-block; padding-bottom: 4px; }
.section-title p { color: var(--text-gray); margin: 0 auto; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.category-card { background:#fff; border-radius: 20px; padding:0 0 30px 0; text-align: center; box-shadow:0 8px 24px rgba(0, 0, 0, 0.2); transition: var(--transition); cursor: pointer; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.card-icon {  height:120px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px;background:#d51829;border-radius: 20px 20px 0 0;}
.category-card h3 { font-size:36px; color:#fff;}
.category-card p { color: var(--text-gray); font-size:15px; line-height: 1.8;text-indent:2em;text-overflow: ellipsis;display: -webkit-box !important;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;padding: 0 24px;}

/* 赛事流程时间线 */
.timeline-section { background-color: var(--white); }
.timeline { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.timeline-item { flex: 1; text-align: center; position: relative; }
.timeline-dot { width: 50px; height: 50px; background: var(--primary-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--white); font-weight: bold; font-size:25px;box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.2); position: relative; z-index: 2; }
.timeline-line { position: absolute; top: 25px; left: 50%; width: 100%; height: 2px; background:#F07878; z-index: 1; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-date { font-weight: 700; color: var(--primary-red); margin-bottom: 8px;font-size:20px; }
.timeline-title { font-weight: 600; margin-bottom: 4px; font-size:20px; }
.timeline-desc { font-size:17px;text-align:left;text-indent:2em;color: var(--text-gray);line-height:28px;}

/* 最新动态 */
.news-list { background: var(--white); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); font-size:18px; transition:all 0.3s ease; }
.news-list:hover{transform: translateY(-8px);}
.news-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--gray-light); }
.news-item:last-child { border-bottom: none; }
.news-title { font-weight: 500; color: var(--text-dark); text-decoration: none;}
.news-title:hover { color: var(--primary-red);}
.news-date { color: var(--text-gray); font-size:16px;}

/* 底部 */
.footer { background:#d51829;color: #f4efef; padding: 30px 0 30px; }
.footer .container { display:flex; justify-content: center; }
.footer-col { padding:0 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color:#f4efef; text-decoration: none; font-size: 15px; }
.footer-col a:hover { color: var(--gold); }
.copyright { text-align: center; padding-top: 30px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; }

/* 自定义模态框样式 */
.modal { display:none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.1); align-items: center; justify-content: center; animation: fadeIn 0.3s; }
.modal-content { background: #fff; border-radius: 28px; max-width:680px; width: 90%;box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2); transform: scale(0.95); transition: transform 0.2s; animation: slideUp 0.2s ease-out; }
.modal-header { background: #d51829; border-radius: 28px 28px 0 0; padding: 20px; color: white; }
.modal-header i { font-size: 2rem; margin-bottom: 8px; display: block; }
.modal-header h3 { font-size: 1.4rem; font-weight: 600; }
.modal-body { padding: 28px 24px; color: #333; font-size:1.1rem; line-height: 1.5;text-indent:2em;line-height:1.7; }
.modal-body i { font-size: 2.5rem; color: #333; margin-bottom: 12px; display: block; }
.modal-footer { padding: 0 24px 28px 24px; }
.modal-btn { background: #5586db; border: none; padding: 10px 28px; border-radius: 40px; color: white; font-weight: 600; cursor: pointer; transition: 0.2s; font-size: 0.95rem; }
.modal-btn:hover { background: #3a66b3; transform: translateY(-2px); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }


 /* 内页小banner */
.page-header {
	background:linear-gradient(135deg, #e70015 0%, #bc1719 100%);border-radius: 28px;margin:20px auto;padding: 32px 40px;color: white;position:relative;
}
.page-header h2 {
	font-size: 1.8rem;font-weight: 700;margin-bottom: 8px;
}
.breadcrumb {
	font-size: 0.9rem;opacity: 0.85;
}
.breadcrumb a {
	color: #ffdfb3;text-decoration: none;
}

/* 公告列表卡片 */
.notice-list-page { background: #ffffff; border-radius: 28px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); margin-bottom: 60px; overflow: hidden; border: 1px solid #ffe3df; }
.notice-list-header { padding: 24px 32px 8px 32px; border-bottom: 2px solid #f0e0de; display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; }
.notice-list-header h3 { font-size: 1.4rem; font-weight: 700; color: #b12b1e; }
.total-count { color: #c55a4a; }
.notice-items { padding: 8px 32px 32px 32px;min-height: 300px; }
.list-notice-item { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; padding: 20px 0; border-bottom: 1px solid #f5e2df; transition: background 0.2s; }
.list-notice-item:last-child { border-bottom: none; }
.notice-content { flex: 1; }
.list-notice-item .notice-title { font-size: 1.2rem; font-weight: 600; color:#555; text-decoration: none; display: inline-block; margin-bottom: 8px; cursor: pointer; }
.notice-title:hover { color: #c52a1c; }
.notice-summary { color: #5e5a5a; font-size: 1rem; margin: 6px 0 8px 0; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 900px; }
.notice-meta { display: flex; gap: 20px; color: #9c7c74; }
.notice-meta i { margin-right: 4px; color: #c55a4a; }
.notice-side { text-align: right; min-width: 100px; }
.detail-link { margin-top: 8px; display: inline-block; color: #c0392b; font-weight: 500; text-decoration: none; font-size: 1rem; cursor: pointer; }
.detail-link i { transition: transform 0.2s; }
.detail-link:hover i { transform: translateX(4px); }

#controltableForm select {padding: 0 10px; border: 1px solid #e53e30; border-radius:10px;outline: none; transition: all 0.2s; background-color: #fefaf9;margin: 0 5px;}
#controltableForm a {color: #c0392b;font-weight: 500;text-decoration: none;}

/* 详情卡片 */
.detail-card { background: #ffffff; border-radius: 28px; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); margin-bottom: 60px; border: 1px solid #ffe3df; overflow: hidden; }
.detail-header { padding: 32px 40px 20px 40px; border-bottom: 1px solid #f0e0de; }
.detail-header h1 { font-size: 1.9rem; color: #b12b1e; margin-bottom: 20px; font-weight: 700; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 24px; color: #9c7c74; font-size: 0.9rem; margin-bottom: 8px; }
.detail-meta i { margin-right: 6px; color: #c55a4a; }
.detail-tags { margin-top: 12px; }
.tag { background: #fef0ed; padding: 4px 14px; border-radius: 40px; font-size: 0.75rem; color: #c0392b; margin-right: 12px; }
.detail-content { padding: 32px 40px; font-size: 1.05rem; color: #2d2a2a; min-height: 300px;}
.detail-content p { margin-bottom: 20px; }
.detail-content h3 { font-size: 1.3rem; color: #b12b1e; margin: 28px 0 16px 0; border-left: 4px solid #e5533f; padding-left: 16px; }
.attach-box { background: #fef7f4; border-radius: 20px; padding: 20px; margin: 28px 0 16px; border: 1px solid #ffe0d9; }
.attach-title { font-weight: 700; margin-bottom: 12px; color: #c0392b; }
.attach-list { list-style: none; }
.attach-list li { margin: 8px 0; }
.attach-list a { color: #c55a4a; text-decoration: none; }
.back-btn { margin-top: 24px; cursor: pointer; display: inline-block; background: #fff1ef; padding: 10px 28px; border-radius: 40px; color: #c0392b; font-weight: 600; text-decoration: none; transition: 0.2s; }
.back-btn:hover { background: #e53e30; color: white; }

.works-subtitle{font-weight: bold;font-size: 20px;}
.works-content{padding:5px;line-height: 30px;letter-spacing: 1px;text-indent: 2em;margin-bottom:25px;}

/* 搜索栏 */
.search-section { background: #ffffff; border-radius: 28px; padding: 20px 28px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); border: 1px solid #ffe3df; margin-bottom: 28px; }
.search-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.search-input-wrapper { flex: 1; position: relative;display: flex; }
.search-input-wrapper i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #c55a4a; font-size: 1rem; }
.search-input { width: 100%; padding: 14px 20px 14px 48px; border: 1px solid #ffe0d9; border-radius: 60px; font-size: 1rem; outline: none; transition: all 0.2s; background-color: #fefaf9; }
.search-select {padding: 14px 10px 14px 10px; border: 1px solid #ffe0d9; border-radius: 60px; font-size: 1rem; outline: none; transition: all 0.2s; background-color: #fefaf9; }
.search-input:focus { border-color: #e53e30; box-shadow: 0 0 0 2px rgba(229, 62, 48, 0.2); }
.search-btn { background-color: #e53e30; color: white; border: none; padding: 0 28px; height: 52px; border-radius: 60px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; gap: 8px; }
.search-btn:hover { background-color: #c52a1c; }
.search-reset { background-color: #f5e2df; color: #c0392b; border: none; padding: 0 20px; height: 52px; border-radius: 60px; font-weight: 500; cursor: pointer; transition: 0.2s; }
.search-reset:hover { background-color: #eccbc4; }