
body {
    margin: 0;
    padding: 0;
    color: #fce6bb;
    overflow: hidden;
    user-select: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.425);
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.logo-image {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.customer-service a {
    color: #fce6bb;
    text-decoration: none;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/index/picture/background.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

#content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 20px;
    z-index: 2;
}

.mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-image {
    width: 550px;
    animation: float 3s ease-in-out infinite;
}

.app-info {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.download-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #26272c;
}

.card1 {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #26272c;
}

.cardImg {
    width: 30px;
    height: 30px;
    margin-bottom: 1px;
}

/*.card:hover img,
.card:hover div {
    display: none; 
}*/

/* 仅对 iOS 和 Android 卡片应用隐藏效果 */
/*.card[data-download-link="ios-download-link"]:hover img,
.card[data-download-link="ios-download-link"]:hover div,
.card[data-download-link="android-download-link"]:hover img,
.card[data-download-link="android-download-link"]:hover div {
    display: none; 
}*/

/*.card[data-download-link="ios-download-link"]:hover .qr-code,
.card[data-download-link="android-download-link"]:hover .qr-code {
    display: block; 
}*/

.qr-code {
    display: none; /* 默认隐藏 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20; /* 确保二维码在其他元素之上 */
}

.card h2 {
    font-size: 16px;
    font-weight: normal;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

body, h1, h2, p {
    font-family: 'Alimama', sans-serif;
}

.telegram-icon {
    width: 30px;
    height: auto;
    cursor: pointer;
}

img {
    pointer-events: none; /* 禁止拖动所有图片 */
} 