@charset "utf-8";

:root {
    --primary-color: #7c4fe0;
    --secondary-color: #4528DC;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 400;
}

.main {
    position: relative;
    background-image: url('../imgs/background.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
    z-index: 1;
}

/* 顶部区域 */
.header-section {
    flex: 0 0 auto;
    padding: 1rem 0;
    visibility: visible;
    opacity: 1;
    z-index: 100;
    position: relative;
}

footer {
    background-color: #f8f9fa;
    padding: 0.5rem 0;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 12px;
}

/* 中间内容区域 */
.content-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.main-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 下载区域 */
.download-section {
    flex: 0 0 auto;
    padding: 2rem 1rem;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)); */
    border-radius: 20px 20px 0 0;
    margin-top: auto;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.download-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.4rem !important;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 60px;
    border: none;
    color: white !important;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.android-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.ios-btn {
    background: linear-gradient(135deg, #007AFF, #0056CC);
    color: white;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .main {
        background-attachment: scroll;
    }

    .main-title {
        font-size: 2rem;
    }

    .download-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .download-btn {
        min-height: 50px;
        padding: 0.75rem 1rem;
        font-size: 1.2rem !important;
        color: white !important;
    }

    .copyright {
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    /* 在 PC 上模拟移动视口：固定尺寸 375x667，居中显示 */
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0;
        background-color: #000; /* 两侧留黑（可按需改） */
        overflow: visible;
    }

    .page-content {
        width: 575px;
        height: 667px;
        margin: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: transparent;
        overflow: visible;
    }

    .main {
        width: 100%;
        height: 100%;
        background-size: contain;
        background-attachment: scroll;
        background-position: center top;
        display: flex;
        flex-direction: column;
        overflow: visible;
        z-index: auto;
    }

    /* 使用移动端的 logo/文字尺寸，确保可见 */
    .logo {
        width: 2.5rem;
        display: block;
        visibility: visible;
        opacity: 1;
        z-index: 200;
    }

    .logo-text {
        font-size: 18px;
        visibility: visible;
        opacity: 1;
        color: #fff;
        z-index: 200;
    }

    .main-title {
        font-size: 2rem;
    }

    footer {
        width: 100%;
        box-sizing: border-box;
    }
}

.logo {
    width: 2.5rem;
    /* padding: 1.5rem 0rem; */
}

@media (max-width: 768px) {
    .logo {
        width: 2.5rem;
    }

    .t-slogan {
        text-align: center;
    }
}

.icon {
    width: 2.4rem;
}

.icon-free {
    width: 4.8rem;
}

.has-overlay.overlay-gradient::after {
    background: linear-gradient(-47deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.has-overlay::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    opacity: 0.94;
    z-index: -1;
}

.shape-bottom {
    position: absolute;
    inset: auto 0px -1px;
}

.main .shape-bottom svg {
    overflow: hidden;
    width: 100%;
    line-height: 0;
    direction: ltr;
    transform: rotate(180deg);
}

#mobile-pic {
    position: absolute;
    width: 8.5rem;
    top: 4rem;
    left: 3.5rem;
}

.btn-outline {
    border-color: white;
    color: white;
}

.map {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
}

.map::after {
    padding-top: 80%;
    content: "";
    display: block;
    width: 100%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-1rem);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes grow {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.pic-x {
    position: absolute;
    width: 7.2rem;
    left: -1rem;
    top: 9.3rem;
    transform: scale(0);
    animation: 0.3s linear 3.9s 1 normal none running grow, 4s ease-in-out 4.2s infinite normal none running float;
}

.pic-facebook {
    position: absolute;
    width: 8rem;
    left: 3.2rem;
    transform: scale(0);
    animation: 0.3s linear 3.3s 1 normal none running grow, 4s ease-in-out 3.6s infinite normal none running float;
}

.pic-google {
    position: absolute;
    width: 8rem;
    left: 3.1rem;
    top: 7.1rem;
    transform: scale(0);
    animation: 0.3s linear 3s 1 normal none running grow, 4s ease-in-out 3.3s infinite normal none running float;
}

.pic-app {
    position: absolute;
    width: 10.8rem;
    margin: 0px auto;
    top: 5rem;
    left: 0px;
    right: 0px;
    transform: scale(0);
    animation: 0.4s linear 2s 1 normal none running grow, 4s linear 2.4s infinite normal none running pulse;
}

.pic-chatgpt {
    position: absolute;
    width: 8rem;
    right: 4.5rem;
    top: 2.7rem;
    transform: scale(0);
    animation: 0.3s linear 2.4s 1 normal none running grow, 4s ease-in-out 2.7s infinite normal none running float;
}

.pic-ins {
    position: absolute;
    width: 8rem;
    right: 2.4rem;
    top: 8.7rem;
    transform: scale(0);
    animation: 0.3s linear 2.7s 1 normal none running grow, 4s ease-in-out 3s infinite normal none running float;
}

.pic-youtube {
    position: absolute;
    width: 6.8rem;
    right: -0.1rem;
    top: 4.8rem;
    transform: scale(0);
    animation: 0.3s linear 3.6s 1 normal none running grow, 4s ease-in-out 3.9s infinite normal none running float;
}

.info-1 {
    background: linear-gradient(rgb(248, 251, 254) 0%, rgb(255, 255, 255) 100%);
    border-radius: 44.4rem 0px 0px;
}

footer {
    background-color: rgb(10, 22, 43);
    color: white;
}

.footer-area li {
    margin: 0px;
}

@media (min-width: 576px) {
    .pic-x {
        width: 8rem;
        right: 5.4rem;
        top: 10.7rem;
    }

    .pic-facebook {
        width: 8.8rem;
        left: 3.2rem;
        top: 2.5rem;
    }

    .pic-google {
        width: 8.8rem;
        left: 3.6rem;
        top: 9.1rem;
    }

    .pic-app {
        width: 10.8rem;
        margin: 0px auto;
        top: 5rem;
        left: 0px;
        right: 0px;
    }

    .pic-chatgpt {
        width: 8rem;
        right: 5.5rem;
        top: 3.7rem;
    }

    .pic-ins {
        width: 8rem;
        right: 2.4rem;
        top: 10.7rem;
    }

    .pic-youtube {
        width: 6.8rem;
        right: -0.1rem;
        top: 5.8rem;
    }
}

@media (min-width: 768px) {
    .desc {
        max-width: 75%;
    }

    .pic-x {
        width: 8rem;
        right: 5.4rem;
        top: 18.7rem;
    }

    .pic-facebook {
        width: 8.8rem;
        left: 3.2rem;
        top: 2.5rem;
    }

    .pic-google {
        width: 8.8rem;
        left: 3.6rem;
        top: 15.1rem;
    }

    .pic-app {
        width: 10.8rem;
        margin: 0px auto;
        top: 10rem;
        left: 0px;
        right: 0px;
    }

    .pic-chatgpt {
        width: 8rem;
        right: 8.5rem;
        top: 4.7rem;
    }

    .pic-ins {
        width: 8rem;
        right: 4.7rem;
        top: 18.7rem;
    }

    .pic-youtube {
        width: 8.8rem;
        right: 0.8rem;
        top: 8.8rem;
    }
}

@media (min-width: 992px) {
    .pic-x {
        width: 12.4rem;
        right: 7.4rem;
        top: 24.7rem;
    }

    .pic-facebook {
        width: 13.2rem;
        left: 5.2rem;
        top: 6.5rem;
    }

    .pic-google {
        width: 13.5rem;
        left: 5.6rem;
        top: 20.1rem;
    }

    .pic-app {
        width: 15.8rem;
        margin: 0px auto;
        top: 13rem;
        left: 0px;
        right: 0px;
    }

    .pic-chatgpt {
        width: 11.6rem;
        right: 16.5rem;
        top: 6.7rem;
    }

    .pic-ins {
        width: 12.8rem;
        right: 4.7rem;
        top: 25.7rem;
    }

    .pic-youtube {
        width: 11.8rem;
        right: 1.8rem;
        top: 9.8rem;
    }
}

@media (min-width: 1400px) {
    .pic-x {
        width: 12.4rem;
        right: 7.4rem;
        top: 30.7rem;
    }

    .pic-facebook {
        width: 13.2rem;
        left: 7.2rem;
        top: 6.5rem;
    }

    .pic-google {
        width: 13.5rem;
        left: 7.6rem;
        top: 20.1rem;
    }

    .pic-app {
        width: 15.8rem;
        margin: 0px auto;
        top: 15rem;
        left: 0px;
        right: 0px;
    }

    .pic-chatgpt {
        width: 11.6rem;
        right: 18.5rem;
        top: 8.7rem;
    }

    .pic-ins {
        width: 12.8rem;
        right: 4.7rem;
        top: 33.7rem;
    }

    .pic-youtube {
        width: 12.3rem;
        right: 3.8rem;
        top: 12.8rem;
    }
}

.download-link {
    text-decoration: none;
}

.download-link:hover {
    cursor: pointer;
}

.accordion-item {
    padding: 0.8rem 0px;
}

@font-face {
    font-family: icomoon;
    src: url("../assets/fonts/icomoon.ttf?wcy66") format("truetype"), url("../assets/fonts/icomoon.woff?wcy66") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.05rem;
    font-family: icomoon !important;
    font-weight: 400 !important;
}

.icon-macos::before {
    content: "";
}

.bottom-download-img {
    width: 2.4rem;
}

@media (max-width: 576px) {
    .bottom-download-img {
        width: 1.8rem;
    }

    #mobile-pic {
        width: 5.5rem;
    }
}