*{
  margin: 0;
  padding: 0;
}
html{
  cursor: default;
  height: 100%;
  font-size: 1.2rem;
  color: #333;
}
body{
  height: 100%;
  background-color: #eee;
}
.container{
  max-width: 1200px;
  margin: 0 auto;
}
a{
  display: block;
  text-decoration: none;
  color: #333;
}
#header {
  position: relative;
  height: 60px;
  line-height: 60px;
  background-color: #fff;
}
#header .nav-wrapper {
  position: relative;
}
#header .logo{
  margin-left: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}
#header .logo img{
  object-fit: cover;
  width: 42px;
  height: 42px;
  margin: 9px 0;
  border-radius: 9px;
}
#header .navs{
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
/* 主体 */
#main{
  position: relative;
  height: calc(100% - 60px - 15px);
  margin-top: 15px;
  overflow: hidden;
  background-color: #fff;
}
#main .title {
  margin: 50px auto 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
#main .logo {
  margin: 0 auto;
  text-align: center;
  border-radius: 30px;
}
#main .logo img {
  object-fit: cover;
  width: 120px;
  height: 120px;
  border-radius: 30px;
}
#main .subtitle {
  margin: 20px auto;
  text-align: center;
  font-size: 1.5rem;
  color: #777;
}
#main .items {
  margin: 100px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
#main .item {
  min-width: 200px;
  min-height: 300px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .container {
    min-width: 100%;
  }
  #main .item {
    width: 50%;
  }
}
#main .item img{
  border-radius: 50%;
}
#main .item .name {
  height: 40px;
  line-height: 40px;
  margin-top: 20px;
  font-size: 1.5rem;
}