:root {
--primary-color: #0084FF;
--primary-gradient: linear-gradient(90deg, #00A3FF 0%, #0066FF 100%);
--primary-hover-gradient: linear-gradient(90deg, #52C0FF 0%, #5297FF 100%);
--secondary-color: #F6F8FF;
--text-color: #151515;
--light-text: #686F7E;
--border-radius: 10px;
--box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--secondary-color);
}
.container {
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.main-content {
flex: 1;
background-color: var(--secondary-color);
background-image: url("https://static.yximgs.com/udata/pkg/559f6c913534458e87ab238c222550c8.webp");
background-size: 100% auto;
background-position: top center;
background-repeat: no-repeat;
padding: 0 20px 60px;
}
@media (min-width: 1200px) {
.main-content {
padding: 0 360px 60px;
}
}
header {
padding-top: 20px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.logo {
width: 167px;
height: 40px;
margin-bottom: 58px;
}
.logo-text {
display: flex;
align-items: center;
font-size: 28px;
font-weight: bold;
color: var(--primary-color);
margin-bottom: 58px;
gap: 20px;
}
.logo-icon {
width: 32px;
height: 32px;
margin-right: 0;
}
.hero-section {
position: relative;
z-index: 1;
}
.hero-title {
font-size: 44px;
font-weight: 500;
line-height: 52px;
color: var(--text-color);
margin-bottom: 7px;
}
.hero-subtitle {
font-size: 22px;
letter-spacing: 7px;
color: rgba(21, 21, 21, 0.6);
line-height: 24px;
margin-bottom: 20px;
}
.save-button {
display: flex;
align-items: center;
justify-content: center;
height: 64px;
min-width: 290px;
padding: 0 40px;
background: var(--primary-gradient);
color: white;
font-size: 24px;
border-radius: 12px;
cursor: pointer;
transition: background 0.3s ease;
border: none;
margin-bottom: 78px;
}
.save-button:hover {
background: var(--primary-hover-gradient);
}
.save-button svg {
width: 32px;
height: 32px;
margin-right: 10px;
flex-shrink: 0;
}
.section-title {
font-size: 20px;
font-weight: 500;
line-height: 28px;
color: var(--text-color);
margin-bottom: 24px;
padding-bottom: 8px;
background-image: url("https://static.yximgs.com/udata/pkg/f5c2f2432bdb48bc9ebcd15721e052be.webp");
background-size: 60px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
.download-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
margin-bottom: 60px;
}
.download-card {
display: flex;
align-items: center;
background-color: white;
border-radius: var(--border-radius);
padding: 20px 32px;
box-shadow: var(--box-shadow);
}
.app-icon {
width: 56px;
height: 56px;
flex-shrink: 0;
}
.app-info {
flex: 1;
margin-left: 16px;
}
.app-name {
font-weight: 500;
font-size: 16px;
margin-bottom: 8px;
}
.app-description {
font-size: 14px;
color: var(--light-text);
}
.qr-code {
width: 80px;
height: 80px;
}
.download-button {
background-color: rgba(50, 156, 255, 0.16);
color: var(--primary-color);
font-size: 16px;
font-weight: 500;
padding: 0 20px;
height: 40px;
line-height: 40px;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
text-align: center;
}
.download-button:hover {
background-color: var(--primary-color);
color: white;
}
.alert {
background-color: white;
color: var(--primary-color);
padding: 15px 20px;
border-radius: var(--border-radius);
margin-bottom: 30px;
box-shadow: var(--box-shadow);
line-height: 1.6;
border: 1px solid rgba(0, 132, 255, 0.2);
}
.alert p {
margin-bottom: 12px;
}
.alert p:last-child {
margin-bottom: 0;
font-weight: bold;
}
.highlight {
background-color: rgba(0, 132, 255, 0.1);
color: var(--primary-color);
padding: 0 4px;
font-weight: bold;
}
.installation-guide {
background-color: white;
border-radius: var(--border-radius);
padding: 25px;
margin-bottom: 40px;
box-shadow: var(--box-shadow);
}
.guide-tabs {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}
.guide-tab {
padding: 8px 15px;
background-color: rgba(50, 156, 255, 0.16);
border-radius: var(--border-radius);
cursor: pointer;
transition: all 0.3s ease;
color: var(--primary-color);
}
.guide-tab.active {
background-color: var(--primary-color);
color: white;
}
.guide-content {
display: none;
}
.guide-content.active {
display: block;
}
.guide-step {
margin-bottom: 15px;
}
.guide-step b {
color: var(--primary-color);
}
footer {
background-color: white;
padding: 20px;
text-align: center;
color: rgba(0, 0, 0, 0.4);
font-size: 12px;
line-height: 1.6;
}
@media (max-width: 768px) {
header {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin-top: 20px;
}
.logo {
width: 84px;
height: 20px;
margin-bottom: 24px;
}
.logo-text {
font-size: 24px;
text-align: center;
margin-bottom: 24px;
}
.hero-title {
font-size: 22px;
line-height: 26px;
text-align: center;
width: 100%;
}
.hero-subtitle {
font-size: 12px;
letter-spacing: 3px;
text-align: center;
width: 100%;
}
.hero-section {
display: flex;
flex-direction: column;
align-items: center;
}
.save-button {
height: 50px;
font-size: 20px;
min-width: 234px;
padding: 0 20px;
margin-bottom: 40px;
}
.save-button span {
letter-spacing: 2px;
}
.download-grid {
grid-template-columns: 1fr;
}
.download-card {
padding: 16px;
}
.app-icon {
width: 42px;
height: 42px;
}
.qr-code {
width: 60px;
height: 60px;
}
}
/* 修复弹窗样式问题 */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}
/* 确保内容正确居中显示 */
.modal-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
padding: 20px;
box-sizing: border-box;
overflow-y: auto;
}
/* 确保图片正确显示 */
.modal img.preview-image {
max-height: 60vh;
max-width: 90%;
border-radius: 20px;
pointer-events: auto;
user-select: auto;
object-fit: contain;
}
/* 添加弹窗文字样式 */
.modal p {
margin-top: 12px;
color: white;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.modal p img {
width: 20px;
margin-left: 8px;
border-radius: 0;
}
/* 修复关闭按钮样式 */
.close-modal {
position: absolute;
top: 20px;
right: 20px;
color: white;
font-size: 30px;
font-weight: bold;
cursor: pointer;
z-index: 1001;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 50%;
}
/* 自定义灰底白色图标样式 - 所有图标统一为浅灰色且更小 */
.custom-icon {
width: 50px;
height: 50px;
background-color: #999;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
font-weight: bold;
padding: 10px;
box-sizing: border-box;
}
/* 聚点联盟图标样式 */
.custom-icon.small {
width: 50px;
height: 50px;
background-color: #999;
padding: 10px;
}
@media (max-width: 768px) {
.custom-icon {
width: 38px;
height: 38px;
font-size: 18px;
padding: 8px;
}
.custom-icon.small {
width: 38px;
height: 38px;
padding: 8px;
}
}
/* 图标内的SVG样式 */
.custom-icon svg {
width: 100%;
height: 100%;
fill: white;
}
