Commit 910df61e authored by 朱超's avatar 朱超

地图页面优化

parent e3a8b498
This diff is collapsed.
<script setup> <script setup>
import screenDisplay from '../../components/screenDisplay.vue' import screenDisplay from "../../components/screenDisplay.vue";
</script> </script>
<template> <template>
...@@ -10,16 +9,25 @@ import screenDisplay from '../../components/screenDisplay.vue' ...@@ -10,16 +9,25 @@ import screenDisplay from '../../components/screenDisplay.vue'
</template> </template>
<style> <style>
body, div, p, img, span, table, tr, td { body,
div,
p,
img,
span,
table,
tr,
td {
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
html, body { html,
body {
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
font-size: 16px;
background-color: #033447; background-color: #033447;
font-size: 12px;
} }
ul, li { ul,
li {
list-style: none; list-style: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
...@@ -37,20 +45,20 @@ ul, li { ...@@ -37,20 +45,20 @@ ul, li {
padding: 5px 20px; padding: 5px 20px;
color: #ffffff !important; color: #ffffff !important;
text-shadow: 1px 1px 1px #333; text-shadow: 1px 1px 1px #333;
font-size: 15px; font-size: 12px;
font-weight: bold; font-weight: bold;
border: #fff solid 1px; border: #fff solid 1px;
} }
.mypopup1 { .mypopup1 {
/* width: 160px; */ /* width: 160px; */
text-align: center; text-align: center;
background-color: rgba(96, 232, 96, .5); background-color: rgba(96, 232, 96, 0.5);
box-shadow: inset 0 0 20px rgb(62, 127, 245); box-shadow: inset 0 0 20px rgb(62, 127, 245);
} }
.mypopup2 { .mypopup2 {
width: 160px; width: 160px;
text-align: center; text-align: center;
background-color: rgba(255, 255, 255, .5); background-color: rgba(255, 255, 255, 0.5);
box-shadow: inset 0 0 20px rgb(62, 127, 245); box-shadow: inset 0 0 20px rgb(62, 127, 245);
} }
.amap-marker-label { .amap-marker-label {
...@@ -58,9 +66,15 @@ ul, li { ...@@ -58,9 +66,15 @@ ul, li {
background-color: transparent; background-color: transparent;
cursor: pointer; cursor: pointer;
} }
@media (max-width: 2560px) { @media (min-width: 1700px) {
body { body {
font-size: 15px; font-size: 15px;
} }
} }
@media (min-width: 2560px) {
body {
font-size: 18px;
}
}
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment