/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #1565c0;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* 顶部导航 */
.header {
    background-color: #fff;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.logo {
    width: 100%;
}

.header-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.header-img {
    width: 100%;
    height: auto;
    display: block;
}

.school-logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 120px;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1565c0;
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 40px;
    text-align: center;
    z-index: 10;
}

.school-links {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 100;
}

.school-links a {
    padding: 5px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* 主导航 */
.main-nav {
    background-color: #1e50a2;
    border-bottom: 1px solid #eee;
}

.main-nav ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.main-nav li {
    position: relative;
    flex: 1;
    text-align: center;
}

.main-nav li:after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 0;
    box-shadow: 0 0 0 1px #fff;
}

.main-nav li:last-child:after {
    display: none;
}

.main-nav a {
    display: block;
    color: #fff;
    padding: 12px 5px;
    font-size: 16px;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    border-bottom: 3px solid #fff;
}

/* 下拉菜单 */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    display: block;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background-color: #f1f1f1;
    color: #1565c0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* 轮播图 */
.top-content {
    display: flex;
    margin: 20px 20px 0;
    gap: 20px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    height: 360px;
    flex: 2;
    border: 1px solid #eee;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.slide-caption h3 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 10px;
    transform: translateY(50%);
}

.prev, .next {
    color: white;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 3px;
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #1565c0;
}

/* 主内容区 */
main {
    padding: 0;
}

.content-section {
    margin-top: 0;
}

.content-row {
    display: flex;
    margin: 10px 20px 20px;
    gap: 20px;
}

.main-content {
    display: flex;
    margin: 0 20px 30px;
    gap: 20px;
    justify-content: space-between;
}

.content-left {
    flex: 1.2;
    border: 1px solid #eee;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

/* 公共区块样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1565c0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 18px;
    color: #1565c0;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
}

.section-header h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #1565c0;
}

.more {
    color: #1565c0;
    font-size: 16px;
    transition: color 0.3s;
    text-decoration: none;
    font-weight: bold;
    margin-right: 5px;
}

.more:hover {
    text-decoration: underline;
}

/* 通知公告 */
.notice-section {
    flex: none;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 340px;
    overflow-y: hidden;
}

.notice-list li {
    display: flex;
    align-items: center;
    padding: 9.5px 0;
    border-bottom: 1px dashed #ddd;
    transition: background-color 0.2s;
    justify-content: space-between;
}

.notice-list li:hover {
    background-color: #f9f9f9;
}

.notice-list li a {
    flex: 1;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding-left: 12px;
    position: relative;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.notice-list li a:before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    color: #1565c0;
    font-size: 6px;
    line-height: 1.8;
}

.notice-list .date {
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}

/* 新闻动态 */
.news-section {
    margin-bottom: 20px;
}

.news-columns {
    display: flex;
    gap: 15px;
}

.news-image-column {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border: 1px solid #eee;
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image:nth-child(1):after {
    content: "党课现场";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 10px;
    font-size: 14px;
    text-align: center;
}

.news-image:nth-child(2):after {
    content: "比赛现场";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 10px;
    font-size: 14px;
    text-align: center;
}

.news-image:nth-child(3):after {
    content: "讲课现场";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 10px;
    font-size: 14px;
    text-align: center;
}

.news-list-column {
    flex: 1.2;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    border-bottom: 1px dashed #ddd;
    padding: 9.5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.news-list li:hover {
    background-color: #f9f9f9;
}

.news-list li a {
    color: #333;
    text-decoration: none;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding-left: 12px;
    font-size: 14px;
}

.news-list li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url('../images/j_t_.png') no-repeat;
    background-size: contain;
}

.news-list li a:hover {
    color: #1565c0;
}

.news-list .date {
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}

/* 联系我们 */
.contact-section {
    flex: none;
    border: 1px solid #eee;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    overflow: hidden;
    height: auto;
    max-height: 340px;
    width: 100%;
}

.contact-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.contact-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.contact-label {
    color: #333;
    font-weight: normal;
    font-size: 14px;
    flex: 0 0 80px;
}

.contact-info {
    color: #1565c0;
    font-weight: normal;
    font-size: 14px;
}

/* 二维码 */
.qrcode-section {
    margin-top: 10px;
}

.qrcode-container {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.qrcode-item {
    flex: 0 0 48%;
    text-align: center;
    border: 1px solid #eee;
    padding: 5px;
}

.qrcode {
    width: 100%;
    max-width: 60px;
    height: auto;
}

/* 学院概况 */
.college-section {
    margin-top: 20px;
    border: 1px solid #eee;
    padding: 15px;
}

.college-intro {
    margin-top: 10px;
    line-height: 1.6;
}

.college-intro p {
    margin-bottom: 10px;
    color: #666;
}

.college-intro a {
    color: #1565c0;
    font-weight: bold;
}

/* 学院链接 */
.college-links {
    margin: 0 20px 30px;
    border: 1px solid #eee;
    padding: 10px 15px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
}

.college-links-inner {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 5px 30px;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
    scroll-behavior: smooth;
}

.college-links-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #1565c0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    z-index: 2;
    transition: background-color 0.3s;
}

.college-links-arrow:hover {
    background-color: #0d47a1;
}

.prev-arrow {
    left: 5px;
}

.next-arrow {
    right: 5px;
}

.college-link {
    padding: 8px 15px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.college-link:hover {
    background-color: #1565c0;
    color: #fff;
}

/* 底部 */
footer {
    background-color: #1565c0;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 20px;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #1565c0;
}

/* 内容页样式 */
.page-content {
    padding: 20px 0;
}

.page-header {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.page-header h1 {
    font-size: 24px;
    color: #1565c0;
    font-weight: normal;
    margin-bottom: 10px;
}

.page-body {
    line-height: 1.8;
    font-size: 15px;
}

.page-body p {
    margin-bottom: 15px;
    text-indent: 2em;
}

.page-body ul {
    margin-bottom: 15px;
    padding-left: 2em;
}

.page-body ul li {
    list-style-type: disc;
}

.page-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* 添加图片内容样式 */
.content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border: 1px solid #eee;
    padding: 5px;
}

/* 新闻页面样式 */
.news-page {
    display: flex;
    padding: 20px;
}

/* 左侧导航栏样式 */
.sidebar {
    flex: 0 0 240px;
    margin-right: 30px;
}

.side-nav {
    border: none;
    background-color: #f5f5f5;
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
}

.nav-menu {
    margin: 0;
    padding: 0;
}

.nav-item {
    border-bottom: 1px solid #fff;
    transition: background-color 0.3s ease;
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: white;
    background-color: #1e50a2;
    position: relative;
    transition: all 0.3s ease;
    font-weight: normal;
}

.nav-item .nav-header {
    background-color: #1e50a2;
    color: white;
}

.nav-header:hover {
    background-color: #164187;
}

.nav-item.active .nav-header:hover {
    background-color: #164187;
}

.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid white;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-item .arrow {
    border-top-color: white;
}

.arrow-down {
    transform: translateY(-50%) rotate(180deg);
}

.sub-menu {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.3s ease;
    padding: 0;
    margin: 0;
    display: none;
}
.show {
    max-height: 500px;
    display: block;
}


.sub-menu li {
    border-bottom: 1px solid #f2f2f2;
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu a {
    padding: 12px 15px 12px 25px;
    display: block;
    font-size: 14px;
    color: #505050;
    position: relative;
    transition: all 0.3s ease;
}

.sub-menu a:hover {
    color: #1e50a2;
    background-color: #f7f7f7;
}

.sub-menu li.active {
    background-color: #f0f7ff;
}

.sub-menu li.active a {
    color: #1e50a2;
}

/* 新闻内容区样式 */
.news-content {
    flex: 1;
}

/* 热门新闻图片展示样式 */
.featured-news {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.featured-news-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.featured-news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-news-item:hover .featured-news-image img {
    transform: scale(1.05);
}

.featured-news-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.featured-news-title h3 {
    color: white;
    margin: 0;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 新闻列表样式 */
.news-list-page {
    margin-top: 20px;
}

.news-table {
    border-top: 1px solid #eee;
}

.news-table li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-table li:hover {
    background-color: #f9f9f9;
}

.news-icon {
    width: 6px;
    height: 6px;
    background-color: #1565c0;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.news-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    transition: color 0.3s ease;
}

.news-title:hover {
    color: #1565c0;
}

.news-date {
    color: #999;
    font-size: 14px;
    margin-left: 15px;
    flex-shrink: 0;
}

/* 分页样式 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
}

.pagination .current,
.pagination a.active {
    background-color: #1e50a2;
    color: white;
    border-color: #1e50a2;
}

.pagination a:hover {
    background-color: #f1f1f1;
    border-color: #1e50a2;
    color: #1e50a2;
}

.pagination .first, .pagination .prev, .pagination .next, .pagination .last {
    background-color: #f9f9f9;
}

.pagination .ellipsis {
    border: none;
    padding: 8px 0;
}

.pagination .goto {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.page-input {
    width: 40px;
    height: 28px;
    padding: 0 5px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-align: center;
}

.btn-jump {
    padding: 4px 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    color: #333;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-jump:hover {
    background-color: #1565c0;
    color: white;
    border-color: #1565c0;
}

/* 新闻详情样式 */
.news-detail {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.news-detail-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.news-detail-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.news-detail-info {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    text-align: center;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-detail-content p {
    margin-bottom: 15px;
    text-indent: 2em;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-detail-footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.news-navigation {
    display: flex;
    justify-content: space-between;
}

.prev-news, .next-news {
    max-width: 45%;
}

.prev-news a, .next-news a {
    color: #1565c0;
}

.prev-news a:hover, .next-news a:hover {
    text-decoration: underline;
}

/* 激活状态的导航链接 */
.nav-link.active {
    color: #1565c0;
    font-weight: bold;
}

/* 返回按钮样式 */
.back-button {
    margin-bottom: 20px;
}

.btn-back {
    display: inline-block;
    padding: 8px 15px;
    background-color: #1565c0;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #0d47a1;
    color: #fff;
    text-decoration: none;
}

/* 新闻特色图片样式 */
.news-feature-image {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.news-feature-image img.full-width-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.news-feature-image:hover img.full-width-img {
    transform: scale(1.05);
}

.news-feature-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    color: #fff;
}

.news-feature-caption h3 {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}

/* 背景条纹图案 */
.bg-stripe {
    background-image: linear-gradient(45deg, #f5f5f5 25%, transparent 25%, transparent 50%, #f5f5f5 50%, #f5f5f5 75%, transparent 75%, transparent);
    background-size: 10px 10px;
}

/* 主图区域 */
.hero-image-container {
    width: calc(100% - 40px);
    height: 420px;
    overflow: hidden;
    margin: 20px 20px 30px;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 内容布局 */
.main-content {
    display: flex;
    margin: 0 20px 30px;
    gap: 20px;
    justify-content: space-between;
}

.content-left {
    flex: 1.2;
    border: 1px solid #eee;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

/* 顶部全宽图片样式 */
.intro-hero-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.intro-hero-image img {
    width: 100%;
    display: block;
    height: auto;
}

.intro-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 15px 0;
}

/* 面包屑导航容器 */
.breadcrumb-container {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.news-detail-img {
    width: 90%;
    display: block;
    margin: 25px auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* 学生风采页面样式 */
.student-profile {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.student-header {
    text-align: center;
    margin-bottom: 30px;
}

.student-header .title {
    font-size: 24px;
    font-weight: bold;
    color: #1565c0;
    margin-bottom: 10px;
}

.student-header .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.student-header .date-info {
    font-size: 14px;
    color: #999;
}

.student-content {
    margin-bottom: 30px;
}

.student-content h3 {
    font-size: 18px;
    color: #1565c0;
    margin: 20px 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.student-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.student-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 1px solid #eee;
}

.student-content .contact {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 3px solid #1565c0;
}

.student-honor {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 15px;
}

.student-honor h3 {
    color: #1565c0;
    margin-bottom: 10px;
}

.student-honor p {
    margin-bottom: 5px;
}

.student-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.student-nav a {
    padding: 8px 15px;
    background-color: #f0f7ff;
    color: #1565c0;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.student-nav a:hover {
    background-color: #1565c0;
    color: #fff;
}

.student-nav .back {
    background-color: #1565c0;
    color: #fff;
}

/* 优秀校友展示区 */
.alumni-showcase {
    margin: 0 20px 30px;
    padding: 20px 20px 30px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.alumni-showcase .section-header {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    text-align: center;
}

.alumni-showcase .section-header h2 {
    font-size: 20px;
    color: #1565c0;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    font-weight: bold;
    display: inline-block;
}

.alumni-showcase .section-header h2:before,
.alumni-showcase .section-header h2:after {
    content: "";
    height: 1px;
    background-color: #1565c0;
    width: 50px;
    position: absolute;
    top: 50%;
}

.alumni-showcase .section-header h2:before {
    left: -60px;
}

.alumni-showcase .section-header h2:after {
    right: -60px;
}

.alumni-grid {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.alumni-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 0 5px;
}

.alumni-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0 auto;
}

.alumni-item {
    border: 1px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.alumni-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.alumni-info {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
}

.alumni-info h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.alumni-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* 左右箭头样式 */
.alumni-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
    pointer-events: none;
}

.alumni-nav .nav-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    pointer-events: auto;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.alumni-nav .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.alumni-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}