
/* 压缩后的CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body,
html {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f8fafd
}

section {
    padding: 80px 0
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all .4s;
    border: none;
    box-shadow: 0 8px 20px rgba(26, 115, 232, .3)
}

.btn:hover {
    background: linear-gradient(135deg, #0066d6, #0050b3);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(26, 115, 232, .4)
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a73e8;
    color: #1a73e8;
    box-shadow: none
}

.btn-outline:hover {
    background: #1a73e8;
    color: #fff
}

.section-title {
    text-align: center;
    margin-bottom: 50px
}

.section-title h2 {
    font-size: 2.8rem;
    color: #1a73e8;
    margin-bottom: 15px;
    font-weight: 800
}

.section-title p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto
}

.highlight {
    color: #e94235;
    font-weight: 700
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    z-index: 1000;
    transition: all .4s
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

.logocx {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a73e8;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logocx img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #1a73e8
}

.nav-linksae {
    display: flex;
    gap: 35px
}

.nav-linksae li{
    list-style: none;
}
.nav-linksae li a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.05rem;
    color: #1a73e8;
    text-decoration: none;
}

.nav-linksae li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #1a73e8;
    transition: width .4s
}

.nav-linksae li a:hover:after {
    width: 100%
}

.nav-btnpr {
    font-size: 1rem;
    padding: 10px 28px
}

.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-text {
    text-align: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: #ffd700;
    min-width: 50px;
    text-align: center;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.05rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Swiper 轮播区域 */
.swiper-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.swiper-slide {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}

.slide-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ffd700;
}

.hero-cta {
    text-align: center;
    margin-top: 50px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .swiper-slide {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .swiper-slide {
        height: 300px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

.device-mockupzp {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
    overflow: hidden;
    transform: rotate3d(1, 1, 0, 5deg);
    transition: transform .6s
}

.device-mockupzp:hover {
    transform: rotate3d(1, 1, 0, 0deg)
}

.device-headeryv {
    padding: 18px 20px;
    background: #f0f5ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e7ff
}

.device-controlsxv {
    display: flex;
    gap: 10px
}

.control-dotjv {
    width: 14px;
    height: 14px;
    border-radius: 50%
}

.dot-red {
    background: #ff5f56
}

.dot-yellow {
    background: #ffbd2e
}

.dot-green {
    background: #27c93f
}

.device-titlecd {
    font-weight: 700;
    color: #1a73e8;
    font-size: 1.1rem
}

.carousel-containerwz {
    height: 350px
}

.carousel-slideaa {
    height: 100%;
    background-size: cover;
    background-position: center
}

.carousel-indicatorsab {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    background: #f8fafd
}

.carousel-indicatorvq {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c5d8f9;
    cursor: pointer;
    transition: all .3s
}

.carousel-indicatorvq.active {
    background: #1a73e8;
    transform: scale(1.2)
}

.hero-ctamf {
    text-align: center;
    margin-top: 70px;
    padding: 40px;
    background: rgba(255, 255, 255, .2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3);
    z-index: 2
}

.hero-ctamf h3 {
    font-size: 2rem;
    margin-bottom: 25px
}

.section-about {
    background: #fff
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.about-text h1 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 25px
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8
}

.about-statsjq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px
}

.stat-cardxj {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s
}

.stat-cardxj:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12)
}

.stat-valueza {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.stat-labelax {
    font-size: 1.2rem;
    color: #555
}

.advantages-gridqg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px
}

.advantage-cardaa {
    background: #f8fafd;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
    transition: all .4s;
    border-left: 4px solid #1a73e8
}

.advantage-cardaa:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1)
}

.advantage-cardaa h3 {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-bottom: 20px
}

.advantage-cardaa p {
    font-size: 1.05rem;
    line-height: 1.7
}

.tested-business {
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    margin-top: 50px
}

.tested-business h3 {
    font-size: 1.7rem;
    margin-bottom: 20px
}

.why-container {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=1920') center/cover
}

.section-headerss {
    text-align: center;
    margin-bottom: 60px;
    color: #fff
}

.section-headerss h2 {
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.section-headerss p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .9);
    max-width: 700px;
    margin: 0 auto
}

.features-gridbb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px
}

.feature-cardqj {
    background: rgba(255, 255, 255, .9);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    transition: all .5s;
    backdrop-filter: blur(10px)
}

.feature-cardqj:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .3)
}

.feature-iconbx {
    font-size: 3.5rem;
    color: #1a73e8;
    margin-bottom: 25px
}

.feature-cardqj h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: #222
}

.feature-cardqj p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7
}

.services-section {
    padding: 100px 0;
    background: #f0f5ff
}

.services-gridbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px
}

.service-cardqg {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: all .5s
}

.service-cardqj:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15)
}

.service-iconbc {
    font-size: 3.5rem;
    color: #1a73e8;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.service-cardqg h3 {
    font-size: 1.6rem;
    margin-bottom: 20px
}

.service-cardqg p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555
}

.plans-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1c2e4a, #0d1b33);
    color: #fff
}

.plans-containerrz {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.plan-cardaz {
    background: rgba(255, 255, 255, .07);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    transition: all .5s
}

.plan-cardaz:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .4)
}

.plan-badgetc {
    display: block;
    background: #e94235;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem
}

.plan-cardaz h3 {
    padding: 30px 30px 20px;
    font-size: 2rem
}

.plan-featuresqy {
    padding: 0 30px 25px
}

.feature-itemwz {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.1rem
}

.feature-itemwz i {
    color: #4caf50
}

.plan-detailsaa {
    padding: 25px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.plan-type {
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 10px 8px 0;
    font-size: 1rem
}

.guarantee-section {
    padding: 100px 0;
    background: #fff
}

.guarantees-gridsf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px
}

.guarantee-cardxg {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: all .5s;
    border-top: 5px solid #1a73e8
}

.guarantee-cardxg:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15)
}

.guarantee-iconqg {
    font-size: 3.5rem;
    color: #1a73e8;
    margin-bottom: 25px
}

.guarantee-cardxg h4 {
    font-size: 1.6rem;
    margin-bottom: 20px
}

.guarantee-cardxg p {
    font-size: 1.1rem;
    color: #555
}

.tested-business {
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center
}

.tested-business h3 {
    font-size: 1.8rem;
    margin-bottom: 20px
}

.faq-section {
    padding: 100px 0;
    background: #f8fafd
}

.faq-containercb {
    margin: 50px auto 0
}

.faq-itemjq {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.faq-questionwq {
    background: #fff;
    padding: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background .3s
}

.faq-questionwq:hover {
    background: #f0f7ff
}

.faq-questionwq i {
    transition: transform .3s
}

.faq-questionwq.active i {
    transform: rotate(180deg)
}

.faq-answertv {
    background: #fff;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all .4s
}

.faq-answertv p {
    padding: 0 0 25px;
    font-size: 1.1rem;
    line-height: 1.8
}

.faq-itemjq.active .faq-answertv {
    padding: 0 25px 25px;
    max-height: 500px
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    position: relative;
    overflow: hidden
}

.contact-content {
    position: relative;
    z-index: 2;
    color: #fff
}

.contact-serviceszz {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 60px 0;
    flex-wrap: wrap
}

.service-itemqb {
    text-align: center;
    min-width: 200px
}

.service-icon-sm {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffd700
}

.service-itemqb h3 {
    font-size: 1.6rem;
    font-weight: 700
}

.contact-featuresaa {
    display: flex;
    gap: 50px;
    margin: 60px 0;
    justify-content: center;
    flex-wrap: wrap
}

.feature-columnqb {
    flex: 1;
    min-width: 350px
}

.feature-item-lg {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.3rem
}

.feature-item-lg i {
    color: #ffd700;
    font-size: 1.5rem
}

.contact-section .btn {
    background: #fff;
    color: #1a73e8;
    margin: 30px 0;
    padding: 16px 50px;
    font-size: 1.2rem;
    font-weight: 700
}

.contact-section .btn:hover {
    background: #f0f0f0
}

footer {
    background: #0d1b33;
    color: #fff;
    padding: 70px 0 40px
}

.footer-linksaa {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.footer-linksaa li a {
    font-size: 1.1rem;
    font-weight: 600;
    transition: color .3s
}

.footer-linksaa li a:hover {
    color: #4caf50
}

.copyright {
    text-align: center;
    font-size: .95rem;
    color: #aaa
}

.popup-container,.popup-container2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
    text-align: center;
}

.popup-container.active,.popup-container2.active {
    opacity: 1;
    visibility: visible
}

.popup-content,.popup-content2 {
    background: #fff;
    width: 90%;
    max-width: 700px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
    transform: scale(.9);
    opacity: 0;
    transition: all .5s
}

.popup-container.active .popup-content,.popup-container2.active .popup-content2 {
    transform: scale(1);
    opacity: 1
}

.popup-header,.popup-header2 {
    padding: 30px;
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    color: #fff;
    position: relative
}

.popup-header h2,.popup-header2 h2 {
    font-size: 2.2rem;
    color: #fff;
    text-align: center
}

.popup-close,.popup-close2 {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color .3s
}

.popup-close:hover {
    color: #ff5252
}

.popup-body {
    padding: 40px
}

.popup-content2 img {
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.popup-body p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-align: center
}

.service-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0
}

.service-tags span {
    background: #f0f7ff;
    color: #1a73e8;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600
}

.advantages-list {
    max-width: 500px;
    margin: 0 auto
}

.advantages-list p {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.1rem
}

.advantages-list i {
    color: #4caf50;
    font-size: 1.4rem
}

.popup-btn,.popup-btn2 {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    font-weight: 700;
    margin-top: 20px
}

.popup-btn:hover {
    background: linear-gradient(135deg, #0066d6, #0050b3);
    transform: translateY(-3px)
}

@media (max-width:1200px) {
    .hero-contentbd {
        gap: 50px
    }

    .hero-textsf h1 {
        font-size: 3rem
    }
}

@media (max-width:992px) {
    .hero-contentbd {
        flex-direction: column
    }

    .hero-visualqa {
        width: 100%;
        max-width: 500px;
        margin: 0 auto
    }

    .advantages-gridqg {
        grid-template-columns: 1fr
    }

    .plans-containerrz {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

@media (max-width:768px) {
    .nav-linksae {
        display: none
    }

    .hero-textsf h1 {
        font-size: 2.5rem
    }

    .hero-textsf h2 {
        font-size: 1.8rem
    }

    .section-title h2 {
        font-size: 2.2rem
    }

    .features-gridbb {
        grid-template-columns: 1fr
    }

    .stat-cardxj {
        padding: 25px
    }

    .about-content {
        grid-template-columns: 1fr
    }

    .contact-featuresaa {
        gap: 30px
    }

    .feature-columnqb {
        min-width: 100%
    }

    .popup-body {
        padding: 30px
    }
}

@media (max-width:576px) {
    .hero-textsf h1 {
        font-size: 2.2rem
    }

    .hero-textsf h2 {
        font-size: 1.5rem
    }

    .section-title h2 {
        font-size: 1.8rem
    }

    .hero-featuresjk {
        grid-template-columns: 1fr
    }

    .feature-cardbk {
        padding: 20px
    }

    .service-itemqb {
        min-width: 130px
    }
}