|
@@ -1,6 +1,8 @@
|
|
|
page {
|
|
page {
|
|
|
- background-color: #F5F7FA;
|
|
|
|
|
- font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
|
|
|
|
|
|
|
+ background-color: #f5f7fa;
|
|
|
|
|
+ font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica,
|
|
|
|
|
+ Segoe UI, Arial, Roboto, "PingFang SC", "miui", "Hiragino Sans GB",
|
|
|
|
|
+ "Microsoft Yahei", sans-serif;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
.container {
|
|
@@ -9,13 +11,44 @@ page {
|
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.header-title {
|
|
|
|
|
|
|
+.custom-nav {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ height: 44px;
|
|
|
|
|
+ margin-top: 30px; /* Approximate status bar height */
|
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.back-btn {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ padding: 10px; /* Increase touch area */
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ z-index: 10;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.back-arrow {
|
|
|
|
|
+ width: 10px;
|
|
|
|
|
+ height: 10px;
|
|
|
|
|
+ border-left: 2px solid #333;
|
|
|
|
|
+ border-bottom: 2px solid #333;
|
|
|
|
|
+ transform: rotate(45deg);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-title {
|
|
|
|
|
+ flex: 1;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
font-size: 18px;
|
|
font-size: 18px;
|
|
|
font-weight: 500;
|
|
font-weight: 500;
|
|
|
color: #000;
|
|
color: #000;
|
|
|
- margin-bottom: 20px;
|
|
|
|
|
- margin-top: 10px;
|
|
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.header-title {
|
|
|
|
|
+ display: none; /* Hide old title class if referenced elsewhere */
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.logo-section {
|
|
.logo-section {
|
|
@@ -45,13 +78,13 @@ page {
|
|
|
border-radius: 12px;
|
|
border-radius: 12px;
|
|
|
padding: 20px 16px;
|
|
padding: 20px 16px;
|
|
|
margin-bottom: 24px;
|
|
margin-bottom: 24px;
|
|
|
- box-shadow: 0 2px 8px rgba(0,0,0,0.02);
|
|
|
|
|
|
|
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.id-input {
|
|
.id-input {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
height: 48px;
|
|
height: 48px;
|
|
|
- background-color: #F5F7FA;
|
|
|
|
|
|
|
+ background-color: #f5f7fa;
|
|
|
border-radius: 8px;
|
|
border-radius: 8px;
|
|
|
padding: 0 16px;
|
|
padding: 0 16px;
|
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
@@ -92,8 +125,8 @@ page {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.recharge-item.active {
|
|
.recharge-item.active {
|
|
|
- border-color: #7B68EE;
|
|
|
|
|
- background-color: #F8F6FF;
|
|
|
|
|
|
|
+ border-color: #7b68ee;
|
|
|
|
|
+ background-color: #f8f6ff;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.coin-icon {
|
|
.coin-icon {
|
|
@@ -124,7 +157,7 @@ page {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.login-btn {
|
|
.login-btn {
|
|
|
- background: linear-gradient(90deg, #9F7FFF, #7B68EE);
|
|
|
|
|
|
|
+ background: linear-gradient(90deg, #9f7fff, #7b68ee);
|
|
|
color: white;
|
|
color: white;
|
|
|
border: none;
|
|
border: none;
|
|
|
height: 48px;
|
|
height: 48px;
|
|
@@ -142,7 +175,7 @@ page {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.link {
|
|
.link {
|
|
|
- color: #7B68EE;
|
|
|
|
|
|
|
+ color: #7b68ee;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.tips-section {
|
|
.tips-section {
|