@charset "UTF-8";
[v-cloak] {
    display: none;
}

/* 头部样式 */
.header-box {
    background: #ffffff;
    height: 90px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header {
    width: 1200px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; 
    z-index: 9999;
}

.header-logo {
    width: 213px;
    height: 50px;
}

.header-logo img {
    width: 213px;
    height: 50px;
    display: block;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    position: relative; 
    z-index: 10000;
}

.header-nav-item {
    margin: 0 25px;
    font-size: 16px;
    position: relative;
    height: 90px;
    line-height: 90px;
}

.header-nav-item-line {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    background: #9A41EC;
    transition: all .3s ease-in-out;
    opacity: 0;
}

.header-nav-item:hover {
    font-weight: bold;
    background-image: linear-gradient(to bottom, #9A41EC, #9A41EC, #9A41EC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.header-nav-item:hover .header-nav-item-line {
    opacity: 1;
    height: 4px;
    width: 19px;
    bottom: 0;
}

.header-nav-btn {
    display: none;
    width: 30px;
    height: 30px;
    margin-right: 30px;
    cursor: pointer;
}

.header-nav-btn img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

/* 底部样式 */
.footer {
    background: #08101E;
}

.footer-box {
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.footer-logo {
    width: 225px;
    height: 58px;
    margin: 0 auto;
}

.footer-logo img {
    width: 225px;
    height: 58px;
    display: block;
    object-fit: contain;
}

.footer-text {
    color: #ffffff;
}

.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 500px;
    margin: 30px auto 0;
    justify-content: center;
}

.footer-nav-item {
    margin: 5px 20px 5px 0;
}

.footer-copyright {
    margin-top: 30px;
    text-align: center;
}

/* 移动端适配基础样式 */
.h5_banner_blank {
    display: none;
}

/* Banner样式 */
.banner {
    background-color: #e0f0ff;
    height: 450px;
    position: relative;
}

.banner-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.banner-text {
    width: 50%;
    color: #000;
}

.banner-title {
    font-family: SourceHanSansCN-Medium;
    font-size: 54px;
    font-weight: bold;
    letter-spacing: 0;
    color: #000;
    margin-top: 48px;
    margin-bottom: 35px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.banner-desc {
    margin-bottom: 20px;
}

.banner-desc-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.banner-desc-item div:last-child {
    font-family: OPPOSans-L;
    font-size: 20px;
    font-weight: normal;
    line-height: 36px;
    letter-spacing: 0;
    color: #000;
}

.banner-desc-dot {
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.banner-btn-group {
    display: flex;
    gap: 15px; /* 按钮之间的间距 */
    margin-top: 20px;
    flex-wrap: wrap; /* 手机端自动换行 */
}

.banner-btn {
    flex: 1; /* 让按钮平分宽度 */
    min-width: 120px; /* 保证按钮最小宽度，避免太窄 */
    text-align: center;
    padding: 10px 15px;
    display: inline-block;
    background-color: #e02f1f; /* 示例背景色，可根据实际样式调整 */
    border-radius: 25px;
    color: white;
    text-decoration: none;
}

.banner-mobile-btn {
    display: none;
}

.banner-image {
    width: 486px;
    height: 463px;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 全平台加速样式 */
.platform-section {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-title {
    font-family: SourceHanSansCN-Bold;
    font-size: 46px;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    margin: 31px 0 53px;
}

.platform-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.platform-item {
    width: 168px;
    height: 165px;
    background-image: linear-gradient(#f3f7fc, #f3f7fc),
    linear-gradient(#3e5fff, #3e5fff),
    linear-gradient(#1d2023, #1d2023);
    background-blend-mode: normal, normal, normal;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.platform-icon-wrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.platform-name {
    font-family: AdobeHeitiStd-Regular;
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0;
    color: #1d2023;
}

/* 您获得的不止是加速器 样式 */
.features-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    font-family: SourceHanSansCN-Bold;
    font-size: 46px;
    font-weight: normal;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    width: 268px;
    height: 400px;
    background-color: #ffffff;
    border-radius: 15px;
    border: solid 1px #e2e2e4;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
}

.feature-content {
    text-align: left;
}

.feature-content h3 {
    font-family: SourceHanSansCN-Medium;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 15px;
}

.feature-content p {
    font-family: SourceHanSansCN-Regular;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0;
    color: #000000;
    line-height: 1.6;
}

.features-download-btn {
    display: none;
}

/* 安全特性模块样式 */
.security-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.security-title {
    font-family: SourceHanSansCN-Bold;
    font-size: 46px;
    font-weight: normal;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.security-grid {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.security-item {
    width: 160px;
    height: 198px;
    background-color: #ffffff;
    border-radius: 15px;
    border: solid 1px #e2e2e4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
}

.security-item img {
    width: 84px;
    height: 69px;
    object-fit: contain;
    margin-bottom: 30px;
}

.security-item span {
    font-family: SourceHanSansCN-Medium;
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
}

/* 随时随地享受快速、稳定的加速器连接 样式 */
.anywhere-section {
    padding: 60px 20px;
    margin: 0 auto;
}

.anywhere-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anywhere-text {
    width: 50%;
}

.anywhere-title {
    font-family: SourceHanSansCN-Medium;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0;
    color: #2a2b32;
    margin-bottom: 30px;
}

.anywhere-subtitle {
    font-family: SourceHanSansCN-Medium;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0;
    color: #2a2b32;
    margin: 30px 0;
}

.anywhere-subtitle-text {
    font-family: SourceHanSansCN-Regular;
    font-size: 20px;
    font-weight: normal;
    line-height: 44px;
    letter-spacing: 0;
    color: #141415;
}

.anywhere-desc {
    font-family: SourceHanSansCN-Regular;
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
    letter-spacing: 0;
    color: #141415;
}

.anywhere-devices {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.anywhere-devices span {
    font-family: SourceHanSansCN-Regular;
    font-size: 16px;
    line-height: 26px;
    color: #141415;
}

.anywhere-btn {
    width: 190px;
    height: 50px;
    background-color: #e02f1f;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: SourceHanSansCN-Regular;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
}

.anywhere-image {
    width: 558px;
    height: 505px;
}

.anywhere-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 用户评论模块样式 */
.reviews-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    font-family: SourceHanSansCN-Bold;
    font-size: 46px;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-subtitle {
    font-family: SourceHanSansCN-Regular;
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.reviews-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.review-card {
    width: 361px;
    height: 244px;
    background-color: #ffffff;
    border-radius: 15px;
    border: solid 1px #e2e2e4;
    padding: 24px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.review-user span {
    font-family: SourceHanSansCN-Regular;
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    color: #000000;
}

.review-icon {
    width: 22px;
    height: 22px;
}

.review-content {
    width: 319px;
    font-family: SourceHanSansCN-Regular;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    color: #0d0e0e;
    margin-bottom: 20px;
}

.review-date {
    font-family: SourceHanSansCN-Regular;
    font-size: 15px;
    font-weight: normal;
    line-height: 30px;
    color: #676767;
    display: block;
}

/* 立即下载试用吧 样式 */
.download-try {
    background-color: #151823;
    padding-bottom: 48px;
}

.download-try-container {
    width: 1200px;
    margin: 0 auto;
}

.download-try-title {
    padding-top: 52px;
    font-family: PingFang-SC-Medium;
    font-size: 48px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: center;
}

.download-try-grid {
    margin-top: 51px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.download-try-item {
    text-align: center;
    cursor: pointer;
}

.download-try-icon {
    width: 46px;
    height: 46px;
    background: url('/template/{$tplName}/images/8cf611686cee96e3ddce37a319574806.png') no-repeat;
    margin: 0 auto;
}

.download-try-icon.windows {
    background-position: -306px 0;
}

.download-try-icon.mac {
    background-position: -202px 0;
}

.download-try-icon.android {
    background-position: -98px 0;
}

.download-try-icon.ios {
    background-position: 0 0;
}

.download-try-name {
    margin-top: 22px;
    font-family: OPPOSans-R;
    font-size: 22px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #ffffff;
}

/* 移动端响应式样式 */
@media screen and (max-width: 768px) {
    /* 头部移动端 */
    .header {
    width: 100%;
    position: fixed;
    background: #ffffff;
    }

    .h5_banner_blank {
    display: block;
    width: 100%;
    height: 100px;
    background: #e0f0ff;
    }

    .header-logo {
    margin-left: 30px;
    }

    .header-nav-btn {
    display: block;
    }

    .header-nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #ffffff;
    height: calc(100vh - 90px);
    }

    .header-nav-show {
    display: block;
    }

    .header-nav-item {
    font-size: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header-nav-item-line {
    left: 10px;
    }

    .banner-btn-group {
    justify-content: center;
    }

    /* 底部移动端 */
    .footer-box {
    width: calc(100% - 60px);
    padding: 30px 0;
    display: block;
    }

    .footer-text {
    margin-left: 0;
    margin-top: 50px;
    }

    .footer-nav {
    width: calc(100% - 50px);
    }

    /* Banner移动端 */
    .banner {
    height: 0;
    padding-bottom: 75.87%; /* 569/750 = 0.7587 */
    background-color: #e0f0ff;
    }

    .banner-title {
    font-size: 6.2vw;
    text-align: center;
    margin: 36px auto 15px;
    width: 90%;
    }

    .banner-desc-item div:last-child {
    line-height: 20px;
    }

    .banner-text {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .banner-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    }

    .banner-desc-item div:last-child {
    font-size: 2.67vw;
    text-align: center;
    }

    .banner-mobile-btn {
    font-size: 6.2vw;
    display: block;
    width: 200px;
    height: 50px;
    background: #e02f1f;
    border-radius: 25px;
    color: #fff;
    font-family: SourceHanSansCN-Regular;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 0;
    text-decoration: none;
    position: relative;
    z-index: 1;
    }

    .banner-content {
    width: 100%;
    padding: 0 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    }

    .banner-image {
    width: 64.8vw;
    height: 55.6vw;
    margin-top: -25px;
    }

    .banner-text .banner-btn {
    display: none;
    }

    .banner-bg {
    display: none;
    }

    /* 全平台加速移动端 */
    .platform-section {
    padding: 0;
    }

    .platform-title {
    font-size: 6.13vw;
    }

    .platform-grid {
    flex-wrap: nowrap;
    gap: 2.4vw;
    padding: 0;
    }

    .platform-item {
    width: 21.4vw;
    height: 17.47vw;
    flex-shrink: 0;
    }

    .platform-icon-wrap {
    gap: 5px;
    width: 100%;
    }

    .platform-icon-wrap img {
    width: 6.4vw;
    height: 6.4vw;
    margin-top: 10px;
    }

    .platform-name {
    font-size: 2.4vw;
    white-space: nowrap;
    }

    /* 功能特性移动端 */
    .features-section {
    padding: 30px 15px;
    }

    .features-title {
    font-size: 6.13vw;
    }

    .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    }

    .feature-card {
    width: 100%;
    height: auto;
    padding: 15px;
    }

    .feature-card img {
    width: 80%;
    height: auto;
    aspect-ratio: 1;
    }

    .feature-content h3 {
    font-size: 4vw;
    }

    .feature-content p {
    font-size: 3vw;
    }

    .features-download-btn {
    display: flex;
    width: 220px;
    height: 54px;
    background-color: #e02f1f;
    border-radius: 27px;
    margin: 30px auto 0;
    align-items: center;
    justify-content: center;
    font-family: SourceHanSansCN-Regular;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    }

    /* 安全特性移动端 */
    .security-section {
    padding: 30px 15px;
    }

    .security-title {
    font-size: 6.13vw;
    }

    .security-grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    display: grid;
    }

    .security-item {
    width: 100%;
    height: auto;
    padding: 15px 10px;
    }

    .security-item img {
    width: 11.2vw;
    height: 9.2vw;
    margin-bottom: 15px;
    }

    .security-item span {
    font-size: 2.67vw;
    }

    /* 随时随地模块移动端 */
    .anywhere-content {
    flex-direction: column;
    }

    .anywhere-text {
    width: 100%;
    text-align: center;
    }

    .anywhere-title {
    font-size: 4.8vw;
    }

    .anywhere-subtitle {
    font-size: 4.8vw;
    }

    .anywhere-subtitle-text {
    font-size: 2.67vw;
    line-height: 1.8;
    }

    .anywhere-desc {
    font-size: 2.13vw;
    line-height: 1.8;
    }

    .anywhere-devices {
    justify-content: center;
    }

    .anywhere-devices span {
    font-size: 2.13vw;
    }

    .anywhere-btn {
    margin: 30px auto;
    }

    .anywhere-image {
    width: 100%;
    height: auto;
    aspect-ratio: 558/505;
    }

    /* 用户评论移动端 */
    .reviews-section {
    padding: 30px 15px;
    }

    .reviews-title {
    font-size: 6.13vw;
    }

    .reviews-subtitle {
    font-size: 2.4vw;
    }

    .reviews-grid {
    flex-direction: column;
    gap: 15px;
    }

    .review-card {
    width: 100%;
    height: auto;
    padding: 15px;
    }

    .review-content {
    width: 100%;
    font-size: 1.87vw;
    }

    .review-user span {
    font-size: 2.67vw;
    }

    .review-date {
    font-size: 2vw;
    }

    /* 下载模块移动端 */
    .download-try-container {
    width: 100%;
    padding: 0 20px;
    }

    .download-try-grid {
    flex-wrap: nowrap;
    gap: 20px;
    }

    .download-try-title {
    font-size: 30px;
    }

    .download-try-name {
    font-size: 14px;
    }
}