.employment-page {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    overflow-x: hidden;
}

.page-header {
    position: relative;
    width: 100%;
    height: 100px;
    background: #044799;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    height: 46px;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.6em;
    color: #FFFFFF;
    text-align: center;
}

.intro-text {
    position: relative;
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 40px 0;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 200%;
    color: #000000;
    text-indent: 2em;
}

.intro-text p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.interview-title {
    position: relative;
    width: 1000px;
    height: 61px;
    margin: 40px auto;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #044799;
}

.employment-showcase {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.employment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.employment-item {
    position: relative;
    width: 100%;
}

.image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.employment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employment-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42.36px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.major-name, .graduate-year {
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #FFFFFF;
}

.employment-list-title {
    position: relative;
    width: 1000px;
    height: 61px;
    margin: 60px auto 40px;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #044799;
}

.employment-list {
    position: relative;
    width: 1200px;
    margin: 0 auto 100px;
    background: transparent;
}

.list-header {
    width: 100%;
    height: 84.11px;
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 2.05px;
    background: transparent;
}

.list-header span {
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 28.77px;
    line-height: 278%;
    color: #333333;
    text-align: center;
}

.list-item {
    width: 100%;
    height: 59.41px;
    background: #D8E5F6;
    display: flex;
    align-items: center;
    padding: 0 36px;
    margin-top: 2.05px;
}

/* 专业切换导航样式 */
.major-tabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 84.11px;
    margin-bottom: 40px;
}

.major-tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2.05px 0px;
    height: 84.11px;
    background: #D8E5F6;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 28.77px;
    line-height: 278%;
    text-align: center;
    color: #333333;
    cursor: pointer;
}

.major-tab.active {
    background: #B1C6E5;
}

.major-tab:nth-child(1) {
    width: 401px;
}

.major-tab:nth-child(2) {
    width: 411px;
    margin: 0 2.05px;
}

.major-tab:nth-child(3) {
    width: 383px;
}

/* 表格图片样式 */
.employment-table-image {
    width: 100%;
    margin-top: 0;
    border: none;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.major-content {
    width: 100%;
}

.image-wrapper {
    width: 100%;
    display: block;
    padding: 10px 0 0 0;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

/* 暂无数据提示样式 */
.no-data-message {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F5F8FF;
    margin-top: 0;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    color: #999999;
}

/* 定制滚动条样式 */
.employment-list::-webkit-scrollbar {
    width: 8px;
}

.employment-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.employment-list::-webkit-scrollbar-thumb {
    background: #B1C6E5;
    border-radius: 4px;
}

.employment-list::-webkit-scrollbar-thumb:hover {
    background: #044799;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .page-header {
        height: 60px;
    }
    
    .page-header h1 {
        font-size: 20px;
        letter-spacing: 0.3em;
    }
    
    .intro-text {
        width: 90%;
        padding: 20px 0;
        font-size: 14px;
        line-height: 160%;
    }
    
    .interview-title {
        width: 90%;
        height: auto;
        margin: 20px auto;
        font-size: 20px;
        line-height: 1.5;
    }
    
    .employment-showcase {
        width: 90%;
    }
    
    .employment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-container {
        height: 200px;
    }
    
    .employment-info {
        height: 36px;
        padding: 0 8px;
    }
    
    .major-name, .graduate-year {
        font-size: 16px;
        line-height: 24px;
    }
    
    .employment-list-title {
        width: 90%;
        height: auto;
        margin: 30px auto;
        font-size: 20px;
        line-height: 1.5;
    }
    
    .employment-list {
        width: 90%;
        height: auto;
        margin: 0 auto 50px;
    }
    
    .list-header {
        padding: 10px;
    }
    
    .list-header span {
        font-size: 14px;
    }
    
    .list-item {
        padding: 10px;
    }
    
    .list-item span {
        font-size: 12px;
    }
    
    .major-tabs {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin: 20px auto;
        height: auto;
    }
    
    .major-tab {
        width: 100% !important;
        height: 40px;
        font-size: 16px;
        line-height: 40px;
        margin: 0 !important;
    }
    
    .major-content {
        width: 100%;
        margin: 0 auto;
    }
    
    .image-wrapper {
        width: 100%;
        height: auto;
        padding: 0;
    }
    
    .employment-table-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .no-data-message {
        font-size: 14px;
        padding: 20px 0;
    }
}

@media screen and (max-width: 375px) {
    .page-header h1 {
        font-size: 18px;
        letter-spacing: 0.2em;
    }
    
    .intro-text {
        font-size: 13px;
    }
    
    .interview-title, .employment-list-title {
        font-size: 18px;
    }
    
    .major-tab {
        font-size: 14px;
        height: 36px;
        line-height: 36px;
    }
    
    .image-container {
        height: 180px;
    }
    
    .employment-info {
        height: 32px;
        padding: 0 6px;
    }
    
    .major-name, .graduate-year {
        font-size: 14px;
        line-height: 22px;
    }
}

