/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Microsoft Yahei", sans-serif;
    line-height: 1.6;
    color: #333;
}

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

ul {
    list-style: none;
}

/* 导航栏样式（语义化<nav>标签） */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.navbar .logo h1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.navbar .logo img {
    height: 40px;
}

.navbar .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4285f4;
}

.navbar .download-btn {
    background-color: #4285f4;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.navbar .download-btn:hover {
    background-color: #3367d6;
}

/* 头部英雄区 */
.hero-section {
    text-align: center;
    padding: 2rem 5%;
}

.hero-section h2 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
}
.hero-section h2 em {
    color: #4285f4;
    font-style:normal;
}
.head {background-image: url("../img/background.webp");background-size: 100% 100%;background-repeat: no-repeat;}
.hero-section{width:100%;column-gap: 140px;display:flex;row-gap: 2rem;align-items:center;justify-content: center;flex-direction: column;}
.hero-section .banner {width: 518px;}
.hero-section .info {display: flex;flex-direction: column;align-items: center;}
.hero-section .banner-name {font-weight:bold;font-size: 54px;color: #3C80F4;}
.hero-section .banner-name2 {font-weight: bold;font-size: 36px;color: #333;}
.hero-section .banner-desc {font-size: 2.75rem;font-weight: bold;color: #333;margin-bottom: 8px;}
.hero-section .banner-desc br{display:none;}
.hero-section .banner-desc2 {font-size: 1.125rem;line-height: 26px;color: #666;}
.hero-section .banner-btn{background:#fff;border-radius:55px;padding: 8px 68px;margin-top: 16px;font-size: 22px;color: #fff;background-color: #3C80F4;display:flex;align-items:center;}
.hero-section .banner-btn i{width:24px;height:24px;background:url("../img/win-ico.webp");background-size:24px;margin-right:16px;}
.hero-section .banner-device{font-size: 14px;color: #333;line-height:22px;margin-top: 10px;margin-bottom:0;display: flex;gap: 14px;}
.hero-section .banner-device em{font-style: normal;}
.hero-section .index-device-desc{font-size: 14px;color: #333;line-height:22px;margin-top: 8px;}
.index-btn_wrap{position: relative;cursor: pointer;}
.index-code-box{display:flex;align-items:flex-end!important;justify-content:center!important;width:179px!important;height:197px!important;background:url(../img/code-box.png);background-size:179px 197px;position:absolute;top: 70px;left:18%;z-index:5;display:none!important;}
.index-code-box .index-code{margin-bottom:24px;}
.index-code-box .index-code img{width:136px!important;height:136px!important}
/* 安全隐私 section */
section h3.section-name {
    font-size: 36px;
    margin-bottom: 64px;
    font-weight: bold;
    color: #3C80F4;
}
.platform-section {
    padding: 5rem 5%;
    background-color: #F8F9FA;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.platform-list {
    display: flex;
    column-gap: 24px;
}
.platform-item {
    width: 287px;
    display: flex;
    box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
    border-radius: 20px 20px 20px 20px;
    flex-direction: column;
}
.platform-img {display: flex;width: 100%;justify-content: center;column-gap: 12px;padding: 32px 0 0;}
.platform-img img {
    width: 36px;
    height: 36px;
}
.platform-info {padding: 24px; text-align: center;}
.platform-name {font-size: 22px;font-weight: bold;color: #333;}
.platform-desc {
    font-size: 18px;
    line-height: 24px;
    color: #333;
}
/* 核心优势 section */
.advs-section {
    padding: 5rem 5%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.advs-section h2::before {
    background-image: url("../img/icon-2.webp");
    transform: rotate(0deg);
}
.advs-section h2::after {
    background-image: url("../img/icon-2.webp");
    transform: rotate(180deg);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #4285f4;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}
.advs-grid {
    display: flex;
    gap: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.adv-card {
    width: 287px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.adv-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.adv-card .adv-img {
    width:40px;
    height:40px;
}
.adv-card .adv-top {
    text-align: center;
}
.adv-card .adv-name {
    font-size: 22px;
    font-weight: bold;
    margin: 8px 0 8px;
}

.adv-card .adv-desc {
    font-size: 16px;
    color: #333;
    line-height: 28px;
}
.function-section {
    background-color: #F8F9FA;
}
.function-section .adv-card {
    background-color: unset;
}
/* 功能特性 section */
.faqs-section {
    padding: 5rem 5% 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faqs-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.faqs-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
}

.faq-item {
    width: 100%;
    background-color: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E4E4E4;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    flex-direction: column;
}
.faq-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item h4 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5rem;
}

/* 底部区域（语义化<footer>标签） */
footer {
    background-color: #1A1A1A;
    color: #fff;
    text-align: center;
    padding: 1.5rem 5%;
    font-size: .875rem;
    line-height: 1.5rem;
}

.main_wrap {
    width: 1200px;
    margin: auto;
}
.part-privacy {
    padding: 16px;
    font-size: 16px;
    line-height: 32px;
}
.part-privacy p{
    font-size: 16px;
    line-height: 32px;
}
.page-404 {
    height: 100%;
    text-align: center;
}

.page-404 img {
    width: 40%;
    margin-top: 4rem;
    padding: 0 2rem;
    box-sizing: border-box;
}

.page-404 h1,.page-404 span {
    display: block;
    font-size: 18px;
    color: #333333;
    text-align: center;
    margin-top: 2rem;
}

.page-404 .desc {
    text-align: center;
    font-size: .75rem;
    margin-top: .5rem;
}

.page-404 .desc a {
    color: #3C80F4;
}

.page-404 .btn-lists {
    margin: 1.5rem 0 1rem;
    display: flex;
    justify-content: center;
}

.page-404 .btn-lists a {
    width: 78px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    background: #3C80F4;
    font-size: 12px;
    color: #FFFFFF;
    margin-right: 1.5rem;
}

#to_top {position: fixed;bottom: 150px;right: 270px;cursor: pointer;z-index: 1000;display: none;}
#to_top img {width: 65px;height: 65px;}

/* 响应式媒体查询 - 移动端适配 */
@media (max-width: 768px) {
    .head {
    }
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        align-items: flex-start;
    }

    .navbar .logo img {
        height: 2rem;
        width: auto;
    }
    .phone-mockup-container {
        width: 250px;
        height: 500px;
    }

    .floating-tag {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 1.125rem 0 2rem 0;
    }
    .hero-section .banner-device {
        font-size: .875rem;
        line-height: 1.25rem;
        margin-top: .625rem;
        gap: .5rem;
    }
    .hero-section h2 {
        font-size: 2rem;
        width: 19rem;
    }
    .hero-section .banner-desc {
        font-size: 2rem;
    }
    .hero-section .banner-desc2 {font-size: .875rem;width: 23.5rem;line-height: 26px;color: #666;}
    .hero-section .banner {
        width: 95%;
        margin-top: 2rem;
    }

    .hero-section .banner-btn {
        border-radius: 2rem;
        padding: .5rem 2rem;
        margin-top: 1rem;
        font-size: 1rem;
    }

    .hero-section .index-device-desc {
        font-size: .875rem;
        line-height: 1.25rem;
    }

    .hero-section .banner-btn i {
        width: 1.25rem;
        height: 1.25rem;
        background: url(../img/win-ico.webp);
        background-size: 1.25rem;
        margin-right: .5rem;
    }
    .hero-section .banner-btn i.ios-ico {
        background: url(../img/ios-ico.webp);
        background-size:1.25rem;
    }
    .hero-section .banner-btn i.android-ico {
        background: url(../img/android-ico.webp);
        background-size:1.25rem;
    }
    .platform-section {
        padding: 1rem 1rem 2rem;
    }
    section h3.section-name {
        font-size: 1.375rem;
        margin-bottom: 2rem;
    }
    .platform-list {
        width: 100%;
        flex-wrap: wrap;
        column-gap: 0;
        row-gap: 2.5rem;
        justify-content: space-between;
    }
    .platform-item {
        width: 48%;
        border-radius: 1.25rem;
    }
    .platform-img {
        padding: 1.5rem 0 0;
    }
    .platform-img img {
        width: 1.875rem;
        height: 1.875rem;
    }
    .platform-info {
        padding: 1.5rem;
       
    }
    .platform-name {
        font-size: 1.5rem;
    }
    .platform-desc {
        font-size: .9375rem;
        line-height: 1.5rem;
    }
    .advs-section {
        padding: 2rem 1rem 2rem;
    }
    .function-section .adv-card {
        row-gap:0;
    }
    .function-section .adv-name {
        margin:0.375rem 0;
    }
    
    .faqs-section {
        padding: 2rem 1rem 0;
    }
    section h2.section-name {
        font-size:1.75rem;
        margin-bottom: .5rem;
    }

    section p.section-subname {
        font-size: 1rem;
        margin-bottom: 0;
    }

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

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

    .advs-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .adv-card {
        width: 100%;
        padding: 1rem;
        background: #FFFFFF;
        display: flex;
        text-align: left;
        flex-direction: column;
        align-items: center;
        row-gap: 0;
    }
    .adv-card .adv-img {
        width: 1.875rem;
        height: 1.875rem;
    }
    .adv-card .adv-name {
        font-size: 1.125rem;
        color: #333;
        margin: .375rem 0;
    }
    .adv-card .adv-top {
        display: flex;
        column-gap: .75rem;
        align-items: center;
    }
    .adv-card .adv-desc {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .faq-item {
        width: 100%;
    }
    .faq-item h4 {
        font-size: 1.125rem;
        margin-bottom: 0;
    }
    .faq-item p {
        
    }

    .faq-item img {
        height: 11rem;
    }
    .faq-item .faq-content {
        padding-bottom: 1rem;
    }

    .main_wrap {
        width: 100%;
        margin: 0 auto;
    }
    .part-privacy {
        margin-top: 2rem;
    }
    .part-privacy {
        padding: 1rem;
        font-size: 0.875rem;
        line-height: 1.75rem;
    }
    .part-privacy p{
        font-size: 0.875rem;
        line-height: 1.75rem;
    }
    .page-404 img {
        width:100%;
    }
    #to_top {position: fixed;bottom: 2rem;right: 1rem;cursor: pointer;z-index: 1000;display: none;}
    #to_top img {width: 2.5rem;height: 2.5rem;}
}