* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 页面容器 */
.page-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* 让页面可以滚动 */
body {
    overflow-y: auto;
}

.page {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.page.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* 首页特殊处理，包含底部 */
#home.active {
    position: static;
}

#about, #contact {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
}

/* 联系我们页面特殊处理，避免动画冲突 */
#contact .miya-contact-content {
    transform: none !important;
}

/* 首页样式 */
#home {
    background-image: url('../images/home_bg.png');
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

#home .home-content {
    position: relative;
    z-index: 2;
}

/* 关于我们页面样式 */
#about {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#about .miya-about-video {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about .miya-about-list {
    overflow: hidden;
    width: 800px;
    max-width: 90%;
    height: 75%;
    margin: 0 auto;
    padding-top: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#about .miya-about-list-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

#about.active .miya-about-list-item {
    opacity: 1;
    transform: translateY(0);
}

#about .miya-about-list-item-title {
    display: inline-block;
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

#about .miya-about-list-item-title::before {
    z-index: -1;
    content: "";
    position: absolute;
    bottom: -5px;
    left: -10px;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    border-radius: 10px;
}

/* 关于Miya内容 */
#about .item-1 .miya-about-list-item-logo {
    width: 120px;
    height: 80px;
    margin: 0 0 40px;
    background: url('../images/logo-text-2.png') no-repeat center / contain;
}

#about .item-1 .miya-about-list-item-subTitle {
    margin-bottom: 20px;
    color: #666841;
    font-size: 1.2rem;
    line-height: 1.6;
}

#about .item-1 .miya-about-list-item-txt {
    color: #666841;
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.8;
}

#about .item-1 .miya-about-list-item-txt span {
    display: block;
    margin-bottom: 10px;
}

/* 企业文化内容 */
#about .item-2 .miya-about-list-item-title {
    margin: 40px 0 40px;
}

#about .item-2 .miya-about-list-item-subTitle {
    margin-bottom: 15px;
    color: #666841;
    font-size: 1.1rem;
    font-weight: bold;
}

#about .item-2 .miya-about-list-item-txt {
    margin-bottom: 25px;
    color: #666841;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* 企业理念内容 */
#about .item-3 .miya-about-list-item-title {
    margin: 40px 0 40px;
}

#about .item-3 img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 自定义动画效果 */
.animate__bounceMy {
    animation: bounceMy 2s infinite;
}

@keyframes bounceMy {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 联系我们页面样式 */
#contact {
    background-image: url('../images/page_contact_bg.png');
    height: 100vh;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#contact .contact-content {
    position: relative;
    z-index: 2;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

/* 滚动时的导航栏效果 */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    width: 100%;
    margin: 0 auto;
    padding: 25px 19%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

/* PC端菜单居中 */
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
    margin-top: 2px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    color: #ff6b35;
}

.logo img {
    width: auto;
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
}


.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    line-height: 1;
}

/* 储值按钮 */
.recharge-button {
    padding: 10px 28px;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 22px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.25);
    white-space: nowrap;
    position: relative;
    flex: 0 0 auto;
}

.recharge-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(247, 147, 30, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.recharge-button:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(247, 147, 30, 0.25) 100%);
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.recharge-button:hover::before {
    opacity: 1;
}

/* 导航栏滚动时的按钮样式 */
.navbar.scrolled .recharge-button {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(247, 147, 30, 0.12) 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

.navbar.scrolled .recharge-button:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.22) 0%, rgba(247, 147, 30, 0.22) 100%);
    border-color: rgba(255, 107, 53, 0.45);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

/* 悬停和激活状态 */
.nav-menu a:hover,
.nav-menu a.active {
    color: #333;
    font-weight: bold;
}

/* 导航底部选中滑块 - 复刻原始设计 */
.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 55%;
    height: 4px;
    background: linear-gradient(154deg, #fef033 0%, #fef033 43%, #affb61 100%);
    border-radius: 2px;
}

/* 移动端汉堡菜单 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translateY(12px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translateY(-12px);
}


/* 首页内容 */
.home-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 50px;
}

.home-title {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.home-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.download-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.download-button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.download-button i {
    margin-right: 10px;
    font-size: 20px;
}


/* 联系我们页面内容 - 基于原始网站样式 */

/* 底部 - 完全复刻page-3-footer设计 */
.footer {
    position: relative;
    width: 100%;
    background: #222222;
    padding: 60px 19% 40px;
    display: none;
    color: white;
}

.footer-content {
    position: relative;
    width: 100%;
}

/* Logo */
.page-3-footer-logo {
    width: 80px;
    height: 60px;
    margin: 0 0 20px;
    background: url('../images/logo-text-1.png') no-repeat center / contain;
}

/* 下载按钮区域 */
.download-app {
    display: flex;
    align-items: center;
    height: 48px;
    margin-bottom: 40px;
}

.download-app .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 178px;
    height: 48px;
    margin-right: 28px;
    background: #333333;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-app .item:hover {
    background: #444444;
}

.download-app .item .item-img {
    width: 21px;
    height: 21px;
    margin-right: 10px;
    opacity: 0.8;
}

.download-app .item span {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
    max-width: 125px;
    min-width: 100px;
    text-align: center;
}

/* PC端下载按钮特殊样式 */
.download-app .pc {
    text-decoration: none;
}

.download-app .pc:hover {
    width: 204px;
    height: 55px;
}

/* 二维码悬停效果 */
.download-app .item .item-hover {
    display: none;
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 188px;
    height: 188px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.download-app .item:hover .item-hover {
    display: block;
}

/* 首页下载按钮悬停效果 - 优化版本 */
.download-button {
    position: relative;
    overflow: visible;
}

.download-button .item-hover {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 180px;
    background: #fff463;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.download-button:hover .item-hover {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.download-button .item-hover .title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 15px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px 50px 0 0;
}

.download-button .item-hover .title img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.download-button .item-hover .title .txt {
    font-size: 14px;
    color: #131313;
    font-weight: 500;
    text-align: center;
}

.download-button .item-hover .QR {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 50px 50px;
}

.download-button .item-hover .QR img,
.download-button .item-hover .QR canvas {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 二维码canvas样式 */
.qr-canvas {
    background: white;
    border-radius: 4px;
}

/* 去掉小三角箭头 */

.download-app .item .item-hover .title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.download-app .item .item-hover .title img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.download-app .item .item-hover .title .txt {
    font-size: 14px;
    color: #333;
}

.download-app .item .item-hover .QR {
    width: 170px;
    height: 120px;
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-app .item .item-hover .QR img,
.download-app .item .item-hover .QR canvas {
    width: 100px;
    height: 100px;
}

/* 服务信息 */
.page-3-footer-service {
    margin: 54px 0 12px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.page-3-footer-service a {
    color: #ffffff;
    text-decoration: none;
}

.page-3-footer-service a:hover {
    text-decoration: underline;
}

.page-3-footer-service .line {
    color: #666666;
    margin: 0 16px;
}

/* 版权信息 */
.page-3-footer-copyright {
    color: #666666;
    font-size: 12px;
    margin-bottom: 10px;
}

.page-3-footer-address {
    color: #666666;
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.5;
}

/* 社交媒体频道 */
.page-3-footer-channel {
    position: absolute;
    top: 80px;
    right: 0;
    display: flex;
}

.page-3-footer-channel-item {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0 8px;
    cursor: pointer;
}

.page-3-footer-channel-item img {
    width: 100%;
    height: 100%;
}

.page-3-footer-channel-item:hover > .active {
    display: block;
}

.page-3-footer-channel-item .active {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

/* 二维码弹窗样式 */
.qr-popup {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.qr-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* 去掉二维码弹窗小三角箭头 */

.qr-popup .qr-title {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 500;
}

.qr-popup .qr-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 联系我们页面主容器 */
.miya-contact-content {
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* 联系我们页面标题 */
#contact .miya-contact-tips {
    font-size: 28px;
    text-align: center;
    color: #333;
    line-height: 1.4;
    margin-bottom: 40px;
}

#contact .miya-contact-tips span {
    color: #f1a039;
}

/* MIYA Logo */
#contact .miya-contact-logo {
    width: 80px;
    height: 80px;
    margin: 40px auto 20px;
    background: url("../images/logo.png") no-repeat center / contain;
}

/* 社交媒体频道容器 */
#contact .miya-contact-channel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
    height: 360px;
    padding-top: 60px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: url("../images/contact_channel_bg.png") no-repeat center / contain;
    
}

/* 社交媒体按钮列表 */
#contact .miya-contact-channel .miya-contact-channel-list {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 20px;
    margin-bottom: 30px;
}

/* 单个社交媒体按钮 */
#contact .miya-contact-channel .miya-contact-channel-item {
    display: flex;
    position: relative;
    align-items: center;
    height: 40px;
    padding: 8px 16px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

#contact .miya-contact-channel .miya-contact-channel-item img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

#contact .miya-contact-channel .miya-contact-channel-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

#contact .miya-contact-channel .miya-contact-channel-item.active,
#contact .miya-contact-channel .miya-contact-channel-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

#contact .miya-contact-channel .miya-contact-channel-item.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #f1a039;
    border-radius: 2px;
}

/* 为抖音和微博按钮添加链接样式 */
#contact .miya-contact-channel .miya-contact-channel-item[data-social="douyin"],
#contact .miya-contact-channel .miya-contact-channel-item[data-social="weibo"] {
    cursor: pointer;
    position: relative;
}

#contact .miya-contact-channel .miya-contact-channel-item[data-social="douyin"]:hover,
#contact .miya-contact-channel .miya-contact-channel-item[data-social="weibo"]:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* 二维码 */
#contact .miya-contact-QR {
    width: 150px;
    height: 150px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 客服邮箱 */
#contact .miya-contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    max-width: 500px;
    color: #666841;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 248, 252, 0.3);
    margin: 20px auto 0;
    font-size: 14px;
}

/* 公司地址 */
#contact .miya-contact-address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    min-height: 60px;
    font-size: 12px;
    margin-top: 10px;
    padding: 0 20px;
    color: #666841;
    line-height: 1.5;
}

/* 联系我们页面动画效果 */
#contact .miya-contact-content > * {
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

#contact.active .miya-contact-tips {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

#contact.active .miya-contact-logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

#contact.active .miya-contact-channel {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar-container {
        padding: 15px 20px;
        flex-wrap: nowrap;
    }

    .navbar-left {
        gap: 15px;
        flex: 1;
    }

    /* 移动端显示汉堡菜单 */
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 15px;
    }

    .recharge-button {
        padding: 8px 20px;
        font-size: 14px;
    }

    .logo {
        flex-shrink: 0;
    }

    /* 移动端隐藏导航菜单 */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        position: relative;
        margin-bottom: 5px;
    }

    .nav-menu a:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    /* 移动端导航底部横条调整 */
    .nav-menu a.active::after {
        bottom: 5px;
        width: 30px;
    }

    /* 移动端Logo调整 */
    .logo {
        font-size: 20px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .home-title {
        font-size: 2.5rem;
    }

    .home-subtitle {
        font-size: 1.2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* 移动端下载按钮弹窗优化 */
    .download-button .item-hover {
        width: 100%;
        min-height: 160px;
        top: 0;
        left: 0;
        border-radius: 50px;
    }

    .download-button .item-hover .title {
        padding: 15px 15px 10px;
        font-size: 12px;
    }

    .download-button .item-hover .title img {
        width: 18px;
        height: 18px;
    }

    .download-button .item-hover .title .txt {
        font-size: 12px;
    }

    .download-button .item-hover .QR {
        padding: 15px;
    }

    .download-button .item-hover .QR img,
    .download-button .item-hover .QR canvas {
        width: 100px;
        height: 100px;
    }

    #about .miya-about-list {
        width: 95%;
        padding-top: 40px;
    }

    #about .miya-about-list-item-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    #about .item-1 .miya-about-list-item-logo {
        width: 80px;
        height: 60px;
        margin-bottom: 20px;
    }

    #about .item-1 .miya-about-list-item-subTitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    #about .item-1 .miya-about-list-item-txt {
        font-size: 0.9rem;
    }

    #about .item-2 .miya-about-list-item-subTitle {
        font-size: 1rem;
    }

    #about .item-2 .miya-about-list-item-txt {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .contact-content {
        padding: 80px 20px 20px;
    }

    /* 移动端底部优化 */
    .footer {
        padding: 30px 20px 15px;
    }

    /* 移动端隐藏下载链接，但保留社交按钮 */
    .download-app {
        display: none;
    }

    /* 移动端底部社交媒体显示 */
    .page-3-footer-channel {
        display: flex !important;
    }

    /* 移动端底部Logo调整 */
    .page-3-footer-logo {
        width: 60px;
        height: 45px;
        margin: 0 auto 15px;
        display: block;
    }

    /* 移动端服务信息优化 - 保持一行显示 */
    .page-3-footer-service {
        margin: 30px 0 15px;
        font-size: 11px;
        line-height: 1.6;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .page-3-footer-service .line {
        display: inline;
        margin: 0 8px;
    }

    /* 移动端版权信息 */
    .page-3-footer-copyright {
        font-size: 11px;
        text-align: center;
        margin-bottom: 8px;
    }

    .page-3-footer-address {
        font-size: 11px;
        text-align: center;
        line-height: 1.4;
    }

    /* 移动端社交媒体频道 - 移动到Logo下方 */
    .page-3-footer-channel {
        position: static;
        justify-content: center;
        margin: 20px auto 30px;
        gap: 15px;
        display: flex;
        order: 1; /* 确保在Logo之后显示 */
    }

    /* 移动端底部布局重新排序 */
    .footer-content {
        display: flex;
        flex-direction: column;
    }

    .page-3-footer-logo {
        order: 0; /* Logo在最上方 */
    }

    .page-3-footer-service {
        order: 2; /* 服务信息在社交媒体之后 */
    }

    .page-3-footer-copyright {
        order: 3; /* 版权信息 */
    }

    .page-3-footer-address {
        order: 4; /* 地址信息在最下方 */
    }

    .page-3-footer-channel-item {
        width: 40px;
        height: 40px;
        margin: 0;
    }

    /* 移动端二维码弹窗优化 */
    .qr-popup {
        width: 140px;
        height: 140px;
        bottom: 50px;
    }

    .qr-popup .qr-image {
        width: 100px;
        height: 100px;
    }

    .qr-popup .qr-title {
        font-size: 11px;
        margin-bottom: 6px;
    }

    /* 联系我们页面响应式 */
    .miya-contact-content {
        top: 140px;
        padding: 0 15px;
    }

    #contact .miya-contact-tips {
        font-size: 20px;
        margin-bottom: 30px;
    }

    #contact .miya-contact-logo {
        width: 60px;
        height: 60px;
        margin: 30px auto 15px;
    }

    #contact .miya-contact-channel {
        width: 100%;
        max-width: 400px;
        height: auto;
        padding: 40px 20px 30px;
    }

    #contact .miya-contact-channel .miya-contact-channel-list {
        flex-wrap: wrap;
        gap: 10px;
    }

    #contact .miya-contact-channel .miya-contact-channel-item {
        height: 36px;
        padding: 6px 12px;
        font-size: 12px;
        
    }

    #contact .miya-contact-channel .miya-contact-channel-item img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    #contact .miya-contact-QR {
        width: 120px;
        height: 120px;
        margin: 15px 0;
    }

    #contact .miya-contact-email,
    #contact .miya-contact-address {
        font-size: 12px;
        padding: 0 10px;
    }

    /* 移动端首页内容优化 */
    .home-content {
        padding: 0 20px;
    }

    /* 移动端关于我们页面优化 */
    #about .miya-about-list {
        padding-top: 80px;
    }

    /* 移动端页面容器优化 */
    #home {
        padding-top: 70px; /* 为固定导航栏留出空间 */
    }

    #about, #contact {
        top: 70px;
        height: calc(100vh - 70px);
    }
}