        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        body {
            background-color: #f5f9ff;
            color: var(--text-color);
            line-height: 1.6;
            transition: background-color 0.5s ease;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--light-text);
            padding: 20px 0;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.5s ease;
        }
        
        header:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }
        
        h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .subtitle {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            flex: 1 1 300px;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-color);
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        
        .card h2 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .time-period {
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 6px;
            background-color: var(--light-color);
            transition: all 0.3s ease;
        }
        
        .time-period.active {
            background-color: #d4e6ff;
            border-left: 4px solid var(--primary-color);
        }
        
        .time-period.ended {
            background-color: #f5f5f5;
            color: var(--ended-color);
        }
        
        .time-period h3 {
            font-size: 18px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .time-period h3 .status {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-left: 10px;
            font-weight: normal;
        }
        
        .status.active {
            background-color: var(--success-color);
            color: white;
        }
        
        .status.ended {
            background-color: var(--ended-color);
            color: white;
        }
        
        .status.upcoming {
            background-color: var(--warning-color);
            color: white;
        }
        
        .batch-list {
            list-style-type: none;
        }
        
        .batch-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            justify-content: space-between;
        }
        
        .batch-list li:last-child {
            border-bottom: none;
        }
        
        .batch-name {
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .batch-desc {
            color: #666;
            font-size: 14px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.1s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .btn-container {
            text-align: center;
            margin: 30px 0;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 14px;
            border-top: 1px solid #eee;
            margin-top: 30px;
        }
        
        .login-info {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .login-info p {
            margin-bottom: 10px;
        }
        
        .login-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
        }
        
        .login-link:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            
            .card {
                flex: 1 1 auto;
            }
        }
        
        /* Animation classes */
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .pulse {
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(26, 111, 201, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(26, 111, 201, 0); }
            100% { box-shadow: 0 0 0 0 rgba(26, 111, 201, 0); }
        }
        
        ul {
          list-style-position: inside; /* 将小圆点放在内容内部 */
          padding-left: 0; /* 初始不设置左侧内边距 */
        }
         
        li {
          padding-left: 15px; /* 根据需要调整小圆点相对于文本的偏移 */
        }

        /* 新增的投档计划表格样式 */
        .plan-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        
        .plan-table th, .plan-table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        
        .plan-table th {
            background-color: var(--light-color);
            color: var(--secondary-color);
        }
        
        .plan-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .plan-table tr:hover {
            background-color: #f1f1f1;
        }
        
        .time-placeholder {
            color: #888;
            font-style: italic;
        }
        /**原有CSS样式保持不变，新增以下样式 新增录取批次和投档计划css**/
         .plan-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        
        .plan-table th, .plan-table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        .plan-table th {
            background-color: var(--light-color);
            color: var(--secondary-color);
        }
        
        .plan-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .plan-table tr:hover {
            background-color: #f1f1f1;
        }
        
        .time-placeholder {
            color: #888;
            font-style: italic;
        }