|
@@ -53,18 +53,15 @@
|
|
|
maxlength="200"
|
|
|
></textarea>
|
|
|
</div>
|
|
|
-
|
|
|
- <!-- 保存按钮 -->
|
|
|
- <div class="button-wrapper">
|
|
|
+ </div>
|
|
|
+ <div class="button-wrapper">
|
|
|
<button
|
|
|
class="save-btn"
|
|
|
@click="saveAddress"
|
|
|
- :disabled="!isFormValid"
|
|
|
>
|
|
|
保存地址
|
|
|
</button>
|
|
|
</div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
|
|
|
<!-- Toast 提示 -->
|
|
@@ -380,34 +377,17 @@ export default {
|
|
|
|
|
|
.save-btn {
|
|
|
width: 100%;
|
|
|
- background: #c94545;
|
|
|
- color: white;
|
|
|
+ background: #ffc5b9;
|
|
|
+ color: red;
|
|
|
border: none;
|
|
|
- border-radius: 25px;
|
|
|
- padding: 15px 0;
|
|
|
+ border-radius: 8px;
|
|
|
+ padding: 8px 0;
|
|
|
font-size: 16px;
|
|
|
font-weight: 600;
|
|
|
cursor: pointer;
|
|
|
- transition: all 0.3s ease;
|
|
|
- box-shadow: 0 4px 12px rgba(201, 69, 69, 0.3);
|
|
|
}
|
|
|
|
|
|
-.save-btn:hover {
|
|
|
- background: #b43a39;
|
|
|
- transform: translateY(-1px);
|
|
|
- box-shadow: 0 6px 16px rgba(201, 69, 69, 0.4);
|
|
|
-}
|
|
|
-
|
|
|
-.save-btn:active {
|
|
|
- transform: translateY(0);
|
|
|
-}
|
|
|
|
|
|
-.save-btn:disabled {
|
|
|
- background: #ccc;
|
|
|
- cursor: not-allowed;
|
|
|
- transform: none;
|
|
|
- box-shadow: none;
|
|
|
-}
|
|
|
|
|
|
/* 响应式优化 */
|
|
|
@media screen and (max-width: 375px) {
|