.header {
  width: 100%;
  height: 10%;
  background: #B90F12;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header .content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .content .menu-list {
  display: flex;
  align-items: center;
}
.header .content .menu-list .menu-item {
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
  box-sizing: border-box;
}
.header .content .menu-list .menu-item a {
  color: #FFFFFF;
}
.header .content .menu-list .login-but {
  width: 114px;
  height: 40px;
  border-radius: 22px;
  border: 1px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}
.header .content .menu-list .login-but a {
  color: #FFFFFF;
}
.header .content .menu-but {
  position: relative;
}
.header .content .menu-but .menu-show {
  display: none;
  width: 90px;
  background: #B90F12;
  position: absolute;
  top: 40px;
  right: -20px;
}
.header .content .menu-but .menu-show .menu-item {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B90F12;
  box-sizing: border-box;
}
.header .content .menu-but .menu-show .login-but {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B90F12;
  box-sizing: border-box;
}
.header .content .menu-but .menu-show .menu-item:hover {
  background-color: #fff;
}
.header .content .menu-but:hover .menu-show {
  display: block;
}
.header .content .menu-but:hover .menu-show {
  display: block;
}

.footer {
  width: 100%;
  height: 84px;
  background: #B90F12;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pagination {
  display: flex;
  align-items: center;
}
.pagination a {
  padding: 5px 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.pagination .active span{
  font-weight: bolder;
  color: #fff;
  padding: 5px 10px;
  background-color: #B90F12;
  border: none;
  border: #B90F12 1px solid;
}

.pagination .disabled span{
  padding: 5px 10px;
  border: none;
  border: 1px solid #ccc;
}

.cursor {
  cursor: pointer;
}