* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.head {
  background-color: #ded7c7;
  padding: 20px 15%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head-right {
  display: flex;
  align-items: center;
}
.head-left a {
  color: black;
  text-align: center;
}
.head-left a h3 {
  color: #873326;
  font-size: 2.2rem;
  font-family: "NanoOldSong-A";
  font-weight: normal;
}
.head-left a p {
  font-size: 1rem;
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.482);
  font-family: "undefined";
}
.language {
  margin-right: 50px;
  display: flex;
  align-items: center;
}
.language p {
  margin: 0px 12px;
}

/* 下三角形符号 */
.language-list {
  width: 0px;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #873326;
  margin-left: 8px;
  cursor: pointer;
}
.loginRegister {
  cursor: pointer;
}
.nav {
  width: 100%;
  padding: 0 15%;
  height: 60px;
  background-image: url("../images/navbg.png");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav ul {
  /* width: 65%; */
  display: flex;
  align-items: center;
}
.nav ul li {
  text-align: center;
  position: relative;
  margin-right: 30px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.active {
  background-color: #934235;
}
.nav ul li a {
  padding: 12px 18px;
  color: #eedebf;
  font-size: 1.1rem;
  border-radius: 100px;
}
.nav ul li a:hover {
  background-color: #934235;
}
.tool_ico {
  display: flex;
  align-items: center;
}
.tool_ico a {
  margin-right: 30px;
}

footer {
  background-image: url("../images/footerbg.png");
  background-size: cover;
  padding: 20px 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}

.footer-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.footer-text a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-text ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.footer-text ul li {
  padding-right: 30px;
  position: relative;
}
.footer-text ul li .quarantine {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}
.quarantine::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.6);
}
.user {
  display: flex;
  align-items: center;
}
.user img {
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 1700px) {
  /* .nav ul li a {
    font-size: 0.7rem;
  } */
}
