|
@@ -13,7 +13,6 @@ body {
|
|
overflow-x: hidden;
|
|
overflow-x: hidden;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
/* 头部样式 */
|
|
/* 头部样式 */
|
|
.header {
|
|
.header {
|
|
text-align: center;
|
|
text-align: center;
|
|
@@ -99,7 +98,125 @@ body {
|
|
max-height: none;
|
|
max-height: none;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/* 首页专用样式 */
|
|
|
|
+body.index-page {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .container {
|
|
|
|
+ text-align: center;
|
|
|
|
+ width: 100%;
|
|
|
|
+ max-width: 400px;
|
|
|
|
+ padding: 20px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .site-title {
|
|
|
|
+ font-size: 28px;
|
|
|
|
+ font-weight: 700;
|
|
|
|
+ margin-bottom: 40px;
|
|
|
|
+ color: white;
|
|
|
|
+ background: none;
|
|
|
|
+ -webkit-text-fill-color: white;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .button-container {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ gap: 20px;
|
|
|
|
+ width: 100%;
|
|
|
|
+}
|
|
|
|
|
|
|
|
+.index-page .region-button {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 16px 20px;
|
|
|
|
+ border-radius: 12px;
|
|
|
|
+ text-decoration: none;
|
|
|
|
+ color: white;
|
|
|
|
+ font-weight: 500;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
+ position: relative;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .region-button:hover {
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .japan-button {
|
|
|
|
+ background: linear-gradient(90deg, #4A90E2, #9B59B6);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .vietnam-button {
|
|
|
|
+ background: linear-gradient(90deg, #2ECC71, #1ABC9C);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .flag-icon {
|
|
|
|
+ width: 32px;
|
|
|
|
+ height: 32px;
|
|
|
|
+ margin-right: 16px;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .flag-circle {
|
|
|
|
+ width: 24px;
|
|
|
|
+ height: 24px;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ position: relative;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .japan-flag .flag-circle {
|
|
|
|
+ background: white;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .japan-flag .flag-center {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 50%;
|
|
|
|
+ left: 50%;
|
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
|
+ width: 12px;
|
|
|
|
+ height: 12px;
|
|
|
|
+ background: #DC143C;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .vietnam-flag .flag-circle {
|
|
|
|
+ background: #DC143C;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .vietnam-flag .flag-star {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 50%;
|
|
|
|
+ left: 50%;
|
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
|
+ width: 12px;
|
|
|
|
+ height: 12px;
|
|
|
|
+ background: #FFD700;
|
|
|
|
+ clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .region-text {
|
|
|
|
+ flex: 1;
|
|
|
|
+ text-align: left;
|
|
|
|
+ font-weight: 500;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.index-page .go-button {
|
|
|
|
+ background: rgba(255, 255, 255, 0.2);
|
|
|
|
+ color: white;
|
|
|
|
+ padding: 8px 16px;
|
|
|
|
+ border-radius: 8px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ font-weight: 600;
|
|
|
|
+ backdrop-filter: blur(10px);
|
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
+}
|
|
|
|
|
|
/* 响应式设计 */
|
|
/* 响应式设计 */
|
|
@media (max-width: 480px) {
|
|
@media (max-width: 480px) {
|
|
@@ -110,6 +227,41 @@ body {
|
|
.site-title {
|
|
.site-title {
|
|
font-size: 24px;
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .index-page .container {
|
|
|
|
+ padding: 16px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .index-page .site-title {
|
|
|
|
+ font-size: 24px;
|
|
|
|
+ margin-bottom: 30px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .index-page .region-button {
|
|
|
|
+ padding: 14px 16px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .index-page .flag-icon {
|
|
|
|
+ width: 28px;
|
|
|
|
+ height: 28px;
|
|
|
|
+ margin-right: 12px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .index-page .flag-circle {
|
|
|
|
+ width: 20px;
|
|
|
|
+ height: 20px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .index-page .japan-flag .flag-center {
|
|
|
|
+ width: 10px;
|
|
|
|
+ height: 10px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .index-page .vietnam-flag .flag-star {
|
|
|
|
+ width: 10px;
|
|
|
|
+ height: 10px;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/* 滚动条样式 */
|
|
/* 滚动条样式 */
|