body {}

.main-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
}

.main-head {
  background-color: white;
  max-width: 1400px;
  margin: 0 auto;
}

.top-menu {
  min-height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.main-bar {

  position: sticky;
  top: 0px;
  background: white;
}

.main-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.search-input {
  font-size: 20px;
}

.main-menu {
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0px;
}

.search {
  margin-right: 4px;
}

.main-container {
  background: #f1f1f1;
  margin-top: 2px;
  padding-bottom: 30px;
  padding-top: 10px;
}

.main-content-container {
  max-width: 1400px;
  margin: 0 auto;
  background: #f1f1f1;
}

.main-content {
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
}

.my-footer {
  height: 100px;
}


.sub-top-menu {
  margin-left: 10px;
  cursor: pointer;
  user-select: none;

}
.sub-top-menu:hover {
  color: brown;
}

.sub-menu {
  margin-right: 10px;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}
.sub-menu:hover {
  color: brown;
}

.footer-container {
  background: url('/static/images/footer-bg.png');
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
  color: white;
  font-size: 16px;
}

.location-nav {
  padding: 0px;
}

.main-content {
  padding: 10px 10px;
  border-radius: 20px;
  background-color: white;
}

hr {
  margin: 0;
}

i {
  border: 1px solid #000;
  border-width: 0px 1px 1px 0px;
  display: inline-block;
  padding: 4px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.user-info {
  font-size: 16px;
  display: flex;
  margin-left: auto;
}

.login {
  display: none;
  margin-right: 10px;
  cursor: pointer;
}

.username {
  display: none;
  margin-right: 10px;
  cursor: pointer;
  text-decoration: underline;
}

.quit {
  display: none;
  margin-right: 10px;
  cursor: pointer;
}

.admin-item {
  display: none;
  margin-right: 10px;
  cursor: pointer;
}

.footer-desc {
  font-size: 15px;
}
.footer-ba {
  text-align: center;
}

.beian {
  text-decoration: none;
  color: white;
  display: none;
}

.add-title-btn {
  outline: auto;
  padding: 0 6px;
}

.active-sub-menu {
  background: brown;
  color: white;
  padding: 2 10px;
  border-radius: 8px;
  font-size: 17px;
}
.active-sub-menu:hover {
  color: white;
}

.close-btn {
  width: 20px;
  height: 20px;
  background-color: #f1f1f1;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.close-btn:before,
.close-btn:after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 9px;
  left: 3px;
}

.close-btn:before {
  transform: rotate(45deg);
}

.close-btn:after {
  transform: rotate(-45deg);
}


@media only screen and (max-width: 1300px) {
  .top-menu {
    display: none;
  }

  .user-info {
    font-size: 32px;
  }

  .sub-menu {
    font-size: 32px;
  }
  

  .search-input {
    font-size: 32px;
    width: 150px;
  }

  .footer-container {
    display: none;
  }

  .location-nav {
    display: none;
  }
}