|
@@ -1,3 +1,27 @@
|
|
|
+/* 返回按钮 */
|
|
|
+.back-button {
|
|
|
+position: absolute;
|
|
|
+top: 25px;
|
|
|
+left: 25px;
|
|
|
+z-index: 100;
|
|
|
+background: rgba(255, 255, 255, 0.9);
|
|
|
+width: 50px;
|
|
|
+height: 50px;
|
|
|
+border-radius: 50%;
|
|
|
+display: flex;
|
|
|
+justify-content: center;
|
|
|
+align-items: center;
|
|
|
+box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
|
+transition: all 0.3s ease;
|
|
|
+color: #ff7e5f;
|
|
|
+font-size: 1.3rem;
|
|
|
+text-decoration: none;
|
|
|
+}
|
|
|
+.back-button:hover {
|
|
|
+transform: translateX(-3px);
|
|
|
+background: white;
|
|
|
+box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
|
|
|
+}
|
|
|
* {
|
|
|
margin: 0;
|
|
|
padding: 0;
|