body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at center, #1a2636 0%, #0a0f1a 100%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: PangMenZhengDao;
  overflow: hidden;
}

.container {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url('../images/bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.header {
  width: 100%;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.header .title {
  width: 55%;
  height: 100%;
  font-size: 32px;
  line-height: 60px;
  color: #F1F6FF;
  letter-spacing: 12px;
  text-align: center;
  background-image: url('../images/top.png');
  background-size: 100% 130%;
  background-repeat: no-repeat;
  font-family: CKTKingkong;
}

.header .weather-time {
  display: flex;
  align-items: center;
}

.header .weather {
  font-size: 1.1rem;
  display: flex;
  gap: 20px;
  align-items: center;
  /* width: 20%; */
}

.dayWeek {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #afdbfd;
}

#date {
  margin: 0 20px 0 40px;
}

.header .user {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  width: 20%;
}

.user-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #DFE9FC;
}

.user-name {
  background: linear-gradient(to bottom, #31BEFF, #DFE9FC);
  background-clip: text;
  color: transparent;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  padding: 0 50px;
}

.side {
  gap: 40px;
}

.left-side {
  align-items: flex-start;
}

.right-side {
  align-items: flex-end;
}

/* .right-side .side-btn-container {
  justify-content: flex-end;
} */

.side-btn {
  width: 110px;
  height: 110px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background-image: url('../images/ball.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-family: AlimamaShuHeiTi;
} 

.side-btn:hover {
  transform: scale(1.08);
}

.right-side-btn {
  margin-left: 80px;
}

.left-side-btn {
  margin-right: 80px;
}

.center-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  margin-top: 80px;
  width: 100%;
}

.center-top-item {
  width: 23%;
  height: 40px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.center-top-item-1 {
  background-image: url('../images/groundMaterial.png');
}

.center-top-item-2 {
  background-image: url('../images/repository.png');
}

.center-top-item-3 {
  background-image: url('../images/steels.png');
}

.center-middle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3vw;
}

.chart {
  width: 350px;
  height: 320px;
}

.bottom-btn {
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 4px;
  text-align: center;
  background: linear-gradient(to bottom, #41ECEB, #E6F8FF);
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.bottom-btn-container {
  width: 13vw;
  height: 7.8vh;
  background-image: url('../images/itemBg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome {
  width: 40%;
  height: 55px;
  text-align: center;
  font-size: 18px;
  line-height: 55px;
  color: #D6E3FF;
  letter-spacing: 3px;
  background-image: url('../images/bottom.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 0 auto;
  cursor: pointer;
}

.exit-icon,
.home-icon {
  cursor: pointer;
}