/* 导航栏样式 */
.navbar {
    background-color: #F5E6D3;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 60px;
    transition: height 0.3s ease;
}

.nav-link {
    color: #333 !important;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    font-family: "Times New Roman", SimSun, serif;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B4513 !important;
}

.btn-primary {
    background-color: #0056b3;
    border: none;
    padding: 0.5rem 1rem;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
}

/* 自定义切换按钮样式 */
.custom-toggler {
    border: none;
    padding: 0.25rem;
    background: transparent;
}

.toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 导航菜单展开动画 */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        height: 50px;
    }

    .navbar-collapse {
        background-color: #F5E6D3;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1.1rem;
    }
    
    .btn-primary {
        margin: 1rem auto;
        display: inline-block;
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
}

/* 轮播图样式 */
.main-slider {
    width: 100%;
    height: calc(100vh - 92px); /* 减去导航栏高度 */
    margin-top: 92px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.slide-desc {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: rgba(255,255,255,0.9);
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    color: #333;
}

/* Swiper导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .main-slider {
        height: 60vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-desc {
        font-size: 1.2rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
    }
} 

/* 课程介绍部分 */
.courses-section {
    padding: 4rem 0;
    background-color: #fff;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
    color: #666;
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 -0.75rem;
}

.course-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
    min-height: 340px;
}

.course-card:hover {
    transform: translateY(-5px);
}

/* 卡片背景色 */
.card-yellow {
    background-color: #FFE55C;
}

.card-blue {
    background-color: #0056B3;
    color: #fff;
}

.card-beige {
    background-color: #F5E6D3;
}

.card-navy {
    background-color: #000080;
    color: #fff;
}

/* 卡片图标 */
.card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-yellow .card-icon {
    background-color: #0056B3;
    color: #fff;
}

.card-blue .card-icon {
    background-color: #FFD700;
    color: #0056B3;
}

.card-beige .card-icon {
    background-color: #8B4513;
    color: #fff;
}

.card-navy .card-icon {
    background-color: #FFD700;
    color: #000080;
}

.card-icon i {
    font-size: 26px;
}

/* 卡片内容 */
.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.card-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* 箭头按钮 */
.card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: all 0.3s ease;
}

.card-arrow:hover {
    background-color: rgba(255,255,255,0.4);
    color: inherit;
    text-decoration: none;
}

.card-arrow i {
    font-size: 1.1rem;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .course-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .card-icon {
        width: 90px;
        height: 90px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .course-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .course-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
    }
    
    .card-icon i {
        font-size: 22px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
}

/* 新闻部分样式 */
.news-section {
    padding: 4rem 0;
    background-color: #FDF6F0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 500;
}

.news-slider {
    position: relative;
    padding: 0 3rem;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 标签样式 */
.news-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.event {
    background-color: #FF8C00;
    color: #fff;
}

.news {
    background-color: #0056B3;
    color: #fff;
}

.news-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: #0056B3;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #003d7a;
    text-decoration: none;
}

/* 导航按钮 */
.news-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.news-prev,
.news-next {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.news-prev:hover,
.news-next:hover {
    background: rgba(0,0,0,0.3);
}

.news-prev {
    left: 0;
}

.news-next {
    right: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-slider {
        padding: 0 2rem;
    }
    
    .news-card {
        padding: 1.2rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-desc {
        font-size: 0.9rem;
    }
}

/* 页脚样式 */
.footer {
    background-color: #003366;
    color: #fff;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr 1.5fr;
    gap: 2rem;
}

/* Logo部分 */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    width: 180px;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* 导航菜单 */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.footer-nav-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    margin-bottom: 0.8rem;
}

.footer-nav-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-nav-col ul li a:hover {
    color: #fff;
}

/* 联系信息 */
.footer-contact {
    padding-left: 2rem;
}

.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.contact-info a:hover {
    color: #fff;
}

.address {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.directions-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.directions-btn:hover {
    opacity: 0.8;
    color: #fff;
    text-decoration: none;
}

/* 社交媒体链接 */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.support-btn {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: #ffd900;
    transform: translateY(-2px);
    text-decoration: none;
    color: #333;
}

/* 底部版权信息 */
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-contact {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        width: 150px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .support-btn {
        display: block;
        text-align: center;
    }
}

/* Institute页面样式 */
.institute-section {
    padding: 4rem 0;
    background-color: #fff;
}

.institute-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.institute-text {
    flex: 1;
}

.institute-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.institute-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.institute-image {
    flex: 1;
}

.institute-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.institute-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.institute-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #F5E6D3;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.institute-link:hover {
    transform: translateY(-5px);
    background-color: #0056B3;
    color: #fff;
    text-decoration: none;
}

.institute-link i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Academy部分样式 */
.academy-section {
    padding: 4rem 0;
    background-color: #F8F9FA;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.academy-content {
    max-width: 800px;
    margin: 0 auto;
}

.academy-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

/* Academic Staff部分样式 */
.staff-section {
    padding: 4rem 0;
    background-color: #fff;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.staff-card {
    background-color: #F5E6D3;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info {
    padding: 1.5rem;
}

.staff-name {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.staff-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.staff-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Monastery部分样式 */
.monastery-section {
    padding: 4rem 0;
    background-color: #F8F9FA;
}

.monastery-content {
    max-width: 800px;
    margin: 0 auto;
}

.monastery-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

/* Administration部分样式 */
.admin-section {
    padding: 4rem 0;
    background-color: #fff;
}

.admin-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.admin-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.admin-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.structure-item {
    background-color: #F5E6D3;
    border-radius: 12px;
    padding: 2rem;
}

.structure-item h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
}

.structure-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.sub-councils {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.council-item {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1.5rem;
}

.council-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.council-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .institute-content {
        flex-direction: column;
    }

    .institute-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .institute-title,
    .section-title {
        font-size: 2rem;
    }

    .institute-links {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-photo {
        height: 250px;
    }

    .admin-structure {
        grid-template-columns: 1fr;
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .institute-title,
    .section-title {
        font-size: 2rem;
    }

    .institute-links {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-photo {
        height: 250px;
    }

    .admin-structure {
        grid-template-columns: 1fr;
    }
}

/* 教育页面样式 */
.education-section {
    padding: 4rem 0;
    background-color: #fff;
}

.education-content {
    margin-bottom: 3rem;
}

.education-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.education-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.education-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* 课程轮播样式 */
.courses-slider {
    position: relative;
    padding: 0 3rem;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    overflow: hidden;
}

/* 卡片颜色 */
.card-yellow {
    background-color: #FFD426;
}

.card-blue {
    background-color: #025BC1;
    color: #fff;
}

.card-beige {
    background-color: #FFE5A8;
}

/* 课程头部 */
.course-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.course-name {
    font-size: 1.4rem;
    font-weight: 600;
}

.small-text {
    font-size: 1rem;
    opacity: 0.8;
}

/* 课程图标样式 */
.course-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
}

.course-icon i {
    font-size: 28px;
}

/* 黄色卡片图标颜色 */
.card-yellow .course-icon {
    background: #0056B3;
    color: #fff;
}

/* 蓝色卡片图标颜色 */
.card-blue .course-icon {
    background: #FFD700;
    color: #0056B3;
}

/* 米色卡片图标颜色 */
.card-beige .course-icon {
    background: #8B4513;
    color: #fff;
}

/* 详情图标样式 */
.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 1rem;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 18px;
}

/* 黄色卡片详情图标颜色 */
.card-yellow .detail-icon {
    background: #0056B3;
    color: #fff;
}

/* 蓝色卡片详情图标颜色 */
.card-blue .detail-icon {
    background: #FFD700;
    color: #0056B3;
}

/* 米色卡片详情图标颜色 */
.card-beige .detail-icon {
    background: #8B4513;
    color: #fff;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .course-icon {
        width: 50px;
        height: 50px;
    }

    .course-icon i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .course-icon {
        width: 45px;
        height: 45px;
    }

    .course-icon i {
        font-size: 20px;
    }

    .detail-icon {
        width: 35px;
        height: 35px;
    }

    .detail-icon i {
        font-size: 16px;
    }
}

/* 课程描述 */
.course-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* 课程详情列表 */
.course-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* 课程列表容器 */
.course-list-container ul {
    list-style: disc;
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.course-list-container li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Swiper导航按钮 */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    color: #fff;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0,0,0,0.3);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.2rem;
}

/* 分页器 */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #666;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #025BC1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .education-section {
        padding: 3rem 0;
    }

    .courses-slider {
        padding: 0 2rem;
    }

    .course-card {
        padding: 1.5rem;
    }

    .course-name {
        font-size: 1.2rem;
    }

    .course-description {
        font-size: 0.95rem;
    }
}

/* 冥想介绍部分 */
.meditation-intro {
    background-color: #E6DDD4;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.meditation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.meditation-text {
    flex: 1;
}

.meditation-text h1 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.meditation-text p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

.meditation-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.circle-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
}

.curve-bg {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    /* background-image: url('../css/curve-bg.svg'); */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .meditation-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .meditation-text h1 {
        font-size: 3rem;
    }

    .meditation-text p {
        font-size: 1.3rem;
        margin: 0 auto;
    }

    .meditation-image {
        justify-content: center;
    }

    .circle-image {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .meditation-intro {
        padding: 100px 0 60px;
    }

    .meditation-text h1 {
        font-size: 2.5rem;
    }

    .meditation-text p {
        font-size: 1.2rem;
    }

    .circle-image {
        width: 250px;
        height: 250px;
    }
}

/* 冥想课程部分 */
.meditation-courses {
    padding: 4rem 0;
    background-color: #fff;
}

.meditation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.meditation-card {
    background-color: #F5E6D3;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.meditation-card:hover {
    transform: translateY(-5px);
}

.meditation-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #0056B3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.meditation-card .card-icon i {
    font-size: 28px;
}

.meditation-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.meditation-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.feature-list li i {
    color: #0056B3;
    font-size: 0.9rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0056B3;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 0.8rem;
    color: #003d7a;
    text-decoration: none;
}

/* 冥想活动部分 */
.meditation-events {
    padding: 4rem 0;
    background-color: #F8F9FA;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
}

.event-date {
    background-color: #0056B3;
    color: #fff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.event-date .date {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    margin-top: 0.3rem;
}

.event-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.event-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.event-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-details {
    margin-bottom: 1.2rem;
}

.event-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.event-details i {
    color: #0056B3;
}

.register-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #0056B3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: #003d7a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .meditation-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .meditation-grid,
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .meditation-card {
        padding: 1.5rem;
    }

    .meditation-card .card-icon {
        width: 60px;
        height: 60px;
    }

    .meditation-card .card-icon i {
        font-size: 24px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        padding: 1rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }

    .event-date .date {
        font-size: 1.5rem;
    }

    .event-content {
        padding: 1.2rem;
    }
}

/* 新闻页面样式 */
.news-page-section {
    padding: 4rem 0;
    background-color: #fff;
}

/* 新闻筛选 */
.news-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #0056B3;
    border-radius: 5px;
    background: none;
    color: #0056B3;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #0056B3;
    color: #fff;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    width: 250px;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #0056B3;
    outline: none;
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* 新闻列表 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.event {
    background-color: #0056B3;
}

.news {
    background-color: #28a745;
}

.announcement {
    background-color: #ffc107;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.page-number,
.page-prev,
.page-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 5px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-prev:hover,
.page-next:hover {
    border-color: #0056B3;
    color: #0056B3;
    text-decoration: none;
}

.page-number.active {
    background-color: #0056B3;
    border-color: #0056B3;
    color: #fff;
}

.page-dots {
    color: #666;
    padding: 0 0.5rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .news-filter {
        flex-direction: column;
        gap: 1.5rem;
    }

    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .news-image {
        height: 200px;
    }

    .news-content {
        padding: 1.2rem;
    }

    .news-content h3 {
        font-size: 1.2rem;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

/* 联系页面样式 */
.contact-section {
    padding: 4rem 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

/* 联系信息卡片 */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background-color: #F5E6D3;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0056B3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-card .card-icon i {
    font-size: 24px;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.direction-btn,
.call-btn,
.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0056B3;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.direction-btn:hover,
.call-btn:hover,
.email-btn:hover {
    gap: 0.8rem;
    color: #003d7a;
    text-decoration: none;
}

/* 联系表单 */
.contact-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0056B3;
    outline: none;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #0056B3;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
}

/* 地图部分 */
.map-section {
    padding: 4rem 0;
    background-color: #F8F9FA;
}

.map-section h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card .card-icon {
        width: 50px;
        height: 50px;
    }

    .info-card .card-icon i {
        font-size: 20px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.8rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 关于我们页面样式 */
.about-section {
    padding: 4rem 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 位置信息部分 */
.location-section {
    padding: 4rem 0;
    background-color: #F8F9FA;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.location-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.location-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.location-buttons {
    display: flex;
    gap: 1rem;
}

.btn-direction,
.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-direction {
    background-color: #0056B3;
    color: #fff;
}

.btn-map {
    background-color: #F5E6D3;
    color: #333;
}

.btn-direction:hover,
.btn-map:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-direction:hover {
    background-color: #003d7a;
    color: #fff;
}

.btn-map:hover {
    background-color: #e6d5c0;
    color: #333;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 建立历史部分 */
.establishment-section {
    padding: 4rem 0;
    background-color: #fff;
}

.establishment-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #0056B3;
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #0056B3;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #0056B3;
}

.timeline-content {
    width: calc(50% - 3rem);
    padding: 1.5rem;
    background-color: #F5E6D3;
    border-radius: 12px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* 愿景和使命部分 */
.vision-mission-section {
    padding: 4rem 0;
    background-color: #F8F9FA;
}

.vision-mission-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0056B3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-card .card-icon i {
    font-size: 32px;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-buttons {
        flex-direction: column;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item::before {
        left: 0;
    }

    .timeline-content {
        width: calc(100% - 3rem);
        margin-left: 3rem !important;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text h2,
    .location-text h2,
    .establishment-section h2,
    .vision-mission-section h2 {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .btn-direction,
    .btn-map {
        width: 100%;
        justify-content: center;
    }
}

/* 查询页面样式 */
.verification-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.verification-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.verification-header {
    text-align: center;
    margin-bottom: 40px;
}

.verification-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.verification-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.verification-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    font-size: 1.1rem;
    color: #666;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #333;
    border-bottom-color: #ffd700;
}

.verification-form {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.verification-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #ffd700;
    outline: none;
}

.verification-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.code-image {
    height: 40px;
    border-radius: 5px;
}

.refresh-code {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.refresh-code:hover {
    color: #333;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #ffd700;
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #ffed4a;
}

.verification-result {
    display: none;
    margin-top: 30px;
    position: relative;
}

.close-result {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.close-result:hover {
    color: #333;
}

.result-success,
.result-error {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 5px;
}

.result-success {
    background-color: #e8f5e9;
}

.result-error {
    background-color: #ffebee;
}

.result-icon {
    font-size: 2rem;
}

.result-success .result-icon {
    color: #4caf50;
}

.result-error .result-icon {
    color: #f44336;
}

.result-details {
    flex-grow: 1;
}

.detail-item {
    margin-bottom: 10px;
}

.detail-label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.detail-value {
    color: #666;
}

.error-message {
    color: #f44336;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .verification-header h2 {
        font-size: 2rem;
    }
    
    .verification-form {
        padding: 20px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .verification-header h2 {
        font-size: 1.8rem;
    }
    
    .verification-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* 新闻详情页样式 */
.news-detail-section {
    padding: 120px 0 80px;
    background-color: #fff;
}

.news-detail-header {
    margin-bottom: 40px;
}

.news-meta {
    margin-bottom: 20px;
}

.news-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
}

.news-tag.event {
    background-color: #FFE5D9;
    color: #FF6B6B;
}

.news-tag.news {
    background-color: #E3F2FD;
    color: #2196F3;
}

.news-date {
    color: #666;
    font-size: 14px;
}

.news-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn i {
    margin-right: 8px;
}

.share-btn.facebook {
    background-color: #1877F2;
    color: #fff;
}

.share-btn.twitter {
    background-color: #1DA1F2;
    color: #fff;
}

.share-btn.whatsapp {
    background-color: #25D366;
    color: #fff;
}

.news-detail-content {
    margin-bottom: 60px;
}

.news-image {
    margin-bottom: 30px;
}

.news-image img {
    width: 100%;
    border-radius: 10px;
}

.news-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.news-text p {
    margin-bottom: 20px;
}

.news-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.news-text ul li {
    margin-bottom: 10px;
}

.related-news {
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.related-news h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* 查询结果页样式 */
.verification-result-section {
    padding: 120px 0 80px;
    background-color: #F8F9FA;
}

.result-header {
    text-align: center;
    margin-bottom: 40px;
}

.result-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.result-status {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
}

.result-status.success {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.result-status i {
    margin-right: 10px;
    font-size: 20px;
}

.result-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.student-info,
.qualification-info {
    margin-bottom: 40px;
}

.student-info h2,
.qualification-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.info-item span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.status.active {
    color: #4CAF50;
}

.certificate-preview {
    margin-bottom: 40px;
}

.certificate-preview h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.preview-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.preview-container img {
    width: 100%;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-container:hover .preview-overlay {
    opacity: 1;
}

.preview-btn {
    background-color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.preview-btn i {
    margin-right: 8px;
}

.result-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn i {
    margin-right: 8px;
}

.action-btn.download {
    background-color: #4CAF50;
    color: #fff;
}

.action-btn.print {
    background-color: #2196F3;
    color: #fff;
}

.action-btn.verify {
    background-color: #FF9800;
    color: #fff;
}

.verification-note {
    padding: 20px;
    background-color: #FFF8E1;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.verification-note p:last-child {
    margin-bottom: 0;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .news-detail-section,
    .verification-result-section {
        padding: 100px 0 60px;
    }

    .news-title {
        font-size: 28px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-content {
        padding: 20px;
    }
}