@charset "utf-8";
:root {
            --primary-color: #1E62D0;
            --secondary-color: #FF6B35;
            --light-color: #F5F7FA;
            --dark-color: #2D3748;
            --success-color: #38A169;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }
        
        body {
        	display: flex;
            flex-direction: column;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
        	flex: 1 0 auto;
        	width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .containerTop {
        	flex: 1 0 auto;
        	width: 100%;
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        /* 顶部信息条 */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
        }
        
        /* 导航栏 */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            font-size: 22px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .logo-sub {
            font-size: 14px;
            color: var(--dark-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin: 0 15px;
            position: relative;
        }
        
        .nav-item a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            padding: 10px 0;
            transition: color 0.3s;
        }
        
        .nav-item a:hover, .nav-item.active a {
            color: var(--primary-color);
        }
        
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .user-actions a {
            margin-left: 15px;
            text-decoration: none;
            color: var(--dark-color);
        }
        
        .user-actions .btn-login {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .user-actions .btn-login:hover {
            background-color: #1553b9;
        }
        
        /* 轮播图 */
        .banner {
            margin: 20px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 内容区块 */
        .section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .more-link {
            color: #666;
            font-size: 14px;
            text-decoration: none;
        }
        
        .more-link:hover {
            color: var(--primary-color);
        }
        
        /* 通知列表 */
        .news-list {
            list-style: none;
            min-height: 236px;
        }
        
        .news-item {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-title {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-right: 15px;
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }
        
        .news-title:hover {
            color: var(--primary-color);
        }
        
        .news-date {
            color: #888;
            font-size: 14px;
        }
        
        /* 卡片网格 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .card-img {
            height: 160px;
            overflow: hidden;
        }
        
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .card:hover .card-img img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 15px;
        }
        
        .card-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .card-desc {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #888;
            font-size: 13px;
        }
        
        /* 底部 */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #aaa;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
            
            .navbar-content {
                position: relative;
            }
            
            .mobile-menu-btn {
                display: block;
                font-size: 24px;
                cursor: pointer;
            }
        }
        
        @media (max-width: 768px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
/*         .min-height-css { */
/*             min-height: 466px; */
/*         } */
        
        .min-height-css {
		    min-height: calc(100vh - 573px); /* 视口高度减去头部和底部高度 */
		    height: auto;
		    padding: 20px 0;
		}
		
		/* 如果内容很少时确保有足够高度，内容多时自动扩展 */
		.banner.min-height-css {
		    display: flex;
		    flex-direction: column;
		}
        
        .title-bar {
		    font-size: 16px;
		    color: #333;
/* 		    border-bottom: 1px solid #ececec; */
		    line-height: 50px;
		    padding-left: 15px;
		    position: relative;
		    padding-right: 15px;
		    padding-top: 15px;
		}

		.title-bar:after {
		    background-color: #5771e2;
		}
		
		.title-bar:after {
		    content: '';
		    position: absolute;
		    width: 6px;
		    height: 26px;
		    left: 0;
		    top: 50%;
		    margin-top: -5px;
		}

		.main-content {
            padding: 0;
        }
        .loading {
            text-align: center;
            padding: 40px;
            color: #999;
        }
        .loading .layui-icon {
            font-size: 24px;
            margin-right: 10px;
        }
        .notice-table {
            width: 100%;
            border-collapse: collapse;
        }
        .notice-table th {
            background-color: #f8f9fa;
            padding: 10px;
            text-align: left;
            font-weight: bold;
            color: #555;
            border-bottom: 2px solid #eee;
        }
        .notice-table td {
            padding: 10px;
            border-bottom: 1px solid #eee;
        }
        .notice-table tr:hover {
            background-color: #f8f9fa;
        }
        .notice-title {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.2s;
            display: block;
        }
        .notice-title:hover {
            color: #1E9FFF;
        }
        .notice-time {
            color: #999;
            font-size: 14px;
            white-space: nowrap;
            text-align: right;
        }
        .pagination-container {
            padding: 25px;
            text-align: center;
            background: #fafafa;
            border-top: 1px solid #eee;
        }
        .no-data {
            text-align: center;
            padding: 40px;
            color: #999;
        }
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid #ececec;
        }
        .header-content {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 4px;
            overflow: hidden;
        }
        .search-box input {
            padding: 10px 15px;
            border: none;
            outline: none;
            width: 280px;
            font-size: 15px;
        }
        .search-box button {
            padding: 10px 18px;
            background: #FFB800;
            color: white;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #FFA000;
        }
         /* 下划线高亮 */
	    .underline-highlight {
	      position: relative;
	      display: inline-block;
	    }
	
	    .underline-highlight::after {
	      content: '';
	      position: absolute;
	      left: 0;
	      bottom: -2px;
	      width: 100%;
	      height: 2px;
	      background-color: var(--primary-color);
	      transform: scaleX(0);
	      transition: transform 0.3s ease;
	    }
	
	    .underline-highlight:hover::after {
	      transform: scaleX(1.1);
	    }
