@import url('../css/reset.css');
header {
  border-bottom: 1px solid #EEEEEE;
}
header .head {
  width: 1280px;
  height: 72px;
  background: #FFFFFF;
  margin: 0 auto;
  padding: 0 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .head .logo img {
  width: 191px;
  height: 32px;
}
header .head .login {
  font-family: m;
  font-weight: 500;
  font-size: 16px;
  color: #4285F4;
  cursor: pointer;
}
header .head .login:hover {
  text-decoration: underline;
}
header .login-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  display: none;
}
header .login-box .login-child {
  width: 351px;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #EEEEEE;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 32px 24px;
}
header .login-box .login-child img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
header .login-box .login-child h3 {
  font-family: m;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  margin-bottom: 12px;
}
header .login-box .login-child p {
  font-family: r;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin-bottom: 16px;
}
header .login-box .login-child input {
  width: 100%;
  height: 40px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #EEEEEE;
  font-family: r;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  text-indent: 1em;
  margin-bottom: 16px;
}
header .login-box .login-child button {
  width: 100%;
  height: 48px;
  background: #4285F4;
  border-radius: 4px 4px 4px 4px;
  font-family: m;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
}
#content {
  flex: 1;
}
footer {
  border-top: 1px solid #EEEEEE;
}
footer .foot {
  width: 1280px;
  background: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  margin: 0 auto;
  padding: 32px 0;
}
footer .foot .foot-logo {
  display: block;
  margin-bottom: 24px;
  text-align: center;
}
footer .foot .foot-logo img {
  width: 191px;
  height: 32px;
}
footer .foot ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .foot ul li {
  margin-right: 40px;
}
footer .foot ul li a {
  font-family: m;
  font-weight: 500;
  font-size: 14px;
  color: #999999;
}
footer .foot ul li a:hover {
  color: #333333;
  text-decoration: underline;
}
footer .foot ul li:last-child {
  margin-right: 0;
}
@media (min-width: 860px) and (max-width: 1200px) {
  header .head {
    width: 100%;
    padding: 0 12px;
  }
  header .head .logo img {
    width: 168px;
    height: 28px;
  }
  footer .foot {
    width: 100%;
    padding: 16px 0;
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  header .head {
    width: 100%;
    padding: 0 12px;
  }
  header .head .logo img {
    width: 168px;
    height: 28px;
  }
  footer .foot {
    width: 100%;
    padding: 16px 0;
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  header .head {
    width: 100%;
    padding: 0 12px;
  }
  header .head .logo img {
    width: 168px;
    height: 28px;
  }
  footer .foot {
    width: 100%;
    padding: 16px 0;
  }
  footer .foot ul {
    flex-direction: column;
  }
  footer .foot ul li {
    margin: 0 0 12px 0;
  }
  footer .foot ul li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  header .head {
    width: 100%;
    padding: 0 12px;
  }
  header .head .logo img {
    width: 168px;
    height: 28px;
  }
  header .login-box .login-child {
    width: calc(100% - 32px);
  }
  footer .foot {
    width: 100%;
    padding: 16px 0;
  }
  footer .foot ul {
    flex-direction: column;
  }
  footer .foot ul li {
    margin: 0 0 12px 0;
  }
  footer .foot ul li:last-child {
    margin-bottom: 0;
  }
}
