This commit is contained in:
lb
2024-01-03 17:00:31 +08:00
parent bee1aedda4
commit 0b1d3aa4b3
22 changed files with 256 additions and 136 deletions

View File

@@ -14,7 +14,6 @@ import Gas from "../../components/Modules/EnergyCostAnalysis/BadGas";
function EnergyAnalysis(props) {
return (
<div className={cls.grid}>
<div className={cls.bgDitu}></div>
<div className={cls.vgrid + " col-1"}>
{/* <SmokeHandle /> */}
<div style={{ gridRow: "1 / 3" }}>

View File

@@ -1,4 +1,5 @@
.grid {
position: relative;
display: grid;
justify-content: center;
gap: 24px;
@@ -9,7 +10,7 @@
}
.bgDitu {
position: fixed;
position: absolute;
z-index: -1000;
top: 0;
left: 0;
@@ -17,7 +18,7 @@
height: 100%;
/* background: #f003; */
background: url(../../assets/ditu.png) no-repeat;
background-position: -800px 0;
/* background-position: -800px 0; */
background-size: 100%;
}