body {
    width: 100%;
    background: black;
    color: #ffffff;
    overflow-x: hidden;
}
.page_one_container {
    padding-top: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.page_one_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.page_one_logo {
    width: 240px;
    margin-bottom: 40px;
}
.page_one_container_bg_box {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
.page_one_container_bg_top_left {
    position: absolute;
    top: 0;
    left: 0;
    width: 136px;
    height: 142px;
    background: url("../img/page_one_bg_top_left.webp") no-repeat;
    background-size: 100% 100%;
}
.page_one_container_bg_top_right {
    position: absolute;
    left: 72%;
    top: -6%;
    height: 80%;
    width: 32%;
    background: url("../img/page_one_bg_top_right.webp") no-repeat;
    background-size: 100% 100%;
}
.page_title {
    font-weight: 600;
    font-size: 60px;
    color: #FFFFFF;
    text-align: center;
}
.page_title .page_one_title_color {
    background: linear-gradient(to bottom, #75BAFF, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_desc {
    margin-top: 40px;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    text-align: center;
}
.pr_ic {
    height: 26px;
    margin: 0 8px;
}
.page_download_btn_bg {
    width: 382px;
    height: 94px;
    background: rgba(255,255,255,0.3);
    padding: 2px;
    position: relative;
    border-radius: 16px;
    font-size: 24px;
}
.page_download_btn_bg:hover {
    transition: .3s linear background-color;
    background: linear-gradient(135deg, rgba(0, 247, 244, 1), rgba(93, 132, 255, 1));
}
.page_download_btn {
    display: flex;
    align-items: center;
    padding-left: 20px;
    width: 100%;
    height: 100%;
    background: #050A1C;
    border-radius: 16px;
    border: none;
    font-weight: 500;

    color: #FFFFFF;
    position: relative;
}
.download_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.download_info_version {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.page_download_btn:active {
    transform: scale(1);
}

.first_download_btn_list {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.page_download_img {
    width: 40px;
    margin-right: 12px;
}

.download_arrow {
    position: absolute;
    right: 12px;
    width: 20px;
    transition: all .3s linear;
}
.page_download_btn_bg:hover .download_arrow {
    transform: rotate(175deg);
}
.mac_pack_list {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    background: #343A40;
    border-radius: 16px;
    padding: 8px;
    width: 100%;
    z-index: 2;
    top: 100%;
    transition: .3s linear opacity;
}
.page_download_btn_bg:hover .mac_pack_list {
    opacity: 1;
    pointer-events: visible;
}
.mac_pack_item {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #DEE2E6;
    cursor: pointer;
    padding-left: 24px;
    transition: .3s linear background-color;
    border-radius: 8px;
}
.mac_pack_item:hover {
    background-color: #3F464C;
}
.ic_small_mac {
    width: 22px;
    margin-right: 8px;
}
.page_one_info {
    opacity: 0;
    margin-top: 36px;
    font-weight: 400;
    font-size: 16px;
    color: #B7B7BB;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page_one_info_second {
    margin-top: 14px;
    display: flex;
    align-items: center;
}
.page_one_video_box {
    width: 1200px;
    height: 670px;
    border-radius: 40px;
    margin-top: 60px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(16px);
    padding: 24px;
    position: relative;
}
.page_one_video_bg {
    width: 100%;
    position: absolute;
    background: url("../img/page_one_bg_top_center.webp") no-repeat;
    background-size: 100% 100%;
    height: 62px;
    top: -62px;
    left: 0;
    pointer-events: none;
}
.page_one_video_content {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.ic_video_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
    z-index: 1;
    width: 10%;
}
.page_one_video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}
.page_two_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page_two_title_color {
    background: linear-gradient(to bottom, #FFA170, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_two_tab_list,.page_three_tab_list,.page_seven_tab_list {
    margin-top: 60px;
    display: flex;
    align-items: center;
    grid-gap: 80px;
}
.page_two_tab_item,.page_three_tab_item,.page_seven_tab_item {
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    opacity: .7;
    cursor: pointer;
    text-align: center;
}
.page_two_tab_item>.page_two_tab_item_line,.page_three_tab_item>.page_three_tab_item_line,.page_seven_tab_item>.page_seven_tab_item_line {
    width: 100%;
    height: 2px;
    margin-top: 4px;
    background: #FFFFFF;
    border-radius: 2px;
    opacity: 0;
}
.page_two_tab_item_active {
    font-weight: bold;
    background: linear-gradient(to bottom, #FFA170, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_three_tab_item_active {
    font-weight: bold;
    background: linear-gradient(to bottom, #707EFF, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_seven_tab_item_active {
    font-weight: bold;
    background: linear-gradient(to bottom, #F570FF, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_two_tab_item_active,.page_three_tab_item_active,.page_seven_tab_item_active {
    opacity: 1;
}
.page_two_tab_item_active>.page_two_tab_item_line,.page_three_tab_item_active>.page_three_tab_item_line,.page_seven_tab_item_active>.page_seven_tab_item_line {
    opacity: 1;
}
.page_two_tab_content {
    height: 636px;
    margin-top: 60px;
}

.page_two_tab_content_img,.page_three_tab_content_img,.img_page_five {
    height: 100%;
    display: none;
}
.page_two_tab_content_img_active,.page_three_tab_content_img_active,.page_five_tab_content_img_active {
    z-index: 1;
    display: inherit;
}

.page_three_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.page_three_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;

}
.page_three_bg_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.page_three_bg_left {
    width: 34%;
    position: absolute;
    background: url("../img/page_three_bg_left.webp") no-repeat;
    background-size: 100% 100%;
    height: 50%;
    top: -4%;
    left: 0;
}
.page_three_bg_right {
    width: 34%;
    position: absolute;
    background: url("../img/page_three_bg_right.webp") no-repeat;
    background-size: 100% 100%;
    height: 50%;
    top: 20%;
    right: 0;
}
.page_three_title_color {
    background: linear-gradient(to bottom, #707EFF, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_three_tab_content {
    margin-top: 60px;
    height: 720px;
}

.page_four_container {
    padding-top: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.page_four_bg {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 5%;
    pointer-events: none;
    background: url("../img/page_four_top_bg.webp") no-repeat;
    background-size: 100% 100%;
    width: 25%;
    height: 35%;
}

.page_four_title_color {
    background: linear-gradient(to bottom, #0080FF, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}

.page_four_list {
    margin-top: 100px;
    display: grid;
    grid-gap: 40px 40px;
    grid-template-rows: repeat(2,130px);
    grid-template-columns: repeat(2,600px);
}

.page_four_item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 28px;
    background: rgba(197,197,197,0.1);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(18px);
    padding: 0 28px;
    overflow: hidden;
    position: relative;
}
.page_four_item::after {
    content: '';

    position: absolute;
    width: 80%;
    height: 50%;
    background: url("../img/page_four_item_bg.png") no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}
.page_four_item_one::after {
    right: 0;
    top: 0;
}
.page_four_item_two::after {
    transform: rotate(-180deg);
    right: 0;
    bottom: 0;
}
.page_four_item_three::after {
    transform: rotate(-180deg);
    left: 0;
    bottom: 0;
}
.page_four_item_four::after {
    left: 0;
    top: 0;
}
.ic_page_four_item {
    width: 56px;
}
.page_four_item_info {
    margin-left: 24px;
    font-weight: 600;
    font-size: 28px;
    color: #FFFFFF;
}
.page_four_item_info p {
    margin-top: 5px;
    font-weight: 400;
    font-size: 20px;
    color: #7B7A88;
}
.page_four_download {
    margin-top: 82px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page_four_title_two_color {
    background: linear-gradient(to bottom, #FFED70, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_four_download_bg {
    width: 100%;
    position: absolute;
    pointer-events: none;
    bottom: -22.4%;
}
.page_four_title {
    z-index: 1;
    margin-top: 196px;
}
.page_four_download_btn {
    margin-top: 100px;
    width: 271px;
    height: 71px;
    background: #0080FF;
    border-radius: 12px;
    font-weight: 500;
    font-size: 28px;
    color: #FFFFFF;
    border: none;
    z-index: 1;
}
.page_five_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.page_five_bg_box {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
}
.page_five_bg {
    width: 34%;
    position: absolute;
    background: url("../img/page_five_bg.webp") no-repeat;
    background-size: 100% 100%;
    height: 60%;
    top: 20%;
    right: 0%;
}
.page_five_title_color {
    background: linear-gradient(to bottom, #70FFDD, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_five_content {
    margin-top: 60px;
    max-width: 1400px;
    display: flex;
    position: relative;
    z-index: 1;
}
.page_five_content_list {
    width: 400px;
    margin-right: 32px;
    grid-gap: 24px;
    display: flex;
    flex-direction: column;
}
.page_five_content_item {
    width: 100%;
    height: 180px;
    background: rgba(197,197,197,0.1);
    border-radius: 16px;
    padding: 25px 32px;
    font-weight: 600;
    font-size: 28px;
    color: #FFFFFF;
    cursor: pointer;
    border: 1px solid transparent;
}
.page_five_content_item_active {
    border: 1px solid #AAFDEB;
}
.page_five_content_item_active span {
    background: linear-gradient(to bottom, #70FFDD, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}

.page_five_content_item_desc {
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 16px;
}
.page_five_content_info {
    width: 996px;
    height: 672px;
}
.img_page_five {
    width: 100%;
}

.page_six_container {
    margin-top: 93px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background: #141414;
    padding: 98px 0 80px 0;
    position: relative;
}
.page_six_container_bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14%;
    height: 30%;
    background: url(../img/page_six_bg.webp) no-repeat;
    pointer-events: none;
    background-size: 100% 100%;
}
.page_six_list {
    margin-top: 60px;
    display: grid;
    grid-template-rows: repeat(1,312px);
    grid-template-columns: repeat(3,460px);
    align-items: center;
    grid-gap: 40px 40px;
}
.page_six_item {
    display: block;
    width: 100%;
    height: 100%;
    background: #262626;
    border-radius: 28px;
    padding: 16px;
}
.page_six_item_img {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    object-fit: cover;
}
.page_six_item_title {
    width: 100%;
  /*  white-space: nowrap;
    overflow: hidden; !* 隐藏溢出的内容 *!
    text-overflow: ellipsis; !* 显示省略号 *!*/
    margin-top: 20px;
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;

}
.page_six_item_desc {
    width: 100%;
    white-space: nowrap;
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 显示省略号 */
    margin-top: 12px;
    font-weight: 500;
    font-size: 18px;
    color: rgba(255,255,255,0.5);

}
.page_six_link {
    margin-top: 66px;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;

}
.contact_us_dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}
.contact_us_content {
    width: 320px;
    position: relative;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    padding: 28px 16px 16px 16px;
}
.contact_us_close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 12px;
    cursor: pointer;
}
.contact_us_title {
    color: #121212;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}
.contact_qr_box {
    width: 100%;
    padding: 20px;
}
.contact_qr {
    width: 100%;
}
.page_seven_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page_seven_title_color {
    background: linear-gradient(to bottom, #F570FF, #F9FBFE); /* 从左到右的线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字 */
    -webkit-text-fill-color: transparent; /* 使文字透明以显示背景 */
}
.page_seven_desc {
    display: flex;
    align-items: center;
    margin-top: 40px;
    grid-gap: 40px;
}
.page_seven_desc_item {
    display: flex;
    align-items: center;
}
.page_seven_desc_item .page_desc {
    margin-top: 0;
}
.page_seven_desc_item_img {
    width: 30px;
    margin-right: 20px;
}
.page_seven_tab_content {
    width: 100%;
    margin-top: 60px;
    height: 606px;
}
.page_seven_tab_content_item {
    width: 100%;
    height: 100%;
    display: none;
}
.page_seven_tab_content_img_active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.swap_item {
    width: 100%;
    height: 30%;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position-x: 0;
    will-change: background-position-x;
}
.swap_item_one {

    animation: swap_left 96s linear infinite;
}
.swap_item_two {
    margin-top: 18px;
    background-position-x: 10%;

    animation: swap_right 96s linear infinite;
}
.swap_item_three {
    margin-top: 18px;

    animation: swap_left 96s linear infinite;
}
.page_seven_tab_content_item_bg {
    height: 100%;
}
.swap_item_first_1_bg {
    background-image: url("../img/swap_item_one_1.webp");
}
.swap_item_first_2_bg {
    background-image: url("../img/swap_item_one_2.webp");
}
.swap_item_first_3_bg {
    background-image: url("../img/swap_item_one_3.webp");
}
.swap_item_second_1_bg {
    background-image: url("../img/swap_item_two_1.webp");
}
.swap_item_second_2_bg {
    background-image: url("../img/swap_item_two_2.webp");
}
.swap_item_second_3_bg {
    background-image: url("../img/swap_item_two_3.webp");
}
.page_two_container,.page_three_container,.page_five_container,.page_seven_container,.page_four_container {
    padding-top: 220px;
}
@keyframes swap_left {
  100% {
      background-position-x: -3822px;
  }
}
@keyframes swap_right {
    100% {
        background-position-x: 3822px;
    }
}
@media  (max-width: 1680px){
    .page_download_btn_bg {
        width: 372px;
        height: 84px;
    }
    .mac_pack_item {
        font-size: 18px;
    }
    .download_info_version {

    }
    .page_two_tab_content {
        height: 550px;
    }
    .page_three_tab_content {
        height: 650px;
    }
    .page_five_content_info {
        width: 800px;
        height: 552px;
    }
    .page_four_download_btn {
        width: 220px;
        height: 66px;
        font-size: 24px;
    }
}
@media  (max-width: 1439px){
    .page_title {
        font-size: 48px;
    }
    .page_desc {
        font-size: 16px;
    }
    .page_one_info {
        font-size: 14px;
    }
    .download_info_version {
        font-size: 12px;
    }
    .page_download_img {
        width: 32px;
    }
    .pr_ic {
        height: 22px;
    }
    .page_one_video_box {
        width: 900px;
        height: 502px;
    }
    .page_two_tab_item, .page_three_tab_item,.page_seven_tab_item {
        font-size: 18px;
    }
    .page_desc {
        margin-top: 30px;
    }
    .page_two_tab_content {
        height: 450px;
    }
    .page_three_tab_content {
        height: 500px;
    }
    .page_five_content_list {
        width: 360px;
    }
    .page_five_content_item {
        font-size: 22px;
        height: 160px;
    }
    .page_five_content_item_desc {
        font-size: 16px;
    }
    .page_five_content_info {
        width: 680px;
        height: 440px;
    }
    .page_four_item {
        border-radius: 20px;
    }
    .page_four_item_info {
        font-size: 20px;
    }
    .page_four_item_info p {
        font-size: 16px;
    }
    .page_four_list {
        grid-template-columns: repeat(2,500px);
    }
    .page_four_download_btn {
        width: 180px;
        height: 56px;
        font-size: 18px;
    }
    .page_six_list {
        grid-template-rows: repeat(1,240px);
        grid-template-columns: repeat(3,240px);
    }
    .page_six_item {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    .page_six_item_img {
        height: 130px;
    }
    .page_six_item_title {
        font-size: 20px;
        margin-top: 12px;
    }
    .page_six_item_desc {
        font-size: 16px;
        margin-top: 8px;
    }
    .page_two_tab_list, .page_three_tab_list, .page_seven_tab_list {
        gap: 40px;
    }
}
@media (max-width: 1279px) {
    .first_download_btn_list {
        gap: 0 10px;
    }
    .page_download_btn_bg {
        width: 350px;
        height: 68px;
        font-size: 20px;
    }
    .page_title {
        font-size: 36px;
    }
    .page_desc {
        font-size: 18px;
        margin-top: 24px;
        padding: 0 40px;
    }
    .page_seven_desc_item .page_desc {
       padding: 0;
    }

    .page_one_video_box {
        width: 720px;
        height: 402px;
        padding: 16px;
    }
    .page_two_container,.page_three_container,.page_five_container,.page_four_container,.page_seven_container {
        padding-top: 80px;
    }
    .page_two_tab_content {
        height: 324px;
    }
    .page_three_tab_content {
        height: 360px;
    }
    .page_five_content {
        flex-direction: column;
        align-items: center;
    }
    .page_five_content_list {
        margin-right: 0;
        width: 100%;

    }
    .page_five_content_item {
        font-size: 20px;
        height: 112px;
        padding: 18px 22px;
    }
    .page_five_content_item_desc {
        margin-top: 12px;
    }
    .page_five_content_info {
        width: 640px;
        margin-top: 40px;
    }
    .page_four_list {
        display: grid;
        grid-gap: 40px 40px;
        grid-template-rows: repeat(4,130px);
        grid-template-columns: repeat(1,640px);
    }
    .page_six_link {
        font-size: 16px;
    }
    .page_six_list {
        grid-template-rows: repeat(1,240px);
        grid-template-columns: repeat(3,240px);
    }
}
@media (max-width: 750px) {
    .page_title {
        font-size: 32px;
    }
    .wechat_box {
        display: none;
    }
    .page_one_container {
        padding-top: 32px;
    }
    .page_desc {
        margin-top: 24px;
        font-size: 14px;
        padding: 0 32px;
    }
    .page_seven_desc_item .page_desc {
        padding: 0;
    }
    .first_download_btn_list {
        flex-direction: column;
        gap: 20px;
    }


    .first_download_btn_list {
        margin-top: 36px;
    }

    .page_download_img {
        width: 24px;
    }
    .pr_ic {
        display: none;
    }
    .page_one_info {
        padding: 0 4px;
        font-size: 12px;
        display: inline-block;
        align-items: inherit;
        text-align: center;
    }
    .page_one_video_box {
        width: 330px;
        height: 196px;
        padding: 4px;
        margin-top: 36px;
        border-radius: 16px;
    }
    .page_one_video_content {
        border-radius: 12px;
    }
    .page_two_tab_list, .page_three_tab_list,.page_seven_tab_list {
        margin-top: 24px;
        grid-gap: 24px;
    }
    .page_two_tab_item, .page_three_tab_item,.page_seven_tab_item {
        font-size: 14px;
    }
    .page_two_container, .page_three_container, .page_five_container, .page_four_container,.page_seven_container {
        padding-top: 40px;
    }
    .page_two_tab_content {
        margin-top: 36px;
        height: 160px;
    }
    .page_three_tab_content {
        margin-top: 36px;
        height: 180px;
    }
    .page_seven_tab_content {
        margin-top: 30px;
    }
    .page_five_content_list {
        grid-gap: 20px;
        padding: 0 25px;
    }
    .page_five_content_item {
        height: 94px;
        font-size: 18px;
        padding: 16px;
    }
    .page_five_content_item_desc {
        margin-top: 8px;
        font-size: 13px;
    }
    .page_five_content {
        margin-top: 30px;
    }
    .page_five_content_info {
        margin-top: 24px;
        width: 325px;
        height: 223px;
    }
    .page_four_list {
        margin-top: 40px;
        grid-gap: 20px 20px;
        grid-template-rows: repeat(4,120px);
        grid-template-columns: repeat(1,315px);
    }
    .page_four_item_info {
        font-size: 18px;
        margin-left: 16px;
    }
    .page_four_item_info p {
        font-size: 13px;
    }
    .ic_page_four_item {
        width: 40px;
    }
    .page_four_item {
        padding: 0 18px;
    }
    .page_four_download {
        margin-top: 24px;
    }
    .page_four_title {
        margin-top: 50px;
    }
    .page_four_download_btn {
        margin-top: 40px;
        width: 135px;
        height: 44px;
        font-size: 16px;
    }
    .page_six_container {
        margin-top: 40px;
        padding: 40px 0;
    }
    .page_six_list {
        margin-top: 30px;
        grid-gap: 20px 20px;
        grid-template-rows: repeat(1,240px);
        grid-template-columns: repeat(1,240px);
    }
    .page_six_item {
        padding: 12px;
        border-radius: 16px;
    }
    .page_six_item_img {
        border-radius: 12px;
        height: 152px;
    }
    .page_six_item_title {
        font-size: 16px;
        margin-top: 4px;
    }
    .page_six_item_desc {
        font-size: 12px;
        margin-top: 4px;
    }
    .page_six_link {
        margin-top: 24px;
        font-size: 14px;
    }
    .page_seven_tab_content {
        height: 400px;
    }
    .swap_item_two {
        margin-top: 12px;
    }
    .swap_item_three {
        margin-top: 12px;
    }
}
