|
@@ -351,9 +351,37 @@
|
|
|
flex-direction: column;
|
|
|
}
|
|
|
}
|
|
|
+ /* 新增返回按钮样式 - 添加到现有style标签末尾 */
|
|
|
+ .back-button {
|
|
|
+ position: fixed;
|
|
|
+ top: 16px;
|
|
|
+ left: 16px;
|
|
|
+ z-index: 1000;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 50%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .back-button svg {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ color: var(--primary-color);
|
|
|
+ }
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
+ <div class="back-button" id="backButton" routerLink="/mobile/mine">
|
|
|
+ <svg viewBox="0 0 1024 1024" width="1em" height="1em" fill="currentColor">
|
|
|
+ <path d="M872 474H286.9l350.2-304c5.6-4.9 2.2-14-5.2-14h-88.5c-3.9 0-7.6 1.4-10.5 3.9L155 487.8a26.9 26.9 0 0 0 0 40.7L535.1 866c1.5 1.3 3.3 2 5.2 2h91.5c7.4 0 10.8-9.2 5.2-14L286.9 550H872c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z"></path>
|
|
|
+ </svg>
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="container">
|
|
|
<div class="header">
|
|
|
<h1>智能图片上传助手</h1>
|