* {
	margin: 0;
	padding: 0;
}
html, body {
    margin: 0;
    display: block;
	width: 100%;
	height: 100%;
	min-width: 1200px;
}
.annual {
    width: 100%;
    height: auto;
    overflow: auto;
    min-width: 1200px;
	min-height: 1300px;
	position: relative;
	background-color: #f5f5f5;
}
@media screen and (min-width: 1200px) {
    .annual-common {
        width: 1300px;
        margin: auto;
        padding-top: 16px;
    }
}
@media screen and (max-width: 1200px) {
	.annual-common {
		width: 1200px;
		margin: auto;
		padding-top: 16px;
	}
}
.annualWrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-bottom: 20px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
/* 筛选容器样式 */
.filter-container {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    padding: 15px 30px;
    box-sizing: border-box;
}

/* 筛选头部样式 */
.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-tab {
	padding: 0px 16px;
	margin-right: 10px;
	border-radius: 16px;
	transition: all 0.3s ease;
	font-weight: 600;
	cursor: pointer;
}

.expand-control {
	font-size: 14px;
	color: #999;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0;
	font-size: 14px;
}

.expand-control .expanded {
	transform: rotate(180deg);
	display: inline-block;
	transition: transform 0.3s ease;
}

.filter-content {
	transition: all 0.3s ease;
}
	font-size: 18px;
}

.filter-collapse {
    margin-left: auto;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

/* 筛选区域样式 */
.filter-section {
	width: 100%;
	margin: auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	margin-top: 16px;
}

.filter-section label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
	width: 80px;
}
.filter-value {
	width: calc(100% - 80px);
	position: relative;
}
.filter-option {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f5f5f5;
    color: #4a4a4a;
}

.filter-option.active {
    background: #fff1f0;
    color: #ff2424;
}

.filter-option:hover {
    background: #f0f0f0;
}

/* 搜索区域样式 */
.filter-section input.filter-input {
    width: 500px;
    padding: 1px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.filter-section input.filter-input:focus {
    border-color: #ff2424;
}

.filter-search {
    width: 70px;
    padding: 8px 0;
    margin-left: 10px;
    background: #ff2424;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-search:hover {
    background: #ff2424;
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .filter-container {
        padding: 15px;
    }
    
    .filter-tab {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .filter-option {
        padding: 3px 10px;
        font-size: 12px;
    }
}

/* 表格卡片样式 */
.annual-table-card {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.table-container {
    width: 100%;
    overflow-x: hidden;
}

.annual-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.annual-table thead th {
    background: #f5f5f5;
    padding: 14px 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.annual-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.annual-table thead th:last-child {
    border-radius: 0 16px 0 0;
}

.annual-table tbody td {
    padding: 16px 12px;
    text-align: left;
    font-size: 14px;
    color: #4a5568;
    border-bottom: 1px solid #f0f4f8;
    vertical-align: middle;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.annual-table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.annual-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

.annual-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.annual-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

/* 院校单元格样式 */
.school-cell {
    width: 270px !important;
    min-width: 270px !important;
    max-width: 270px !important;
	padding-left: 30px;
}

.school-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
}

.school-cell a,
.school-cell a .school-name {
    color: #1a73e8 !important;
}

.school-cell a:hover,
.school-cell a:hover .school-name {
    color: #174ea6 !important;
    text-decoration: underline;
}

.school-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.school-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: #d02009;
    line-height: 1.2;
}

/* 右侧弹窗样式 */
.detail-panel {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.detail-panel.active {
    right: 0;
}

.panel-header {
    background: linear-gradient(135deg, #fd5f61 0%, #e93434 100%);
    padding: 20px;
    color: #fff;
    position: relative;
}

.close-abtn {
    position: absolute;
    top: 50%;           /* 改为 50% */
    transform: translateY(-50%);  /* 添加垂直居中 */
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    color: #d02009;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
	padding-top: 2px;
}

.close-abtn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.school-info-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.school-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.school-detail-info {
    flex: 1;
}

.school-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
	color: #FFF;
}

.school-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.school-tags-row .tag {
    background: rgba(255, 255, 255, 0.25);
    font-size: 13px;
}

.panel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.panel-info-container {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    border-bottom: 1px solid #eee;
}

.major-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.major-tabs button {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
}

.major-tabs button.active {
    color: #d02009;
}

.major-tabs button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #d02009;
}

.major-table-container {
    flex: 1;
    overflow-y: auto;
}

.major-detail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.major-detail-table th {
    background: #f5f5f5;
    padding: 10px 8px;
    text-align: left;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    position: sticky;
    top: 0;
}

.major-detail-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #f0f0f0;
    color: #4a5568;
}

.major-detail-table tr:hover {
    background: #fafafa;
}

.panel-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.panel-info-row {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.info-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.info-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 13px;
    color: #333;
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-red {
    background: #d02009 !important;
    color: #fff;
}

.tag-blue {
    background: #1e88e5 !important;
    color: #fff;
}

.tag-gray {
    background: #d02009  !important;
    color: #fff;
}

.expand-btn {
    margin-left: auto;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    padding: 0;
}

.school-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.school-location {
    font-size: 12px;
    color: #666;
}

/* 详情按钮 */
.btn-detail {
    padding: 6px 12px;
    background: #fff1f0;
    color: #d02009;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #ffcccc;
}

/* 院校下拉选择框样式 */
.custom-select {
    position: relative;
    display: inline-block;
    min-width: 100%;
    user-select: none;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-trigger:hover {
    border-color: #d02009;
}

.selected-text {
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 180px;
}

.select-arrow {
    font-size: 12px;
    color: #999;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.custom-select.active .select-arrow {
    transform: rotate(180deg);
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    height: 390px;
    overflow-y: auto;
}

.custom-select.active .select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-search {
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.select-search input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.select-search input:focus {
    border-color: #d02009;
}

.select-option {
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background: #fff1f0;
}

.select-option.active {
    background: #fff1f0;
    color: #d02009;
}

/* 选中状态通过复选框显示 */
.select-option.selected {
    background: #fff1f0;
}

/* 专业三级联动下拉框 */
.major-select .select-dropdown {
    padding: 0;
    min-width: 600px;
}

.major-levels {
    display: flex;
    min-height: 280px;
}

.major-column {
    flex: 1;
    border-right: 1px solid #e0e0e0;
    max-height: 280px;
    overflow-y: auto;
}

.major-column:last-child {
    border-right: none;
}

.major-column .select-option {
    padding: 8px 12px;
    font-size: 13px;
    position: relative;
}

.major-column .select-option::after {
    content: '›';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.major-column:last-child .select-option::after {
    display: none;
}

.major-column .select-option.active::after {
    color: #d02009;
}

/* 本科/专科切换标签 */
.major-type-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.major-type-tabs button {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.major-type-tabs button:hover {
    color: #d02009;
}

.major-type-tabs button.active {
    color: #d02009;
    font-weight: bold;
}

.major-type-tabs button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #d02009;
}

/* 多选样式 */
.major-column .select-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.major-column .select-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #d02009;
}

.major-column .select-option span {
    flex: 1;
}

/* 操作按钮区域 */
.major-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 12px;
    border-top: 1px solid #e0e0e0;
}

.major-actions button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-confirm {
    background: #d02009;
    color: #fff;
}

.btn-confirm:hover {
    background: #b81c08;
}

.btn-clear {
    background: #f5f5f5;
    color: #666;
}

.btn-clear:hover {
    background: #e8e8e8;
}

.colBorder:not(:last-child) {
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto!important;
    flex: 1 1 auto !important;
    border-bottom: 1px solid #c0c0c0;
}
.colBorder{
	padding: 5px;
	font-weight: 700;
	text-align: center;
}
.acss{
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
	margin-top: 8px;
}
