首页样式优化

This commit is contained in:
fengrong 2024-11-08 17:45:25 +08:00
parent ce3d92247b
commit c8dbd3b697

View File

@ -1218,7 +1218,7 @@ onUnmounted(() => {
margin: 0; margin: 0;
color: #4e5969; color: #4e5969;
background-color: #f2f3f5; background-color: #f2f3f5;
overflow: hidden; overflow-x: hidden;
.content-number { .content-number {
color: #333333; color: #333333;
font-size: 20px; font-size: 20px;
@ -1299,9 +1299,14 @@ onUnmounted(() => {
width: 100%; width: 100%;
height: 288px; height: 288px;
} }
@media screen and (max-width: 1920px) {
.power-chart {
height: 230px;
}
}
@media screen and (max-width: 1910px) { @media screen and (max-width: 1910px) {
.power-chart { .power-chart {
height: 260px; height: 230px;
} }
} }
} }
@ -1372,6 +1377,17 @@ onUnmounted(() => {
.realPart { .realPart {
height: 370px; height: 370px;
} }
@media screen and (max-width: 1920px) {
/* .matrix {
height: 928px;
}*/
.realPart {
height: 349px;
}
.trend {
height: 315px;
}
}
@media screen and (max-width: 1910px) { @media screen and (max-width: 1910px) {
.matrix { .matrix {
height: 875px; height: 875px;
@ -1390,4 +1406,9 @@ onUnmounted(() => {
height: 878px; height: 878px;
} }
} }
@media screen and (max-width: 1920px) {
.default-main {
height: 928px;
}
}
</style> </style>