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

body {
    font-family: "Microsoft Yahei", sans-serif;
    line-height: 1.6;
    color: #333;
}
html,body {
    height: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 导航栏样式（语义化<nav>标签） */
.navbar {
    display: flex;
    column-gap: 108px;
    align-items: center;
    padding: 0 5%;
}
.navbar .nav {
    display: flex;
    column-gap: 32px;
}
.navbar .nav a {
    color: #000;
}
.navbar .nav a.active {
    color: #3b73e1;
}
.navbar .logo h1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cate {
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
}
.cate .head {box-shadow: 0 2px 6px 0 rgba(32, 33, 37, .1);z-index: 100;}
.help-main {width: 1200px;margin: 0 auto auto;}
.crumbs {display: flex;align-items: center;padding: 16px 0;font-size: 14px;color: #333;}
.crumbs a, .crumbs span {font-size: 14px;color: #333;}
.crumbs a:hover {color: #3C7EF1;}
.help-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
    align-items: center;
}

.help-lists .help-item {
    width: 380px;
    height: auto;
    padding: 24px;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 20px;
    margin-top: 20px;
    margin-left: 20px;
}

.help-lists .help-item:hover {
    border: 1px solid #3C7EF1;
    padding: 23px;
}

.help-lists .help-item:nth-of-type(3n-2) {
    margin-left: 0;
}

.help-lists .help-item:nth-of-type(1), .help-lists .help-item:nth-of-type(2), .help-lists .help-item:nth-of-type(3) {
    margin-top: 0;
}

.help-lists .help-item .item-thumb {
    width: 332px;
    height: 190px;
    border-radius: 12px;
    object-fit: cover;
}

.help-lists .help-item .help-right .help-name {
    font-weight: bold;
    font-size: 18px;
    color: #202125;
    line-height: 26px;
    height: 52px;
    text-align: left;
    font-style: normal;
    margin: 24px 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.help-lists .help-item .help-right .help-desc {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 26px;
    text-align: left;
    font-style: normal;
    border: 24px solid #f7f7f7;
    background: #F7F7F7;
    border-radius: 10px 10px 10px 10px;
    box-sizing: content-box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 52px;
}

.help-lists .help-item .help-right .help-update {
    margin-top: 24px;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 26px;
    text-align: left;
    font-style: normal;
    display: flex;
    align-items: center;
}

.help-pages {
    margin: 24px 0;
    display: flex;
    column-gap: 12px;
    justify-content: center;
}

.help-pages a {
    display: inline-block;
    background: #FFFFFF;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.16);
    border-radius: 6px 6px 6px 6px;
    font-weight: 400;
    font-size: 14px;
    padding: 6px 14px;
    color: #333333;
    text-align: center;
}

.help-pages a:hover, .help-pages a.active {
    color: #fff;
    background: #3C7EF1;
}

.help-content {
    width: 100%;
    display: inline-block;
    float: left;
}
.help-min2 {
    width: 100%;
    background: #FFF;
}
.help-min2 h2 {
    font-weight: bold;
    font-size: 30px;
    color: #202125;
    text-align: center;
    padding-top: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 24px;
}
.help-min2 .base-info {
    padding: 24px 0;
    column-gap: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #E4E4E4;
    margin: 0 24px;
}

.help-min2 .base-info span {
    font-size: 14px;
    color: #757575;
}

.help-min2 .base-info span a {
    font-size: 14px;
    color: #3C7EF1;
}

.help-min2 .base-info span a:hover {
    color: #3C7EF1;
}

.help-min2 .detail-content {
    padding: 5px 24px 24px;
    font-size: 16px;
    color: #333333;
    line-height: 26px;
}

.help-min2 .detail-content p img {
    margin: 16px auto;
    display: block;
    max-width: 50% !important;
    max-height: 300px;
    width: auto;
    height: auto;
    box-shadow: 0 0 5px 1px #3C7EF1;
    border-radius: 4px;
}

.help-min2 .detail-content p {
    font-size: 16px;
    color: #333333;
    line-height: 26px;
}

.help-min2 .detail-content h3 {
    background: #e7effd;
    font-weight: bold;
    font-size: 16px;
    color: #3C7EF1;
    padding: 8px 0 8px 24px;
    margin: 8px 0;
}

.help-min2 .detail-content a {
    color: #3C7EF1;
}

.help-min2 .pre-next-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 40px;
}

.help-min2 .pre-next-container .pre-container, .help-min2 .pre-next-container .next-container {
    display: flex;
    align-items: center;
    width: 358px;
    height: 43px;
    background: url(../img/pre.png);
}

.help-min2 .pre-next-container .pre-container span, .help-min2 .pre-next-container .next-container span {
    font-size: 14px;
    color: #333333;
    padding: 12px 16px;
}

.help-min2 .pre-next-container .pre-container p, .help-min2 .pre-next-container .next-container p {
    width: 238px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.help-min2 .pre-next-container .pre-container:hover, .help-min2 .pre-next-container .next-container:hover {
    background: url("../img/next.png");
}

.help-min3 {
    background: #fff;
    padding: 24px;
    margin: 24px 0 24px;
}
.module-name {
    background: url(../img/module-title-bg.png);
    width: 92px;
    height: 26px;
    display: inline-block;
    background-size: 92px 26px;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    padding-left: 10px;
}
.help-min3 .lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.help-min3 .lists .item {
    width: 49%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #E4E4E3;
    padding: 16px;
    margin-top: 24px;
}

.help-min3 .lists .item:hover {
    background: #D5E4FD7F;
    border: 1px solid #3C7EF1;
}

.help-min3 .lists .item:hover .item-name, .help-min3 .lists .item:hover .item-desc {
    color: #3C7EF1;
}

.help-min3 .lists .item:nth-of-type(1), .help-min3 .lists .item:nth-of-type(2) {
    margin-top: 16px;
}

.help-min3 .lists .item .item-name {
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 8px;
}

.help-min3 .lists .item .item-desc {
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp:2;
}


.mobile-code {
    position: fixed;
    bottom: 50%;
    right: 10px;
    width: 28px;
    background-color: #fff;
    padding: 4px;
    background-size: 28px;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-origin: content-box;
    box-sizing: content-box;
    height: 28px;
    cursor: pointer;
    display: flex;
    background-image: url(/statics/2025/img/icon_index_android1.png);
}
/* 底部区域（语义化<footer>标签） */
footer {
    background-color: #1A1A1A;
    color: #fff;
    text-align: center;
    padding: 1.5rem 5%;
    font-size: .875rem;
    line-height: 1.5rem;
    margin-top: auto;
}

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

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

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

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

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

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

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

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

/* 响应式媒体查询 - 移动端适配 */
@media (max-width: 768px) {
    .head {
    }
    .navbar {
        gap: 1rem;
        justify-content: space-between;
        padding: 0 1rem;
    }
    .navbar .nav {
        font-size: .875rem;
    }

    .navbar .logo img {
        height: 4rem;
        width: auto;
        margin-left: -1.5rem;
    }
    .phone-mockup-container {
        width: 250px;
        height: 500px;
    }

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

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

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

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

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

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

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

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

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

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

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

    .help-main {
        width: 100%;
        margin:0;
    }
    .cate {background-color: #fff;}
    .crumbs {
        background-color: #f2f2f2;
        padding: .5rem 1rem;
        white-space: nowrap;
        font-size: .75rem;
        position: relative;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }
    .crumbs a,.crumbs span {
        font-size: .75rem;
        line-height: normal;
    }
    .help-lists {
        display: flex;
        row-gap: 1rem;
        background-color: #fff;
        padding: 1rem 1rem 0;
        margin-bottom: 0;
    }
    
    .help-lists .help-item {
        width: 100%;
        height: auto;
        padding: 0;
        border-radius: unset;
        margin-top: 0;
        margin-left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .help-lists .help-item:hover {
        padding: 0;
        border: unset;
    }
    .help-lists .help-item:nth-of-type(1), .help-lists .help-item:nth-of-type(2), .help-lists .help-item:nth-of-type(3) {
        margin-top: 0;
    }
    
    .help-lists .help-item .item-thumb {
        width: 7.5rem;
        height: 5rem;
        border-radius: .375rem;
        object-fit: cover;
    }
    
    .help-lists .help-item .help-right {
        height: 5rem;
        border-bottom: .125rem solid #DDDDDD;
        width: calc(100vw - 10.5rem);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .help-lists .help-item .help-right .help-name {
        font-size: 1rem;
        line-height: 1.25rem;
        margin: auto 0;
        height: auto;
        -webkit-line-clamp: 2;
    }
    
    .help-lists .help-item .help-right .help-desc {
        display: none;
    }
    
    .help-lists .help-item .help-right .help-update {
        margin: 0 0 auto 0;
        font-size: .8rem;
        line-height: 1rem;
    }
    .help-pages {
        margin: 0;
        padding: 1.5rem 0;
        column-gap: 0.5rem;
        background-color: #fff;
    }
    
    .help-pages a {
        padding: .25rem .5625rem;
        font-size: .8rem;
        border-radius: .25rem;
    }

    .bar {
        display: block;
        height: .5rem;
        background: #f5f5f5;
        width: 100%;
    }

    .help-min2 {
        width: 100%;
        background: #FFFFFF;
    }
    .help-min2 h2 {
        font-size: 1.125rem;
        padding: 0 1rem;
        margin: 1rem 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        white-space: normal;
        -webkit-line-clamp: 2;
    }
    .help-min2 .base-info {
        padding: 0 0 1rem;
        margin: 0 1rem;
        column-gap: 1rem;
    }
    .help-min2 .base-info span {
        font-size: .875rem;
    }
    .help-min2 .base-info span a {
        font-size: .875rem;
    }
    .help-min2 .detail-content {
        padding: 1rem;
        font-size: .875rem;
        line-height: 1.5rem;
    }
    .help-min2 .detail-content p {
        font-size: .875rem;
        line-height: 1.5rem;
        padding: 0;
        margin: 0;
    }
    .help-min2 .detail-content p img {
        margin: .875rem auto;
        display: block;
        max-width: 50% !important;
        max-height: 18rem;
        width: auto;
        height: auto;
        border-radius: .25rem;
        box-shadow: 0 0 5px 1px #3d7ff2;
    }
    .help-min2 .detail-content h3 {
        font-size: .875rem;
        padding: .5rem;
        margin: .5rem 0;
    }
    .module-name {
        background: url(../img/module-title-bg.png);
        width: 5.75rem;
        height: 1.625rem;
        display: inline-block;
        background-size: 5.75rem 1.625rem;
        font-weight: bold;
        font-size: 1.25rem;
        color: #333333;
        padding-left: .625rem;
    }
    
    .help-min3 {
        background: #fff;
        padding: 1rem 1rem 1.375rem;
        margin: 0;
    }
    .help-min3 .lists {
        display: block;
    }
    
    .help-min3 .lists .item {
        width: auto;
        display: block;
        height: auto;
        border-radius: .5rem;
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .help-min3 .lists .item:nth-of-type(1), .help-min3 .lists .item:nth-of-type(2) {
        margin-top: 1rem;
    }
    
    .help-min3 .lists .item .item-name {
        font-size: 1rem;
        margin-bottom: .25rem;
    }
    
    .help-min3 .lists .item .item-desc {
        font-size: .875rem;
        line-height: 1.5rem;
        height: 3rem;
    }

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