/* 重置和基礎樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TW-Normal', sans-serif;
    color: #011A36;
    line-height: 1.5;
    background-color: #FFFFFF;
}

/* 容器 */
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 400px;
}

/* 導航欄 */
.header {
    width: 100%;
    height: 72px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F5F5F5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* 確保導航項在hover時保持在下拉菜單上方 */
.nav-item.dropdown {
    position: relative;
    z-index: 1001;
}

.header-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 250px;
    min-width: 0;
}

.nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    height: 28px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
}

.nav-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-link {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    
    color: #011A36;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    display: inline-block;
}

.nav-item.active .nav-link,
.nav-link:hover {
    color: #015BBD;
}

/* 導航欄當前激活下劃線（設計稿高度3px，顏色#015BBD） */
.nav-item .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    bottom: -22px;
    background-color: transparent;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.nav-item.active .nav-link::after {
    background-color: #015BBD;
    transform: scaleX(1);
}

/* 取消 hover 下劃線：僅保留激活態下劃線 */

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid #FFFFFF;
    border-radius: 0;
    min-width: 200px;
    padding: 20px 0;
    display: none;
    margin-top: 0;
    z-index: 1001;
}

/* 移除 hover 显示，改为点击触发 */
/* .nav-item.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
} */

/* 解決方案下拉菜單 - 導航欄懸浮顯示 */
.nav-item.dropdown .solution-dropdown {
    position: fixed;
    width: 100vw;
    left: 0;
    right: 0;
    top: 72px;
    padding: 0;
    margin-top: 0;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid #FFFFFF;
    transform: none;
    z-index: 1001;
}

/* 解決方案下拉菜單 - 點擊顯示（取消 hover） */
.nav-item.dropdown .solution-dropdown {
    display: none;
}

/* 通過類保持顯示（點擊觸發） */
.solution-dropdown.show {
    display: block !important;
}

.solution-menu-container {
    display: flex;
    width: 100%;
    height: 630px;
    background-color: #FFFFFF;
}

.solution-menu-sidebar {
    width: 510px;
    background-image: url('../img/solu-bg.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
    border-right: 1px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.sidebar-left {
    position: absolute;
    right: 40px;
    top: 40px;
}


.solution-menu-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 24px;
    
    color: #011A36;
    margin-bottom: 19px;
    width: 170px;
    text-align: center;
}

.solution-menu-item {
    display: block;
    width: 170px;
    height: 38px;
    margin: 0 auto 10px;
    padding: 9px 20px;
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    
    color: #57667E;
    text-decoration: none;
    background-color: #FFFFFF;
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s;
}

.solution-menu-item:hover,
.solution-menu-item.active {
    background: linear-gradient(90deg, rgba(51, 138, 233, 1) 0%, rgba(0, 77, 161, 1) 100%);
    color: #FFFFFF;
    font-weight: 500;
}

.solution-menu-content {
    flex: 1;
    padding: 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 17%, rgba(250, 250, 250, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

/* 能力與支持下拉菜單 - 導航欄懸浮顯示 */
.nav-item.dropdown .capability-dropdown {
    position: fixed;
    width: 100vw;
    left: 0;
    right: 0;
    top: 72px;
    padding: 0;
    margin-top: 0;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid #FFFFFF;
    transform: none;
    z-index: 1001;
}

/* 能力與支持下拉菜單 - 點擊顯示（取消 hover） */
.nav-item.dropdown .capability-dropdown {
    display: none;
}

/* 通過類保持顯示（點擊觸發） */
.capability-dropdown.show {
    display: block !important;
}


.capability-dropdown-wrapper {
    width: 100%;
    padding: 40px;
    background-color: #FFFFFF;
}

.capability-dropdown-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 24px;
    
    color: #011A36;
    text-align: center;
    margin-bottom: 20px;
}

.dropdown-card {
    position: relative;
    background-color: #FFFFFF;
    box-shadow: 4px 8px 16px 0px rgba(1, 91, 189, 0.04);
    border-radius: 0;
    padding: 25px 30px;
    height: 240px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dropdown-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dropdown-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dropdown-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
    position: relative;
    z-index: 1;
}

.dropdown-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dropdown-card-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #011A36;
    z-index: 1;
    position: absolute;
    left: 86px;
    top: 38px;
}

.dropdown-card-text {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #57667E;
    flex: 1;
    position: relative;
    z-index: 1;
    white-space: wrap;
}


.solution-content-item {
    display: none;
}

.solution-content-item.active {
    display: block;
}

.solution-image {
    width: 100%;
    max-width: 1070px;
    height: 384px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(-43deg, rgba(243, 248, 255, 1) 0%, rgba(255, 255, 255, 0) 82%);
    position: relative;
}

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

.solution-content-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    
    color: #011A36;
    margin-bottom: 20px;
}

.solution-content-text {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #57667E;
    white-space: wrap;
    max-width: 1070px;
}

/* 解決方案彈窗頁面 */
.solution-popup {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.solution-popup-content {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

.solution-popup-sidebar {
    width: 170px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-popup-item {
    width: 170px;
    height: 38px;
    padding: 9px 20px;
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    
    color: #57667E;
    text-decoration: none;
    background-color: #FFFFFF;
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.solution-popup-item.active {
    background: linear-gradient(90deg, rgba(51, 138, 233, 1) 0%, rgba(0, 77, 161, 1) 100%);
    color: #FFFFFF;
    font-weight: 500;
}

.solution-popup-main {
    flex: 1;
}

.solution-popup-card {
    display: none;
    background: linear-gradient(-43deg, rgba(243, 248, 255, 1) 0%, rgba(255, 255, 255, 0) 82%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);
}

.solution-popup-card.active {
    display: block;
}

.solution-popup-image {
    width: 100%;
    max-width: 1070px;
    height: 384px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.solution-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-popup-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    
    color: #011A36;
    margin-bottom: 20px;
}

.solution-popup-text {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #57667E;
    max-width: 792px;
}

/* 能力與支持下拉菜單 - 內容網格 */
.dropdown-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 650px);
    gap: 20px;
    justify-content: center;
    max-width: 1320px;
    margin: 0 auto;
}

/* Banner */
.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #050D54;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-banner {
    width: 100%;
    height: 240px;
}

.about-page,
.joinus-page {
    margin-top: 0 !important;
}

.banner-bg img,
.multi-location img,
.page-banner img {
    width: 100%;
    height: 100%;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 900px;
}

.banner-subtitle {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.5;
    color: #FFFFFF;
}

/* 關於蓮星 */
.about-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.about-section .container {
    padding: 0 400px;
}

/* 在大屏幕上，移除about-section的固定padding，让内容自然居中 */
@media (max-width: 1920px) {
    .about-section .container {
        padding: 0;
    }
}

.section-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #011A36;
    text-align: center;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    gap: 180px;
    justify-content: center;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
}

.about-text {
    flex: 0 1 auto;
    max-width: 520px;
    min-width: 0;
    width: auto;
}

.about-subtitle {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #011A36;
    margin-bottom: 20px;
}

.about-description p {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #57667E;
    text-align: justify;
    margin-bottom: 24px;
}

.about-image {
    width: 420px;
    height: 240px;
    background-image: url('../img/pic-lianxing.png');
    background-size: 100%;
    background-repeat: no-repeat;
    object-fit: contain;
}




/* 多地聯動 */
.multi-location {
    width: 100%;
    height: 520px;
    position: relative;
}
.multi-location-img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 520px;
    background-image: url('../img/pic-map.jpg');
    background-size: 100% 520px;
    background-repeat: no-repeat;
    object-fit: cover;
}

/* 多地聯動 文字內容 */
.multi-location-content {
    position: absolute;
    top: 100px;
    left: calc((100vw - 1120px) / 2);
    width: 520px;
    z-index: 2;
}

.multi-location-text {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
}

.section-title-white {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 24px;
}


/* 頁面Banner */
.page-banner {
    width: 100%;
    height: 240px;
    margin-top: 72px;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 公司介紹頁面 */
.company-section {
    min-height: 360px;
    padding: 60px 0;
    background-color: #FFFFFF;
}



.company-text {
    flex: 0 1 auto;
    max-width: 637px;
    min-width: 0;
    width: auto;
}

.company-text p {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #57667E;
    text-align: justify;
    margin-bottom: 24px;
}

.company-image {
    width: 420px;
    height: 240px;
    flex-shrink: 0;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 辦公室環境 */
.office-section {
    height: 418px;
    padding: 60px 0;
    background-color: #FFFFFF;
}

.img-container {
    padding: 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.office-images {
    width: 100%;
    max-width: 1400px;
    height: 220px;
    background-image: url('../img/pic-office.jpg');
    background-size: 100% 220px;
    background-repeat: no-repeat;
    object-fit: cover;
}

.office-placeholder {
    background-color: #F5F7FA;
    padding: 40px;
    text-align: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* 聯繫我們 */
.contact-section {
    padding: 60px 0;
    background-color: #F5F7FA;
}



.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 630px);
    gap: 20px;
    justify-content: center;
}




.contact-card {
    background: linear-gradient(140deg, rgba(255, 255, 255, 1) 0%, rgba(244, 246, 249, 1) 94%);
    border: 3px solid #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    height: 170px;
}


.contact-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 24px;
    
    color: #011A36;
    margin-bottom: 11px;
}

.contact-info {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #57667E;
}

.contact-info p {
    margin: 0;
}

/* 招聘活動 */
.recruitment-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.recruitment-bottom {
    width: 100%;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F5F7FA;

    span {
        color: #57667E;
        text-align: center;
        font-family: 'TW-Normal', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
}

.jobs-bottom {
    height: 120px;

    span {
        text-align: center;
        font-family: 'TW-Normal', sans-serif;
        color: #011A36;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
    }
}


.recruitment-text {
    font-family: 'TW-Normal', sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #57667E;
    text-align: center;
    margin-bottom: 40px;
}

.recruitment-image {
    width: 100%;
    max-width: 1400px;
    height: 220px;
    background-image: url('../img/pic-recruit.jpg');
    background-size: 100% 220px;
    background-repeat: no-repeat;
    object-fit: cover;
}



/* 員工活動 */
.activity-section {
    padding: 60px 0;
    background-color: #F5F7FA;
}

.activity-text {
    font-family: 'TW-Normal', sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #57667E;
    text-align: center;
    margin-bottom: 40px;
    max-width: 906px;
    margin-left: auto;
    margin-right: auto;
}

.activity-image {
    width: 100%;
    max-width: 1400px;
    height: 400px;
    background-image: url('../img/pic-huodong-1.jpg');
    background-size: 100% 400px;
    background-repeat: no-repeat;
    object-fit: cover;
}

.activity-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 招聘介紹 */
.recruitment-contact {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #011A36;
    text-align: center;
}

.tab-info {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 274px);
    gap: 10px;
}

.tab-info-item {
    padding: 0 16px;
    width: 274px;
    height: 83px;
    display: flex;
    align-items: center;
    background: linear-gradient(108.7deg, #FFFFFF -21.95%, #F4F6F9 84.23%);

    img {
        width: 42px;
        height: 42px;
    }

    span {
        font-family: 'TW-Normal', sans-serif;
        font-weight: 400;
        font-size: 16px;
        white-space: nowrap;
        margin-left: 19px;
        color: #011A36;
    }
}


.recruitment-contain {
    display: flex;
}

.recruitment-content-left {
    display: flex;
    justify-content: flex-end;
    padding-left: 260px;
}

.choose-info {
    width: 374px;
    height: 100%;
    border-right: 1px solid #F4F6F9;
    margin-top: 60px;
    padding-right: 60px;
    padding-left: 40px;
}

.choose-title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 20px;
}

.welfare-intro {
    margin-top: 40px;
    width: 274px;
    height: 360px;
    padding: 24px;
    background-image: url('../img/pic-fuli.png');
    background-position: 100%;
}

.start-item {
    display: flex;
    margin-bottom: 16px;
}

.start-icon {
    width: 24px;
    height: 24px;

    img {
        width: 100%;
        height: 100%;
    }
}

.start-text {
    color: #011A36;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-left: 20px;
}



.recruitment-content-right {}


/* 職位列表 */
.jobs-section {
    padding: 60px;
    background-color: #FFFFFF;
}

/* 內容 Tab 切換 */
.content-tabs-section {
    height: 107px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.content-tab {
    width: 130px;
    height: 48px;
    border: none;
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #011A36;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #FFFFFF;
}

.content-tab.active {
    color: #015BBD;
    position: relative;
}


.content-tab.active::after {
    content: '';
    position: absolute;
    background-color: #015BBD;
    right: 34px;
    bottom: -30px;
    width: 64px;
    height: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tab-content {
    display: block;
}

.tab-content.hidden {
    display: none;
}

.location-tabs {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    gap: 14px;
    margin-bottom: 40px;
}

.location-tab {
    width: 130px;
    height: 48px;
    border-radius: 4px;
    border: none;
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    
    color: #011A36;
    background-color: #F5F7FA;
    cursor: pointer;
    transition: all 0.3s;
}

.location-tab.active {
    background-color: #015BBD;
    color: #FFFFFF;
}

.jobs-list {}

.no-jobs-message {
    text-align: center;
    padding: 60px 20px;
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #57667E;
}

.job-item {
    margin-bottom: 20px;
}

.job-header {
    width: 100%;
    height: 70px;
    background-color: #F5F7FA;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    cursor: pointer;
}

.job-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 500;
    font-size: 24px;
    
    color: #011A36;
}

.job-toggle {
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    font-size: 24px;
    color: #E0E0E0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-details {
    padding: 40px 30px;
    background-color: #FFFFFF;
    font-family: 'TW-Normal', sans-serif;
    font-size: 16px;
    line-height: 1.875;
    color: #57667E;
}

.job-details p {
    margin-bottom: 16px;
}

.job-details strong {
    font-weight: 500;
    color: #011A36;
}

/* 能力與支持頁面 */
.capability-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 650px);
    gap: 20px;
    justify-content: center;
    max-width: 1320px;
    margin: 0 auto;
}

.capability-card {
    background-color: #FFFFFF;
    box-shadow: 4px 8px 16px 0px rgba(1, 91, 189, 0.04);
    border-radius: 0;
    padding: 25px 30px;
    height: 240px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.capability-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.capability-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
    position: relative;
    z-index: 2;
}

.capability-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.capability-title {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 20px;
    
    color: #011A36;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.capability-text {
    font-family: 'TW-Normal', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #57667E;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* 适配导航栏重叠logo */
@media (min-width: 751px) and (max-width: 890px) {
    .recruitment-content-left {
        padding-left: 40px;
    }

    .header-container {
        padding: 0 12px;
        gap: 8px;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex-shrink: 0;
        margin-right: 6px;
        min-width: 0;
        max-width: 110px;
    }

    .logo img {
        max-width: 110px;
        height: auto;
        width: auto;
    }

    .nav {
        margin-left: 6px;
        min-width: 0;
        flex: 1 1 auto;
        overflow: visible;
        max-width: calc(100% - 130px);
        display: flex;
        justify-content: flex-end;
    }

    .nav-list {
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-item {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .nav-link {
        font-size: 13px;
        white-space: nowrap;
        padding: 0 2px;
        display: block;
    }
}

/* 适配导聯繫我們 */
@media (min-width: 751px) and (max-width: 1300px) {



    .contact-section .container {
        padding: 0 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

/* 适配能力与支持弹框 */
@media (min-width: 751px) and (max-width: 1300px) {
    .capability-dropdown-wrapper {
        padding: 40px 40px;
    }

    .dropdown-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .dropdown-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}


/* 中等屏幕適配 (750px - 1700px) */
@media (min-width: 751px) and (max-width: 1700px) {
    .container {
        padding: 0 40px;
    }

    .recruitment-content-left {
        padding-left: 20px;
    }

    .header-container {
        padding: 0 40px;
    }

    .nav-list {
        gap: 25px;
    }

    .nav-link {
        font-size: 18px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-section .container {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        gap: 40px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        width: 100%;
        padding: 0 40px;
        box-sizing: border-box;
    }

    .about-text {
        max-width: 480px;
        flex: 0 1 auto;
        min-width: 300px;
    }

    .about-description p {
        text-align: left;
        line-height: 30px;
        margin-bottom: 16px;
    }


    .company-section {
        height: auto;
        padding: 40px 0;
        min-height: 360px;
    }

    .company-section .container {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .company-text {
        max-width: 500px;
        flex: 0 1 auto;
        min-width: 300px;
    }

    .company-text p {
        text-align: left;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .company-image {
        width: 400px;
        height: auto;
        flex: 0 0 auto;
        max-width: 100%;
    }



    .office-section {
        padding: 40px 0;
    }

    .office-section .container {
        padding: 0 40px;
    }

    /* 多地聯動 - 中等屏幕定位調整 */
    .multi-location-content {
        top: 80px;
        width: 520px;
    }
}


/* 移動端適配 */
/* 汉堡菜单按钮样式 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

.mobile-menu-toggle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

@media (max-width: 750px) {
    .container {
        padding: 0 20px;
    }


    .recruitment-content-left {
        padding-left: 0;
    }

    

    .contact-grid {
        grid-template-columns: 1fr;
    }




    .contact-card {
        width: 100%;
        max-width: 630px;
        margin: 0 auto;
    }

    /* 內容 Tab 切換 - 移動端適配 */
    .content-tabs-section {
        padding: 30px 0;
    }

    .content-tabs {
        gap: 10px;
        padding: 0 20px;
    }

    .content-tab {
        width: 150px;
        height: 40px;
        font-size: 16px;
    }

    /* 解決方案下拉菜單 - 移動端 */
    .nav-item.dropdown .solution-dropdown {
        width: 100%;
        left: 0;
        transform: none;
    }

    .solution-menu-container {
        flex-direction: column;
        height: auto;
    }

    .solution-menu-sidebar {
        width: 100%;
        padding: 20px;
    }

    .solution-menu-item {
        width: 100%;
        max-width: 170px;
    }

    .solution-menu-content {
        padding: 20px;
    }

    .solution-image {
        height: 200px;
    }

    /* 能力與支持下拉菜單 - 移動端 */
    .nav-item.dropdown .capability-dropdown {
        width: 100%;
        left: 0;
        transform: none;
    }

    .capability-dropdown-wrapper {
        padding: 20px;
    }

    .dropdown-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dropdown-card {
        height: auto;
        min-height: 240px;
    }


    .about-subtitle {
        font-size: 20px;
        text-align: center;
    }

    .capability-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capability-card {
        height: auto;
        min-height: 240px;
    }

    /* 移動端隱藏導航下劃線 */
    .nav-item .nav-link::after {
        display: none;
    }

    /* 多地聯動 - 移動端適配 */
    .multi-location {
        height: 360px;
    }

    .multi-location img {
        height: 360px;
        object-fit: cover;
    }

    .multi-location-content {
        left: 20px;
        top: 40px;
        width: calc(100% - 40px);
    }

    .section-title-white {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .multi-location-text {
        font-size: 14px;
        line-height: 30px;
    }
}