+
+
+ {{ siteUrl[0] }}
+ .{{ siteUrl[1] }}
+
@@ -13,6 +18,9 @@ import { mainStore } from "@/store";
import Func from "@/views/Func/index.vue";
import Link from "@/components/Links/index.vue";
const store = mainStore();
+
+// 站点链接
+let siteUrl = import.meta.env.VITE_SITE_URL.split(".");
@@ -20,5 +28,29 @@ const store = mainStore();
.right {
flex: 1 0 0%;
margin-left: 0.75rem;
+ .logo {
+ font-family: "Pacifico-Regular";
+ font-size: 1.75rem;
+ position: fixed;
+ width: 140px;
+ text-align: center;
+ top: 8%;
+ left: calc(50% - 70px);
+ transition: all 0.3s;
+ animation: fade;
+ -webkit-animation: fade 0.5s;
+ &:active {
+ transform: scale(0.95);
+ }
+ @media (min-width: 720px) {
+ display: none;
+ }
+ }
+ @media (max-width: 720px) {
+ margin-left: 0;
+ &.hidden {
+ display: none;
+ }
+ }
}
\ No newline at end of file