/* 整体背景设计 */
body {
    background: url("../images/pattern-bg.png") repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    z-index: -1;
}

/* 页面标题区域 */
.page-banner {
   /* position: relative;*/
    background: url("../images/haio.png") no-repeat center;
    background-size: cover;
    padding: 80px 0;
    margin-top: 80px;
    color: #fff;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
     /*-webkit-backdrop-filter: blur(2px); */
     /*backdrop-filter: blur(2px);*/
}

/*.page-banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,1) 100%
    );
}*/

.page-banner .container {
    position: relative;
    z-index: 2;
    width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 60px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
}

.breadcrumb {
    margin-top: 30px;
    font-size: 16px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* 主要内容区 */
.main-content {
    padding: 60px 0 80px 0;
    position: relative;
    background: url('../images/pc1-2.jpg') center center / cover no-repeat fixed;
    background-attachment: fixed;
    flex: 1;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    z-index: 1;
}

.main-content .container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    width: 85%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* 左侧导航 */
.side-nav {
    width: 200px;
    min-width: 200px;
    height: fit-content;
    align-self: flex-start;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    position: sticky;
    top: 100px;
}

.side-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.side-nav .nav-title {
    font-size: 20px;
    font-weight: 600;
    color: #006d72;
    padding: 0 20px 15px 20px;
    border-bottom: 2px solid rgba(0,109,114,0.1);
    margin: 0 0 15px 0;
    text-align: center;
}

.side-nav ul {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.side-nav li {
    margin-bottom: 2px;
}

.side-nav li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 15px;
    position: relative;
}

.side-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #006d72;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.side-nav li.active a::before {
    height: 70%;
}

.side-nav li.active a {
    color: #006d72;
    background: rgba(0,109,114,0.05);
    font-weight: 500;
}

.side-nav li a:hover {
    background: rgba(0,109,114,0.05);
    transform: translateX(5px);
}

/* 右侧内容区 */
.content-area {
    flex: 1;
    min-width: 0;
    width: 100%;
}

/* 内容盒子 - 进一步加宽 */
.content-box {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 16px;
    pointer-events: none;
}

/* 内容区域标题 */
.content-box h3 {
    font-size: 32px;
    color: #006d72;
    margin-bottom: 35px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
}

.content-box h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #006d72;
    border-radius: 2px;
}

/* 图文混排区域 */
.intro-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.text-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.text-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.text-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.text-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #006d72;
    border-radius: 50%;
}

/* 院长寄语特殊样式 */
.dean-message {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dean-photo {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.dean-photo img {
    width: 240px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dean-info {
    padding-top: 20px;
}

.dean-info h4 {
    font-size: 28px;
    color: #006d72;
    margin-bottom: 15px;
    font-weight: 600;
}

.dean-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.quote-box {
    text-align: center;
    padding: 40px 0;
}

.quote {
    font-size: 32px;
    color: #006d72;
    font-weight: bold;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.quote::before,
.quote::after {
    content: '"';
    position: absolute;
    font-size: 60px;
    color: rgba(0,109,114,0.1);
    line-height: 1;
}

.quote::before {
    left: 0;
    top: -10px;
}

.quote::after {
    right: 0;
    bottom: -40px;
}

.signature {
    margin-top: 40px;
    text-align: right;
    font-style: italic;
    color: #666;
    font-size: 16px;
}

/* 通用样式 */
h3 {
    font-size: 28px;
    color: #006d72;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: #006d72;
    border-radius: 1.5px;
}

/* 学院简介特殊样式 */
.highlight-box {
    background: linear-gradient(135deg, rgba(0,109,114,0.05) 0%, rgba(52,142,148,0.1) 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #006d72;
}

.highlight-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #006d72 !important;
    font-weight: 500;
    margin: 0 !important;
}

.info-section {
    margin: 40px 0;
    padding-top: 20px;
}

.info-section h4 {
    font-size: 24px;
    color: #006d72;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.info-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #006d72;
    border-radius: 2px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.data-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.data-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.data-item .number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #006d72;
    margin-bottom: 10px;
}

.data-item .label {
    display: block;
    font-size: 14px;
    color: #666;
}

.data-note {
    text-align: right;
    color: #666;
    font-size: 14px;
    margin-top: 10px;
    font-style: italic;
}

/* 院长寄语特殊样式 */
.message-section {
    margin-bottom: 40px;
}

.message-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

.strategy-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0,109,114,0.03) 0%, rgba(52,142,148,0.08) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(0,109,114,0.05) 0%, rgba(52,142,148,0.1) 100%);
}

.strategy-number {
    font-size: 36px;
    font-weight: bold;
    color: #006d72;
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.strategy-content {
    flex: 1;
}

.strategy-content h5 {
    font-size: 20px;
    color: #006d72;
    margin-bottom: 15px;
    font-weight: 600;
}

.strategy-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.conclusion {
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0,109,114,0.05) 0%, rgba(52,142,148,0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid #006d72;
}

.conclusion p {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #006d72 !important;
    font-weight: 500;
    margin: 0 !important;
}

/* 学院领导页面样式 */
.leadership-content {
    padding: 20px 0;
}

.leader-section {
    margin-bottom: 60px;
}

.leader-section:last-child {
    margin-bottom: 0;
}

.leader-section h3 {
    font-size: 28px;
    color: #006d72;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.leader-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #006d72;
}

.leader-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.leader-photo {
    width: 180px;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    flex: 1;
    min-width: 0;
}

.leader-info h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.leader-info .title {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.leader-info .position {
    font-size: 16px;
    color: #006d72;
    margin-bottom: 20px;
    font-weight: 500;
}

.leader-info .contact {
    margin-bottom: 15px;
}

.leader-info .contact p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.leader-info .contact span {
    color: #333;
    font-weight: 500;
    margin-right: 10px;
    min-width: 70px;
}

.leader-info .work {
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.leader-info .work-title {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.leader-info .work p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* 学院领导页面特殊样式 */
.leadership-content .leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.leadership-content .leader-card {
    width: 100%;
    min-width: 500px;
}

/* 组织机构页面样式 */
.org-content {
    padding: 20px 0;
}

.org-section {
    margin-bottom: 60px;
}

.org-section:last-child {
    margin-bottom: 0;
}

.org-section h3 {
    font-size: 28px;
    color: #006d72;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.org-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #006d72;
}

/* 组织架构图样式 */
.org-chart {
    margin: 30px 0;
    text-align: center;
}

.org-chart img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.org-chart img:hover {
    transform: scale(1.02);
}

/* 响应式调整组织架构图 */
@media screen and (max-width: 1000px) {
    .org-chart img {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .org-chart img {
        max-width: 100%;
    }
}

/* 组织卡片网格 */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* 组织卡片样式 */
.org-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.org-card-header {
    background: linear-gradient(135deg, #006d72 0%, #348e94 100%);
    padding: 20px;
    color: #fff;
}

.org-card-header h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

.org-card-body {
    padding: 20px;
}

.org-card-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.org-contact {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.org-contact p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.org-contact span {
    color: #333;
    font-weight: 500;
    margin-right: 10px;
    min-width: 70px;
}

/* 师资队伍页面样式 - 水平卡片两列布局 */
.faculty-content {
    padding: 20px 0;
    width: 100%;
}

.faculty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
    width: 100%;
}

.faculty-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    min-width: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.faculty-photo {
    width: 100px;
    height: 125px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-info {
    flex: 1;
    min-width: 0;
}

.faculty-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #006d72;
    font-weight: 600;
}

.faculty-info h4 a {
    color: #006d72;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faculty-info h4 a:hover {
    color: #004d52;
    text-decoration: underline;
}

.faculty-info .title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.faculty-info .contact {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.faculty-info .research {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: justify;
}

.honor {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
}

.honor-tag {
    position: relative;
    background: linear-gradient(135deg, #348e94 0%, #4a9ca6 100%);
    color: white;
    padding: 12px 30px 12px 18px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.4px;
    border-radius: 0 12px 0 0;
    box-shadow: 0 4px 15px rgba(52, 142, 148, 0.5);
    min-width: 80px;
    text-align: center;
}

.honor-tag::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 12px solid #2a6b72;
    border-bottom: 12px solid transparent;
}

.honor-tag::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    width: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0 12px 0 0;
}

/* 响应式调整 */
@media screen and (max-width: 1400px) {
    .main-content .container {
        max-width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    .main-content .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .leadership-content .leader-grid {
        grid-template-columns: 1fr;
    }

    .leadership-content .leader-card {
        min-width: auto;
    }

    .org-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        margin-top: 52px;
        padding: 40px 0;
    }

    .page-title {
        font-size: 32px;
    }

    .main-content {
        padding: 30px 0;
    }

    .main-content .container {
        flex-direction: column;
        padding: 0 15px;
    }

    .side-nav {
        width: 100%;
        margin-bottom: 30px;
    }

    .content-box {
        padding: 20px;
    }

    .content-box h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .intro-image {
        height: 250px;
    }

    .dean-photo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .dean-photo img {
        width: 200px;
        height: 280px;
    }

    .dean-info h4 {
        font-size: 24px;
    }

    .quote {
        font-size: 24px;
        padding: 0 30px;
    }

    .text-content p,
    .text-content li {
        font-size: 15px;
        line-height: 1.7;
    }

    h3 {
        font-size: 24px;
    }

    /* 导航栏样式调整 */
    .header {
        display: none;
    }

    .common_web_head {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 999;
        background: #006d72;
        padding: 10px;
    }

    .web_nav {
        z-index: 1000;
    }

    /* 学院简介特殊样式 */
    .highlight-box {
        padding: 20px;
        margin: 20px 0;
    }

    .highlight-text {
        font-size: 16px !important;
    }

    .info-section {
        margin: 30px 0;
    }

    .info-section h4 {
        font-size: 20px;
    }

    .data-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .data-item {
        padding: 15px;
    }

    .data-item .number {
        font-size: 28px;
    }

    .data-item .label {
        font-size: 13px;
    }

    .message-section {
        margin-bottom: 30px;
    }

    .message-section p {
        font-size: 15px;
    }

    .strategy-item {
        padding: 20px;
        gap: 15px;
    }

    .strategy-number {
        font-size: 28px;
    }

    .strategy-content h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .strategy-content p {
        font-size: 14px;
    }

    .conclusion {
        margin: 30px 0;
        padding: 20px;
    }

    .conclusion p {
        font-size: 15px !important;
    }

    .leader-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .leader-photo {
        width: 140px;
        height: 180px;
    }

    .leader-info {
        text-align: center;
        padding-top: 0;
    }

    .leader-info .contact p {
        justify-content: center;
    }

    .leader-info .contact span {
        min-width: 60px;
    }

    .leader-info h4 {
        font-size: 20px;
    }

    .leader-info .title,
    .leader-info .position {
        font-size: 15px;
    }

    .leader-grid {
        gap: 20px;
    }

    .org-section {
        margin-bottom: 40px;
    }

    .org-section h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .org-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .org-card-header {
        padding: 15px;
    }

    .org-card-header h4 {
        font-size: 18px;
    }

    .org-card-body {
        padding: 15px;
    }

    .org-contact span {
        min-width: 60px;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faculty-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .faculty-photo {
        width: 100px;
        height: 120px;
        margin: 0 auto 15px auto;
    }

    .faculty-info h4 {
        font-size: 18px;
    }

    .faculty-info .research {
        font-size: 14px;
    }

    .honor {
        justify-content: center;
    }
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .main-content {
        padding: 40px 0 60px 0;
        background-attachment: scroll;
    }

    .main-content::before {
        background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    }

    .main-content .container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }

    .side-nav {
        width: 100%;
        min-width: auto;
        order: 2;
    }

    .content-area {
        order: 1;
    }

    .content-box {
        padding: 25px;
        background: rgba(255,255,255,0.98);
    }

    .side-nav:hover {
        transform: none;
    }
}

/* 联系我们页面样式 */
.contact-content {
    padding: 20px 0;
}

.contact-section {
    margin-bottom: 50px;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.contact-section h3 {
    font-size: 28px;
    color: #006d72;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.contact-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #006d72;
}

.contact-info {
    display: flex;
      color: #fff;
      padding-left: 90px;
      justify-content: space-between;
}

.info-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-item .text h4 {
    font-size: 20px;
    color: #006d72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.info-item .text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.traffic-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.guide-item h4 {
    font-size: 20px;
    color: #006d72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.guide-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.guide-item ul {
    list-style: none;
    padding-left: 0;
}

.guide-item ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.guide-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #006d72;
    border-radius: 50%;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .contact-info,
    .traffic-guide {
        grid-template-columns: 1fr;
    }

    .info-item {
        padding: 20px;
    }

    .info-item .text h4 {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .info-item .text p {
        font-size: 14px;
    }

    .map-container {
        height: 300px;
    }
}

/* 院长寄语页面样式 - 内联照片 */
.dean-photo-inline {
    float: right;
    width: 280px;
    margin: 20px 0 30px 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dean-photo-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dean-info-inline {
    text-align: center;
}

.dean-info-inline h4 {
    font-size: 20px;
    color: #006d72;
    margin-bottom: 8px;
    font-weight: 600;
}

.dean-info-inline p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .dean-photo-inline {
        float: none;
        width: 100%;
        margin: 20px 0;
        display: flex;
        align-items: center;
        padding: 15px;
    }

    .dean-photo-inline img {
        width: 100px;
        height: 120px;
        object-fit: cover;
        margin-right: 15px;
        margin-bottom: 0;
    }

    .dean-info-inline {
        text-align: left;
        flex: 1;
    }

    .dean-info-inline h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .dean-info-inline p {
        font-size: 13px;
        margin-bottom: 2px;
    }
}

/* 院长寄语页面样式 - 重新设计 */
.dean-message {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 院长简介卡片 */
.dean-intro-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,109,114,0.05) 0%, rgba(52,142,148,0.05) 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0,109,114,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.dean-avatar {
    width: 140px;
    height: 170px;
    margin-right: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.dean-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dean-basic-info h3 {
    font-size: 32px;
    color: #006d72;
    margin-bottom: 12px;
    font-weight: 700;
}

.dean-basic-info .position {
    font-size: 18px;
    color: #006d72;
    font-weight: 600;
    margin-bottom: 8px;
}

.dean-basic-info .title {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.quote-highlight {
    background: linear-gradient(135deg, #006d72, #4a9ca6);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,109,114,0.3);
}

.quote-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* 消息内容区域 */
.message-header {
    text-align: center;
    margin-bottom: 40px;
}

.message-header h3 {
    font-size: 36px;
    color: #006d72;
    margin-bottom: 15px;
    font-weight: 600;
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #006d72, #4a9ca6);
    margin: 0 auto;
    border-radius: 2px;
}

/* 消息段落 */
.message-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    border-left: 4px solid #006d72;
}

.section-icon {
    font-size: 32px;
    margin-right: 20px;
    margin-top: 5px;
}

.section-content {
    flex: 1;
}

.section-content h4 {
    font-size: 24px;
    color: #006d72;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 15px;
}

/* 战略网格保持原有样式但调整间距 */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

/* 签名区域 */
.signature-section {
    text-align: right;
    margin-top: 40px;
}

.signature {
    display: inline-block;
    padding: 20px 30px;
    background: rgba(0,109,114,0.05);
    border-radius: 12px;
    border: 1px solid rgba(0,109,114,0.1);
}

.signature-name {
    font-size: 18px;
    color: #006d72;
    font-weight: 600;
    font-family: "SimSun", serif;
}

.signature-image {
    height: 40px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
    filter: contrast(1.1);
}

.signature-date {
    font-size: 14px;
    color: #666;
    font-family: "SimSun", serif;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .dean-intro-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .dean-avatar {
        width: 120px;
        height: 150px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .dean-basic-info h3 {
        font-size: 28px;
    }

    .message-header h3 {
        font-size: 28px;
    }

    .message-section {
        flex-direction: column;
        padding: 20px;
    }

    .section-icon {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .section-content h4 {
        font-size: 20px;
        text-align: center;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .signature-section {
        text-align: center;
    }
}

/* 院长寄语页面样式 - 正式版 */
.dean-message {
    max-width: 900px;
    margin: 0 auto;
}

/* 院长信息栏 - 添加背景图 */
.dean-header {
    display: flex;
    align-items: center;
    padding: 40px 30px;
    border-bottom: 2px solid #006d72;
    margin-bottom: 40px;
    background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(241, 245, 249, 0.85)),
                url('../images/4c75009d56df46c097f69d69ee0d59a.jpg')right;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 12px;
    position: relative;
    min-height: 200px;
}

/* 添加背景图案的叠加效果 */
.dean-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,109,114,0.01) 0%, rgba(52,142,148,0.01) 100%);
    border-radius: 12px;
    z-index: 1;
}

.dean-header > * {
    position: relative;
    z-index: 2;
}

.dean-photo-formal {
    width: 120px;
    height: 150px;
    margin-right: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.8);
}

.dean-photo-formal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dean-info-formal {
    flex: 1;
    /* background: rgba(255,255,255,0.7); */
    padding: 20px;
    /* border-radius: 8px; */
    /* backdrop-filter: blur(3px); */
    /* -webkit-backdrop-filter: blur(3px); */
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5); */
}

.dean-name {
    font-size: 28px;
    color: #006d72;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: "SimSun", serif;
}

.dean-position {
    font-size: 16px;
    color: #006d72;
    font-weight: 500;
    margin-bottom: 5px;
}

.dean-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* 移除原来的dean-motto相关样式 */

/* 院长寄语正文 */
.message-title {
    text-align: center;
    margin-bottom: 40px;
}

.message-title h3 {
    font-size: 32px;
    color: #006d72;
    font-weight: 600;
    font-family: "SimSun", serif;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.message-title h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #006d72;
}

/* 段落样式 */
.paragraph-section {
    margin-bottom: 25px;
}

.paragraph-section p {
    font-size: 16px;
    line-height: 2;
    color: #333;
    text-align: justify;
    text-indent: 2em;
    margin: 0;
}

/* 发展战略列表 */
.strategy-list {
    margin: 30px 0;
    padding: 20px 0;
}

.strategy-item-formal {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #006d72;
    background: rgba(0,109,114,0.02);
    padding: 20px;
    border-radius: 4px;
}

.strategy-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.strategy-num {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #006d72;
    color: white;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
    font-family: "SimSun", serif;
}

.strategy-header h4 {
    font-size: 18px;
    color: #006d72;
    margin: 0;
    font-weight: 600;
}

.strategy-item-formal p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-indent: 0;
    text-align: justify;
}

/* 结论段落 */
.conclusion {
    margin-top: 40px;
    padding: 25px;
    background: rgba(0,109,114,0.03);
    border-radius: 6px;
    border: 1px solid rgba(0,109,114,0.1);
}

/* 签名区域 */
.signature-formal {
    text-align: right;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.signature-line {
    margin-bottom: 8px;
}

.signature-title {
    font-size: 16px;
    color: #666;
    margin-right: 20px;
    font-family: "SimSun", serif;
}

.signature-name {
    font-size: 18px;
    color: #006d72;
    font-weight: 600;
    font-family: "SimSun", serif;
}

.signature-image {
    height: 40px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
    filter: contrast(1.1);
}

.signature-date {
    font-size: 14px;
    color: #666;
    font-family: "SimSun", serif;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .dean-header {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .dean-photo-formal {
        width: 100px;
        height: 125px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .dean-motto {
        margin-left: 0;
        margin-top: 15px;
        text-align: center;
    }

    .dean-name {
        font-size: 24px;
    }

    .message-title h3 {
        font-size: 26px;
    }

    .paragraph-section p {
        font-size: 15px;
        line-height: 1.8;
    }

    .strategy-item-formal {
        padding: 15px;
    }

    .strategy-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .strategy-num {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .signature-formal {
        text-align: center;
    }

    .signature-image {
        height: 35px;
        margin-left: 8px;
    }
}

/* 教育页面 - 新闻列表样式 */
.edu-content h3 {
    font-size: 28px;
    color: #006d72;
    margin-bottom: 20px;
    font-weight: 600;
}

.edu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.edu-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    padding: 16px 18px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.edu-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #006d72;
    border-radius: 50%;
}

.edu-item .title {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    line-height: 1.75;
}

.edu-item .title:hover {
    color: #006d72;
    text-decoration: underline;
}

.edu-item .date {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.edu-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* 分页样式优化 */
.pagination {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.pagination .page {
    padding: 8px 14px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    text-decoration: none;
    color: #006d72;
    background: #fff;
}

.pagination .page.active {
    background: #006d72;
    color: #fff;
    border-color: #006d72;
}

.pagination .page:hover {
    background: rgba(0,109,114,0.08);
}

/* 响应式 */
@media screen and (max-width: 768px) {
    .edu-item {
        grid-template-columns: 1fr auto;
        gap: 10px;
    }
    .edu-item::before { display:none; }
    .edu-item .title { font-size: 15px; }
    .edu-item .date { font-size: 13px; }
}

/* 底部 */
.footer {
    margin-top: auto;
    width: 100%;
    background: #fff;
}

/* 院长寄语页面响应式调整 */
@media screen and (max-width: 768px) {
    .dean-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        background-size: contain;
        background-position: center bottom;
        min-height: 250px;
    }

    .dean-photo-formal {
        width: 100px;
        height: 125px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .dean-info-formal {
        width: 100%;
        padding: 15px;
    }

    .dean-name {
        font-size: 24px;
    }

    .dean-position {
        font-size: 15px;
    }

    .dean-title {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .dean-header {
        background-size: cover;
        background-position: center;
        min-height: 220px;
    }

    .dean-header::before {
        background: linear-gradient(135deg, rgba(248,250,252,0.9) 0%, rgba(241,245,249,0.9) 100%);
    }
}

/* 学术速递页面专用样式 */
.lecture-list {
    margin: 20px 0;
}

.lecture-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lecture-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #006d72;
}

.lecture-link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 20px;
}

.lecture-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.lecture-time {
    font-size: 16px;
    font-weight: 600;
    color: #006d72;
}

.lecture-time .date {
    margin-right: 10px;
}

.lecture-time .time {
    color: #666;
    font-weight: normal;
}

.lecture-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: #f5f5f5;
    color: #666;
}

/* 即将开始的状态 */
.lecture-status.upcoming {
    background: #e8f5e8;
    color: #2e7d32;
}

/* 已结束的状态 */
.lecture-status.finished {
    background: #f5f5f5;
    color: #666;
}

.lecture-content {
    padding-top: 5px;
}

.lecture-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.lecture-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.detail-item .label {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.detail-item .value {
    color: #333;
    margin-left: 5px;
}

/* 讲座信息专用样式 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.info-item .label {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
}

.info-item .value {
    color: #333;
    margin-left: 5px;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .lecture-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .lecture-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lecture-title {
        font-size: 16px;
    }

    .lecture-link {
        padding: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
}