This commit is contained in:
张威33321
2026-03-28 18:08:56 +08:00
parent 3b12c3f2af
commit 398fcf9aff
195 changed files with 4845 additions and 549 deletions

View File

@@ -10,43 +10,42 @@
width: 1000px;
height: 1000px;
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background: linear-gradient(135deg, #00b894 0%, #55efc4 50%, #00b894 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
display: flex;
flex-direction: column;
box-shadow: 0 20px 60px rgba(0,184,148,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #55efc4;
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
color: #00b894;
text-align: center;
margin-bottom: 20px;
text-shadow: 0 2px 10px rgba(0,184,148,0.2);
}
.subtitle {
font-size: 28px;
color: #666;
color: #00a885;
text-align: center;
margin-bottom: 50px;
}
.config-section {
margin-bottom: 40px;
flex: 1;
}
.section-title {
font-size: 32px;
font-weight: bold;
color: #667eea;
color: #00b894;
margin-bottom: 20px;
padding-left: 20px;
border-left: 5px solid #667eea;
border-left: 5px solid #55efc4;
}
.config-grid {
display: grid;
@@ -54,21 +53,23 @@
gap: 20px;
}
.config-item {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
background: linear-gradient(135deg, #f0fff4 0%, #e3f9e7 100%);
padding: 20px 25px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 15px rgba(0,184,148,0.15);
border: 1px solid #81ecec;
}
.config-label {
font-size: 24px;
color: #333;
color: #2d3436;
font-weight: bold;
}
.config-value {
font-size: 24px;
color: #667eea;
color: #00b894;
font-weight: bold;
}
</style>
@@ -76,18 +77,18 @@
<body>
<div class="container">
<div class="title">配置清单 (1/2)</div>
<div class="subtitle">挂机宝 迷你主机系列</div>
<div class="subtitle">挂机宝 游戏挂机系列</div>
<div class="config-section">
<div class="section-title">机箱类型</div>
<div class="section-title">产品类型</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">一拖一</span>
<span class="config-value">2.5金属机箱</span>
<span class="config-value">单机挂机</span>
</div>
<div class="config-item">
<span class="config-label">一拖三</span>
<span class="config-value">亚克力机箱</span>
<span class="config-value">多机挂机</span>
</div>
</div>
</div>