* {
    margin: 0px;
    /* padding: 0; */
    /* box-sizing: border-box; */
    top: 10px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.info-section {
    text-align: center;
    margin-bottom: 24px;
}

.info-section h1 {
    margin-bottom: 10px;
	font-size: 40px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #e42121, #a75626, #145cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.info-section p {
    font-size: 18px;
    margin: 5px 0;
}

.download-btn {
    background: linear-gradient(to right, #ffa500, #ff4500);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 22px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
}

.download-btn:hover {
    opacity: 0.9;
}

.screenshots {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.screenshot {
    width: 8%;
    height: 30%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



footer {
    background-color: #fff;
    padding: 0px;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin-bottom: 15px;
    margin-top: 16px;
}

footer a {
    color: #000000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
.modal {
    display: none; /* 隐藏弹出层 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 600px;
    max-height: 80%; /* 设置弹出层最大高度 */
    overflow-y: auto; /* 当内容超出时，出现垂直滚动条 */
    /* text-align: center; */
    position: relative; /* 为了保证 close-btn 定位正确 */
}

.modal-content h2 {
    margin-bottom: 10px;
    text-align: center;
}

.modal-content p {
    margin-bottom: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* 隐私协议链接默认样式 */
#privacy-link, #privacy-link-1 {
    text-decoration: none; /* 去除下划线 */
    color: #000; /* 默认文字颜色 */
    transition: color 0.3s ease, transform 0.3s ease; /* 添加过渡效果 */
}

/* 鼠标悬停时的样式 */
#privacy-link:hover, #privacy-link-1:hover {
    color: #ff4500; /* 悬停时文字变为橙红色 */
    cursor: pointer; /* 变为手型 */
    transform: scale(1.1); /* 放大1.1倍 */
    text-decoration: none; /* 去除下划线 */
}
