* {
    font-family: 'Anton', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* 导航栏样式 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1720px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6e8efb;
}

.nav-links a.active {
    color: #6e8efb;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6e8efb;
    transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.logo {
    background-image: url("./image/Frame 12_slices/编组.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 40px;
}

/* 客服图标样式 */
.customer-service {
    position: fixed;
    right: 40px;
    bottom: 30px;
    width: 80px;
    height: 80px;
    text-transform: none;
    letter-spacing: 0;
    opacity: 1;
    z-index: 1000;
    animation: pulse 1s infinite ease-in-out;
}

.customer-service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 脉冲动画 */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

section {
    min-height: 100vh;
    /* 对应 1000pt 高度 */
}

.home {
    background-image: url("./image/Frame 2.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 80px;
    /* 为固定导航栏留出空间 */
    min-height: 1080px;
    /* 对应 1000pt 高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 修改：从flex-start改为center，让内容居中 */
}

.home .revenue-text_1 {
    position: absolute;
    left: 240px;
    top: 240px;
    width: 677px;
    height: 102px;
    font-family: Anton, Anton;
    font-weight: 400;
    font-size: 86px;
    color: #FFFFFF;
    line-height: 102px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.home .revenue-text_2 {
    position: absolute;
    left: 240px;
    top: 344px;
    width: 635px;
    height: 102px;
    font-family: Anton, Anton;
    font-weight: 400;
    font-size: 86px;
    color: #FFFFFF;
    line-height: 102px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.home .revenue-text_3 {
    position: absolute;
    left: 240px;
    top: 448px;
    width: 683px;
    height: 102px;
    font-family: Anton, Anton;
    font-weight: 400;
    font-size: 86px;
    color: #FFFFFF;
    line-height: 102px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.home .revenue-text_4 {
    position: absolute;
    left: 240px;
    top: 571px;
    width: 680px;
    height: 92px;
    font-family: Roboto, Roboto;
    font-weight: 400;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 46px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

/* 按钮容器 */
.home .button-container {
    position: absolute;
    left: 220px;
    top: 713px;
    display: flex;
    gap: 22px;
    /* 502px - 220px - 260px = 22px */
}

/* 按钮基础样式 */
.home .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 88px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: 'Anton', sans-serif;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    color: transparent;
    /* 隐藏文字，因为文字已经在图片中 */
    overflow: hidden;
}

/* 按钮悬停效果 */
.home .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* 第一个按钮样式 - 使用背景图片 */
.home .btn-frame-2965 {
    background-image: url("./image/Frame 12_slices/Frame 2965.png");
}

/* 第二个按钮样式 - 使用背景图片 */
.home .btn-frame-2967 {
    background-image: url("./image/Frame 12_slices/Frame 2967.png");
}

.home .revenue-image {
    position: absolute;
    left: 937px;
    top: 175px;
    width: 931px;
    height: 908px;
    background-image: url("./image/Frame 2975_slices/位图.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Adobe 图像元素 - 使用伪元素方式确保背景跟随元素尺寸变化 */
.home .revenue-image .adobe-image_1 {
    position: absolute;
    left: 131px;
    width: 134px;
    height: 99px;
    border-radius: 0px 0px 0px 0px;
    background: none;
    background-image: url("./image/Frame 2975_slices/编组(4).png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.home .revenue-image .adobe-image_2 {
    position: absolute;
    top: 124px;
    left: 66px;
    width: 345px;
    height: 379px;
    border-radius: 0px 0px 0px 0px;
    background: none;
    background-image: url("./image/Frame 2975_slices/编组(2).png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.home .revenue-image .adobe-image_3 {
    position: absolute;
    top: 477px;
    left: 131px;
    width: 82px;
    height: 70px;
    border-radius: 0px 0px 0px 0px;
    background: none;
    background-image: url("./image/Frame 2975_slices/编组(1).png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.home .revenue-image .adobe-image_4 {
    position: absolute;
    top: 581px;
    left: 8.5px;
    width: 142px;
    height: 139px;
    border-radius: 0px 0px 0px 0px;
    background: none;
    background-image: url("./image/Frame 2975_slices/编组.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.home .revenue-image .adobe-image_5 {
    position: absolute;
    top: 232px;
    left: 430px;
    width: 345px;
    height: 346px;
    border-radius: 0px 0px 0px 0px;
    background: none;
    background-image: url("./image/Frame 2975_slices/编组(3).png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.home .revenue-image .adobe-image_6 {
    position: absolute;
    top: 478px;
    left: 361px;
    width: 370px;
    height: 288px;
    border-radius: 0px 0px 0px 0px;
    background: none;
    background-image: url("./image/Frame 2975_slices/银行卡.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.home .revenue-image .adobe-image_7 {
    position: absolute;
    top: 72px;
    left: 652px;
    width: 70px;
    height: 68px;
    border-radius: 0px 0px 0px 0px;
    background: none;
    background-image: url("./image/Frame 2975_slices/图层 1.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.results-drive {
    position: relative;
    margin-top: 80px;
    /* 为固定导航栏留出空间 */
    min-height: 600px;
    /* 对应 1000pt 高度 */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.results-drive .context {
    width: 1448px;
    height: 172px;
    text-align: center;
    font-size: 184px;
    line-height: 172px;
    margin-bottom: 23px;
}

.user-acquisition {
    position: relative;
    margin-top: 80px;
    /* 为固定导航栏留出空间 */
    min-height: 1080px;
    /* 对应 1000pt 高度 */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

/* 修正：使用相对定位而不是固定定位 */
.user-acquisition .context_bottom_opacity {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* 防止背景元素影响交互 */
    z-index: 1;
    /* 确保在内容下方 */
}

.user-acquisition .context_bottom_opacity div {
    opacity: 0.1 !important;
    font-size: 140px;
    text-align: center;
    white-space: nowrap;
    margin: 10px 0;
    /* 添加一些间距 */
}

/* 当处于固定定位时的样式 */
.user-acquisition .context_bottom_opacity.fixed-position {
    position: fixed;
    top: 200px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.user-acquisition .socll-con {
    height: 1300px;
}

.user-acquisition .context_title {
    font-size: 68px;
    line-height: 81px;
}

.user-acquisition .context_subtitle {
    font-family: Roboto-Regular, Regular;
    font-weight: 400;
    /* Regular */
    text-align: left;
    color: #707070;
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 42px;
}

.user-acquisition .title_left {
    position: absolute;
    top: 278px;
    left: 248px;
    width: 442px;
    height: 81px;
}

.user-acquisition .subtitle_left {
    position: absolute;
    top: 391px;
    left: 248px;
    width: 500px;
    height: 126px;
}

.user-acquisition ._image_left {
    position: absolute;
    top: 558px;
    left: 248px;
    width: 476px;
    height: 400px;
    border-radius: 0px 0px 0px 0px;
    background-image: url("./image/ASO.gif");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.user-acquisition .title_right {
    position: absolute;
    top: 660px;
    left: 1585px;
    width: 98px;
    height: 81px;
}

.user-acquisition .subtitle_right {
    position: absolute;
    top: 773px;
    left: 1183px;
    width: 500px;
    height: 84px;
    text-align: right;
}

.user-acquisition ._image_right {
    position: absolute;
    top: 51px;
    left: 1125px;
    width: 534px;
    height: 415px;
    border-radius: 0px 0px 0px 0px;
    background-size: 100% 100%;
    /* 覆盖整个容器 */
    background-repeat: no-repeat;
    background-position: center;
    /* 图片居中 */
    background-image: url("./image/User Acquisition.gif");
}

.campaign-types {
    position: relative;
    margin-top: 80px;
    /* 为固定导航栏留出空间 */
    min-height: 600px;
    /* 对应 1000pt 高度 */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.campaign-types .context {
    width: 1448px;
    height: 172px;
    text-align: center;
    font-size: 184px;
    line-height: 172px;
    margin-bottom: 23px;
}

.cpa-cpe {
    position: relative;
    margin-top: 80px;
    /* 为固定导航栏留出空间 */
    min-height: 1080px;
    /* 对应 1000pt 高度 */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* 当处于固定定位时的样式 */
.cpa-cpe .context_bottom_opacity.fixed-position {
    position: fixed;
    top: 240px;
    left: 25%;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.cpa-cpe .context_title {
    font-size: 68px;
    line-height: 81px;
}

.cpa-cpe .context_subtitle {
    font-family: Roboto-Regular, Regular;
    font-weight: 400;
    /* Regular */
    text-align: left;
    color: #999999;
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 50px;
}

.cpa-cpe .context_1 {
    position: absolute;
    top: 195px;
    left: 236px;
    width: 225px;
    height: 81px;
}

.cpa-cpe .context_2 {
    position: absolute;
    top: 290px;
    left: 236px;
    width: 804px;
    height: 100px;
}

.cpa-cpe .context_3 {
    position: absolute;
    top: 478px;
    left: 236px;
    width: 964px;
    height: 81px;
}

.cpa-cpe .context_4 {
    position: absolute;
    top: 579px;
    left: 236px;
    width: 991px;
    height: 50px;
}

.cpa-cpe .context_5 {
    position: absolute;
    top: 800px;
    left: 236px;
    width: 112px;
    height: 81px;
}

.cpa-cpe .context_6 {
    position: absolute;
    top: 904px;
    left: 236px;
    width: 446px;
    height: 100px;
}

.cpa-cpe ._image_right {
    position: absolute;
    top: 133px;
    left: 1086px;
    width: 811px;
    height: 811px;
    background-size: 100% 100%;
    /* 覆盖整个容器 */
    background-repeat: no-repeat;
    background-position: center;
    /* 图片居中 */
    border-radius: 0px 0px 0px 0px;
    background-image: url("./image/CPA&CPE.gif");
}

.remarkable-results {
    position: relative;
    margin-top: 80px;
    /* 为固定导航栏留出空间 */
    min-height: 600px;
    /* 对应 1000pt 高度 */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.remarkable-results .context {
    width: 1375px;
    height: 344px;
    text-align: center;
    font-size: 184px;
    line-height: 172px;
    margin-bottom: 23px;
}

.high-optimized {
    position: relative;
    margin-top: 178px;
    /* 为固定导航栏留出空间 */
    min-height: 600px;
    /* 对应 1000pt 高度 */
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.high-optimized .context_bottom_opacity .fixed-position {
    position: fixed;
    top: 200px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.high-optimized ._card {
    margin-left: 18px;
}

.high-optimized .context_title {
    width: 466px;
    height: 28px;
    text-align: center;
    color: #2d2d2d;
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 28px;
    margin: 20px 0;
}

.high-optimized .context_subtitle {
    width: 466px;
    height: 44px;
    font-family: Roboto-Regular, Regular;
    font-weight: 400;
    /* Regular */
    text-align: center;
    color: #707070;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 22px;
}

.end {
    position: relative;
    margin-top: 80px;
    /* 为固定导航栏留出空间 */
    min-height: 1000px;
    /* 对应 1000pt 高度 */
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.end .context {
    margin-top: 300px;
    /* width: 480px; */
    font-size: 28px;
    color: #2d2d2d;
    line-height: 38px;
    text-align: center;
}

.end .email {
    font-size: 143px;
    color: #2d2d2d;
    line-height: 172px;
    text-align: center;
}

.end .image {
    width: 214px;
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.end .terms {
    height: 100px;
    width: 181px;
    color: #CECECE;
    font-size: 12px;
    line-height: normal;
}

.context_bottom_opacity {
    position: absolute;
    opacity: 0.4;
}

.context_bottom_opacity div {
    opacity: 0.1 !important;
    z-index: -1;
    font-size: 140px;
    text-align: center;
}

.card_1 {
    text-align: center;
    border-radius: 20px;
    padding: 18px 0;
}

/* 以1920x1080为基准，创建响应式设计 */
/* 1920x1080 基准样式已定义在上面 */

/* 适配苹果设备的特定样式 */
/* 苹果设备的通用样式 */
@media screen and (-webkit-min-device-pixel-ratio: 1) and (min-device-width: 1024px) {
    .navbar {
        padding: 1rem 4%;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 82px;
        left: 220px;
        top: 220px;
        width: 640px;
    }

    .home .revenue-text_2 {
        top: 320px;
    }

    .home .revenue-text_3 {
        top: 420px;
    }

    .home .revenue-text_4 {
        font-size: 26px;
        left: 220px;
        top: 540px;
        width: 640px;
        height: 86px;
        line-height: 42px;
    }

    .home .button-container {
        left: 200px;
        top: 670px;
        gap: 20px;
    }

    .home .btn {
        width: 240px;
        height: 82px;
        font-size: 18px;
    }

    .home .revenue-image {
        left: 880px;
        top: 160px;
        width: 880px;
        height: 850px;
    }

    .home .revenue-image .adobe-image_1 {
        left: 120px;
        width: 125px;
        height: 92px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_2 {
        top: 115px;
        left: 60px;
        width: 320px;
        height: 350px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_3 {
        top: 445px;
        left: 120px;
        width: 76px;
        height: 65px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_4 {
        top: 540px;
        left: 8px;
        width: 132px;
        height: 128px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_5 {
        top: 215px;
        left: 400px;
        width: 320px;
        height: 320px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_6 {
        top: 445px;
        left: 335px;
        width: 345px;
        height: 268px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_7 {
        top: 67px;
        left: 608px;
        width: 65px;
        height: 63px;
        background-size: 100% 100%;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 1360px;
        height: 160px;
        font-size: 170px;
        line-height: 160px;
    }

    .user-acquisition .context_title {
        font-size: 62px;
        line-height: 75px;
    }

    .user-acquisition .context_subtitle {
        font-size: 26px;
        line-height: 38px;
    }

    .user-acquisition .title_left {
        top: 255px;
        left: 230px;
        width: 410px;
        height: 75px;
    }

    .user-acquisition .subtitle_left {
        top: 360px;
        left: 230px;
        width: 465px;
        height: 116px;
    }

    .user-acquisition ._image_left {
        top: 515px;
        left: 230px;
        width: 442px;
        height: 370px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        top: 610px;
        left: 1475px;
        width: 90px;
        height: 75px;
    }

    .user-acquisition .subtitle_right {
        top: 715px;
        left: 1100px;
        width: 465px;
        height: 78px;
    }

    .user-acquisition ._image_right {
        top: 47px;
        left: 1045px;
        width: 502px;
        height: 385px;
        background-size: 100% 100%;
    }

    .cpa-cpe .context_title {
        font-size: 62px;
        line-height: 75px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 26px;
        line-height: 46px;
    }

    .cpa-cpe .context_1 {
        top: 180px;
        left: 220px;
        width: 210px;
        height: 75px;
    }

    .cpa-cpe .context_2 {
        top: 270px;
        left: 220px;
        width: 748px;
        height: 92px;
    }

    .cpa-cpe .context_3 {
        top: 445px;
        left: 220px;
        width: 894px;
        height: 75px;
    }

    .cpa-cpe .context_4 {
        top: 535px;
        left: 220px;
        width: 918px;
        height: 46px;
    }

    .cpa-cpe .context_5 {
        top: 740px;
        left: 220px;
        width: 104px;
        height: 75px;
    }

    .cpa-cpe .context_6 {
        top: 838px;
        left: 220px;
        width: 414px;
        height: 92px;
    }

    .cpa-cpe ._image_right {
        top: 123px;
        left: 1010px;
        width: 752px;
        height: 752px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 1280px;
        height: 320px;
        font-size: 170px;
        line-height: 160px;
    }

    .high-optimized ._card {
        margin-left: 16px;
    }

    .high-optimized .context_title {
        width: 432px;
        height: 26px;
        font-size: 26px;
        line-height: 26px;
    }

    .high-optimized .context_subtitle {
        width: 432px;
        height: 40px;
        font-size: 13px;
        line-height: 20px;
    }

    .end .context {
        margin-top: 280px;
        /* width: 424px; */
        font-size: 26px;
        line-height: 35px;
    }

    .end .email {
        font-size: 132px;
        line-height: 159px;
    }
}

/* 适配苹果笔记本 (1366x768) */
@media screen and (max-width: 1366px) and (min-width: 1281px) {
    .home {
        min-height: 600px;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 50px;
        left: 280px;
        top: 100px;
        width: 400px;
    }

    .home .revenue-text_2 {
        top: 170px;
    }

    .home .revenue-text_3 {
        top: 240px;
    }

    .home .revenue-text_4 {
        font-size: 18px;
        left: 280px;
        top: 320px;
        width: 400px;
        height: 60px;
        line-height: 20px;
    }

    .home .button-container {
        left: 280px;
        top: 400px;
        gap: 10px;
    }

    .home .btn {
        width: 180px;
        height: 60px;
        font-size: 16px;
    }

    .home .revenue-image {
        left: 750px;
        top: 100px;
        width: 500px;
        height: 500px;
    }

    .home .revenue-image .adobe-image_1 {
        left: 60px;
        width: 60px;
        height: 45px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_2 {
        top: 60px;
        left: 40px;
        width: 160px;
        height: 180px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_3 {
        top: 250px;
        left: 60px;
        width: 35px;
        height: 30px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_4 {
        top: 300px;
        left: 5px;
        width: 65px;
        height: 65px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_5 {
        top: 120px;
        left: 220px;
        width: 160px;
        height: 160px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_6 {
        top: 250px;
        left: 180px;
        width: 160px;
        height: 130px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_7 {
        top: 40px;
        left: 340px;
        width: 30px;
        height: 30px;
        background-size: 100% 100%;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 800px;
        height: 120px;
        font-size: 120px;
        line-height: 120px;
    }

    .user-acquisition {
        min-height: 700px;
    }

    .user-acquisition .context_title {
        font-size: 45px;
        line-height: 55px;
    }

    .user-acquisition .context_subtitle {
        font-size: 20px;
        line-height: 30px;
    }

    .user-acquisition .title_left {
        top: 180px;
        left: 80px;
        width: 320px;
        height: 55px;
    }

    .user-acquisition .subtitle_left {
        top: 250px;
        left: 80px;
        width: 350px;
        height: 90px;
    }

    .user-acquisition ._image_left {
        top: 370px;
        left: 80px;
        width: 350px;
        height: 250px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        top: 480px;
        left: 1150px;
        width: 70px;
        height: 55px;
    }

    .user-acquisition .subtitle_right {
        top: 550px;
        left: 900px;
        width: 350px;
        height: 60px;
    }

    .user-acquisition ._image_right {
        top: 40px;
        left: 750px;
        width: 340px;
        height: 220px;
        background-size: 100% 100%;
    }

    .cpa-cpe {
        min-height: 700px;
    }

    /* 当处于固定定位时的样式 */
    .cpa-cpe .context_bottom_opacity.fixed-position {
        position: fixed;
        top: 240px;
        left: 25%;
        width: 100%;
        height: auto;
        pointer-events: none;
        z-index: 1;
    }

    .cpa-cpe .context_title {
        font-size: 45px;
        line-height: 55px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 20px;
        line-height: 35px;
    }

    .cpa-cpe .context_1 {
        top: 130px;
        left: 160px;
        width: 160px;
        height: 55px;
    }

    .cpa-cpe .context_2 {
        top: 190px;
        left: 160px;
        width: 450px;
        height: 70px;
    }

    .cpa-cpe .context_3 {
        top: 300px;
        left: 160px;
        width: 550px;
        height: 55px;
    }

    .cpa-cpe .context_4 {
        top: 370px;
        left: 160px;
        width: 570px;
        height: 35px;
    }

    .cpa-cpe .context_5 {
        top: 500px;
        left: 160px;
        width: 80px;
        height: 55px;
    }

    .cpa-cpe .context_6 {
        top: 580px;
        left: 160px;
        width: 320px;
        height: 70px;
    }

    .cpa-cpe ._image_right {
        top: 80px;
        left: 830px;
        width: 400px;
        height: 400px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 750px;
        height: 200px;
        font-size: 120px;
        line-height: 120px;
    }

    .high-optimized {
        flex-direction: column;
        min-height: 500px;
    }

    .high-optimized ._card {
        margin-left: 0;
        margin-bottom: 20px;
        transform: scale(0.85);
    }

    .high-optimized .context_title {
        width: 350px;
        height: 20px;
        font-size: 20px;
        line-height: 20px;
    }

    .high-optimized .context_subtitle {
        width: 350px;
        height: 30px;
        font-size: 12px;
        line-height: 18px;
    }

    .end {
        min-height: 700px;
    }

    .end .context {
        margin-top: 150px;
        /* width: 320px; */
        font-size: 20px;
        line-height: 28px;
    }

    .end .email {
        font-size: 80px;
        line-height: 100px;
    }

    .end .image {
        width: 180px;
        height: 50px;
    }

    .end .terms {
        height: 70px;
        width: 140px;
        font-size: 10px;
    }
}

/* 适配苹果笔记本 (1280x800) */
@media screen and (max-width: 1280px) and (min-width: 1025px) {
    .navbar {
        padding: 1rem 3%;
    }

    .home {
        min-height: 550px;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 45px;
        left: 290px;
        top: 100px;
        width: 350px;
    }

    .home .revenue-text_2 {
        top: 165px;
    }

    .home .revenue-text_3 {
        top: 230px;
    }

    .home .revenue-text_4 {
        font-size: 16px;
        left: 300px;
        top: 330px;
        width: 350px;
        height: 50px;
        line-height: 18px;
    }

    .home .button-container {
        left: 290px;
        top: 390px;
        gap: 8px;
    }

    .home .btn {
        width: 160px;
        height: 55px;
        font-size: 14px;
    }

    .home .revenue-image {
        left: 680px;
        top: 100px;
        width: 450px;
        height: 450px;
    }

    .home .revenue-image .adobe-image_1 {
        left: 50px;
        width: 50px;
        height: 40px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_2 {
        top: 50px;
        left: 35px;
        width: 140px;
        height: 160px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_3 {
        top: 220px;
        left: 50px;
        width: 30px;
        height: 25px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_4 {
        top: 260px;
        left: 4px;
        width: 55px;
        height: 55px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_5 {
        top: 100px;
        left: 190px;
        width: 140px;
        height: 140px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_6 {
        top: 220px;
        left: 150px;
        width: 140px;
        height: 110px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_7 {
        top: 35px;
        left: 290px;
        width: 25px;
        height: 25px;
        background-size: 100% 100%;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 700px;
        height: 100px;
        font-size: 100px;
        line-height: 100px;
    }

    .user-acquisition {
        min-height: 650px;
    }

    .user-acquisition .context_title {
        font-size: 40px;
        line-height: 50px;
    }

    .user-acquisition .context_subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .user-acquisition .title_left {
        top: 160px;
        left: 60px;
        width: 280px;
        height: 50px;
    }

    .user-acquisition .subtitle_left {
        top: 220px;
        left: 60px;
        width: 300px;
        height: 80px;
    }

    .user-acquisition ._image_left {
        top: 330px;
        left: 60px;
        width: 300px;
        height: 220px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        top: 430px;
        left: 1050px;
        width: 60px;
        height: 50px;
    }

    .user-acquisition .subtitle_right {
        top: 490px;
        left: 800px;
        width: 300px;
        height: 50px;
    }

    .user-acquisition ._image_right {
        top: 35px;
        left: 680px;
        width: 260px;
        height: 190px;
        background-size: 100% 100%;
    }

    .cpa-cpe {
        min-height: 650px;
    }

    /* 当处于固定定位时的样式 */
    .cpa-cpe .context_bottom_opacity.fixed-position {
        position: fixed;
        top: 240px;
        left: 25%;
        width: 100%;
        height: auto;
        pointer-events: none;
        z-index: 1;
    }

    .cpa-cpe .context_title {
        font-size: 40px;
        line-height: 50px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 18px;
        line-height: 30px;
    }

    .cpa-cpe .context_1 {
        top: 110px;
        left: 60px;
        width: 140px;
        height: 50px;
    }

    .cpa-cpe .context_2 {
        top: 165px;
        left: 60px;
        width: 400px;
        height: 60px;
    }

    .cpa-cpe .context_3 {
        top: 260px;
        left: 60px;
        width: 480px;
        height: 50px;
    }

    .cpa-cpe .context_4 {
        top: 320px;
        left: 60px;
        width: 500px;
        height: 30px;
    }

    .cpa-cpe .context_5 {
        top: 440px;
        left: 60px;
        width: 70px;
        height: 50px;
    }

    .cpa-cpe .context_6 {
        top: 510px;
        left: 60px;
        width: 280px;
        height: 60px;
    }

    .cpa-cpe ._image_right {
        top: 70px;
        left: 580px;
        width: 350px;
        height: 350px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 650px;
        height: 180px;
        font-size: 100px;
        line-height: 100px;
    }

    .high-optimized {
        flex-direction: column;
        min-height: 450px;
    }

    .high-optimized ._card {
        margin-left: 0;
        margin-bottom: 15px;
        transform: scale(0.8);
    }

    .high-optimized .context_title {
        width: 300px;
        height: 18px;
        font-size: 18px;
        line-height: 18px;
    }

    .high-optimized .context_subtitle {
        width: 300px;
        height: 25px;
        font-size: 11px;
        line-height: 16px;
    }

    .end {
        min-height: 650px;
    }

    .end .context {
        margin-top: 130px;
        /* width: 280px; */
        font-size: 18px;
        line-height: 25px;
    }

    .end .email {
        font-size: 70px;
        line-height: 85px;
    }

    .end .image {
        width: 160px;
        height: 45px;
    }

    .end .terms {
        height: 60px;
        width: 120px;
        font-size: 9px;
    }
}

/* 适配苹果笔记本 (1440x900) */
@media screen and (max-width: 1440px) and (min-width: 1367px) {
    .home-text {
        margin-left: 200px;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 60px;
        left: 200px;
        top: 230px;
        width: 480px;
    }

    .home .revenue-text_2 {
        top: 310px;
    }

    .home .revenue-text_3 {
        top: 390px;
    }

    .home .revenue-text_4 {
        font-size: 22px;
        left: 200px;
        top: 480px;
        width: 480px;
        height: 70px;
        line-height: 28px;
    }

    .home .button-container {
        left: 200px;
        top: 580px;
        gap: 12px;
    }

    .home .btn {
        width: 200px;
        height: 68px;
        font-size: 17px;
    }

    .home .revenue-image {
        left: 750px;
        top: 210px;
        width: 600px;
        height: 600px;
    }

    .home .revenue-image .adobe-image_1 {
        left: 75px;
        width: 75px;
        height: 55px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_2 {
        top: 75px;
        left: 50px;
        width: 195px;
        height: 215px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_3 {
        top: 305px;
        left: 75px;
        width: 45px;
        height: 38px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_4 {
        top: 365px;
        left: 6px;
        width: 80px;
        height: 78px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_5 {
        top: 140px;
        left: 260px;
        width: 195px;
        height: 195px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_6 {
        top: 305px;
        left: 220px;
        width: 210px;
        height: 163px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_7 {
        top: 43px;
        left: 395px;
        width: 40px;
        height: 38px;
        background-size: 100% 100%;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 960px;
        height: 130px;
        font-size: 140px;
        line-height: 130px;
    }

    .user-acquisition .context_title {
        font-size: 50px;
        line-height: 60px;
    }

    .user-acquisition .context_subtitle {
        font-size: 22px;
        line-height: 33px;
    }

    .user-acquisition .title_left {
        top: 210px;
        left: 120px;
        width: 350px;
        height: 60px;
    }

    .user-acquisition .subtitle_left {
        top: 290px;
        left: 120px;
        width: 400px;
        height: 100px;
    }

    .user-acquisition ._image_left {
        top: 420px;
        left: 120px;
        width: 380px;
        height: 320px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        top: 520px;
        left: 1180px;
        width: 80px;
        height: 60px;
    }

    .user-acquisition .subtitle_right {
        top: 600px;
        left: 850px;
        width: 400px;
        height: 66px;
    }

    .user-acquisition ._image_right {
        top: 40px;
        left: 880px;
        width: 360px;
        height: 360px;
        background-size: 100% 100%;
    }

    /* 当处于固定定位时的样式 */
    .cpa-cpe .context_bottom_opacity.fixed-position {
        position: fixed;
        top: 280px;
        left: 20%;
        width: 100%;
        height: auto;
        pointer-events: none;
        z-index: 1;
    }

    .cpa-cpe .context_title {
        font-size: 50px;
        line-height: 60px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 22px;
        line-height: 40px;
    }

    .cpa-cpe .context_1 {
        top: 150px;
        left: 110px;
        width: 180px;
        height: 60px;
    }

    .cpa-cpe .context_2 {
        top: 225px;
        left: 110px;
        width: 580px;
        height: 80px;
    }

    .cpa-cpe .context_3 {
        top: 355px;
        left: 110px;
        width: 690px;
        height: 60px;
    }

    .cpa-cpe .context_4 {
        top: 435px;
        left: 110px;
        width: 710px;
        height: 40px;
    }

    .cpa-cpe .context_5 {
        top: 600px;
        left: 110px;
        width: 90px;
        height: 60px;
    }

    .cpa-cpe .context_6 {
        top: 685px;
        left: 110px;
        width: 350px;
        height: 80px;
    }

    .cpa-cpe ._image_right {
        top: 95px;
        left: 780px;
        width: 520px;
        height: 520px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 880px;
        height: 240px;
        font-size: 140px;
        line-height: 130px;
    }

    .high-optimized ._card {
        margin-left: 14px;
    }

    .high-optimized .context_title {
        width: 360px;
        height: 22px;
        font-size: 22px;
        line-height: 22px;
    }

    .high-optimized .context_subtitle {
        width: 360px;
        height: 32px;
        font-size: 12px;
        line-height: 18px;
    }

    .end .context {
        margin-top: 220px;
        /* width: 370px; */
        font-size: 22px;
        line-height: 30px;
    }

    .end .email {
        font-size: 95px;
        line-height: 115px;
    }
}

/* 适配苹果笔记本 (1680x1050) */
@media screen and (max-width: 1680px) and (min-width: 1441px) {

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 72px;
        left: 180px;
        top: 180px;
        width: 580px;
    }

    .home .revenue-text_2 {
        top: 275px;
    }

    .home .revenue-text_3 {
        top: 370px;
    }

    .home .revenue-text_4 {
        font-size: 24px;
        left: 180px;
        top: 480px;
        width: 580px;
        height: 80px;
        line-height: 35px;
    }

    .home .button-container {
        left: 170px;
        top: 590px;
        gap: 16px;
    }

    .home .btn {
        width: 230px;
        height: 78px;
        font-size: 19px;
    }

    .home .revenue-image {
        left: 800px;
        top: 140px;
        width: 720px;
        height: 700px;
    }

    .home .revenue-image .adobe-image_1 {
        left: 100px;
        width: 90px;
        height: 66px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_2 {
        top: 90px;
        left: 60px;
        width: 235px;
        height: 258px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_3 {
        top: 365px;
        left: 100px;
        width: 55px;
        height: 46px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_4 {
        top: 440px;
        left: 7px;
        width: 95px;
        height: 94px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_5 {
        top: 170px;
        left: 310px;
        width: 235px;
        height: 235px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_6 {
        top: 365px;
        left: 265px;
        width: 252px;
        height: 195px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_7 {
        top: 52px;
        left: 475px;
        width: 48px;
        height: 46px;
        background-size: 100% 100%;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 1150px;
        height: 150px;
        font-size: 160px;
        line-height: 150px;
    }

    .user-acquisition .context_title {
        font-size: 58px;
        line-height: 70px;
    }

    .user-acquisition .context_subtitle {
        font-size: 24px;
        line-height: 36px;
    }

    .user-acquisition .title_left {
        top: 245px;
        left: 180px;
        width: 400px;
        height: 70px;
    }

    .user-acquisition .subtitle_left {
        top: 340px;
        left: 180px;
        width: 460px;
        height: 110px;
    }

    .user-acquisition ._image_left {
        top: 490px;
        left: 180px;
        width: 440px;
        height: 370px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        top: 590px;
        left: 1400px;
        width: 88px;
        height: 70px;
    }

    .user-acquisition .subtitle_right {
        top: 690px;
        left: 1030px;
        width: 460px;
        height: 72px;
    }

    .user-acquisition ._image_right {
        top: 45px;
        left: 1000px;
        width: 470px;
        height: 320px;
        background-size: 100% 100%;
    }

    .cpa-cpe .context_title {
        font-size: 58px;
        line-height: 70px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 24px;
        line-height: 43px;
    }

    .cpa-cpe .context_1 {
        top: 175px;
        left: 170px;
        width: 205px;
        height: 70px;
    }

    .cpa-cpe .context_2 {
        top: 265px;
        left: 170px;
        width: 680px;
        height: 86px;
    }

    .cpa-cpe .context_3 {
        top: 415px;
        left: 170px;
        width: 815px;
        height: 70px;
    }

    .cpa-cpe .context_4 {
        top: 505px;
        left: 170px;
        width: 840px;
        height: 43px;
    }

    .cpa-cpe .context_5 {
        top: 695px;
        left: 170px;
        width: 105px;
        height: 70px;
    }

    .cpa-cpe .context_6 {
        top: 795px;
        left: 170px;
        width: 400px;
        height: 86px;
    }

    .cpa-cpe ._image_right {
        top: 110px;
        left: 930px;
        width: 650px;
        height: 650px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 1060px;
        height: 280px;
        font-size: 160px;
        line-height: 150px;
    }

    .high-optimized ._card {
        margin-left: 16px;
    }

    .high-optimized .context_title {
        width: 420px;
        height: 24px;
        font-size: 24px;
        line-height: 24px;
    }

    .high-optimized .context_subtitle {
        width: 420px;
        height: 36px;
        font-size: 13px;
        line-height: 19px;
    }

    .end .context {
        margin-top: 260px;
        /* width: 400px; */
        font-size: 24px;
        line-height: 33px;
    }

    .end .email {
        font-size: 110px;
        line-height: 133px;
    }
}

/* 适配大屏幕 (2K/4K) */
@media screen and (min-width: 2560px) {
    .home {
        min-height: 1440px;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 114px;
        left: 320px;
        top: 320px;
        width: 900px;
    }

    .home .revenue-text_2 {
        top: 458px;
    }

    .home .revenue-text_3 {
        top: 597px;
    }

    .home .revenue-text_4 {
        font-size: 37px;
        left: 320px;
        top: 761px;
        width: 906px;
        height: 122px;
        line-height: 61px;
    }

    .home .button-container {
        left: 293px;
        top: 950px;
        gap: 29px;
    }

    .home .btn {
        width: 346px;
        height: 117px;
        font-size: 26px;
    }

    .home .revenue-image {
        left: 1249px;
        top: 233px;
        width: 1241px;
        height: 1210px;
    }

    .home .revenue-image .adobe-image_1 {
        left: 174px;
        width: 178px;
        height: 132px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_2 {
        top: 165px;
        left: 88px;
        width: 460px;
        height: 505px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_3 {
        top: 636px;
        left: 174px;
        width: 109px;
        height: 93px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_4 {
        top: 774px;
        left: 11px;
        width: 189px;
        height: 185px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_5 {
        top: 309px;
        left: 573px;
        width: 460px;
        height: 461px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_6 {
        top: 637px;
        left: 481px;
        width: 493px;
        height: 384px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_7 {
        top: 96px;
        left: 869px;
        width: 93px;
        height: 90px;
        background-size: 100% 100%;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 1930px;
        height: 229px;
        font-size: 245px;
        line-height: 229px;
    }

    .user-acquisition {
        min-height: 1440px;
    }

    .user-acquisition .context_title {
        font-size: 90px;
        line-height: 108px;
    }

    .user-acquisition .context_subtitle {
        font-size: 37px;
        line-height: 56px;
    }

    .user-acquisition .title_left {
        top: 370px;
        left: 330px;
        width: 589px;
        height: 108px;
    }

    .user-acquisition .subtitle_left {
        top: 521px;
        left: 330px;
        width: 666px;
        height: 168px;
    }

    .user-acquisition ._image_left {
        top: 744px;
        left: 330px;
        width: 634px;
        height: 533px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        top: 880px;
        left: 2113px;
        width: 130px;
        height: 108px;
    }

    .user-acquisition .subtitle_right {
        top: 1030px;
        left: 1577px;
        width: 666px;
        height: 112px;
    }

    .user-acquisition ._image_right {
        top: 68px;
        left: 1500px;
        width: 978px;
        height: 553px;
        background-size: 100% 100%;
    }

    .cpa-cpe {
        min-height: 1440px;
    }

    .cpa-cpe .context_title {
        font-size: 90px;
        line-height: 108px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 37px;
        line-height: 66px;
    }

    .cpa-cpe .context_1 {
        top: 260px;
        left: 314px;
        width: 300px;
        height: 108px;
    }

    .cpa-cpe .context_2 {
        top: 386px;
        left: 314px;
        width: 1072px;
        height: 133px;
    }

    .cpa-cpe .context_3 {
        top: 637px;
        left: 314px;
        width: 1285px;
        height: 108px;
    }

    .cpa-cpe .context_4 {
        top: 772px;
        left: 314px;
        width: 1321px;
        height: 66px;
    }

    .cpa-cpe .context_5 {
        top: 1066px;
        left: 314px;
        width: 149px;
        height: 108px;
    }

    .cpa-cpe .context_6 {
        top: 1205px;
        left: 314px;
        width: 594px;
        height: 133px;
    }

    .cpa-cpe ._image_right {
        top: 177px;
        left: 1448px;
        width: 1118px;
        height: 1081px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 1833px;
        height: 458px;
        font-size: 245px;
        line-height: 229px;
    }

    .high-optimized ._card {
        margin-left: 24px;
    }

    .high-optimized .context_title {
        width: 621px;
        height: 37px;
        font-size: 37px;
        line-height: 37px;
    }

    .high-optimized .context_subtitle {
        width: 621px;
        height: 58px;
        font-size: 18px;
        line-height: 29px;
    }

    .end {
        min-height: 1333px;
    }

    .end .context {
        margin-top: 400px;
        /* width: 609px; */
        font-size: 37px;
        line-height: 50px;
    }

    .end .email {
        font-size: 190px;
        line-height: 229px;
    }

    .end .image {
        width: 285px;
        height: 85px;
    }

    .end .terms {
        height: 133px;
        width: 241px;
        font-size: 16px;
    }
}

/* 适配1920x1080 - 2560px之间的屏幕 */
@media screen and (min-width: 1921px) and (max-width: 2559px) {
    .home {
        min-height: 1200px;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 100px;
        left: 280px;
        top: 280px;
        width: 800px;
    }

    .home .revenue-text_2 {
        top: 400px;
    }

    .home .revenue-text_3 {
        top: 520px;
    }

    .home .revenue-text_4 {
        font-size: 32px;
        left: 280px;
        top: 670px;
        width: 800px;
        height: 110px;
        line-height: 55px;
    }

    .home .button-container {
        left: 260px;
        top: 830px;
        gap: 26px;
    }

    .home .btn {
        width: 300px;
        height: 100px;
        font-size: 24px;
    }

    .home .revenue-image {
        left: 1100px;
        top: 200px;
        width: 1100px;
        height: 1050px;
    }

    .home .revenue-image .adobe-image_1 {
        left: 150px;
        width: 160px;
        height: 120px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_2 {
        top: 150px;
        left: 80px;
        width: 400px;
        height: 450px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_3 {
        top: 550px;
        left: 150px;
        width: 100px;
        height: 80px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_4 {
        top: 680px;
        left: 10px;
        width: 170px;
        height: 160px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_5 {
        top: 280px;
        left: 500px;
        width: 400px;
        height: 400px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_6 {
        top: 550px;
        left: 420px;
        width: 430px;
        height: 330px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_7 {
        top: 80px;
        left: 760px;
        width: 80px;
        height: 80px;
        background-size: 100% 100%;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 1700px;
        height: 200px;
        font-size: 210px;
        line-height: 200px;
    }

    .user-acquisition {
        min-height: 1200px;
    }

    .user-acquisition .context_title {
        font-size: 80px;
        line-height: 95px;
    }

    .user-acquisition .context_subtitle {
        font-size: 32px;
        line-height: 48px;
    }

    .user-acquisition .title_left {
        top: 330px;
        left: 290px;
        width: 520px;
        height: 95px;
    }

    .user-acquisition .subtitle_left {
        top: 460px;
        left: 290px;
        width: 580px;
        height: 150px;
    }

    .user-acquisition ._image_left {
        top: 650px;
        left: 290px;
        width: 560px;
        height: 470px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        top: 780px;
        left: 1860px;
        width: 115px;
        height: 95px;
    }

    .user-acquisition .subtitle_right {
        top: 900px;
        left: 1380px;
        width: 580px;
        height: 100px;
    }

    .user-acquisition ._image_right {
        top: 60px;
        left: 1320px;
        width: 860px;
        height: 480px;
        background-size: 100% 100%;
    }

    .cpa-cpe {
        min-height: 1200px;
    }

    .cpa-cpe .context_title {
        font-size: 80px;
        line-height: 95px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 32px;
        line-height: 58px;
    }

    .cpa-cpe .context_1 {
        top: 230px;
        left: 270px;
        width: 260px;
        height: 95px;
    }

    .cpa-cpe .context_2 {
        top: 340px;
        left: 270px;
        width: 930px;
        height: 120px;
    }

    .cpa-cpe .context_3 {
        top: 550px;
        left: 270px;
        width: 1120px;
        height: 95px;
    }

    .cpa-cpe .context_4 {
        top: 680px;
        left: 270px;
        width: 1150px;
        height: 58px;
    }

    .cpa-cpe .context_5 {
        top: 950px;
        left: 270px;
        width: 130px;
        height: 95px;
    }

    .cpa-cpe .context_6 {
        top: 1070px;
        left: 270px;
        width: 520px;
        height: 120px;
    }

    .cpa-cpe ._image_right {
        top: 150px;
        left: 1280px;
        width: 980px;
        height: 950px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 1600px;
        height: 400px;
        font-size: 210px;
        line-height: 200px;
    }

    .high-optimized ._card {
        margin-left: 20px;
    }

    .high-optimized .context_title {
        width: 550px;
        height: 32px;
        font-size: 32px;
        line-height: 32px;
    }

    .high-optimized .context_subtitle {
        width: 550px;
        height: 50px;
        font-size: 16px;
        line-height: 26px;
    }

    .end {
        min-height: 1100px;
    }

    .end .context {
        margin-top: 350px;
        /* width: 530px; */
        font-size: 32px;
        line-height: 45px;
    }

    .end .email {
        font-size: 165px;
        line-height: 200px;
    }

    .end .image {
        width: 250px;
        height: 75px;
    }

    .end .terms {
        height: 110px;
        width: 210px;
        font-size: 14px;
    }
}

/* 适配平板设备 (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 1rem 2%;
    }

    .home {
        min-height: 800px;
        justify-content: center;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 40px;
        left: 40px;
        top: 60px;
        width: 300px;
    }

    .home .revenue-text_2 {
        top: 120px;
    }

    .home .revenue-text_3 {
        top: 180px;
    }

    .home .revenue-text_4 {
        font-size: 14px;
        left: 40px;
        top: 240px;
        width: 300px;
        height: 40px;
        line-height: 16px;
    }

    .home .button-container {
        left: 40px;
        top: 300px;
        gap: 6px;
        flex-direction: column;
    }

    .home .btn {
        width: 140px;
        height: 50px;
        font-size: 12px;
    }

    .home .revenue-image {
        left: 400px;
        top: 40px;
        width: 350px;
        height: 350px;
    }

    .home .revenue-image .adobe-image_1 {
        left: 40px;
        width: 40px;
        height: 30px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_2 {
        top: 40px;
        left: 28px;
        width: 110px;
        height: 130px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_3 {
        top: 170px;
        left: 40px;
        width: 25px;
        height: 20px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_4 {
        top: 200px;
        left: 3px;
        width: 45px;
        height: 45px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_5 {
        top: 80px;
        left: 150px;
        width: 110px;
        height: 110px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_6 {
        top: 170px;
        left: 120px;
        width: 110px;
        height: 90px;
        background-size: 100% 100%;
    }

    .home .revenue-image .adobe-image_7 {
        top: 30px;
        left: 230px;
        width: 20px;
        height: 20px;
        background-size: 100% 100%;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 600px;
        height: 90px;
        font-size: 90px;
        line-height: 90px;
    }

    .user-acquisition {
        min-height: 600px;
        flex-direction: column;
    }

    .user-acquisition .context_title {
        font-size: 35px;
        line-height: 45px;
    }

    .user-acquisition .context_subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .user-acquisition .title_left {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .user-acquisition .subtitle_left {
        position: static;
        width: 80%;
        text-align: center;
        margin: 10px auto;
    }

    .user-acquisition ._image_left {
        position: static;
        margin: 20px auto;
        width: 250px;
        height: 180px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .user-acquisition .subtitle_right {
        position: static;
        width: 80%;
        text-align: center;
        margin: 10px auto;
    }

    .user-acquisition ._image_right {
        position: static;
        margin: 20px auto;
        width: 250px;
        height: 180px;
        background-size: 100% 100%;
    }

    .cpa-cpe {
        min-height: 600px;
    }

    .cpa-cpe .context_title {
        font-size: 35px;
        line-height: 45px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    .cpa-cpe .context_1 {
        position: static;
        margin: 20px 40px;
        width: 100%;
    }

    .cpa-cpe .context_2 {
        position: static;
        margin: 10px 40px;
        width: 100%;
    }

    .cpa-cpe .context_3 {
        position: static;
        margin: 20px 40px;
        width: 100%;
    }

    .cpa-cpe .context_4 {
        position: static;
        margin: 10px 40px;
        width: 100%;
    }

    .cpa-cpe .context_5 {
        position: static;
        margin: 20px 40px;
        width: 100%;
    }

    .cpa-cpe .context_6 {
        position: static;
        margin: 10px 40px;
        width: 100%;
    }

    .cpa-cpe ._image_right {
        position: static;
        margin: 20px auto;
        width: 250px;
        height: 300px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 550px;
        height: 160px;
        font-size: 90px;
        line-height: 90px;
    }

    .high-optimized {
        flex-direction: column;
        min-height: 400px;
    }

    .high-optimized ._card {
        margin-left: 0;
        margin-bottom: 10px;
        transform: scale(0.7);
    }

    .high-optimized .context_title {
        width: 250px;
        height: 16px;
        font-size: 16px;
        line-height: 16px;
    }

    .high-optimized .context_subtitle {
        width: 250px;
        height: 20px;
        font-size: 10px;
        line-height: 14px;
    }

    .end {
        min-height: 600px;
    }

    .end .context {
        margin-top: 100px;
        /* width: 240px; */
        font-size: 16px;
        line-height: 22px;
    }

    .end .email {
        font-size: 60px;
        line-height: 75px;
    }

    .end .image {
        width: 140px;
        height: 40px;
    }

    .end .terms {
        height: 50px;
        width: 100px;
        font-size: 8px;
    }
}

/* 适配手机设备 (最大768px) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 2%;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .home {
        min-height: 400px;
        background-size: contain;
        justify-content: center;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 28px;
        left: 20px;
        top: 40px;
        width: 250px;
    }

    .home .revenue-text_2 {
        top: 90px;
    }

    .home .revenue-text_3 {
        top: 140px;
    }

    .home .revenue-text_4 {
        font-size: 12px;
        left: 20px;
        top: 190px;
        width: 250px;
        height: 35px;
        line-height: 14px;
    }

    .home .button-container {
        left: 20px;
        top: 240px;
        gap: 10px;
        flex-direction: column;
    }

    .home .btn {
        width: 120px;
        height: 40px;
        font-size: 10px;
    }

    .home .revenue-image {
        display: none;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 90%;
        height: 60px;
        font-size: 40px;
        line-height: 60px;
    }

    .user-acquisition {
        min-height: 800px;
        flex-direction: column;
    }

    .user-acquisition .context_title {
        font-size: 24px;
        line-height: 30px;
    }

    .user-acquisition .context_subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .user-acquisition .title_left {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .user-acquisition .subtitle_left {
        position: static;
        width: 90%;
        text-align: center;
        margin: 10px auto;
    }

    .user-acquisition ._image_left {
        position: static;
        margin: 20px auto;
        width: 200px;
        height: 150px;
        background-size: 100% 100%;
    }

    .user-acquisition .title_right {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .user-acquisition .subtitle_right {
        position: static;
        width: 90%;
        text-align: center;
        margin: 10px auto;
    }

    .user-acquisition ._image_right {
        position: static;
        margin: 20px auto;
        width: 200px;
        height: 150px;
        background-size: 100% 100%;
    }

    .cpa-cpe {
        min-height: 800px;
    }

    .cpa-cpe .context_title {
        font-size: 24px;
        line-height: 30px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .cpa-cpe .context_1 {
        position: static;
        margin: 20px 20px;
        width: 100%;
    }

    .cpa-cpe .context_2 {
        position: static;
        margin: 10px 20px;
        width: 100%;
    }

    .cpa-cpe .context_3 {
        position: static;
        margin: 20px 20px;
        width: 100%;
    }

    .cpa-cpe .context_4 {
        position: static;
        margin: 10px 20px;
        width: 100%;
    }

    .cpa-cpe .context_5 {
        position: static;
        margin: 20px 20px;
        width: 100%;
    }

    .cpa-cpe .context_6 {
        position: static;
        margin: 10px 20px;
        width: 100%;
    }

    .cpa-cpe ._image_right {
        position: static;
        margin: 20px auto;
        width: 200px;
        height: 250px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 90%;
        height: 100px;
        font-size: 40px;
        line-height: 50px;
    }

    .high-optimized {
        flex-direction: column;
        min-height: 500px;
    }

    .high-optimized ._card {
        margin-left: 0;
        margin-bottom: 15px;
        transform: scale(0.6);
    }

    .high-optimized .context_title {
        width: 200px;
        height: 14px;
        font-size: 14px;
        line-height: 14px;
    }

    .high-optimized .context_subtitle {
        width: 200px;
        height: 18px;
        font-size: 9px;
        line-height: 12px;
    }

    .end {
        min-height: 500px;
    }

    .end .context {
        margin-top: 80px;
        /* width: 200px; */
        font-size: 14px;
        line-height: 20px;
    }

    .end .email {
        font-size: 40px;
        line-height: 50px;
    }

    .end .image {
        width: 120px;
        height: 35px;
    }

    .end .terms {
        height: 40px;
        width: 80px;
        font-size: 7px;
    }
}

/* 适配小屏手机 (最大480px) */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.8rem 2%;
    }

    .logo {
        width: 100px;
        height: 35px;
    }

    .customer-service {
        width: 60px;
        height: 60px;
    }

    .home {
        min-height: 350px;
    }

    .home .revenue-text_1,
    .home .revenue-text_2,
    .home .revenue-text_3 {
        font-size: 22px;
        left: 15px;
        top: 30px;
        width: 200px;
    }

    .home .revenue-text_2 {
        top: 70px;
    }

    .home .revenue-text_3 {
        top: 110px;
    }

    .home .revenue-text_4 {
        font-size: 10px;
        left: 15px;
        top: 150px;
        width: 200px;
        height: 30px;
        line-height: 12px;
    }

    .home .button-container {
        left: 15px;
        top: 190px;
        gap: 8px;
    }

    .home .btn {
        width: 100px;
        height: 35px;
        font-size: 9px;
    }

    .results-drive .context,
    .campaign-types .context {
        width: 90%;
        height: 50px;
        font-size: 32px;
        line-height: 50px;
    }

    .user-acquisition .context_title {
        font-size: 20px;
        line-height: 26px;
    }

    .user-acquisition .context_subtitle {
        font-size: 12px;
        line-height: 18px;
    }

    .user-acquisition ._image_left,
    .user-acquisition ._image_right {
        width: 150px;
        height: 120px;
        background-size: 100% 100%;
    }

    .cpa-cpe .context_title {
        font-size: 20px;
        line-height: 26px;
    }

    .cpa-cpe .context_subtitle {
        font-size: 12px;
        line-height: 20px;
    }

    .cpa-cpe ._image_right {
        width: 150px;
        height: 200px;
        background-size: 100% 100%;
    }

    .remarkable-results .context {
        width: 90%;
        height: 80px;
        font-size: 32px;
        line-height: 40px;
    }

    .high-optimized ._card {
        transform: scale(0.5);
    }

    .high-optimized .context_title {
        width: 150px;
        height: 12px;
        font-size: 12px;
        line-height: 12px;
    }

    .high-optimized .context_subtitle {
        width: 150px;
        height: 15px;
        font-size: 8px;
        line-height: 10px;
    }

    .end .context {
        margin-top: 60px;
        /* width: 160px; */
        font-size: 12px;
        line-height: 18px;
    }

    .end .email {
        font-size: 30px;
        line-height: 40px;
    }

    .end .image {
        width: 100px;
        height: 30px;
    }

    .end .terms {
        height: 30px;
        width: 60px;
        font-size: 6px;
    }
}

/* 新增：修复1440px及以下屏幕尺寸下首页右侧留白问题 */
@media screen and (max-width: 1440px) {
    .home {
        justify-content: center;
    }
}

@media screen and (max-width: 1366px) {
    .home {
        justify-content: center;
    }
}

@media screen and (max-width: 1280px) {
    .home {
        justify-content: center;
    }
}

@media screen and (max-width: 1024px) {
    .home {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .home {
        justify-content: center;
    }
}