/*
Author: Zachary.Fei (zachary.fei.work@outlook.com)
index.css (c) 2024
Desc: description
Created:  2024-07-16T06:06:15.467Z
Modified: 2024-07-16T06:07:27.300Z - Zachary.Fei
*/


body {
  margin: 0;
  padding: 0;
  background-image: url(../assets/images/backImg.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}
header {
  background-color: rgba(255, 255, 255, 0.6);
  height: 70px;
  line-height: 70px;
}
header .logo {
  /* width: 100px; */
  width: 30%;
  height: 100%;
  overflow: hidden;
  margin-left: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
header .logo img {
  width: 220px;
  height: 50px;
}
.content {
  height: calc(100vh - 50px - 20px);
  overflow: auto;
}
.content::before {
  content: '网站即将上线！敬请期待';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  line-height: 125vh;
  text-align: center;
  z-index: 11;
  font-size: 68px;
  color: #20c3a6;
}
.content::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f0f0f0;
  opacity: .85;
  line-height: 100vh;
  text-align: center;
  z-index: 10;
}
.content .loader {
  margin: 0 auto;
  position: fixed;
  --s: 25px;
  left: calc(50vw - 25px);
  top: calc(50vh - 25px);
  z-index: 11;
}
.content .container {
  width: 60%;
  margin: 2% auto 0;
  /* background-color: #f0f0f0; */
  padding: 2% 5%;
  border-radius: 10px
}
.content .container ul {
  padding-left: 20px;
}
.content .container ul li {
  line-height: 2.3
}
.content .container a {
  color: #20a53a
}

footer {
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  padding-bottom: 10px;
}
footer .copyright{
  margin-bottom: 4px;
}
footer a {
  color: #fff;
}