/* 全局样式 */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}

a {
text-decoration: none;
color: #1a2b5f;
}


/**居中**/

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

/**头部**/

header {
background-color: #1a2b5f;
color: white;
padding: 15px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 24px;
font-weight: bold;
color: white;
}

.logo span {
color: #f8b400;
}

nav ul {
display: flex;
list-style: none;
}

nav ul li {
margin-left: 30px;
}

nav ul li a {
color: white;
font-weight: 500;
transition: color 0.3s;
}

nav ul li a:hover {
color: #f8b400;
}

.mobile-menu-btn {
display: none;
background: none;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
}




/**首页 banner模块**/

.hero {
background: linear-gradient(rgba(26, 43, 95, 0.8), rgba(26, 43, 95, 0.8)), 
url('../images/banner.jpg');
background-size: cover;
background-position: center;
color: white;
padding: 200px 0;
text-align: center;
}

.hero h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 30px;
}

.cta-button {
display: inline-block;
background-color: #f8b400;
color: #1a2b5f;
padding: 12px 30px;
border-radius: 30px;
font-weight: bold;
transition: all 0.3s;
}

.cta-button:hover {
background-color: #ffcc00;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/**首页 优势模块**/


.features {
padding: 80px 0;
background-color: white;
}

.section-title {
text-align: center;
margin-bottom: 50px;
}

.section-title h2 {
font-size: 2rem;
color: #1a2b5f;
margin-bottom: 15px;
}

.section-title p {
color: #666;
max-width: 700px;
margin: 0 auto;
}



.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 30px;
}

.feature-card {
background-color: #f9f9f9;
padding: 30px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
font-size: 50px;
color: #f8b400;
margin-bottom: 20px;
}

.feature-card h3 {
margin-bottom: 15px;
color: #1a2b5f;
}


/**首页 图片案例模块**/

.courses {
padding: 80px 0;
background-color: #f5f7fa;
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}

.course-card {
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}

.course-card:hover {
transform: translateY(-10px);
}

.course-image {
height: 500px;
background-size: cover;
background-position: center;
}

.course-info {
padding: 25px;
}

.course-info h3 {
color: #1a2b5f;
margin-bottom: 10px;
}

.course-meta {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
color: #666;
}

.course-price {
font-weight: bold;
color: #f8b400;
font-size: 1.2rem;
}

/**评论模块**/

.testimonials {
padding: 80px 0;
background-color: white;
}

.testimonials-slider {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.testimonial {
background-color: #f9f9f9;
padding: 30px;
border-radius: 8px;
text-align: center;
display: none;
}

.testimonial.active {
display: block;
animation: fadeIn 0.5s;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.testimonial-text {
font-style: italic;
margin-bottom: 20px;
}

.testimonial-author {
font-weight: bold;
color: #1a2b5f;
}

.testimonial-position {
color: #666;
font-size: 0.9rem;
}

.slider-controls {
display: flex;
justify-content: center;
margin-top: 30px;
}

.slider-dot {
width: 12px;
height: 12px;
background-color: #ddd;
border-radius: 50%;
margin: 0 5px;
cursor: pointer;
}

.slider-dot.active {
background-color: #f8b400;
}


/**首页 留言模块**/

.contact {
padding: 80px 0;
background-color: #f5f7fa;
}

.contact-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 50px;
}

.contact-info h3 {
color: #1a2b5f;
margin-bottom: 20px;
}

.contact-details {
margin-bottom: 30px;
}

.contact-details p {
margin-bottom: 10px;
display: flex;
align-items: center;
}

.contact-details i {
margin-right: 10px;
color: #f8b400;
}
.contact-form select,
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 4px;
}

.contact-form textarea {
height: 150px;
}


/**底部**/

footer {
background-color: #1a2b5f;
color: white;
padding: 50px 0 20px;
}

.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-column h3 {
color: #f8b400;
margin-bottom: 20px;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 10px;
}

.footer-column ul li a {
color: #ddd;
transition: color 0.3s;
}

.footer-column ul li a:hover {
color: #f8b400;
}

.social-links {
display: flex;
gap: 15px;
}

.social-links a {
color: white;
font-size: 20px;
transition: color 0.3s;
}

.social-links a:hover {
color: #f8b400;
}

.copyright {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #aaa;
font-size: 0.9rem;
}

/**响应式设计**/

@media (max-width: 768px) {
.header-container {
flex-direction: column;
text-align: center;
}

nav {
margin-top: 20px;
width: 100%;
}

nav ul {
flex-direction: column;
align-items: center;
}

nav ul li {
margin: 10px 0;
}

.hero h1 {
font-size: 2rem;
}

.hero p {
font-size: 1rem;
}

.news-hero h1 {
font-size: 2rem;
}

.mobile-menu-btn {
display: block;
position: absolute;
top: 20px;
right: 20px;
}

nav {
display: none;
}

nav.active {
display: block;
}
}





/* 新闻列表页专用样式 */


.news-hero {
background: linear-gradient(rgba(26, 43, 95, 0.8), rgba(26, 43, 95, 0.8)), 
url('../images/banner.jpg');
background-size: cover;
background-position: center;
color: white;
padding: 80px 0;
text-align: center;
}

.news-hero h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.breadcrumb {
display: flex;
justify-content: center;
list-style: none;
font-size: 0.9rem;
}

.breadcrumb li {
margin: 0 5px;
}

.breadcrumb li:after {
content: '>';
margin-left: 10px;
color: #ddd;
}

.breadcrumb li:last-child:after {
content: '';
}

.breadcrumb a {
color: #f8b400;
}

.breadcrumb a:hover {
text-decoration: underline;
}


/* 新闻列表区域 */
.news-section {
padding: 60px 0;
background-color: white;
}

.section-title {
text-align: center;
margin-bottom: 50px;
}

.section-title h2 {
font-size: 2rem;
color: #1a2b5f;
margin-bottom: 15px;
}

.section-title p {
color: #666;
max-width: 700px;
margin: 0 auto;
}

.news-container {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
}

@media (max-width: 992px) {
.news-container {
grid-template-columns: 1fr;
}
}

/* 新闻列表 */

.news-list {
display: grid;
gap: 30px;
}

.news-item {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 30px;
}

@media (max-width: 768px) {
.news-item {
grid-template-columns: 1fr;
}
}

.news-image {
height: 180px;
background-size: cover;
background-position: center;
border-radius: 8px;
}

.news-content h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: #1a2b5f;
}

.news-meta {
display: flex;
margin-bottom: 10px;
color: #5d5d5d;
font-size: 0.9rem;
}

.news-meta span {
margin-right: 15px;
display: flex;
align-items: center;
}

.news-meta i {
margin-right: 5px;
color: #f8b400;
}

.news-excerpt {
color: #555;
margin-bottom: 15px;
}

.read-more {
color: #f8b400;
font-weight: bold;
display: inline-flex;
align-items: center;
}

.read-more i {
margin-left: 5px;
transition: transform 0.3s;
}

.read-more:hover i {
transform: translateX(5px);
}



/* 新闻内容区域 */

.news-detail-section {
padding: 60px 0;
background-color: white;
}

.news-detail-container {
display: grid;
grid-template-columns: minmax(0, 1fr) 300px;
gap: 40px;
}

@media (max-width: 992px) {
.news-detail-container {
grid-template-columns: 1fr;
}
}

/* 新闻正文 */
.news-content {
max-width: 800px;
margin: 0 auto;
}

.news-featured-image {
width: 100%;
height: 450px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 30px;
}

@media (max-width: 768px) {
.news-featured-image {
height: 250px;
}
}

.news-body {
font-size: 1.1rem;
line-height: 1.8;
color: #444;
}

.news-body p {
margin-bottom: 25px;
}

.news-body h2 {
font-size: 1.5rem;
color: #1a2b5f;
margin: 40px 0 20px;
padding-bottom: 10px;
border-bottom: 2px solid #f8b400;
}

.news-body h3 {
font-size: 1.3rem;
color: #1a2b5f;
margin: 30px 0 15px;
}

.news-body blockquote {
border-left: 4px solid #f8b400;
padding-left: 20px;
margin: 30px 0;
font-style: italic;
color: #555;
}

.news-body img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 30px 0;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
text-align: center;
font-size: 0.9rem;
color: #666;
margin-top: -20px;
margin-bottom: 30px;
}

.news-tags {
display: flex;
flex-wrap: wrap;
margin: 40px 0;
}

.news-tags a {
display: inline-block;
background-color: #f5f5f5;
color: #555;
padding: 5px 15px;
border-radius: 20px;
margin-right: 10px;
margin-bottom: 10px;
font-size: 0.9rem;
transition: all 0.3s;
}

.news-tags a:hover {
background-color: #f8b400;
color: white;
}

.news-navigation {
display: flex;
justify-content: space-between;
margin-top: 50px;
padding-top: 30px;
border-top: 1px solid #eee;
}

.news-nav-btn {
display: flex;
align-items: center;
color: #555;
transition: color 0.3s;
}

.news-nav-btn:hover {
color: #f8b400;
}

.news-nav-btn.prev i {
margin-right: 10px;
}

.news-nav-btn.next i {
margin-left: 10px;
}


/* 分享按钮 */
.share-buttons {
display: flex;
gap: 10px;
margin-top: 40px;
}

.share-btn {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
color: white;
transition: transform 0.3s;
}

.share-btn:hover {
transform: translateY(-3px);
}

.share-wechat {
background-color: #07C160;
}

.share-weibo {
background-color: #E6162D;
}

.share-linkedin {
background-color: #0077B5;
}


/* 评论区域 */
.comments-section {
margin-top: 60px;
padding-top: 40px;
border-top: 1px solid #eee;
}

.comments-title {
font-size: 1.5rem;
color: #1a2b5f;
margin-bottom: 30px;
}

.comment-form {
margin-bottom: 40px;
}

.comment-form h3 {
font-size: 1.2rem;
margin-bottom: 20px;
color: #1a2b5f;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: bold;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
}

.form-group textarea {
height: 150px;
}

.submit-btn {
background-color: #f8b400;
color: #1a2b5f;
border: none;
padding: 12px 30px;
border-radius: 30px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
}

.submit-btn:hover {
background-color: #ffcc00;
}



/* 新闻详情页专用样式 */

.news-detail-hero {
background: linear-gradient(rgba(26, 43, 95, 0.8), rgba(26, 43, 95, 0.8)), 
url('../images/banner.jpg');
background-size: cover;
background-position: center;
color: white;
padding: 80px 0;
}

.news-detail-hero .container {
max-width: 800px;
}

.news-detail-hero h1 {
font-size: 2.2rem;
margin-bottom: 20px;
line-height: 1.3;
}

.breadcrumb {
display: flex;
list-style: none;
font-size: 0.9rem;
margin-bottom: 20px;
}

.breadcrumb li {
margin-right: 10px;
}

.breadcrumb li:after {
content: '>';
margin-left: 10px;
color: #ddd;
}

.breadcrumb li:last-child:after {
content: '';
}

.breadcrumb a {
color: #f8b400;
}

.breadcrumb a:hover {
text-decoration: underline;
}

.news-meta {
display: flex;
margin-bottom: 20px;
color: #5d5d5d;
font-size: 0.9rem;
}

.news-meta span {
margin-right: 20px;
display: flex;
align-items: center;
}

.news-meta i {
margin-right: 5px;
}

/* 新闻内容区域 */
.news-detail-section {
padding: 60px 0;
background-color: white;
}

.news-detail-container {
display: grid;
grid-template-columns: minmax(0, 1fr) 300px;
gap: 40px;
}

@media (max-width: 992px) {
.news-detail-container {
grid-template-columns: 1fr;
}
}

/* 新闻正文 */
.news-content {
max-width: 800px;
margin: 0 auto;
}

.news-featured-image {
width: 100%;
height: 450px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 30px;
}

@media (max-width: 768px) {
.news-featured-image {
height: 250px;
}
}

.news-body {
font-size: 1.1rem;
line-height: 1.8;
color: #444;
}

.news-body p {
margin-bottom: 25px;
}

.news-body h2 {
font-size: 1.5rem;
color: #1a2b5f;
margin: 40px 0 20px;
padding-bottom: 10px;
border-bottom: 2px solid #f8b400;
}

.news-body h3 {
font-size: 1.3rem;
color: #1a2b5f;
margin: 30px 0 15px;
}

.news-body blockquote {
border-left: 4px solid #f8b400;
padding-left: 20px;
margin: 30px 0;
font-style: italic;
color: #555;
}

.news-body img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 30px 0;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
text-align: center;
font-size: 0.9rem;
color: #666;
margin-top: -20px;
margin-bottom: 30px;
}

.news-tags {
display: flex;
flex-wrap: wrap;
margin: 40px 0;
}

.news-tags a {
display: inline-block;
background-color: #f5f5f5;
color: #555;
padding: 5px 15px;
border-radius: 20px;
margin-right: 10px;
margin-bottom: 10px;
font-size: 0.9rem;
transition: all 0.3s;
}

.news-tags a:hover {
background-color: #f8b400;
color: white;
}

.news-navigation {
display: flex;
justify-content: space-between;
margin-top: 50px;
padding-top: 30px;
border-top: 1px solid #eee;
}

.news-nav-btn {
display: flex;
align-items: center;
color: #555;
transition: color 0.3s;
}

.news-nav-btn:hover {
color: #f8b400;
}

.news-nav-btn.prev i {
margin-right: 10px;
}

.news-nav-btn.next i {
margin-left: 10px;
}



/* 侧边栏 */
.sidebar {
display: grid;
gap: 30px;
align-content: start;
}

.sidebar-widget {
background-color: #f9f9f9;
padding: 25px;
border-radius: 8px;
}

.widget-title {
font-size: 1.2rem;
color: #1a2b5f;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #f8b400;
}

.related-news {
display: grid;
gap: 20px;
}

.related-item {
display: grid;
grid-template-columns: 100px 1fr;
gap: 15px;
}

.related-image {
height: 70px;
background-size: cover;
background-position: center;
border-radius: 4px;
}

.related-content h4 {
font-size: 1rem;
margin-bottom: 5px;
}

.related-date {
color: #666;
font-size: 0.8rem;
}

.author-card {
display: flex;
align-items: center;
gap: 15px;
margin-top: 20px;
}

.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
}

.author-info h4 {
font-size: 1rem;
margin-bottom: 5px;
color: #1a2b5f;
}

.author-position {
color: #666;
font-size: 0.8rem;
}


.category-list {
list-style: none;
}

.category-list li {
margin-bottom: 12px;
}

.category-list a {
color: #555;
display: flex;
justify-content: space-between;
transition: color 0.3s;
}

.category-list a:hover {
color: #f8b400;
}

.category-list span {
background-color: #eee;
padding: 2px 8px;
border-radius: 10px;
font-size: 0.8rem;
}

.popular-news {
display: grid;
gap: 20px;
}

.popular-item {
display: grid;
grid-template-columns: 80px 1fr;
gap: 15px;
}

.popular-image {
height: 60px;
background-size: cover;
background-position: center;
border-radius: 4px;
}

.popular-content h4 {
font-size: 0.95rem;
margin-bottom: 5px;
}

.popular-date {
color: #666;
font-size: 0.8rem;
}




/* 分页 */

.pagination {
display: flex;
justify-content: center;
margin-top: 50px;
}

.page-numbers {
display: flex;
list-style: none;
}

.page-numbers li {
margin: 0 5px;
}

.page-numbers a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #f5f5f5;
color: #555;
transition: all 0.3s;
}

.page-numbers a:hover,
.page-numbers .current {
background-color: #f8b400;
color: white;
}


/* 综合页面 */

.alumni-hero {
background: linear-gradient(rgba(26, 43, 95, 0.8), rgba(26, 43, 95, 0.8)), 
url('../images/banner.jpg');
background-size: cover;
background-position: center;
color: white;
padding: 100px 0;
text-align: center;
}

.alumni-hero h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.alumni-hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 30px;
}

.breadcrumb {
display: flex;
justify-content: center;
list-style: none;
font-size: 0.9rem;
margin-bottom: 30px;
}

.breadcrumb li {
margin: 0 5px;
}

.breadcrumb li:after {
content: '>';
margin-left: 10px;
color: #ddd;
}

.breadcrumb li:last-child:after {
content: '';
}

.breadcrumb a {
color: #f8b400;
}

.breadcrumb a:hover {
text-decoration: underline;
}

.cta-button {
display: inline-block;
background-color: #f8b400;
color: #1a2b5f;
padding: 12px 30px;
border-radius: 30px;
font-weight: bold;
transition: all 0.3s;
}

.cta-button:hover {
background-color: #ffcc00;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 校友展示区域 */
.alumni-section {
padding: 80px 0;
background-color: white;
}

.section-title {
text-align: center;
margin-bottom: 50px;
}

.section-title h2 {
font-size: 2rem;
color: #1a2b5f;
margin-bottom: 15px;
}

.section-title p {
color: #666;
max-width: 700px;
margin: 0 auto;
}

/* 校友筛选 */
.alumni-filter {
display: flex;
justify-content: center;
margin-bottom: 40px;
flex-wrap: wrap;
}

.filter-btn {
padding: 8px 20px;
margin: 0 10px 10px;
border: 1px solid #ddd;
border-radius: 30px;
background-color: white;
cursor: pointer;
transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
background-color: #1a2b5f;
color: white;
border-color: #1a2b5f;
}

/* 校友网格 */
.alumni-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 30px;
}

.alumni-card {
background-color: #f9f9f9;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s;
}

.alumni-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.alumni-image {
height: 250px;
background-size: cover;
background-position: center;
position: relative;
}

.alumni-batch {
position: absolute;
top: 20px;
right: 20px;
background-color: #f8b400;
color: #1a2b5f;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: bold;
}

.alumni-info {
padding: 25px;
}

.alumni-info h3 {
font-size: 1.3rem;
color: #1a2b5f;
margin-bottom: 5px;
}

.alumni-position {
color: #f8b400;
font-size: 0.9rem;
margin-bottom: 10px;
}

.alumni-company {
display: flex;
align-items: center;
margin-bottom: 15px;
font-size: 0.9rem;
}

.alumni-company i {
margin-right: 8px;
color: #666;
}

.alumni-bio {
color: #555;
font-size: 0.95rem;
margin-bottom: 15px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}

.alumni-link {
color: #1a2b5f;
font-weight: bold;
display: flex;
align-items: center;
}

.alumni-link i {
margin-left: 5px;
transition: transform 0.3s;
}

.alumni-link:hover i {
transform: translateX(5px);
}

/* 校友故事 */
.alumni-stories {
padding: 80px 0;
background-color: #f5f7fa;
}

.story-card {
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
margin-bottom: 30px;
}

.story-content {
display: grid;
grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
.story-content {
grid-template-columns: 1fr;
}
}

.story-text {
padding: 40px;
}

.story-text h3 {
font-size: 1.5rem;
color: #1a2b5f;
margin-bottom: 20px;
}

.story-meta {
display: flex;
margin-bottom: 20px;
}

.story-meta span {
margin-right: 20px;
font-size: 0.9rem;
color: #666;
display: flex;
align-items: center;
}

.story-meta i {
margin-right: 5px;
color: #f8b400;
}

.story-excerpt {
color: #555;
line-height: 1.8;
margin-bottom: 25px;
}

.story-image {
height: 400px;
background-size: cover;
background-position: center;
}

@media (max-width: 768px) {
.story-image {
height: 250px;
order: -1;
}
}

/* 校友活动 */
.alumni-events {
padding: 80px 0;
background-color: white;
}

.events-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 30px;
}

.event-card {
background-color: #f9f9f9;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s;
}

.event-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-image {
height: 200px;
background-size: cover;
background-position: center;
}

.event-info {
padding: 25px;
}

.event-date {
color: #f8b400;
font-weight: bold;
margin-bottom: 10px;
}

.event-info h3 {
font-size: 1.2rem;
color: #1a2b5f;
margin-bottom: 10px;
}

.event-excerpt {
color: #555;
font-size: 0.95rem;
margin-bottom: 15px;
}

.event-meta {
display: flex;
justify-content: space-between;
color: #666;
font-size: 0.9rem;
}

/* 联系 */

.join-cta {
background: linear-gradient(rgba(26, 43, 95, 0.9), rgba(26, 43, 95, 0.9)), 
url('../images/woshou.gif');
background-size: cover;
background-position: center;
color: white;
padding: 100px 0;
text-align: center;
}

.join-cta h2 {
font-size: 2rem;
margin-bottom: 20px;
}

.join-cta p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 30px;
}