/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部信息栏 */
.top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
    color: #666;
}

.top-info i {
    color: #0066cc;
    margin-right: 5px;
}

.top-links a {
    margin-left: 20px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.top-links a:hover {
    color: #0066cc;
}

/* 导航栏 */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

.school-name h1 {
    font-size: 24px;
    color: #0066cc;
    font-weight: 600;
}

.school-name p {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    /* 调大导航菜单整体字体 */
    font-size: 18px;
}

.nav-link {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    /* 增加背景色过渡以便悬浮/选中效果更柔和 */
    transition: color 0.3s, background-color 0.3s;
    position: relative;
    /* 悬浮/选中小圆角更友好 */
    border-radius: 6px;
}

.nav-link:hover {
    /* 悬浮时文字高亮并微调背景 */
    color: #0066cc;
    background-color: #f8f9fa;
}

.nav-link.active {
    /* 选中态增加背景高亮与加粗 */
    color: #0066cc;
    background-color: #e3f2fd;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: #0066cc;
}

/* 下拉菜单 */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    /* 下拉项与主菜单保持更醒目的字号 */
    font-size: 18px;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}

/* 下拉项选中态（支持 .active 或 aria-current="page"） */
.dropdown-content a.active,
.dropdown-content a[aria-current="page"] {
    background-color: #e3f2fd;
    color: #0066cc;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* 轮播图 */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 按钮样式 */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.btn-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #0052a3;
}

/* 快速入口 */
.quick-links {
    padding: 40px 0;
    background-color: #fff;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.link-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.link-card i {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 15px;
    display: block;
}

.link-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.link-card p {
    color: #666;
    font-size: 14px;
}

/* 通用章节样式 */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: #0066cc;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* 学校简介 */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    color: #0066cc;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 专业介绍 */
.majors-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.majors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.major-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.major-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #0066cc;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.major-card:hover::before {
    transform: scaleX(1);
}

.major-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.major-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.major-icon i {
    font-size: 36px;
    color: #0066cc;
}

.major-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.major-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e3f2fd;
    color: #0066cc;
    font-size: 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.major-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 新闻动态 */
.news-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.tab-btn.active {
    color: #0066cc;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0066cc;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.news-date {
    width: 80px;
    text-align: center;
    margin-right: 30px;
}

.news-date .day {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    display: block;
}

.news-date .month {
    color: #666;
    font-size: 14px;
}

.news-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-text h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-text h4 a:hover {
    color: #0066cc;
}

.news-text p {
    color: #666;
    line-height: 1.6;
}

/* 校园风采 */
.campus-life {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.campus-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 18px;
}

/* 合作企业 */
.partners-section {
    padding: 80px 0;
    background-color: #fff;
}

.partners-slider {
    margin-top: 40px;
}

.partners-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partners-slider img {
    max-width: 150px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partners-slider img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* 联系我们 */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.campus-info {
    margin-bottom: 30px;
}

.campus-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.campus-info p {
    color: #666;
    margin-bottom: 10px;
}

.campus-info i {
    color: #0066cc;
    margin-right: 10px;
}

.contact-extra p {
    color: #666;
    margin-bottom: 10px;
}

.contact-extra i {
    color: #0066cc;
    margin-right: 10px;
}

.contact-map iframe {
    border-radius: 10px;
    border: none;
}

/* 页脚 */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #0066cc;
}

.social-links i {
    color: #fff;
    font-size: 18px;
}

.qrcode {
    text-align: center;
}

.qrcode img {
    width: 100px;
    height: 100px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.qrcode p {
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 5px;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0052a3;
    transform: translateY(-5px);
}

/* Swiper样式覆盖 */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* 顶层头部与次层导航（参考SCAC） */
.top-header { background-color:#fff; border-bottom:1px solid #e9ecef; }
.top-header .container { display:flex; justify-content:space-between; align-items:center; gap:24px; padding:12px 20px; }
.brand { display:flex; align-items:center; gap:12px; }
.brand .logo { width:64px; height:64px; object-fit:contain; }
.top-actions { display:flex; align-items:center; gap:12px; }
.action-link { color:#0066cc; text-decoration:none; font-weight:500; }
.action-link:hover { color:#0052a3; }
.search-box-top { display:flex; align-items:center; border:1px solid #ddd; border-radius:20px; padding:2px 8px; background:#fff; }
.search-box-top input { border:none; outline:none; padding:6px 8px; min-width:160px; }
.search-box-top button { background:none; border:none; cursor:pointer; color:#666; }

.below-nav { background:#0066cc; position:sticky; top:0; z-index:1000; }
.below-nav .container { display:flex; justify-content:space-between; align-items:center; padding:10px 20px; }
.below-nav .nav-menu { display:flex; align-items:center; gap:8px; }
.below-nav .nav-link { color:#fff; }
/* 次层导航悬浮/选中：浅蓝背景 + 深蓝文字，提升对比度 */
.below-nav .nav-link:hover,
.below-nav .nav-link.active { color:#0066cc; background-color:#e3f2fd; border-radius:6px; }
/* 次层导航下取消底部下划线，避免与相邻项重叠 */
.below-nav .nav-link.active::after { display:none; }
.below-nav .nav-toggle { color:#fff; }

/* 概况 + 新闻两列布局 */
.overview-news { padding:60px 0; background:#fff; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:stretch; }
.col-left, .col-right { min-width:0; display:flex; flex-direction:column; }
@media (max-width:992px){ .two-col { grid-template-columns:1fr; } }
.overview-news .about-content { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:center; }

/* 顶部新闻区域 */
.news-top { padding: 60px 0; background:#fff; }
.news-top .section-header { text-align:left; margin-bottom:24px; }
.news-top .section-header h2 { font-size:24px; margin-bottom:8px; }
.section-header.header-with-action { display:flex; justify-content:space-between; align-items:center; gap:16px; }
.section-header.header-with-action .header-left { display:flex; flex-direction:column; gap:8px; }
.header-more { display:inline-block; padding:8px 16px; border-radius:20px; border:2px solid #0066cc; color:#0066cc; text-decoration:none; font-weight:500; white-space:nowrap; }
.header-more:hover { background:#0066cc; color:#fff; }
.news-list-thumb { display:flex; flex-direction:column; gap:16px; flex:1; }
.news-item-thumb { display:grid; grid-template-columns:160px 1fr; gap:16px; align-items:start; padding:16px 0; border-bottom:1px solid #e9ecef; }
.news-item-thumb .thumb { display:block; }
.news-item-thumb .thumb img { width:100%; height:120px; object-fit:cover; border-radius:6px; }
.news-item-thumb h4 { font-size:16px; margin-bottom:8px; line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.news-item-thumb h4 a { color:#333; text-decoration:none; }
.news-item-thumb h4 a:hover { color:#0066cc; }
.news-item-thumb .meta { color:#999; font-size:12px; }
.news-item-thumb .info p { color:#666; line-height:1.6; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

/* 右侧公告列表 */
.notice-list { list-style:none; padding:0; margin:0; flex:1; }
.notice-list li { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:12px 0; border-bottom:1px dashed #e9ecef; }
.notice-list li a { flex:1; color:#333; text-decoration:none; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.notice-list li a:hover { color:#0066cc; }
.notice-list li .date { color:#999; font-size:12px; }
.notice-list li .date { color:#999; font-size:12px; }

/* 响应式处理 */
@media (max-width:768px){
  .news-item-thumb { grid-template-columns:1fr; }
  .news-item-thumb .thumb img { height:180px; }
}

/* 底部快速入口适配 */
.quick-links { border-top:1px solid #e9ecef; }
@media (max-width:992px){
  .links-grid { grid-template-columns:repeat(2,1fr); }
}

/* 顶部头部响应式 */
@media (max-width:768px){
  .top-header .container { flex-direction:column; align-items:flex-start; }
  .top-actions { flex-wrap:wrap; }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .majors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .campus-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* 顶部栏 */
    .top-bar {
        display: none;
    }
    
    /* 导航栏 */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 10px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    /* 轮播图 */
    .hero-slider,
    .slide-image {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    /* 快速入口 */
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    /* 学校简介 */
    .about-section .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 专业介绍 */
    .majors-grid {
        grid-template-columns: 1fr;
    }
    
    /* 新闻动态 */
    .news-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        white-space: nowrap;
        padding: 15px 20px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-date {
        margin-bottom: 15px;
        width: auto;
    }
    
    /* 校园风采 */
    .campus-gallery {
        grid-template-columns: 1fr;
    }
    
    /* 联系我们 */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* 页脚 */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    /* 移动端：搜索框占满一行 */
    .search-box-top { width: 100%; }
    .search-box-top input { width: 100%; min-width: 0; }
    .search-box-top button { padding: 6px 8px; }
}

@media (max-width: 480px) {
    .school-name h1 {
        font-size: 18px;
    }
    
    .school-name p {
        font-size: 11px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

/* =========================================
   û/ҵ ʽ
   ========================================= */

/* ¼/עҳ */
.auth-wrapper {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
    padding: 40px 20px;
}

.auth-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
    transition: transform 0.3s ease;
}

.auth-box:hover {
    transform: translateY(-5px);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 14px;
}

/*  Bootstrap ʽ */
.form-control-lg {
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
}

/* Dashboard  */
.dashboard-container {
    padding: 30px 0;
    min-height: 80vh;
}

.dashboard-header {
    background: #fff;
    padding: 24px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-bottom: 24px;
    border-left: 5px solid #0066cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.card-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.3s ease;
}

.card-box:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-title-custom {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.card-title-custom::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: #0066cc;
    margin-right: 10px;
    border-radius: 2px;
}

/*  */
.table-custom thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #495057;
    font-weight: 600;
    padding: 12px 15px;
}

.table-custom tbody td {
    padding: 12px 15px;
    vertical-align: middle;
}

.table-custom tbody tr:hover {
    background-color: #f8f9fa;
}

/* ״̬ǩ */
.badge-custom {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-success { background-color: #e6f9ed; color: #28a745; }
.badge-warning { background-color: #fff8e1; color: #ffc107; }
.badge-danger { background-color: #ffebee; color: #dc3545; }
.badge-info { background-color: #e3f2fd; color: #17a2b8; }

