        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 顶部导航 */
        
        /* 头部区域 */
        
        /* 主内容区 */
        .main-content {
            padding: 30px 0;
        }
        
        .search-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            padding: 30px;
            height: 326px;
            border: 1px solid #e0e6ed;
        }
        
        .section-title {
            color: #1a5099;
            font-size: 22px;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #eaf0f7;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 120px;
            height: 3px;
            background: linear-gradient(to right, #1a5099, #2a68c8);
            border-radius: 3px;
        }
        
        .section-title i {
            margin-right: 12px;
            background: #e6f0ff;
            padding: 10px;
            border-radius: 50%;
            color: #1a5099;
            font-size: 18px;
        }
        
        .jgcx-search-form {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .form-group {
            margin-bottom: 18px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #555;
            font-weight: 500;
            font-size: 15px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d0d9e4;
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.3s;
            background-color: #fafcff;
        }
        
        .form-control:focus {
            border-color: #2a68c8;
            outline: none;
            box-shadow: 0 0 0 3px rgba(42, 104, 200, 0.15);
            background-color: white;
        }
        
        .button {
            background: linear-gradient(to right, #1a5099, #2a68c8);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            font-weight: 500;
            letter-spacing: 0.5px;
            box-shadow: 0 3px 8px rgba(26, 80, 153, 0.25);
        }
        
        .button:hover {
            background: linear-gradient(to right, #16458a, #235bb8);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(26, 80, 153, 0.3);
        }
        
        .button:active {
            transform: translateY(0);
        }
        
        .button i {
            margin-right: 8px;
        }
        
        .form-actions {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            margin-top: 15px;
            gap: 20px;
        }
        
        .button-reset {
            background: linear-gradient(to right, #6c757d, #8a939b);
        }
        
        .button-reset:hover {
            background: linear-gradient(to right, #5a6268, #727b84);
        }
        
        /* 结果区域 */
        .results-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            padding: 30px;
            margin-top: 20px;
            border: 1px solid #e0e6ed;
            display: none; /* 默认隐藏结果区域 */
        }
        
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .results-count {
            color: #1a5099;
            font-weight: bold;
            font-size: 16px;
            background-color: #e6f0ff;
            padding: 6px 15px;
            border-radius: 20px;
        }
        
        .results-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        
        .results-table th {
            background: linear-gradient(to bottom, #f0f6ff, #e4edff);
            color: #1a5099;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #d0d9e4;
        }
        
        .results-table td {
            padding: 14px 18px;
            border-bottom: 1px solid #eee;
        }
        
        .results-table tr:nth-child(even) {
            background-color: #f9fbff;
        }
        
        .results-table tr:hover {
            background-color: #f0f6ff;
        }
        
        .status-active {
            color: #28a745;
            font-weight: 500;
            background-color: rgba(40, 167, 69, 0.1);
            padding: 4px 10px;
            border-radius: 15px;
            display: inline-block;
        }
        
        .status-expired {
            color: #dc3545;
            font-weight: 500;
            background-color: rgba(220, 53, 69, 0.1);
            padding: 4px 10px;
            border-radius: 15px;
            display: inline-block;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 35px;
            list-style: none;
        }
        
        .pagination li {
            margin: 0 5px;
        }
        
        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 1px solid #d0d9e4;
            border-radius: 6px;
            text-decoration: none;
            color: #1a5099;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .pagination a:hover, .pagination .active a {
            background: linear-gradient(to bottom, #1a5099, #2a68c8);
            color: white;
            border-color: #1a5099;
        }
        
        .no-results {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        
        .no-results i {
            font-size: 48px;
            color: #d0d9e4;
            margin-bottom: 20px;
        }
        
        /* 页脚 */


        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .igcx-search-form {
                grid-template-columns: 1fr;
            }
            
            .results-table {
                display: block;
                overflow-x: auto;
            }
            
            .footer-section {
                flex: 100%;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin: 0 auto 15px;
            }
        }