index.css 555 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
.header-toper {
  width: 100%;
  height: 80upx;
  background-image: url(../../static/img/top.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 80upx;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: var(--bColor);
lanbaoming's avatar
lanbaoming committed
13
}
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

.header-toper-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--f32);
  color: var(--c0);
  font-weight: 700;
}

.header-toper-title image {
  width: 48upx;
  height: 44upx;
  position: absolute;
  left: 40upx;
lanbaoming's avatar
lanbaoming committed
30
}