

/* 鍩虹閲嶇疆鍜屽彉閲忓畾涔?*/
:root {
    --primary-color: #1A83FF;
    --primary-hover: #0047cc;
    --primary-light: #e6f0ff;
    --text-dark: #1a1a2e;
    --text-gray: #495057;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 12px 36px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



/* 鏍稿績瀹瑰櫒鏍峰紡 */
.banner-container {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
    background: white;
}

/* 涓婇儴鍒嗚疆鎾尯鍩?*/
.banner-top {
    position: relative;
    min-height: 600px;
    max-height: 700px;
}

/* 杞挱闈㈡澘鍩虹鏍峰紡 */
.banner-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    display: flex;
    align-items: center;
    padding: 60px;
}

.banner-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 宸︿晶鍐呭鍖?*/
.banner-panel .panel-left {
    flex: 1;
    max-width: 50%;
    padding-right: 60px;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
    position: relative;
}

.banner-panel.active .panel-left {
    transform: translateX(0);
    opacity: 1;
}

/* 鏍囬鏍峰紡 */
.banner-panel .panel-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    word-break: keep-all;
}

/* 鎻忚堪鏂囨湰鏍峰紡 */
.banner-panel .panel-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: justify;
}

/* 鎸夐挳鍖哄煙 */
.banner-panel .panel-buttons {
    display: flex;
    gap: 24px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.banner-panel .btn {
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    min-width: 160px;
    min-height: 56px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

/* 涓昏鎸夐挳鏍峰紡 */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066ff 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 90, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #0052e6 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 90, 255, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

/* 瓒呴摼鎺ユ寜閽牱寮?*/
.btn-link {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.btn-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 6px;
}

.btn-link:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 90, 255, 0.2);
}

.btn-link:hover::before {
    width: 100%;
}

.btn-link:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

/* 鏁版嵁缁熻鍖哄煙 */
.banner-panel .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: 100%;
}

.banner-panel .stat-item {
    text-align: center;
    padding: 20px 16px;
    min-width: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 90, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 90, 255, 0.05);
    cursor: pointer;
    transform: translateY(0) scale(1);
}

.banner-panel .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 90, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.banner-panel .stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(0, 90, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 255, 0.9) 100%);
    box-shadow: 0 8px 25px rgba(0, 90, 255, 0.15);
}

.banner-panel .stat-item:hover::before {
    left: 100%;
}

.banner-panel .stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-hover);
}

.banner-panel .stat-item:hover .stat-label {
    color: var(--text-gray);
}

.banner-panel .stat-number {
    font-size: 28px;
    font-weight: 800;
    color:#6C757D;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 90, 255, 0.1);
}

.banner-panel .stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.2;
    word-break: keep-all;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 鍙充晶鍥剧墖鍖?*/
.banner-panel .panel-right {
    flex: 1;
    max-width: 50%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    position: relative;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}

.banner-panel.active .panel-right {
    transform: translateX(0);
    opacity: 1;
}

/* 鍥剧墖瀹瑰櫒 - 濉厖婊″彸杈瑰尯鍩?*/
.banner-panel .panel-right > div {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* 鍥剧墖鏍峰紡 - 涓嶅彉褰紝濉厖婊″鍣紝娣诲姞鍦嗚 */
.banner-panel .panel-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.banner-panel .panel-right > div:hover img {
    transform: scale(1.05);
}

/* 娴姩鍥炬爣瑁呴グ */
.banner-panel .floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.banner-panel .floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 90, 255, 0.1);
}

/* 绗竴涓潰鏉跨殑娴姩鍥炬爣浣嶇疆 */
.banner-panel[data-index="0"] .floating-icon:nth-child(1) {
    top: 15%;
    right: 20%;
    animation: float-1 6s infinite ease-in-out;
}

.banner-panel[data-index="0"] .floating-icon:nth-child(2) {
    bottom: 25%;
    right: 15%;
    animation: float-2 7s infinite ease-in-out;
}

.banner-panel[data-index="0"] .floating-icon:nth-child(3) {
    top: 35%;
    left: 10%;
    animation: float-3 8s infinite ease-in-out;
}

/* 绗簩涓潰鏉跨殑娴姩鍥炬爣浣嶇疆 */
.banner-panel[data-index="1"] .floating-icon:nth-child(1) {
    top: 20%;
    right: 15%;
    animation: float-1 5s infinite ease-in-out;
}

.banner-panel[data-index="1"] .floating-icon:nth-child(2) {
    bottom: 20%;
    left: 15%;
    animation: float-2 6s infinite ease-in-out;
}

.banner-panel[data-index="1"] .floating-icon:nth-child(3) {
    top: 45%;
    left: 8%;
    animation: float-3 7s infinite ease-in-out;
}

/* 绗笁涓潰鏉跨殑娴姩鍥炬爣浣嶇疆 */
.banner-panel[data-index="2"] .floating-icon:nth-child(1) {
    top: 18%;
    right: 12%;
    animation: float-1 7s infinite ease-in-out;
}

.banner-panel[data-index="2"] .floating-icon:nth-child(2) {
    bottom: 30%;
    right: 25%;
    animation: float-2 5s infinite ease-in-out;
}

.banner-panel[data-index="2"] .floating-icon:nth-child(3) {
    top: 40%;
    left: 12%;
    animation: float-3 6s infinite ease-in-out;
}

/* 绗洓涓潰鏉跨殑娴姩鍥炬爣浣嶇疆 */
.banner-panel[data-index="3"] .floating-icon:nth-child(1) {
    top: 22%;
    right: 18%;
    animation: float-1 6s infinite ease-in-out;
}

.banner-panel[data-index="3"] .floating-icon:nth-child(2) {
    bottom: 22%;
    left: 12%;
    animation: float-2 8s infinite ease-in-out;
}

.banner-panel[data-index="3"] .floating-icon:nth-child(3) {
    top: 38%;
    left: 5%;
    animation: float-3 7s infinite ease-in-out;
}

/* 涓嬮儴鍒嗗鑸尯鍩?*/
.banner-nav {
    max-width: calc(100% - 120px);
    margin: 15px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-light);
}

.banner-nav .nav-item {
    padding: 36px 40px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(250, 251, 252, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.banner-nav .nav-item:last-child {
    border-right: none;
}

.banner-nav .nav-item.active {
    background: linear-gradient(180deg, rgba(245, 246, 247, 0.95) 0%, rgba(250, 250, 250, 1) 100%);
}

.banner-nav .nav-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.banner-nav .nav-sub {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.4;
}

.banner-nav .nav-item.active .nav-main {
    color: var(--primary-color);
}

.banner-nav .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #6699ff 100%);
    width: 0;
    transition: width 5s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-nav .nav-item:not(.active):hover {
    background: linear-gradient(180deg, rgba(240, 241, 242, 0.9) 0%, rgba(248, 248, 248, 1) 100%);
    transform: translateY(-2px);
}

/* 鍔ㄧ敾鏁堟灉 */
@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-5deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

/* 鍝嶅簲寮忔柇鐐逛紭鍖?*/

/* 澶ф闈細1200px+ */
@media (min-width: 1200px) {
    .banner-nav {
        grid-template-columns: repeat(4, 1fr);
    }
    .banner-panel .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* 妗岄潰锛?92px-1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .banner-panel {
        padding: 50px;
    }
    .banner-panel .panel-left {
        padding-right: 50px;
    }
    .banner-panel .panel-title {
        font-size: 42px;
    }
    .banner-panel .panel-desc {
        font-size: 16px;
    }
    .banner-panel .panel-buttons {
        margin-bottom: 20px;
    }
    .banner-nav {
        grid-template-columns: repeat(4, 1fr);
        max-width: calc(100% - 100px);
    }
    .banner-nav .nav-main {
        font-size: 22px;
    }
    .banner-panel .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 18px;
    }
    .banner-panel .stat-item {
        min-width: 110px;
        padding: 18px 14px;
    }
    .banner-panel .stat-number {
        font-size: 26px;
    }
}

/* 骞虫澘妯睆锛?68px-991px */
@media (min-width: 768px) and (max-width: 991px) {
    .banner-top {
        min-height: 600px;
    }
    .banner-panel {
        padding: 40px;
    }
    .banner-panel .panel-left {
        padding-right: 40px;
    }
    .banner-panel .panel-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .banner-panel .panel-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .banner-panel .btn {
        padding: 16px 30px;
        font-size: 16px;
        min-height: 50px;
        min-width: 140px;
    }
    .banner-panel .panel-buttons {
        margin-bottom: 18px;
        gap: 20px;
    }
    .banner-panel .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 16px;
    }
    .banner-panel .stat-item {
        min-width: 100px;
        padding: 16px 12px;
    }
    .banner-panel .stat-number {
        font-size: 24px;
    }
    .banner-panel .stat-label {
        font-size: 13px;
    }
    .banner-panel .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .banner-nav {
        grid-template-columns: repeat(2, 1fr);
        max-width: calc(100% - 80px);
        margin: 10px auto 0;
    }
    .banner-nav .nav-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 30px 35px;
    }
    .banner-nav .nav-item:nth-child(2n) {
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }
    .banner-nav .nav-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .banner-nav .nav-main {
        font-size: 20px;
    }
    .banner-nav .nav-sub {
        font-size: 15px;
    }
}

/* 骞虫澘绔栧睆/澶ф墜鏈猴細576px-767px */
@media (min-width: 576px) and (max-width: 767px) {
    .banner-top {
        min-height: 500px;
    }
    .banner-panel {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .banner-panel .panel-left,
    .banner-panel .panel-right {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    .banner-panel .panel-left {
        padding-bottom: 30px;
    }
    .banner-panel .panel-right {
        padding: 0;
        height: 350px;
        align-items: center;
        justify-content: center;
    }
    .banner-panel .panel-title {
        font-size: 32px;
        margin-bottom: 18px;
    }
    .banner-panel .panel-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .banner-panel .btn {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 48px;
        min-width: 140px;
    }
    .banner-panel .panel-buttons {
        justify-content: center;
        margin-bottom: 15px;
        gap: 16px;
    }
    .banner-panel .stats {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        max-width: 400px;
        margin: 15px auto 0;
        gap: 12px;
    }
    .banner-panel .stat-item {
        min-width: 90px;
        padding: 14px 10px;
    }
    .banner-panel .stat-number {
        font-size: 22px;
    }
    .banner-panel .stat-label {
        font-size: 12px;
    }
    .banner-panel .floating-icons {
        display: none;
    }
    .banner-nav {
        grid-template-columns: repeat(2, 1fr);
        max-width: calc(100% - 40px);
        margin: 8px auto 0;
    }
    .banner-nav .nav-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        padding: 24px 20px;
    }
    .banner-nav .nav-item:nth-child(2n) {
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }
    .banner-nav .nav-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .banner-nav .nav-main {
        font-size: 18px;
    }
    .banner-nav .nav-sub {
        font-size: 14px;
    }
}

/* 鎵嬫満锛?75px浠ヤ笅 */
@media (max-width: 575px) {
    .banner-top {
        min-height: 450px;
    }
    .banner-panel {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    .banner-panel .panel-left,
    .banner-panel .panel-right {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    .banner-panel .panel-left {
        padding-bottom: 20px;
    }
    .banner-panel .panel-right {
        padding: 0;
        height: 280px;
        align-items: center;
        justify-content: center;
    }
    .banner-panel .panel-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .banner-panel .panel-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .banner-panel .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
        min-width: 120px;
        flex: 1;
        max-width: 150px;
    }
    .banner-panel .panel-buttons {
        gap: 10px;
        justify-content: center;
        margin-bottom: 12px;
    }
    .banner-panel .stats {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 8px;
        margin: 12px auto 0;
        max-width: 300px;
    }
    .banner-panel .stat-item {
        min-width: 80px;
        padding: 12px 8px;
    }
    .banner-panel .stat-number {
        font-size: 20px;
    }
    .banner-panel .stat-label {
        font-size: 11px;
    }
    .banner-panel .floating-icons {
        display: none;
    }
    .banner-nav {
        grid-template-columns: 1fr;
        max-width: calc(100% - 30px);
        margin: 5px auto 0;
    }
    .banner-nav .nav-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        padding: 20px 15px;
    }
    .banner-nav .nav-item:last-child {
        border-bottom: none;
    }
    .banner-nav .nav-main {
        font-size: 16px;
    }
    .banner-nav .nav-sub {
        font-size: 13px;
    }
}

/* 瓒呭皬灞忥細360px浠ヤ笅 */
@media (max-width: 360px) {
    .banner-panel .panel-title {
        font-size: 24px;
    }
    .banner-panel .panel-desc {
        font-size: 13px;
    }
    .banner-panel .stats {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    .banner-panel .stat-item {
        min-width: auto;
        width: 100%;
        padding: 14px 12px;
    }
    .banner-panel .btn {
        width: 100%;
        max-width: none;
        min-width: auto;
    }
    .banner-panel .panel-right {
        height: 240px;
    }
    .banner-nav .nav-item {
        padding: 18px 12px;
    }
    .banner-nav .nav-main {
        font-size: 15px;
    }
    .banner-nav .nav-sub {
        font-size: 12px;
    }
}

/* 鐗规畩锛氭瀬瀹藉睆閫傞厤 */
@media (min-width: 1600px) {
    .banner-container {
        max-width: 1600px;
    }
    .banner-top {
        min-height: 700px;
        max-height: 600px;
    }
    .banner-panel {
        padding:80px;
    }
    .banner-panel .panel-left {
        padding-right: 80px;
    }
    .banner-panel .panel-title {
        font-size: 54px;
    }
    .banner-panel .panel-desc {
        font-size: 20px;
    }
    .banner-panel .panel-buttons {
        margin-bottom: 30px;
    }
    .banner-panel .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 25px;
    }
    .banner-panel .stat-item {
        min-width: 140px;
        padding: 24px 20px;
    }
    .banner-panel .stat-number {
        font-size: 32px;
    }
    .banner-panel .stat-label {
        font-size: 16px;
    }
    .banner-nav {
        max-width: calc(100% - 160px);
        margin: 20px auto 0;
    }
    .banner-nav .nav-item {
        padding: 40px 45px;
    }
    .banner-nav .nav-main {
        font-size: 26px;
    }
    .banner-nav .nav-sub {
        font-size: 18px;
    }
}

/* 鐗规畩锛氳Е鎽歌澶囦紭鍖?*/
@media (hover: none) {
    .banner-panel .stat-item:hover,
    .banner-nav .nav-item:not(.active):hover,
    .btn-primary:hover,
    .btn-link:hover,
    .banner-panel .panel-right > div:hover img {
        transform: none;
        background-color: initial;
        box-shadow: initial;
    }
    
    .btn-primary:hover::before,
    .btn-link:hover::before {
        display: none;
    }
    
    .banner-panel .stat-item:hover .stat-number {
        transform: none;
        color: var(--primary-color);
    }
    
    .banner-panel .stat-item:hover .stat-label {
        color: var(--text-light);
    }
    
    .banner-panel .stat-item:hover::before {
        left: -100%;
    }
}

/* 楂樺姣斿害妯″紡鏀寔 */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0033cc;
        --primary-hover: #001a99;
        --text-dark: #000000;
        --text-gray: #333333;
        --text-light: #666666;
    }
    
    .banner-panel .btn {
        border: 2px solid currentColor;
    }
    
    .banner-panel .stat-item {
        border: 2px solid rgba(0, 90, 255, 0.3);
    }
    
    .banner-nav .nav-item {
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* 鍑忓皯鍔ㄧ敾鍋忓ソ鏀寔 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .banner-panel .floating-icons {
        display: none;
    }
}

/* 娣辫壊妯″紡鏀寔 */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #4A90FF;
        --primary-hover: #1A7AFF;
        --text-dark: #ffffff;
        --text-gray: #e0e0e0;
        --text-light: #b0b0b0;
        --bg-light: #1a1a1a;
        --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.4);
        --shadow-heavy: 0 12px 36px rgba(0, 0, 0, 0.5);
    }
    
    .banner-container {
        background: #1a1a1a;
    }
    
    .banner-nav {
        background: #2a2a2a;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .banner-nav .nav-item {
        background: linear-gradient(180deg, rgba(42, 42, 42, 0.9) 0%, rgba(32, 32, 32, 1) 100%);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .banner-nav .nav-item.active {
        background: linear-gradient(180deg, rgba(52, 52, 52, 0.95) 0%, rgba(42, 42, 42, 1) 100%);
    }
    
    .banner-nav .nav-item:not(.active):hover {
        background: linear-gradient(180deg, rgba(62, 62, 62, 0.9) 0%, rgba(52, 52, 52, 1) 100%);
    }
    
    .banner-panel .stat-item {
        background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(32, 32, 32, 0.8) 100%);
        border: 1px solid rgba(74, 144, 255, 0.2);
        box-shadow: 0 2px 8px rgba(74, 144, 255, 0.1);
    }
    
    .banner-panel .stat-item:hover {
        background: linear-gradient(135deg, rgba(52, 52, 52, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
        border-color: rgba(74, 144, 255, 0.3);
        box-shadow: 0 8px 25px rgba(74, 144, 255, 0.2);
    }
    
    .banner-panel .floating-icon {
        background: rgba(42, 42, 42, 0.95);
        border: 1px solid rgba(74, 144, 255, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .btn-link {
        background: rgba(42, 42, 42, 0.9);
        border: 2px solid var(--primary-color);
    }
}

/* 鎵撳嵃鏍峰紡浼樺寲 */
@media print {
    .banner-container {
        box-shadow: none;
        max-width: none;
    }
    
    .banner-panel .floating-icons,
    .banner-nav .progress-bar {
        display: none;
    }
    
    .banner-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        page-break-inside: avoid;
        margin-bottom: 30px;
    }
    
    .banner-panel .panel-left,
    .banner-panel .panel-right {
        transform: none;
        opacity: 1;
    }
    
    .banner-nav .nav-item:not(.active) {
        opacity: 0.6;
    }
    
    .banner-panel .btn {
        border: 2px solid var(--primary-color) !important;
        background: white !important;
        color: var(--primary-color) !important;
    }
}

/* 鏃犻殰纰嶄紭鍖?*/
@media (prefers-reduced-transparency: reduce) {
    .banner-panel .stat-item,
    .banner-nav .nav-item,
    .banner-panel .floating-icon {
        backdrop-filter: none;
    }
    
    .banner-panel .stat-item {
        background: rgba(255, 255, 255, 1);
    }
    
    .banner-panel .floating-icon {
        background: rgba(255, 255, 255, 1);
    }
}

/* 鐒︾偣鐘舵€佷紭鍖?*/
.banner-nav .nav-item:focus-visible,
.banner-panel .btn:focus-visible,
.banner-panel .stat-item:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.banner-nav .nav-item:focus-visible {
    z-index: 1;
}

/* 閫夋嫨鐘舵€佷紭鍖?*/
::selection {
    background: var(--primary-light);
    color: var(--primary-color);
}

::-moz-selection {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* 婊氬姩鏉′紭鍖栵紙webkit娴忚鍣級 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    opacity: 0.7;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
    opacity: 1;
}

/* 鏈€鍚庣殑鍏煎鎬т慨澶?*/
.banner-panel .panel-buttons {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.banner-panel .stats {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.banner-nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* IE11鍏煎鎬?*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .banner-panel .stats {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .banner-panel .stat-item {
        -ms-flex: 1 1 120px;
        flex: 1 1 120px;
    }
    
    .banner-nav {
        display: -ms-flexbox;
        display: flex;
    }
    
    .banner-nav .nav-item {
        -ms-flex: 1;
        flex: 1;
    }
}


/* 澶ф爣棰樻牱寮?*/
.main-title {
    text-align: center;
    margin: 90px 0 50px 0;
    padding: 0 20px;
}

.main-title h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1F2937;
    letter-spacing: -1px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1F2937 0%, #374151 50%, #1A83FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.main-title .subtitle {
    font-size: 20px;
    color: #6B7280;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* 浼樺寲瀹瑰櫒瀹藉害 - 瀹藉睆涓嬪唴閮?440px */
.hotel-scenario-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

.tab-wrapper {
    margin-bottom: 30px;
}

/* TAB瀵艰埅瀹瑰櫒 */
.tab-nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.tab-nav {
    background: #F5FAFF;
    border-radius: 80px;
    padding: 8px;
    display: flex;
    gap: 4px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.tab-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    border-radius: 80px;
    z-index: 1;
}

.tab-item {
    background: transparent;
    border: none;
    border-radius: 76px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.tab-item:hover:not(.active) {
    color: #374151;
    transform: translateY(-2px);
}

.tab-item.active {
    background: #fff;
    color: #1A83FF;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

/* TAB鍐呭鍖哄煙 */
.tab-content {
    background: #F5FAFF;
    border-radius: 24px;
    padding: 70px;
    min-height: 500px;
    display: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(147, 51, 234, 0.01) 100%);
    z-index: 1;
    pointer-events: none;
}

.tab-content.active {
    display: block;
    animation: tabContentFadeIn 0.6s ease-out;
}

@keyframes tabContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 鍐呭甯冨眬 - 4:6姣斾緥 */
.content-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* 宸︿晶鍐呭鏍峰紡 */
.content-left h2 {
    font-size: 34px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-left h2 .blue-text {
    background: linear-gradient(135deg, #1A83FF 0%, #3B82F6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 淇subtitle-item鏍峰紡 - 鈭氬浘鏍囷紝瀛椾綋鍔犲ぇ */
.subtitle-icons {
    display: flex;
    gap: 28px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.subtitle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #16C166;
    transition: all 0.3s ease;
    position: relative;
}

.subtitle-item::before {
    content: '';
    font-size: 18px;
    font-weight: 700;
    color: #16C166;
    transition: all 0.3s ease;
}

.subtitle-item:hover {
    transform: translateX(3px);
    color: #059669;
}

.subtitle-item:hover::before {
    color: #059669;
    transform: scale(1.15);
}

/* 闅愯棌鍘熸湁鐨刬con */
.subtitle-item i {
    display: none;
}

/* 浜у搧鍖哄煙鏍峰紡 */
.product-section {
    margin-bottom: 30px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.product-title i {
    color: #1A83FF;
    font-size: 20px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.product-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #4B5563;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A83FF 0%, #3B82F6 100%);
    transition: left 0.3s ease;
    z-index: 1;
}

.product-item span {
    position: relative;
    z-index: 2;
}

.product-item i {
    color: #1A83FF;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-size: 13px;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    color: #fff;
    border-color: #1A83FF;
}

.product-item:hover::before {
    left: 0;
}

.product-item:hover i {
    color: #fff;
}

/* 鏈嶅姟椤规牱寮?*/
.service-item {
    padding: 20px 0;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-item h4 {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-item h4 a {
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-item h4 a:hover {
    color: #1A83FF;
}

.service-item h4 i {
    color: #1A83FF;
    padding: 6px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    font-size: 20px;
}

.service-item p {
    color: #4B5563;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* 鍙充晶鍐呭鏍峰紡 */
.content-right {
    height: fit-content;
    position: sticky;
    top: 30px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 鍝嶅簲寮忚璁?- 浼樺寲涓よ竟鐣欑櫧绗﹀悎涓绘祦鏍囧噯 */
@media (min-width: 1440px) {
    .hotel-scenario-container {
        padding: 0 40px 40px 40px;
    }
}

@media (max-width: 1439px) {
    .hotel-scenario-container {
        max-width: 1200px;
        padding: 0 32px 40px 32px;
    }
}

@media (max-width: 1200px) {
    .hotel-scenario-container {
        max-width: 992px;
        padding: 0 24px 40px 24px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-right {
        order: -1;
        position: static;
    }
    
    .main-title h1 {
        font-size: 36px;
    }
    
    .main-title .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .hotel-scenario-container {
        max-width: 768px;
        padding: 0 20px 40px 20px;
    }
}

@media (max-width: 768px) {
    .hotel-scenario-container {
        padding: 0 16px 20px 16px;
    }
    
    .main-title {
        margin: 20px 0 30px 0;
    }
    
    .main-title h1 {
        font-size: 28px;
    }
    
    .main-title .subtitle {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .tab-nav {
        flex-direction: column;
        padding: 6px;
        border-radius: 20px;
    }
    
    .tab-nav::before {
        border-radius: 20px;
    }
    
    .tab-item {
        min-width: 100%;
        padding: 14px 20px;
        border-radius: 14px;
    }
    
    .tab-content {
        padding: 30px 16px;
        min-height: 400px;
    }
    
    .content-left h2 {
        font-size: 24px;
    }
    
    .subtitle-icons {
        gap: 20px;
        justify-content: flex-start;
    }
    
    .subtitle-item {
        font-size: 16px;
    }
    
    .subtitle-item::before {
        font-size: 16px;
    }
    
    .product-items {
        gap: 8px;
    }
    
    .product-item {
        font-size: 13px;
        padding: 8px 14px;
        flex-shrink: 0;
    }
    
    .image-container {
        height: 250px;
    }
    
    .service-item p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hotel-scenario-container {
        padding: 0 12px 20px 12px;
    }
    
    .tab-content {
        padding: 25px 12px;
    }
    
    .main-title h1 {
        font-size: 24px;
    }
    
    .content-left h2 {
        font-size: 22px;
    }
    
    .subtitle-item {
        font-size: 15px;
    }
    
    .subtitle-item::before {
        font-size: 15px;
    }
    
    .service-item p {
        font-size: 14px;
    }
}

/* 骞虫粦婊氬姩 */
html {
    scroll-behavior: smooth;
}

/* 鍑忓皯鍔ㄧ敾鎶栧姩 */
* {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

/* 璺ㄥ閫氫俊*/
.comm-wrapper {
    max-width: 1500px;
    margin: 0 auto;
}

.comm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 0 20px;
}

.comm-card {
    background: linear-gradient(180deg, #EEF4FF 0%, #F9FCFF 100%);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #FAFAFD;
}

.comm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.comm-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: all 0.8s ease;
    animation: comm-spin 8s linear infinite;
}

@keyframes comm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.comm-card:hover::before {
    opacity: 1;
}

.comm-card:hover::after {
    opacity: 0.6;
}

.comm-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* ===== 鍗＄墖1锛氱传鑹茬郴 (#F8F9FF, #7A66F0) ===== */
.comm-card:nth-child(1) {
    background: linear-gradient(180deg, #EFEEFF 0%, #F5F6FF 100%);
    box-shadow: 0 4px 20px rgba(122, 102, 240, 0.12);
}

.comm-card:nth-child(1):hover {
    background: linear-gradient(180deg, #E8E9FF 0%, #EFEEFF 100%);
    box-shadow: 0 25px 50px rgba(122, 102, 240, 0.25);
    border-color: rgba(122, 102, 240, 0.3);
}

.comm-card:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(122, 102, 240, 0.08) 0%, rgba(122, 102, 240, 0.04) 100%);
}

.comm-card:nth-child(1)::after {
    background: conic-gradient(from 0deg, transparent, rgba(122, 102, 240, 0.1), transparent, rgba(122, 102, 240, 0.05), transparent);
}

.comm-card:nth-child(1) .comm-icon {
    background: linear-gradient(135deg, #EFEEFF 0%, #E5E3FF 100%);
    border: 1px solid rgba(122, 102, 240, 0.1);
    box-shadow: 0 4px 15px rgba(122, 102, 240, 0.1);
}

.comm-card:nth-child(1) .comm-icon i {
    color: #7A66F0;
    filter: drop-shadow(0 2px 4px rgba(122, 102, 240, 0.2));
}

.comm-card:nth-child(1) .comm-icon::before {
    background: linear-gradient(45deg, #7A66F0, #9584F5, #B0A3FA, #7A66F0);
}

.comm-card:nth-child(1):hover .comm-icon {
    box-shadow: 0 15px 40px rgba(122, 102, 240, 0.25);
    background: linear-gradient(135deg, #7A66F0 0%, #9584F5 100%);
    border-color: rgba(122, 102, 240, 0.2);
}

.comm-card:nth-child(1) .comm-title {
    color: #7A66F0;
}

.comm-card:nth-child(1):hover .comm-title {
    color: #6451D0;
    text-shadow: 0 2px 8px rgba(122, 102, 240, 0.2);
}

.comm-card:nth-child(1) .comm-btn {
    color: #7A66F0;
}

.comm-card:nth-child(1) .comm-btn::before {
    background: linear-gradient(90deg, #7A66F0, #9584F5);
}

.comm-card:nth-child(1) .comm-btn:hover {
    color: #6451D0;
}

.comm-card:nth-child(1) .comm-btn:hover i {
    color: #6451D0;
}

/* ===== 鍗＄墖2锛氶潚缁胯壊绯?(#F9FFFF, #1A83FF) ===== */
.comm-card:nth-child(2) {
    background: linear-gradient(180deg, #F0FFFF 0%, #F6FFFF 100%);
    box-shadow: 0 4px 20px rgba(0, 169, 133, 0.12);
}

.comm-card:nth-child(2):hover {
    background: linear-gradient(180deg, #E8FFFE 0%, #F0FFFF 100%);
    box-shadow: 0 25px 50px rgba(0, 169, 133, 0.25);
    border-color: rgba(0, 169, 133, 0.3);
}

.comm-card:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(0, 169, 133, 0.08) 0%, rgba(0, 169, 133, 0.04) 100%);
}

.comm-card:nth-child(2)::after {
    background: conic-gradient(from 0deg, transparent, rgba(0, 169, 133, 0.1), transparent, rgba(0, 169, 133, 0.05), transparent);
}

.comm-card:nth-child(2) .comm-icon {
    background: linear-gradient(135deg, #E6FFFA 0%, #D9FFF5 100%);
    border: 1px solid rgba(0, 169, 133, 0.1);
    box-shadow: 0 4px 15px rgba(0, 169, 133, 0.1);
}

.comm-card:nth-child(2) .comm-icon i {
    color: #1A83FF;
    filter: drop-shadow(0 2px 4px rgba(0, 169, 133, 0.2));
}

.comm-card:nth-child(2) .comm-icon::before {
    background: linear-gradient(45deg, #1A83FF, #00C89F, #33E6B8, #1A83FF);
}

.comm-card:nth-child(2):hover .comm-icon {
    box-shadow: 0 15px 40px rgba(0, 169, 133, 0.25);
    background: linear-gradient(135deg, #1A83FF 0%, #00C89F 100%);
    border-color: rgba(0, 169, 133, 0.2);
}

.comm-card:nth-child(2) .comm-title {
    color: #1A83FF;
}

.comm-card:nth-child(2):hover .comm-title {
    color: #008A6E;
    text-shadow: 0 2px 8px rgba(0, 169, 133, 0.2);
}

.comm-card:nth-child(2) .comm-btn {
    color: #1A83FF;
}

.comm-card:nth-child(2) .comm-btn::before {
    background: linear-gradient(90deg, #1A83FF, #00C89F);
}

.comm-card:nth-child(2) .comm-btn:hover {
    color: #008A6E;
}

.comm-card:nth-child(2) .comm-btn:hover i {
    color: #008A6E;
}

/* ===== 鍗＄墖3锛氳摑鑹茬郴 (#FBFEFF, #1A83FF) ===== */
.comm-card:nth-child(3) {
    background: linear-gradient(180deg, #F2FBFF 0%, #F8FEFF 100%);
    box-shadow: 0 4px 20px rgba(26, 131, 255, 0.12);
}

.comm-card:nth-child(3):hover {
    background: linear-gradient(180deg, #EAF7FF 0%, #F2FBFF 100%);
    box-shadow: 0 25px 50px rgba(26, 131, 255, 0.25);
    border-color: rgba(26, 131, 255, 0.3);
}

.comm-card:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(26, 131, 255, 0.08) 0%, rgba(26, 131, 255, 0.04) 100%);
}

.comm-card:nth-child(3)::after {
    background: conic-gradient(from 0deg, transparent, rgba(26, 131, 255, 0.1), transparent, rgba(26, 131, 255, 0.05), transparent);
}

.comm-card:nth-child(3) .comm-icon {
    background: linear-gradient(135deg, #EBF5FF 0%, #E0F0FF 100%);
    border: 1px solid rgba(26, 131, 255, 0.1);
    box-shadow: 0 4px 15px rgba(26, 131, 255, 0.1);
}

.comm-card:nth-child(3) .comm-icon i {
    color: #1A83FF;
    filter: drop-shadow(0 2px 4px rgba(26, 131, 255, 0.2));
}

.comm-card:nth-child(3) .comm-icon::before {
    background: linear-gradient(45deg, #1A83FF, #4D9FFF, #80BBFF, #1A83FF);
}

.comm-card:nth-child(3):hover .comm-icon {
    box-shadow: 0 15px 40px rgba(26, 131, 255, 0.25);
    background: linear-gradient(135deg, #1A83FF 0%, #4D9FFF 100%);
    border-color: rgba(26, 131, 255, 0.2);
}

.comm-card:nth-child(3) .comm-title {
    color: #1A83FF;
}

.comm-card:nth-child(3):hover .comm-title {
    color: #0D6BE0;
    text-shadow: 0 2px 8px rgba(26, 131, 255, 0.2);
}

.comm-card:nth-child(3) .comm-btn {
    color: #1A83FF;
}

.comm-card:nth-child(3) .comm-btn::before {
    background: linear-gradient(90deg, #1A83FF, #4D9FFF);
}

.comm-card:nth-child(3) .comm-btn:hover {
    color: #0D6BE0;
}

.comm-card:nth-child(3) .comm-btn:hover i {
    color: #0D6BE0;
}

/* ===== 鍗＄墖4锛氭鑹茬郴 (#FFFCFA, #FF6726) ===== */
.comm-card:nth-child(4) {
    background: linear-gradient(180deg, #FFF5F0 0%, #FFF9F6 100%);
    box-shadow: 0 4px 20px rgba(255, 103, 38, 0.12);
}

.comm-card:nth-child(4):hover {
    background: linear-gradient(180deg, #FFEEE6 0%, #FFF5F0 100%);
    box-shadow: 0 25px 50px rgba(255, 103, 38, 0.25);
    border-color: rgba(255, 103, 38, 0.3);
}

.comm-card:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(255, 103, 38, 0.08) 0%, rgba(255, 103, 38, 0.04) 100%);
}

.comm-card:nth-child(4)::after {
    background: conic-gradient(from 0deg, transparent, rgba(255, 103, 38, 0.1), transparent, rgba(255, 103, 38, 0.05), transparent);
}

.comm-card:nth-child(4) .comm-icon {
    background: linear-gradient(135deg, #FFF0EB 0%, #FFE8E0 100%);
    border: 1px solid rgba(255, 103, 38, 0.1);
    box-shadow: 0 4px 15px rgba(255, 103, 38, 0.1);
}

.comm-card:nth-child(4) .comm-icon i {
    color: #FF6726;
    filter: drop-shadow(0 2px 4px rgba(255, 103, 38, 0.2));
}

.comm-card:nth-child(4) .comm-icon::before {
    background: linear-gradient(45deg, #FF6726, #FF8555, #FFA384, #FF6726);
}

.comm-card:nth-child(4):hover .comm-icon {
    box-shadow: 0 15px 40px rgba(255, 103, 38, 0.25);
    background: linear-gradient(135deg, #FF6726 0%, #FF8555 100%);
    border-color: rgba(255, 103, 38, 0.2);
}

.comm-card:nth-child(4) .comm-title {
    color: #FF6726;
}

.comm-card:nth-child(4):hover .comm-title {
    color: #E04D0F;
    text-shadow: 0 2px 8px rgba(255, 103, 38, 0.2);
}

.comm-card:nth-child(4) .comm-btn {
    color: #FF6726;
}

.comm-card:nth-child(4) .comm-btn::before {
    background: linear-gradient(90deg, #FF6726, #FF8555);
}

.comm-card:nth-child(4) .comm-btn:hover {
    color: #E04D0F;
}

.comm-card:nth-child(4) .comm-btn:hover i {
    color: #E04D0F;
}

.comm-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.5s ease;
    flex-shrink: 0;
    z-index: 2;
    animation: comm-pulse 4s ease-in-out infinite;
}

.comm-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    background-size: 400% 400%;
    animation: comm-gradient 3s ease-in-out infinite;
}

@keyframes comm-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.comm-card:hover .comm-icon {
    transform: scale(1.15) rotate(-5deg);
}

.comm-card:hover .comm-icon::before {
    opacity: 1;
    animation: comm-gradient 1.5s ease-in-out infinite, comm-glow 2s ease-in-out infinite;
}

@keyframes comm-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}

.comm-icon i {
    font-size: 32px;
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
}

.comm-card:hover .comm-icon i {
    transform: scale(1.2) rotateY(15deg);
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    animation: comm-bounce 1s ease-in-out infinite;
}

@keyframes comm-bounce {
    0%, 100% { transform: scale(1.2) rotateY(15deg); }
    50% { transform: scale(1.25) rotateY(15deg); }
}

@keyframes comm-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.comm-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    transition: all 0.4s ease;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.comm-card:hover .comm-title {
    transform: translateX(8px);
}

.comm-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
    transition: all 0.4s ease;
    height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    flex-grow: 1;
    z-index: 2;
    position: relative;
}

.comm-card:hover .comm-desc {
    color: #475569;
    transform: translateX(4px);
}

.comm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    align-self: flex-start;
    margin-top: auto;
    z-index: 2;
}

.comm-btn::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.4s ease;
}

.comm-card:hover .comm-btn::before {
    width: calc(100% - 20px);
}

.comm-btn:hover {
    transform: translateX(8px);
}

.comm-btn-text {
    transition: transform 0.3s ease;
}

.comm-btn:hover .comm-btn-text {
    transform: translateX(4px);
}

.comm-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.comm-btn:hover i {
    transform: translateX(6px) scale(1.1);
    opacity: 1;
}

/* 鍝嶅簲寮忔柇鐐?*/
@media (max-width: 1200px) {
    .comm-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .comm-desc {
        height: 105px;
    }
}

@media (max-width: 992px) {
    .comm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .comm-title {
        font-size: 26px;
    }
    
    .comm-desc {
        height: 120px;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 768px) {
    .comm-title {
        font-size: 24px;
    }
    
    .comm-desc {
        height: 128px;
    }
}

@media (max-width: 576px) {
    .comm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .comm-card {
        padding: 32px 24px;
    }
    
    .comm-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .comm-desc {
        height: auto;
        -webkit-line-clamp: unset;
        margin-bottom: 24px;
    }
    
    body {
        padding: 40px 16px;
    }
}

/* 鍏ュ満鍔ㄧ敾 */
.comm-card {
    opacity: 0;
    transform: translateY(30px);
    animation: comm-fadeup 0.6s ease forwards;
}

.comm-card:nth-child(1) { animation-delay: 0.1s; }
.comm-card:nth-child(2) { animation-delay: 0.2s; }
.comm-card:nth-child(3) { animation-delay: 0.3s; }
.comm-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes comm-fadeup {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* end */


* 閲嶇疆鏍峰紡鍜屽熀纭€璁剧疆 */

.global-numbers-container {
    background-color: #f9fafb;
    padding:60px 20px;
   margin-top: 60px ;
}

.global-numbers-wrapper {
    max-width: 1500px;
    margin: 0 auto;
}

.global-numbers-title {
    text-align: center;
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    min-width: 120px;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
}

.country-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #005EFF;
}

.country-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.country-name {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
}

/* 120+鍦板尯鐗规畩鏍峰紡 */
.more-regions {
    background: linear-gradient(135deg, #005EFF, #0066FF);
    color: white;
    position: relative;
    overflow: hidden;
}

.more-regions::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: rotate 3s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.more-regions .country-name {
    color: white;
    font-weight: 700;
    z-index: 1;
    position: relative;
}

.more-regions-icon {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
    z-index: 1;
    position: relative;
}

/* 寮瑰嚭灞傛牱寮?*/
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    padding: 30px 30px 20px;
    background: #005EFF;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    transition: background 0.2s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 30px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
}

.all-countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.country-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #000000;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.country-link:hover {
    background: #f3f4f6;
    border-color: #005EFF;
    transform: translateY(-1px);
}

.country-link-flag {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.country-link-name {
    font-weight: 600;
    margin-right: 8px;
}

.country-code {
    color: #6b7280;
    font-size: 14px;
}

/* 鍝嶅簲寮忚璁?*/
@media (max-width: 768px) {
    .global-numbers-container {
        padding: 40px 15px;
    }

    .global-numbers-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .countries-grid {
        gap: 20px;
    }

    .country-item {
        min-width: 100px;
        padding: 15px;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 90vh;
    }

    .modal-header {
        padding: 20px 20px 15px;
    }

    .modal-body {
        padding: 20px;
    }

    .all-countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .global-numbers-title {
        font-size: 28px;
    }

    .countries-grid {
        gap: 15px;
    }

    .country-item {
        min-width: 90px;
        padding: 12px;
    }

    .country-flag {
        width: 50px;
        height: 33px;
    }

    .more-regions-icon {
        width: 50px;
        height: 33px;
    }

    .all-countries-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


/* 閲嶇疆鏍峰紡鍜屽熀纭€璁剧疆 */
/* 鍥藉/鍦板尯瀵艰埅鏍峰紡 - 浼樺寲涓轰袱鎺掓樉绀?*/
.et-countries {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(240,245,248,1);
    text-align: center;
}

.et-countries-title {
    font-size: 28px;
    color: #6B7280;
    margin: 0 0 30px;
    font-weight: 600;
}

.et-countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* 鍥藉椤瑰鍣?- 涓ゆ帓甯冨眬 */
.et-country-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s ease, filter 0.3s ease;
    cursor: pointer;
    width: 100px;
}

/* 澧炲己鐨勫姩鎬佹晥鏋?*/
.et-country-container:hover {
    transform: scale(1.15) translateY(-5px);
    filter: brightness(1.05);
}

/* 涓婃帓鍦嗗舰鑳屾櫙 */
.et-country-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E3F1FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.et-country-container:hover .et-country-circle {
    background-color: #D0E7FF;
    box-shadow: 0 4px 15px rgba(26, 131, 255, 0.25);
}

/* 鍥芥棗鍦ㄥ渾褰腑鐨勬牱寮?*/
.et-country-flag {
    width: 34px;
    height: 22px;
    border-radius: 2px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.et-country-container:hover .et-country-flag {
    transform: scale(1.15) rotate(3deg);
}

/* 鍏ㄧ悆鍥炬爣鏍峰紡 */
.global-icon {
    width: 30px;
    height: 30px;
    fill: #1A83FF;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.et-country-container:hover .global-icon {
    transform: rotate(15deg) scale(1.2);
    fill: #0066FF;
}

/* 涓嬫帓鍥藉鍚嶇О */
.et-country-name {
    color: #6B7280;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.et-country-container:hover .et-country-name {
    color: #4B5563;
    font-weight: 500;
    transform: translateY(3px);
}

/* 鍏ㄩ儴鎸夐挳鐗规畩鏍峰紡 */
.et-all-container {
    composes: et-country-container;
}

.et-all-container .et-country-circle {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 131, 255, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(26, 131, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 131, 255, 0);
    }
}

/* ========== 鍥芥棗鏍峰紡 - 浣跨敤鍚勫浗鐪熷疄鍥芥棗 ========== */

/* 缇庡浗鍥芥棗 馃嚭馃嚫 - 鏄熸潯鏃?*/
.flag-usa {
    background: repeating-linear-gradient(
        0deg,
        #B22234 0px, #B22234 1.7px,
        #FFFFFF 1.7px, #FFFFFF 3.4px
    );
    position: relative;
}

.flag-usa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 53%;
    background-color: #3C3B6E;
}

.flag-usa::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 3px;
    color: white;
    line-height: 4px;
    width: 12px;
    word-wrap: break-word;
}

/* 婢冲ぇ鍒╀簹鍥芥棗 馃嚘馃嚭 - 钃濆簳绫冲瓧鏃?鍗楀崄瀛楁槦 */
.flag-australia {
    background-color: #012169;
    position: relative;

}

/* 鑻卞浗绫冲瓧鏃楅儴鍒?*/
.flag-australia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: 
        linear-gradient(to top right, transparent 42%, white 42%, white 50%, #C8102E 50%, #C8102E 58%, transparent 58%),
        linear-gradient(to bottom right, transparent 42%, white 42%, white 50%, #C8102E 50%, #C8102E 58%, transparent 58%),
        linear-gradient(90deg, transparent 45%, white 45%, white 50%, #C8102E 50%, #C8102E 55%, transparent 55%),
        linear-gradient(0deg, transparent 45%, white 45%, white 50%, #C8102E 50%, #C8102E 55%, transparent 55%);
}

/* 鍗楀崄瀛楁槦 */
.flag-australia::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 6px;
}

/* 鏃ユ湰鍥芥棗 馃嚡馃嚨 - 鏃ョ珷鏃?*/
.flag-japan {
    background-color: #FFFFFF;
    position: relative;
}

.flag-japan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    background-color: #BC002D;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* 鏂板姞鍧″浗鏃?馃嚫馃嚞 - 绾㈢櫧鍙岃壊+鏈堟槦 */
.flag-singapore {
    background: linear-gradient(
        180deg,
        #ED2939 0%, #ED2939 50%,
        #FFFFFF 50%, #FFFFFF 100%
    );
    position: relative;
}

/* 鏈堢墮 */
.flag-singapore::before {
    content: '';
    position: absolute;
    top: 5.5px;
    left: 6px;
    width: 7px;
    height: 7px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 2px 0 0 0 #ED2939;
}

/* 浜旇鏄?*/
.flag-singapore::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 14px;
    color: white;
    font-size: 3px;
    letter-spacing: -0.5px;
}

/* 棣欐腐鍖烘棗 馃嚟馃嚢 - 绾㈠簳鐧借壊绱崋鑺?*/
.flag-hongkong {
    background-color: #DE2910;
    position: relative;
}

/* 绱崋鑺变腑蹇?*/
.flag-hongkong::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* 绱崋鑺辫姳鐡?*/
.flag-hongkong::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

/* 鑻卞浗鍥芥棗 馃嚞馃嚙 - 绫冲瓧鏃?*/
.flag-uk {
    background-color: #012169;
    position: relative;
}

.flag-uk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* 鐧借壊瀵硅绾?*/
        linear-gradient(to top right, transparent 44%, white 44%, white 56%, transparent 56%),
        linear-gradient(to bottom right, transparent 44%, white 44%, white 56%, transparent 56%),
        /* 绾㈣壊瀵硅绾?*/
        linear-gradient(to top right, transparent 47%, #C8102E 47%, #C8102E 53%, transparent 53%),
        linear-gradient(to bottom right, transparent 47%, #C8102E 47%, #C8102E 53%, transparent 53%),
        /* 鐧借壊鍗佸瓧 */
        linear-gradient(90deg, transparent 42%, white 42%, white 58%, transparent 58%),
        linear-gradient(0deg, transparent 42%, white 42%, white 58%, transparent 58%);
}

/* 绾㈣壊鍗佸瓧 */
.flag-uk::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        linear-gradient(0deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%);
}

/* 娉曞浗鍥芥棗 馃嚝馃嚪 - 涓夎壊鏃?*/
.flag-france {
    background: linear-gradient(
        90deg,
        #002395 0%, #002395 33.33%,
        #FFFFFF 33.33%, #FFFFFF 66.66%,
        #ED2939 66.66%, #ED2939 100%
    );
}

/* 鍔犳嬁澶у浗鏃?馃嚚馃嚘 - 鏋彾鏃?*/
.flag-canada {
    background: linear-gradient(
        90deg,
        #FF0000 0%, #FF0000 25%,
        #FFFFFF 25%, #FFFFFF 75%,
        #FF0000 75%, #FF0000 100%
    );
    position: relative;
}

/* 鏋彾 */
.flag-canada::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    filter: grayscale(100%) brightness(0);
}

/* fangan*/
/* 涓籘AB椤堕儴鏍峰紡 */
/* 涓籘AB椤堕儴鏍峰紡 */
.my-scenario-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}
.my-tab-wrapper { margin-bottom: 30px; }
.my-tab-nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}
.my-tab-nav {
    background: #F5FAFF;
    border-radius: 80px;
    padding: 8px;
    display: flex;
    gap: 4px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.my-tab-nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    border-radius: 80px;
    z-index: 1;
}
.my-tab-item {
    background: transparent;
    border: none;
    border-radius: 76px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}
.my-tab-item:hover:not(.active) {
    color: #374151;
    transform: translateY(-2px);
}
.my-tab-item.active {
    background: #fff;
    color: #1A83FF;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

/* TAB鍐呭鍖?- 鑳屾櫙#EFF5FD */
.my-tab-content {
    background: #EFF5FD;
    border-radius: 24px;
    padding: 0;
    min-height: 500px;
    display: none;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
    position: relative;
}
.my-tab-content.active {
    display: block;
    animation: tabFadeIn 0.6s ease-out;
}
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 鍐呭甯冨眬 */
.my-content-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 100%;
    min-height: 500px;
    position: relative;
}

/* 娓愬彉鍒嗗壊绾?*/
.my-content-layout::after {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26,131,255,0.1) 0%, 
        rgba(26,131,255,0.3) 30%, 
        rgba(26,131,255,0.5) 50%, 
        rgba(26,131,255,0.3) 70%, 
        rgba(26,131,255,0.1) 100%);
    z-index: 2;
}

/* 宸﹀鑸尯 */
.my-side-nav {
    position: relative;
    background: linear-gradient(to right, #DFECFD 0%, #EFF5FD 100%);
    border-radius: 24px 0 0 24px;
    display: flex;
    flex-direction: column;
}
.my-side-nav button {
    width: 100%;
    height: 140px;
    background: #EFF5FD;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #4B5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.2;
}

/* 鏈€変腑鎸夐挳涔嬮棿鐨勫垎鍓茬嚎 */
.my-side-nav button:not(:last-child):not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(75, 85, 99, 0.2) 50%, 
        transparent 100%);
}

/* 閫変腑鐘舵€佷笅闅愯棌鍒嗗壊绾?*/
.my-side-nav button.active::after,
.my-side-nav button.active + button::before {
    display: none;
}

/* 閫変腑鐘舵€佺殑涓婁竴涓寜閽篃闅愯棌涓嬪垎鍓茬嚎 */
.my-side-nav button:has(+ button.active)::after {
    display: none;
}

/* 閫変腑鐘舵€?- 娓愬彉鑳屾櫙 + 5px绾挎潯 */
.my-side-nav button.active {
    background: linear-gradient(to right, #DFECFD 0%, #EFF5FD 100%);
    color: #1A83FF;
}
.my-side-nav button.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #1A83FF;
    z-index: 1;
}

/* 鎮仠鐘舵€?- 鏄剧ず宸﹁竟绾挎潯 */
.my-side-nav button:hover:not(.active) {
    background: #EFF5FD;
    color: #1A83FF;
    transform: translateX(3px);
}
.my-side-nav button:hover:not(.active)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #1A83FF;
    z-index: 1;
}

/* 鍙充晶鍐呭鍖?- 璺濈鍒嗗壊绾?5px */
.my-content-area {
    padding: 40px 40px 40px 115px;
    background: #EFF5FD;
    border-radius: 0 24px 24px 0;
    position: relative;
    overflow: hidden;
}

/* 鑳屾櫙鍥剧墖 - 閰掑簵鏂规 */
.my-content-area.hotel-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鑳屾櫙鍥剧墖 - 璺ㄥ閫氫俊 */
.my-content-area.cross-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1526628953301-3e589a6a8b74?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鑳屾櫙鍥剧墖 - 浼佷笟閫氫俊 */
.my-content-area.enterprise-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鍙宠嚦宸﹂€忔槑婊ら暅 */
.my-content-area::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background: linear-gradient(to left, 
        rgba(239,245,253,0) 0%, 
        rgba(239,245,253,0.3) 30%, 
        rgba(239,245,253,0.7) 70%, 
        rgba(239,245,253,1) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 0 24px 0 0;
}

.my-content-panel { 
    display: none; 
    position: relative;
    z-index: 3;
}
.my-content-panel.active { display: block; }

/* ICON + 鏍囬 - 缂╃煭闂磋窛 */
.my-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    margin-top: 50px;
}
.my-title-icon {
    width: 80px;
    height: 80px;
    background-color: #F36249;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(243,98,73,0.3);
}
.my-title-text {
    font-size: 38px;
    font-weight: 700;
    color: #1F2937;
}

/* 鏍囬瓒呴摼鎺?*/
.my-title-link {
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
}
.my-title-link:hover {
    color: #1A83FF;
}

/* 鎻忚堪鍖?- 鍘绘帀搴曡壊鍜屽乏杈圭嚎 */
.my-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    padding: 0;
    margin-bottom: 20px;
    margin-right: 260px;
}

/* 浜嗚В鏇村閾炬帴 */
.my-learn-more {
    margin-top: 15px;
}
.my-learn-more a {
    color: #1A83FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.my-learn-more a:hover {
    color: #0066CC;
    transform: translateX(3px);
}

/* 鍒嗗尯璁捐 - 缁熶竴瀹藉害瀹瑰櫒 */
.my-section {
    margin-bottom: 40px;
    width: 100%;
    max-width: 900px; /* 澧炲姞瀹藉害 */
}
.my-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 0;
}
.my-section-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1A83FF, #3B82F6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.my-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

/* 鍦烘櫙鑱斿姩 - 澧炲姞瀹藉害閫傞厤3寮犲崱鐗囦竴鎺掓樉绀?*/
.my-scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: rgba(255,255,255,0.4);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}
.my-scenario-card {
    padding: 24px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-scenario-card:hover {
    background: rgba(26,131,255,0.08);
    transform: translateY(-3px);
}
.my-scenario-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1A83FF, #3B82F6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.my-scenario-card:hover .my-scenario-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(26,131,255,0.3);
}
.my-scenario-content {
    flex: 1;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-scenario-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    transition: color 0.4s ease;
    word-wrap: break-word;
}
.my-scenario-card:hover .my-scenario-title {
    color: #1A83FF;
}
.my-scenario-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
}

/* 瀵规帴鍏煎 - 澧炲姞瀹藉害閫傞厤5寮犲崱鐗囦竴鎺掓樉绀?*/
.my-compat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}
.my-compat-card {
    padding: 20px 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #4B5563;
    border: 1px solid #F3F4F6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-compat-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1A83FF, #3B82F6);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.my-compat-text {
    transition: all 0.4s ease;
    font-size: 15px;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
}
.my-compat-card:hover {
    transform: translateY(-4px);
    border-color: #E5E7EB;
    box-shadow: 0 8px 20px rgba(26,131,255,0.15);
    background: rgba(26,131,255,0.03);
}
.my-compat-card:hover .my-compat-icon {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(26,131,255,0.25);
}
.my-compat-card:hover .my-compat-text {
    color: #1A83FF;
}

/* 鍝嶅簲寮?- 涓ユ牸鑷€傚簲 */
@media (max-width: 1400px) {
    .my-scenario-container {
        max-width: 1200px;
        padding: 0 15px 40px 15px;
    }
    .my-content-area {
        padding: 35px 35px 35px 90px;
    }
    .my-desc {
        margin-right: 200px;
    }
    .my-section {
        max-width: 800px;
    }
}

@media (max-width: 1200px) {
    .my-scenario-container {
        max-width: 100%;
        padding: 0 15px 40px 15px;
    }
    .my-content-area {
        padding: 35px 35px 35px 90px;
    }
    .my-desc {
        margin-right: 180px;
    }
    .my-section {
        max-width: 750px;
    }
    .my-side-nav button {
        font-size: 16px;
        height: 130px;
    }
    /* 鍦烘櫙鑱斿姩淇濇寔3鍒?*/
    .my-scenario-grid {
        gap: 20px;
        padding: 20px;
    }
    .my-scenario-card {
        padding: 20px;
        gap: 16px;
    }
    /* 瀵规帴鍏煎淇濇寔5鍒?*/
    .my-compat-grid {
        gap: 16px;
        padding: 20px;
    }
    .my-compat-card {
        padding: 16px 12px;
        gap: 10px;
    }
    .my-compat-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .my-compat-text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .my-content-layout {
        grid-template-columns: 180px 1fr;
    }
    .my-content-area {
        padding: 30px 30px 30px 80px;
    }
    .my-title-text {
        font-size: 32px;
    }
    .my-section-title {
        font-size: 22px;
    }
    .my-desc {
        margin-right: 150px;
    }
    .my-section {
        max-width: 650px;
    }
    .my-side-nav button {
        font-size: 15px;
        height: 120px;
    }
    /* 鍦烘櫙鑱斿姩鍙樹负2鍒?*/
    .my-scenario-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    /* 瀵规帴鍏煎淇濇寔5鍒椾絾缂╁皬 */
    .my-compat-card {
        padding: 14px 10px;
        gap: 8px;
    }
    .my-compat-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .my-compat-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .my-content-layout {
        grid-template-columns: 1fr;
    }
    .my-content-layout::after {
        display: none;
    }
    .my-side-nav {
        flex-direction: row;
        border-radius: 24px 24px 0 0;
        overflow-x: auto;
        background: #EFF5FD;
    }
    .my-side-nav button {
        height: auto;
        padding: 20px 15px;
        flex: 1;
        min-width: 140px;
        background: #EFF5FD;
        font-size: 14px;
    }
    .my-side-nav button:not(:last-child):not(.active)::after {
        bottom: auto;
        right: 0;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: linear-gradient(to bottom, 
            transparent 0%, 
            rgba(75, 85, 99, 0.2) 50%, 
            transparent 100%);
    }
    .my-side-nav button.active {
        background: linear-gradient(to bottom, #DFECFD 0%, #EFF5FD 100%);
    }
    .my-content-area {
        border-radius: 0 0 24px 24px;
        padding: 30px 20px;
    }
    .my-title-block {
        margin-top: 40px;
    }
    .my-title-text {
        font-size: 28px;
    }
    .my-section-title {
        font-size: 20px;
    }
    .my-desc {
        margin-right: 0;
    }
    .my-section {
        margin-bottom: 30px;
        max-width: 100%;
    }
    /* 鍦烘櫙鑱斿姩鍙樹负1鍒?*/
    .my-scenario-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    /* 瀵规帴鍏煎鍙樹负3鍒?*/
    .my-compat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .my-compat-card {
        padding: 12px 8px;
        gap: 6px;
    }
    .my-compat-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .my-compat-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .my-tab-item {
        padding: 14px 20px;
        font-size: 14px;
        min-width: 120px;
    }
    .my-title-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    .my-title-text {
        font-size: 24px;
    }
    .my-section-title {
        font-size: 18px;
    }
    .my-section-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .my-side-nav button {
        font-size: 12px;
        min-width: 120px;
    }
    .my-scenario-card {
        padding: 16px;
        gap: 16px;
    }
    .my-scenario-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .my-scenario-title {
        font-size: 16px;
    }
    .my-scenario-desc {
        font-size: 12px;
    }
    /* 瀵规帴鍏煎鍙樹负2鍒?*/
    .my-compat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .my-compat-card {
        padding: 10px 6px;
        gap: 5px;
    }
    .my-compat-icon {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    .my-compat-text {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    /* 瀵规帴鍏煎鏈€灏忓睆骞曞彉涓?鍒?*/
    .my-compat-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
.tab-item i {
    margin-right: 8px;
}
/*妗堜緥LDO*/

.partners-section {
    padding: 0px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.partners-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.partners-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.partners-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.partners-scroll-wrapper {
    position: relative;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.partners-mask-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.1) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.partners-mask-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.1) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.partners-scroll-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.partners-logos-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: scrollUpContinuous 50s linear infinite;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: nowrap;
    min-height: 65px;
}

.partners-row img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(50%) opacity(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    transform: scale(0.98);
    cursor: pointer;
}

.partners-row img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.02);
}

/* 鏃犵紳寰幆鍔ㄧ敾 */
@keyframes scrollUpContinuous {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* 鏍囬鍔ㄧ敾 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 榧犳爣鎮仠鏆傚仠鍔ㄧ敾 */
.partners-scroll-wrapper:hover .partners-logos-track {
    animation-play-state: paused;
}

/* 瀹藉睆閫傞厤 */
@media (min-width: 1400px) {
    .partners-container {
        max-width: 1800px;
        padding: 0 60px;
    }
    
    .partners-scroll-wrapper {
        height: 650px;
    }
    
    .partners-scroll-container {
        padding: 130px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 130px;
    }
    
    .partners-row {
        gap: 45px;
    }
    
    .partners-row img {
        max-width: 160px;
        max-height: 80px;
    }
}

/* 涓瓑灞忓箷閫傞厤 */
@media (max-width: 1200px) {
    .partners-container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .partners-scroll-wrapper {
        height: 550px;
    }
    
    .partners-scroll-container {
        padding: 110px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 110px;
    }
    
    .partners-row {
        gap: 30px;
    }
    
    .partners-row img {
        max-width: 120px;
        max-height: 60px;
    }
}

/* 骞虫澘閫傞厤 */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-container {
        padding: 0 20px;
    }
    
    .partners-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .partners-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .partners-scroll-wrapper {
        height: 450px;
    }
    
    .partners-scroll-container {
        padding: 100px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 100px;
    }
    
    .partners-logos-track {
        gap: 15px;
        animation-duration: 40s;
    }
    
    .partners-row {
        gap: 20px;
        min-height: 55px;
    }
    
    .partners-row img {
        max-width: 100px;
        max-height: 50px;
        padding: 6px;
    }
}

/* 鎵嬫満閫傞厤 */
@media (max-width: 480px) {
    .partners-title {
        font-size: 28px;
    }
    
    .partners-subtitle {
        font-size: 14px;
    }
    
    .partners-scroll-wrapper {
        height: 380px;
    }
    
    .partners-scroll-container {
        padding: 90px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 90px;
    }
    
    .partners-logos-track {
        gap: 12px;
        animation-duration: 35s;
    }
    
    .partners-row {
        gap: 15px;
        min-height: 45px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partners-row img {
        max-width: 75px;
        max-height: 38px;
        padding: 4px;
    }
}

/* 楂樻竻灞忓箷浼樺寲 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .partners-row img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 鍑忓急鍔ㄧ敾鏁堟灉锛堥拡瀵圭敤鎴峰亸濂借缃級 */
@media (prefers-reduced-motion: reduce) {
    .partners-logos-track {
        animation-duration: 80s;
    }
    
    .partners-title,
    .partners-subtitle {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* 瓒呭灞忓箷閫傞厤 */
@media (min-width: 1920px) {
    .partners-container {
        max-width: 2000px;
    }
    
    .partners-scroll-wrapper {
        height: 700px;
    }
    
    .partners-scroll-container {
        padding: 140px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 140px;
    }
    
    .partners-row {
        gap: 55px;
    }
    
    .partners-row img {
        max-width: 180px;
        max-height: 90px;
    }
}

/* 4K灞忓箷閫傞厤 */
@media (min-width: 2560px) {
    .partners-scroll-wrapper {
        height: 800px;
    }
    
    .partners-scroll-container {
        padding: 160px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 160px;
    }
    
    .partners-row {
        gap: 70px;
    }
    
    .partners-row img {
        max-width: 200px;
        max-height: 100px;
    }
}

/* 鍔ㄧ敾鎬ц兘浼樺寲 */
.partners-logos-track {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.partners-row img {
    will-change: transform, filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* 鎵撳嵃鏍峰紡 */
@media print {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-scroll-wrapper {
        height: auto;
        overflow: visible;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        display: none;
    }
    
    .partners-logos-track {
        animation: none;
    }
    
    .partners-row img {
        filter: none;
        transform: none;
    }
}

/* 鎵撳嵃鏍峰紡 */
 .vs-wrap {
            width: 100%;
            box-sizing: border-box;
            padding: 0px 40px 80px 0px;
            background: transparent;
        }

        .vs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .vs-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .vs-card {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 24px;
            background: #F5F9FE;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .vs-link:hover .vs-card {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(74, 112, 255, 0.12);
        }

        .vs-icon-box {
            flex-shrink: 0;
        }

        .vs-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        /* 鍥炬爣棰滆壊鏂规 */
        .vs-link:nth-child(1) .vs-icon {
            background: #E8EDFF;
        }

        .vs-link:nth-child(1) .vs-icon i {
            color: #4A70FF;
        }

        .vs-link:nth-child(2) .vs-icon {
            background: #EBEAFF;
        }

        .vs-link:nth-child(2) .vs-icon i {
            color: #6A4BFF;
        }

        .vs-link:nth-child(3) .vs-icon {
            background: #E4F9F9;
        }

        .vs-link:nth-child(3) .vs-icon i {
            color: #00C7A9;
        }

        .vs-link:nth-child(4) .vs-icon {
            background: #EBF6FF;
        }

        .vs-link:nth-child(4) .vs-icon i {
            color: #29A3FA;
        }

        .vs-link:hover .vs-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .vs-icon i {
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .vs-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .vs-title {
            font-size: 20px;
            font-weight: 600;
            color: #394F81;
            margin: 0;
            letter-spacing: 0.2px;
            transition: color 0.3s ease;
        }

        .vs-link:hover .vs-title {
            color: #4A70FF;
        }

        .vs-desc {
            font-size: 14px;
            line-height: 1.8;
            color: #7B889C;
            margin: 0;
        }

        /* 骞虫澘閫傞厤 */
        @media screen and (max-width: 1024px) and (min-width: 768px) {
            .vs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .vs-card {
                padding: 20px;
            }
        }

        /* 鎵嬫満閫傞厤 */
        @media screen and (max-width: 767px) {
            .vs-wrap {
                padding: 40px 16px;
            }

            .vs-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .vs-card {
                gap: 12px;
                padding: 20px;
                border-radius: 10px;
            }

            .vs-icon {
                width: 32px;
                height: 32px;
            }

            .vs-icon i {
                font-size: 14px;
            }

            .vs-title {
                font-size: 18px;
            }

            .vs-desc {
                font-size: 13px;
            }
        }

/* 鎵撳嵃鏍峰紡 */