.container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: url(../img/bg_login.png) no-repeat;
  background-size: 100% 90%;
}
.main {
  display: flex;
  justify-content: center;
}
.mt-10 {
  margin-top: 10px;
}

/* 公示栏 */
.notice-board {
  margin: 280px 5% 0 0;
  width: 540px;
  height: 500px;
  background-color: #ffffff;
  opacity: 0.9;
  border-top: 3px solid #00337f;
}
.tabs {
  display: flex;
  align-items: center;
  margin: 25px 0 0 30px;
}
.tab {
  font-size: 20px;
  color: #333;
  cursor: pointer;
}
.tab-on {
  color: #00337f;
}
.tabs > hr {
  margin: 0 20px;
  width: 1px;
  height: 18px;
  background: #ccc;
  border: none;
}
.enroll {
  margin: 25px auto 0;
  width: 470px;
  height: 360px;
  overflow: auto;
  color: #333;
}
.enroll > h1 {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.enroll > h2 {
  font-size: 14px;
  line-height: 30px;
}
.enroll > h3 {
  line-height: 30px;
  font-weight: bold;
  text-indent: 2em;
}
.enroll > h4 {
  line-height: 30px;
  font-weight: bold;
  text-indent: 2em;
}
.enroll > p {
  font-size: 14px;
  line-height: 30px;
  text-indent: 2em;
}
.enroll em {
  font-weight: bold;
  font-style: normal;
}
.enroll .red {
  color: #ff2941;
}
.enroll .blue {
  color: #0052ff;
}
.inscribe {
  margin: 50px 40px 0 0;
  text-align: right;
}
.inscribe > p {
  font-size: 14px;
  line-height: 30px;
  text-indent: 2em;
}
.school {
  display: none;
  margin: 25px auto 0;
  width: 470px;
  height: 360px;
  overflow: auto;
}
.school-table th {
  padding: 15px 0;
}
.school-table td {
  padding: 9px;
  font-size: 14px;
}
.school-table tr td:last-child {
  white-space: nowrap;
}
.school-table tr:nth-of-type(even) td {
  background: #f6f6f6;
}

/* 登录框 */
.login {
  position: relative;
  margin: 175px 0 0 5%;
  width: 400px;
  height: 420px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
}
.login > h1 {
  margin: 35px 0 0 35px;
  font-size: 24px;
  color: #333;
  text-align: left;
}
.logo-wechat {
  margin-top: 65px;
  width: 110px;
  height: 88px;
}
.btn {
  display: flex;
  align-items: center;
  margin: 60px auto 0;
  width: 325px;
  height: 55px;
  background-image: linear-gradient(0deg, #016ed3 0%, #3ea2ff 100%), linear-gradient(#1a90fe, #1a90fe);
  background-blend-mode: normal, normal;
  border-radius: 3px;
  cursor: pointer;
}
.btn > img {
  margin-left: 20px;
  width: 35px;
  height: 28px;
}
.btn > hr {
  margin: 0 25px;
  width: 1px;
  height: 30px;
  background: #fff;
  border: none;
  opacity: 0.4;
}
.btn > p {
  font-size: 18px;
  color: #fff;
}
.login > h2 {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
}
/* 二维码页面 */
.qrcode {
  display: none;
  position: absolute;
  top: 0;
  /*display: flex;*/
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
}
.close {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(../img/btn_close.png) no-repeat center center;
  background-size: 12px 12px;
  cursor: pointer;
}
.qrcode > h3 {
  font-size: 20px;
  color: #fff;
}
.qr-img {
  margin-top: 25px;
  padding: 20px;
  width: 210px;
  height: 210px;
  background: #fff;
}
.qr-img > img {
  width: 100%;
  height: 100%;
}
.qrcode > h4 {
  margin-top: 40px;
  font-size: 16px;
  color: #fff;
}

/* 底部 */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
  background: #fff;
}

.footer-left > p, .footer-right > p {
  font-size: 14px;
  line-height: 26px;
  color: #999;
}
.footer-right > p {
  text-align: center;
}
.footer-right {
  margin-left: 240px;
}
.footer-right > img {
  width: 110px;
  height: 110px;
}
.line {
  display: flex;
}
.line > p {
  font-size: 13px;
  color: #999;
}