@import "reset.css";

* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  position: relative;
}

/* 全局字体样式 */
html, body {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1F2431;
}
body {
  background-color: #FFFFFF;
}

header {
  width: 100%;
  background-color: #00000011;
  height: 130px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
nav {
  width: 1200px; 
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 490px 1fr 1fr 1fr;
  grid-template-areas: "nav nav nav logo nav nav nav";
  align-items: center;
  gap: 20px;
}
nav .menu-item {
  grid-area: "nav";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FFFFFF;
  cursor: pointer;
}
nav .menu-item.active {
  font-weight: bold;
  color: #FFE693;
}
nav .menu-item:hover {
  font-weight: bold;
}
nav .top-logo {
  grid-area: "logo";
  width: 430px;
  margin: 0 auto;
}

footer {
  width: 100%;
  min-width: 1200px;
}
footer .footer-drawer {
  width: 100%;
  height: 190px;
  background: url("../images/foot-bg.jpg") no-repeat;
  background-size: 100% 128px;
  background-position: bottom center;
  text-align: center;
}
footer .footer-drawer img {
  width: 1100px;
  height: 190px;
  margin: 0 auto;
  position: relative;
}
footer .footer-container {
  width: 1200px;
  padding: 15px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5A5A5A;
  font-size: 16px;
  line-height: 2;
}
footer .footer-container img {
  width: 128px;
  height: 153px;
  margin-right: 60px;
}
footer .footer-container .school-info {
  list-style-type: disc;
}
footer .footer-container .ferind-link {
  width: 380px;
}
footer .footer-container .ferind-link label {
  display: block;
}
footer .footer-container .ferind-link .link-list {
  list-style-type: disc;
  display: flex;
  flex-wrap: wrap;
  gap: 0 60px;
}
footer .copyright {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #B90F09;
  color: #FFFFFF;
  font-size: 14px;
}