/* 全局變量 */
:root {
    --primary-color: #f48024;
    --secondary-color: #ffffff;
    --section-bg: #f5f5f5;
    --font-color: #1a1a1a;
    --transition: all 0.3s ease-in-out;
    --font-family: Montserrat, "Microsoft Jhenghei", "Helvetica Neue", Helvetica, Arial, sans-serif !important;

    /* --family-font: Cinzel, sans-serif; */
    /* --family-font-secondary: Montserrat, sans-serif; */
}

.container {
    margin: 0 auto;
    /* max-width: 1696px; */
    padding: 0 48px;
    width: 100%;
    box-sizing: border-box;
}

.pc {
    display: flex;
}

.mb {
    display: none;
}

/* 基礎樣式 */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    /* font-family: var(--family-font); */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: var(--font-family);
}

ul {
    padding-left: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 上标样式 */
sub {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 2px;
}

/* 下标样式（如果需要） */
sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 2px;
}

.main-page.pages {
    padding-top: 105px;
}

.my-container {
    width: 1400px;
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
}

.apply-now-container {
    width: 100%;
    padding: 0 48px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--font-color);
    line-height: 1.3;
    margin: 0 0 100px 0;
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

.unline-blod {
    text-decoration: underline;
    font-weight: 600;
}

/* ============================================
   Header Styles
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .nav-link {
    color: #1a1a1a;
}

.main-header.scrolled .nav-link.active{
    color: var(--primary-color);
}

.main-header.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 40px;
}

/* Logo Styles */
.header-logo {
    /* flex-shrink: 0; */
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    position: relative;
}

.header-logo img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-logo img.logo-circle {
    width: 80px;
    height: auto;
}

/* Navigation Styles */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav>ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 25px;
    color: #1a1a1a;
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link.active{
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-item-dropdown .nav-link {
    padding-right: 12px;
}

.dropdown-arrow {
    width: 10px;
    height: 6px;
    transition: transform 0.3s ease;
    color: currentColor;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item-dropdown>ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    min-width: 240px;
    padding: 8px 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.nav-item-dropdown:hover>ul,
.nav-item-dropdown.active>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown>ul::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.05));
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #1a1a1a;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    text-align: center;
}

.dropdown-link:hover {
    color: var(--primary-color);
    background-color: rgba(244, 128, 36, 0.08);
    border-radius: 50px;
}

.dropdown-link.active{
    color: var(--primary-color);
    background-color: rgba(244, 128, 36, 0.08);
    border-radius: 50px;
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(244, 128, 36, 0.3);
    white-space: nowrap;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 128, 36, 0.4);
}

.btn-apply:active {
    transform: translateY(0);
}

.btn-lang {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-lang:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.05);
}

.btn-lang:active {
    transform: scale(0.95);
}

/* ============================================
   Footer Warning Section Styles
   ============================================ */
.footer-warning-section {
    position: relative;
    width: 100%;
    padding: 60px 0 0 0;
    overflow: hidden;
    background-color: rgba(244, 128, 36, 0.15);
}

.footer-warning-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-warning-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 40px 0;
    line-height: 1.3;
}

.footer-warning-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-info-item {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin: 0;
    opacity: 0.9;
}

/* ============================================
   Footer Styles
   ============================================ */
.main-footer {
    position: relative;
    width: 100%;
    padding: 60px 0 30px;
    overflow: hidden;
    background-color: rgba(244, 128, 36, 0.15);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Fraud Notice */
.footer-fraud-notice {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fraud-notice-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-align: center;
}

.fraud-notice-text {
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin: 0;
    opacity: 0.9;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
    min-width: 200px;
}

.footer-copyright p {
    font-size: 14px;
    color: #000;
    margin: 0;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-link-separator {
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

/* ============================================
   安全私隱 極速批核 信心保證
   ============================================ */
.txt-section {
    padding: 40px 0 0 0;
}

.txt-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.txt-title {
    font-size: 100px;
    text-align: center;
    background-image: url('/static/images/banner-bg-1.webp');
    background-size: cover;
    background-clip: text;
    color: transparent;
    animation: animate 20s linear infinite;
    letter-spacing: 1px;
}

@keyframes animate {
    0% {
        background-position-x: -500px;
    }
}

/* ============================================
   banner Styles
   ============================================ */
.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

/* banner section styles */
.inner-banner-section {
    position: relative;
    height: 400px;
}

.inner-banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.16);
    z-index: 1;
}

.inner-banner-section .banner-title {
    width: max-content;
    max-width: 90%;
    color: #fff;
    font-size: 56px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Navigation Arrows - 放在窗口框内 */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

/* Pagination Styles */
.swiper-pagination {
    bottom: 60px !important;
    left: 48px !important;
    width: auto !important;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(244, 128, 36, 0.4);
}

.customer-pagination {
    bottom: 0 !important;
}

.customer-section .swiper-pagination {
    width: 100% !important;
    justify-content: center;
    left: 0 !important;
    bottom: 0 !important;
}

.customer-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.customer-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* Apply Now Section Styles */
.apply-now-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* 几何图形背景 - 体现周转概念 */
.apply-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* 圆形 - 左上角 */
        radial-gradient(circle 80px at 10% 15%, rgba(244, 128, 36, 0.08) 0%, transparent 70%),
        /* 圆形 - 右下角 */
        radial-gradient(circle 100px at 85% 85%, rgba(244, 128, 36, 0.06) 0%, transparent 70%),
        /* 圆形 - 中心偏左 */
        radial-gradient(circle 60px at 20% 50%, rgba(244, 128, 36, 0.05) 0%, transparent 70%);
    background-size: 120px 120px, 100px 100px, 160px 160px, 200px 200px, 120px 120px;
    background-position: 90% 10%, 10% 80%, 10% 15%, 85% 85%, 20% 50%;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* .apply-now-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 30 L45 30 M35 20 L45 30 L35 40' stroke='%23f48024' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 30 L15 30 M25 20 L15 30 L25 40' stroke='%23f48024' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-position: 75% 30%, 25% 70%, 50% 80%;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
} */

.apply-now-container {
    width: 100%;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

/* 额外的几何装饰元素 - 圆形和箭头 */
.apply-now-container::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(244, 128, 36, 0.06);
    border-radius: 6px;
    border: 2px solid rgba(244, 128, 36, 0.1);
    z-index: 0;
    pointer-events: none;
    /* 添加旋转动画体现周转 */
    animation: rotateCircle 20s linear infinite;
}

.apply-now-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 20%;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' stroke='%23f48024' stroke-width='2' fill='none' opacity='0.15'/%3E%3Cpath d='M40 5 L45 15 L40 10 L35 15 Z' fill='%23f48024' opacity='0.2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    /* 添加旋转动画体现周转 */
    animation: rotateCircle 15s linear infinite reverse;
}

/* 旋转动画 - 体现周转 */
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.apply-now-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.apply-now-text {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.apply-now-headline {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.apply-now-description {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.apply-now-description-emphasis {
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 8px;
    margin-bottom: 0;
}

.apply-now-action {
    flex-shrink: 0;
}

.apply-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 48px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(244, 128, 36, 0.3);
}

.apply-now-btn:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 128, 36, 0.4);
}

.apply-now-btn:active {
    transform: translateY(0);
}

/* Product Features Section Styles */
.product-features-section {
    width: 100%;
    background-color: rgba(244, 128, 36, 0.04);
    padding: 60px 0;
    position: relative;
}

.product-features-container {
    width: 100%;
    position: relative;
}

.product-features-container .section-title {
    font-size: 28px;
}

.section-content {
    width: 100%;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(244, 128, 36, 0.1);
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    min-height: 280px;
}

/* .product-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
} */

.product-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 128, 36, 0.3);
}

.product-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-feature-card:hover .product-feature-icon {
    animation: flipY 0.3s ease-in-out forwards;
}

@keyframes flipY {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(180deg);
    }
}

.product-feature-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.product-feature-card:nth-child(2) .product-feature-icon svg {
    height: 80%;
}
.product-feature-card:nth-child(4) .product-feature-icon svg {
    height: 85%;
}

.product-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.product-feature-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

/* ============================================
  benefit Secton Styles
   ============================================ */
.benefit-secton {
    position: relative;
    overflow: hidden;
    background-image: url("/static/images/banner-bg-2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.benefit-secton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

.benefit-secton .benefit-container {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.benefit-secton .red-envelope {
    width: 260px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* 金币旋转动画 */
@keyframes rotateCoin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   FAQ Section Styles
   ============================================ */
.faq-section {
    background-color: rgba(244, 128, 36, 0.04);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section .section-title {
    font-size: 28px;
}

/* 动态几何图形 - SVG图案 */
.faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* 问号图标 - 左上 */
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23f48024' stroke-width='2' opacity='0.08'/%3E%3Cpath d='M40 25C35 25 31 29 31 34C31 36 33 38 35 38C37 38 39 36 39 34C39 32 40 31 41 31C42 31 43 32 43 34C43 37 41 40 38 41L38 43C38 44 39 45 40 45C41 45 42 44 42 43L42 40C45 39 47 36 47 34C47 29 43 25 40 25Z' fill='%23f48024' opacity='0.1'/%3E%3Ccircle cx='40' cy='55' r='3' fill='%23f48024' opacity='0.1'/%3E%3C/svg%3E"),
        /* 问号图标 - 右下 */
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='38' fill='none' stroke='%23f48024' stroke-width='2.5' opacity='0.06'/%3E%3Cpath d='M50 30C42 30 36 36 36 44C36 46 38 48 40 48C42 48 44 46 44 44C44 40 46 38 48 38C50 38 52 40 52 44C52 48 50 52 46 54L46 58C46 60 48 62 50 62C52 62 54 60 54 58L54 54C58 52 60 48 60 44C60 36 54 30 50 30Z' fill='%23f48024' opacity='0.08'/%3E%3Ccircle cx='50' cy='70' r='4' fill='%23f48024' opacity='0.2'/%3E%3C/svg%3E"),
        /* 对话气泡 - 右上 */
        url("data:image/svg+xml,%3Csvg width='120' height='100' viewBox='0 0 120 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20C20 15 24 11 29 11H91C96 11 100 15 100 20V60C100 65 96 69 91 69H50L25 85L25 69H29C24 69 20 65 20 60V20Z' fill='none' stroke='%23f48024' stroke-width='2' opacity='0.08'/%3E%3Cpath d='M25 69L20 75L25 80' stroke='%23f48024' stroke-width='2' opacity='0.08' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 80px 80px, 100px 100px, 120px 100px, 100px 80px;
    background-position: 15% 46%, 90% 75%, 82% 8%, 8% 70%;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

/* 旋转动画 */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    border: 2px solid rgba(244, 128, 36, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(244, 128, 36, 0.2);
    box-shadow: 0 2px 8px rgba(244, 128, 36, 0.1);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-question:hover {
    background-color: rgba(244, 128, 36, 0.05);
}

.faq-question-text {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: var(--font-color);
    line-height: 1.4;
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 28px;
}

.faq-answer-content {
    padding-bottom: 24px;
}

.faq-answer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0 0 16px 0;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 0 0 16px 0;
    padding-left: 24px;
    list-style: none;
}

.faq-answer-content ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
    padding-left: 24px;
}

.faq-answer-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.faq-answer-content ul li:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Active State */
.faq-item.active .faq-question {
    background-color: rgba(244, 128, 36, 0.08);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 24px;
}

/* ============================================
   Case Section Styles
   ============================================ */
.case-section {
    padding: 100px 0 330px 0;
}

.case-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.case-swiper-wrapper {
    position: relative;
}

.case-swiper {
    width: 100%;
    position: relative;
}

.case-swiper {
    width: 900px;
    height: fit-content;
    background-image: url('/static/images/window-2-2.webp');
    background-size: 100% auto;
    background-position: center;
    background-repeat: repeat-y;
}

.case-swiper-wrapper:before {
    content: '';
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 26px;
    background-image: url('/static/images/window-2-1.webp');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.case-swiper-wrapper:after {
    content: '';
    position: absolute;
    bottom: -263px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 263px;
    background-image: url('/static/images/window-2-3.webp');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.case-slide {
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.case-slide-content {
    width: 90%;
    max-width: 900px;
    max-height: 500px;
    overflow-y: auto;
    text-align: center;
    padding: 20px 128px;
    position: relative;
    height: 200px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.case-slide-content::-webkit-scrollbar {
    display: none;
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.case-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.case-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-info {
    flex: 1;
}

.case-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.case-occupation {
    font-size: 16px;
    color: #666;
}

.case-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.case-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url('/static/images/correct.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.case-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: left;
    margin-bottom: 32px;
}

.case-apply-btn {
    width: 30%;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-apply-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 128, 36, 0.3);
}

/* Case Swiper Navigation */
.case-section .swiper-button-next,
.case-section .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}


/* Case Swiper Pagination */
.case-pagination {
    bottom: 6px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.case-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(244, 128, 36, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.case-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* customer-section */
.customer-section {
    padding: 120px 0 100px 0;
    /* background-color: rgba(255, 108, 0, 0.1); */
}

.customer-container {
    max-width: 100%;
}

.customer-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-swiper-wrapper {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.customer-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-window {
    position: relative;
    width: 1200px;
    border-radius: 0;
    overflow: visible;
    margin: 0 auto;
    z-index: 1;
}

.window-frame {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.customer-swiper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 65%;
    padding: 0 50px;
    z-index: 2;
}

.window-content {
    position: relative;
    width: 90%;
    height: 100%;
    max-width: 1200px;
    padding: 0px 50px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.swiper-button-next {
    right: 42px;
}

.swiper-button-prev {
    left: 42px;
}

/* Loan Amount Badge - 左上角，一半显示在框外 */
.loan-amount-badge {
    position: absolute;
    top: -80px;
    right: -36px;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    min-width: 280px;
    z-index: 100;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.customer-swiper-wrapper {
    position: relative;
}

.customer-swiper .swiper-slide-active .customer-window {
    position: relative;
}

.loan-amount-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #ffffff;
}

.loan-amount-label {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4px;
    opacity: 0.9;
}

.loan-amount-value {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    letter-spacing: -0.5px;
}

.loan-amount-period {
    font-size: 15px;
    text-align: center;
    opacity: 0.9;
    margin-top: 4px;
}

/* Customer Info */
.window-content .customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 0;
}

.customer-avatar {
    flex-shrink: 0;
}

.avatar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-name {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.customer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.customer-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.5;
}

.customer-benefits li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Customer Description */
.customer-section .section-title {
    padding-bottom: 80px;
}

.window-content .customer-description {
    margin-bottom: 24px;
    /* flex: 1; */
}

.window-content .customer-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.window-content .customer-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 128, 36, 0.3);
    width: 30%;
    text-align: center;
    margin-top: 20px;
}

/* ============================================
   Terms and Conditions Section Styles
   ============================================ */
.tncs-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 150px;
    /* 为固定头部留出空间 */
}

.tncs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 48px;
}

.tncs-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tncs-block {
    background-color: #fafafa;
    border-radius: 12px;
    padding: 32px 40px;
    border: 1px solid rgba(244, 128, 36, 0.1);
}

.tncs-block-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 24px 0;
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(244, 128, 36, 0.2);
}

.tncs-block-content {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
}

.tncs-block-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0 0 16px 0;
}

.tncs-block-content p:last-child {
    margin-bottom: 0;
}

.tncs-block-content strong {
    color: var(--font-color);
    font-weight: 600;
}

/* 有序列表 */
.tncs-list {
    margin: 0 0 16px 0;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
}

.tncs-list li {
    margin-bottom: 12px;
    position: relative;
}

.tncs-list li:last-child {
    margin-bottom: 0;
}

/* 有序列表样式 */
ol.tncs-list {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

ol.tncs-list>li {
    counter-increment: item;
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
}

ol.tncs-list>li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* 无序列表样式 */
ul.tncs-list {
    list-style: none;
    padding-left: 24px;
}

ul.tncs-list li {
    position: relative;
    padding-left: 20px;
}

ul.tncs-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.base-right-btn {
    background-color: var(--primary-color);
    width: 66px;
    height: 66px;
    line-height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 20px;
    color: white;
    position: fixed;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

#all-whatsapp svg{
    width: 30px;
    height: 30px;
}

#all-whatsapp {
    bottom: 126px;
    background-color: #51c868;
}

#all-top {
    bottom: 60px;
    display: none;
    height: 48px;
    width: 48px;
}

#all-top.cur {
    display: flex !important;
}


@media (max-width: 992px) {
    .base-right-btn {
        width: 60px;
        height: 60px;
    }
    #all-top{
        width: 40px;
        height: 40px;
        bottom: 30px;
    }

    #all-top svg{
        width: 16px;
        height: 16px;
    }

    #all-whatsapp svg{
        width: 28px;
        height: 28px;
    }

    #all-whatsapp {
        bottom: 90px;
    }
}