* {
  margin: 0;
  padding-inline-start: 0;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-drag: none;
  display: block;
}

body {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: #a120cd;
  padding-bottom: 70px;
  box-sizing: border-box;
}

header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
header img {
  width: 100px;
  margin-right: 20px;
}
header ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  font-size: 18px;
}
header ul li,
header ul a {
  color: #ffffff;
  cursor: pointer;
}
header ul span {
  background: #ffffff;
  width: 2px;
  height: 20px;
}

.bannerView {
  width: 100%;
  height: 700px;
  position: relative;
  margin-top: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerView .banner1 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.bannerView .banner2 {
  width: 800px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-bottom: 100px;
}
.bannerView .banner3 {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 150px;
}

.banner {
  width: 100%;
  margin-top: -100px;
}

footer {
  width: 100%;
  height: 70px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  bottom: 0;
}

a {
  text-decoration: none;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Popup {
  height: 100Vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.Popup div {
  display: flex;
  justify-content: center;
  position: relative;
}
.Popup div .close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -80px;
  left: calc(80% + 50px);
  cursor: pointer;
}
.Popup img {
  width: 60%;
}/*# sourceMappingURL=common.css.map */