/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff9500;
    --secondary-color: #1a1d2e;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --purple: #9C27B0;
    --teal: #00BCD4;
    --red: #F44336;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}
body img:not(.no-zoom) {
            max-width: 100%;
            transition: transform 0.5s ease;
        }
        body img:not(.no-zoom):hover {
            transform: scale(1.02);
        }
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
     
	background: transparent; /* 初始透明背景 */
    box-shadow: none; /* 移除初始阴影 */
    position: absolute; /* 改为绝对定位，使其浮在banner上方 */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: background 0.3s, box-shadow 0.3s; /* 添加过渡效果 */
}



/* 如果导航文字在透明背景下不清晰，添加此样式 */
.navbar:not(.scrolled) .nav-menu a {
    color: var(--white); /* 透明背景时文字为白色 */
}

.navbar:not(.scrolled) .logo {
    color: var(--white); /* 透明背景时logo文字为白色 */
}

.navbar:not(.scrolled) .mobile-menu-btn span {
    background: var(--white); /* 透明背景时汉堡菜单为白色 */

}
/* 滚动后的样式 */
.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky; /* 滚动后变回为粘性定位 */
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
	width:88%;
	 margin:0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
	background: url('../images/logo.svg') no-repeat center;
	background-size: contain;
	display: block;
	 height:30px;
	 width:124px;
}

.navbar.scrolled .logo{
	background: url('../images/logo-black.svg') no-repeat center;
	background-size: contain;
	 display: block;
	 height:30px;
	 width:124px;
    align-items: center
	}
.nav-right {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    transition: color 0.3s;
    padding: 8px 0;
    position: relative;
    font-weight: 400;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
}

.btn-primary:hover {
    background: #e55d00;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}
/* 语言切换样式 */
.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.language-switch a {
    color: #333;
    text-decoration: none;
}

.language-switch a.active {
    color: #ff7a00; /* 使用现有橙色作为激活状态 */
    font-weight: bold;
}

.language-switch span {
    color: #ccc;
}

/* 移动端语言切换样式 */
.language-switch.mobile {
    margin: 10px 0;
    padding-top: 10px;
    border-bottom: 1px solid #eee;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    width: 250px;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    height: calc(100vh - 60px);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    display: block;
    padding: 10px;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
}

/* Hero区域 */
.hero {
    background:url('../images/banner.png') center/cover no-repeat;
    color: var(--white);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.jpg') center/cover;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
	max-width:88%;
}

.hero-label {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.hero-content{animation: fadeInLeft 1s ease-out;}

.hero h1 {
    font-size: 56px;

    line-height: 1.2;
}


.hero-subtitle {
    font-size: 28px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.rate-card {
    color: var(--text-color);
	 animation: fadeInRight 1s ease-out; 
	 background: linear-gradient(135deg, #e6e6e6 0%, #f5f5f5 100%);
            border-radius: 20px;
            padding: 30px;
            
            max-width: 600px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.rate-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 20px;
}



.rate-card .header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #fff;
        }

 .rate-card .header h2 {
            font-size: 20px;
            color: #333;
            font-weight: bold;
            letter-spacing: 0px;
        }

        .rate-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }

        .rate-row:last-of-type {
            border-bottom: none;
        }

        .currency-pair {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .flag-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .currency-text {
            font-size: 18px;
            color: #333;
            margin: 0 20px;
            min-width:200px;
        
        }

        .rate-value {
            font-size: 20px;
            color: #333;
            font-weight: 500;
            text-align: right;
            min-width: 200px;
        }

        .footer-note {
            margin-top: 30px;
            font-size: 16px;
            color: #666;
            text-align: left;
        }

       

/* 关于区域 */
.about-section {
    padding: 80px 0;
	padding-bottom:0px;
    background: var(--white);
	border-bottom:1px solid #eee;
	overflow:hidden;
	
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image{
	line-height:0;
	animation: fadeInLeft 1s ease-out;

}
.about-image img {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-content{
     animation: fadeInRight 1s ease-out;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.highlight {
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
	margin-bottom: 15px;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* 优势区域 */
.advantages{
	border-bottom:1px solid #eee;
	margin-top: 2rem;
	animation: fadeInUp 1s ease-out;
	}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
	font-style: italic;
}
.bold-orange{font-weight:bolder;}
.features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            
		
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 30px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.2s; }
        .feature-item:nth-child(2) { animation-delay: 0.4s; }
        .feature-item:nth-child(3) { animation-delay: 0.6s; }
        .feature-item:nth-child(4) { animation-delay: 0.8s; }

        .feature-content {
            flex: 1;
            text-align: right;
        }

        .feature-content.left {
            order: 2;
            text-align: left;
        }

        .feature-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .feature-desc {
            font-size: 14px;
            color: #666;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            animation: pulse 2s ease infinite;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
       .cards-section {
            line-height:0;
            margin-top: -40px;
			text-align:center;
            animation: fadeIn 1.5s ease 1s both;
        }
		.cards-section img{ 
		   max-width:50%;
		   z-index: -10;
            position: relative;
			}

/* 流程区域 */
.content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: white;
          
            
  
        }

        .left-section {
            padding: 40px;
			animation: fadeInLeft 1s ease-out;
        }

        .title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 60px;
            color: #333;
        }

        .title .highlight {
            color: var(--primary-color);
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .step-item {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            position: relative;
        }

        .step-label {
            font-size: 24px;
            font-weight: 800;
            color: #333;
            min-width: 100px;
            padding-top: 10px;
        }

        .step-icon-wrapper {
            position: relative;
            flex-shrink: 0;
        }

        .step-item:not(:last-child) .step-icon-wrapper::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 60px;
            width: 2px;
            height: 50px;
            background: #e0e0e0;
        }

        .step-icon {
            width: 60px;
            height: 60px;
        }

        .step-content h3 {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .step-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
        }

        .right-section {
            position: relative;
            height: 100%;
            min-height: 500px;
			animation: fadeInRight 1s ease-out;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;

            overflow: hidden;
           
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
/* 联系区域 */
.contact-section {
    padding: 60px;
    background: var(--light-gray);
	animation: fadeInUp 1s ease-out;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact-image{ line-height:0;}
.contact-image img {
    width: 100%;


}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
    color: #666;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.email-section {
    margin-top: 30px;
}
.er-code{display: flex; align-items: center; gap: 20px; padding: 20px; border: 1px solid #eee; border-radius: 8px;}
.email-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.email-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-contact h4,
.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* 页面头部 */
.page-hero {
    background: linear-gradient(135deg, #1a1d2e 0%, #2d3250 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}
      
.process-image img {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



/* 关于详情页 */
.about-detail {
    padding: 80px 0;
    background: var(--white);
}

.about-detail h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}
.about-detail .container, .process-detail .container, .cases-section .container{
               padding:0px 80px;
        }
.lead-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
    font-weight: 500;
}

.about-detail p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.features-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-box {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B00, #FF8C42);
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* 流程详情页 */
.process-detail {
    padding: 80px 0;
    background: var(--white);
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.process-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    margin-bottom: 25px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.process-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA区域 */
.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.cta-box {
    background: linear-gradient(135deg, #f78802, #FF8C42);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* 案例页面 */
.cases-section {
    padding: 80px 0;
    background: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-image {
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.case-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #FFF5F0;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}
/* 动画样式 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
  /* 响应式设计 */
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                padding: 40px;
            }

            .left-section {
                padding: 0;
            }

            .title {
                font-size: 40px;
                margin-bottom: 40px;
            }

            .right-section {
                min-height: 400px;
            }
        .process-cards{
              grid-template-columns: repeat(1, 1fr);
           }
        }
@media (max-width: 968px) {
    .desktop-menu {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .mobile-menu {
        display: block;
    }

    .hero .container,
    .about-grid,
    .process-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-columns {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-three {
        grid-template-columns: 1fr;
    }

    .process-cards {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 969px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .desktop-menu {
        display: flex !important;
    }
}
 @media (max-width: 768px) {
            .features {
                grid-template-columns: 1fr;
            }

            .feature-content.left {
                order: 0;
                text-align: right;
                margin-right: 10px;
            }
           .feature-icon {
             width: 65px;
}
            .header h1 {
                font-size: 36px;
            }

            .cards-section {
                height: auto;
            }

          
   
            .container {
                padding: 10px 15px;
            }
            .contact-section .container {
                padding: 0 15px;
            }
            .content-wrapper {
                padding: 30px 20px;
            }

            .title {
                font-size: 32px;
                margin-bottom: 30px;
            }

            .steps {
                gap: 35px;
            }

            .step-item {
                gap: 15px;
            }

            .step-label {
                font-size: 20px;
                min-width: 80px;
            }

            .step-icon {
                width: 50px;
                height: 50px;
            }

            .step-content h3 {
                font-size: 18px;
            }

            .step-content p {
                font-size: 14px;
            }

            .step-item:not(:last-child) .step-icon-wrapper::after {
                top: 55px;
                height: 45px;
            }

            .right-section {
                min-height: 300px;
            }
			 .rate-card {
                padding: 18px;
                border-radius: 20px;
            }

             .rate-card .header h2 {
                font-size: 24px;
                letter-spacing: 4px;
            }

             .rate-card .rate-row {
                flex-wrap: wrap;
                padding: 0;
				margin-top: 10px;
            }

            .currency-pair {
                flex-basis: 48%;
                margin-bottom: 10px;
            }

            .flag-icon {
                width: 40px;
                height: 40px;
                margin-right: 10px;
            }

            .currency-text {
                font-size: 18px;
                min-width: auto;
                margin: 0 10px;
				min-width:80px;
            }

            .rate-value {
                font-size: 20px;
                flex-basis: 10%;
                text-align: left;
                padding-left: 20px;
				min-width:80px;
            }

            .footer-note {
                font-size: 14px;
            }
			  .email-section {
            flex-direction: column; /* 改为垂直排列，二维码独占一行 */
           
        }
		.about-detail .container, .process-detail .container, .cases-section .container{
			    padding: 10px 15px;
			}
      
        }
@media (max-width: 576px) {
  
    .section-title,
    .page-hero h1 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .rate-card {
        padding: 20px;
    }
	.advantages {
    padding: 40px 0;
}
.process-section {
    padding: 40px 0;
	padding-top:0px;
}
.feature-item{
	border-radius:15px;
	        padding: 5px;
     background: var(--light-gray);
}
}
        

        @media (max-width: 480px) {
            .title {
                font-size: 20px;
            }

            .step-label {
                font-size: 14px;
                width: 46px;
                 min-width: 46px;
            }

            .step-icon {
                width: 45px;
                height: 45px;
            }
			 .rate-card {
                padding: 18px;
                border-radius: 20px;
            }

             .rate-card .header h2 {
                font-size: 18px;
                letter-spacing: 2px;
            }

             .rate-card .rate-row {
                flex-wrap: wrap;
                padding:0;
            }

            .currency-pair {
                flex-basis: 48%;
                margin-bottom: 10px;
            }

            .flag-icon {
                width: 30px;
                height: 30px;
                margin-right: 10px;
            }

            .currency-text {
                font-size: 16px;
                min-width: auto;
                margin: 0 10px;
				min-width:60px;
				width:90px;
            }

            .rate-value {
                font-size: 18px;
                flex-basis:28%;
                text-align: left;
                padding-left: 20px;
				min-width:60px;
            }

            .footer-note {
                font-size: 14px;
            }
			.contact-section{
				padding: 20px;
			}
	.footer .container, .about-detail .container, .about-section .container, .advantages .container, .process-detail .container{
               padding:0px 30px;
        }
        }

 /* 动画 */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
		 @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes pulse {
            0%, 100% { animation-timing-function: ease-in-out; }
            50% { transform: scale(1.05); }
        }

        @keyframes cardFloat {
            0%, 100% { transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(0); }
            50% { transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-10px); }
        }
