This commit is contained in:
ky_qixm
2021-09-13 16:20:35 +08:00
7 changed files with 150 additions and 56 deletions

View File

@@ -31,7 +31,7 @@
合计补偿金额
<b style="color: red">{{ item.money }}</b>
</div>
<div>
<div class="line">
<img alt src="@/assets/img/hengxian.png" />
</div>
<div class="flex">
@@ -84,7 +84,9 @@ export default {
}
};
</script>
<style>
/* @import url(./global.css); */
</style>
<style lang="less" scoped>
.container {
.image {
@@ -117,6 +119,12 @@ export default {
margin-right: 10px;
}
}
.line {
opacity: 1;
img {
height: 2px;
}
}
.backgroundColor {
background-color: #e3ebfd;
span {

View File

@@ -0,0 +1,20 @@
@media screen and (max-width: 768px) {
html {
font-size: 324 / 18px;
}
}
@media screen and (min-width: 768px) {
html {
font-size: 324 / 18px;
}
}
@media screen and (min-width: 992px) {
html {
font-size: 396 / 18px;
}
}
@media screen and (min-width: 1200px) {
html {
font-size: 504 / 18px;
}
}

View File

@@ -0,0 +1,22 @@
@size: 18px;
@media screen and (max-width: 768px) {
html {
font-size: 324 / @size;
}
}
@media screen and (min-width: 768px) {
html {
font-size: 324 / @size;
}
}
@media screen and (min-width: 992px) {
html {
font-size: 396 / @size;
}
}
@media screen and (min-width: 1200px) {
html {
font-size: 504 / @size;
}
}