﻿*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-touch-callout: none;
}

@font-face {
    font-family: 'Lato-Bold';
    src: url(../font/Lato-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato-Regular';
    src: url(../font/Lato-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'NotoSansCherokee-SemiBold';
    src: url(../font/NotoSansCherokee-SemiBold.ttf) format('truetype');
}

body{
    font-family: 'Lato-Bold', sans-serif;
    background-color: #141414;
    color: white;
}

/* 确保页面一直使用明亮的颜色方案 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #141414; /* 设置明亮的背景颜色 */
        color: white; /* 设置明亮的文本颜色 */
    }
}

.font-regular{
    font-family: 'Lato-Regular', sans-serif;
}

.font-header-title{
    font-family: 'NotoSansCherokee-SemiBold', sans-serif;
    font-size: calc(1.25rem + 1.5vw) !important;
}

@media (min-width: 1320px) {
    .font-header-title{
        font-size: 2.8rem !important;
    }
}

img{
    -moz-user-select: none; /* 火狐浏览器专用，禁止选择 */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

html,body{
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
    -webkit-text-size-adjust: 100%;
}

.start-page{
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: hidden;
    position: relative;
    width: 100vw;
}

.start-page .content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    width: 100%;
    z-index: 2;
}

.content-box {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1320px;
    color: white;
    overflow-x: hidden;
}

a {
    color: white;
    text-decoration: none;
}

.header-icon-overlay{
    position: fixed;
    z-index: 500;
    height: 100px;
    background: linear-gradient(to bottom, rgba(150, 0, 49, 0.4), rgba(150, 0, 49, 0));
    pointer-events: none;
}

.icon-row{
    position: fixed;
    z-index: 999;
    color: white;
    height: 64px;
    width: 100%;
    margin-bottom: auto;
    max-width: 1320px;
}

.youtube-icon,
.tiktok-icon,
.pinterest-icon,
.X-icon {
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.youtube-icon {
    width: 34px;
    height: 32px;
    background-image: url(../image/nav_icon_youtube.webp); /* YouTube图标 */
}

.tiktok-icon {
    width: 32px;
    height: 32px;
    background-image: url(../image/nav_icon_tiktok.webp); /* TikTok图标 */
}

.pinterest-icon {
    width: 32px;
    height: 32px;
    background-image: url(../image/nav_icon_pinterest.webp); /* pinterest图标 */
}

.X-icon {
    width: 32px;
    height: 32px;
    background-image: url(../image/nav_icon_x.webp); /* X图标 */
}

/* 为移动设备设置较小的宽度和高度 */
@media only screen and (max-width: 768px) {
    .youtube-icon {
        width: 29.75px;
        height: 28px;
    }
    .tiktok-icon, .pinterest-icon, .X-icon {
        width: 28px;
        height: 28px;
    }
}

.download-link-box{
    cursor: pointer;
    position: relative;
    width: 160px;
    height: 30px;
    margin-right: 30px;
    border-radius: 25px;
    background: linear-gradient(to right, #FF906E, #F91C64);
}

.download-link-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0); /* 初始透明度为0 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
    z-index: 1;
}

.download-link-box:hover::before {
    background-color: rgba(0, 0, 0, 0.2); /* 在悬停时设置背景颜色为黑色的 20% 透明度 */
}

.download-link{
    cursor: pointer;
    color: #fff;
    z-index: 2;
}

.download-click-show-box{
    position: relative;
    width: 160px;
    height: 100px;
    margin: 70px 30px 0 0;
    border-radius: 15px;
    background: linear-gradient(to right, #FF906E, #F91C64);
}

.download-click-apple,.download-click-google,.download-click-huawei{
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-click-apple::before,.download-click-google::before,.download-click-huawei::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 33.33%;
    background-color: rgba(0, 0, 0, 0); /* 初始透明度为0 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
    z-index: 1;
}

.download-click-apple::before{
    top: 0;
    border-radius: 15px 15px 0 0;
}

.download-click-google::before{
    top: 33.33%;
}

.download-click-huawei::before{
    top: 66.67%;
    border-radius: 0 0 15px 15px;
}

.download-click-apple:hover::before,.download-click-google:hover::before,.download-click-huawei:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.download-app-btn{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 30px;
    z-index:999;
}

.mobile-download{
    width: 85%;
    height: 60px;
    line-height: 43px;
    background: linear-gradient(to right, #FF906E, #F91C64);
    margin: 0 auto;
}