.container {
  min-width: 1200px;
}
.header {
  width: 100%;
  box-sizing: border-box;
  background: url(../images/header_bg.png) center no-repeat;
  background-size: 100% 100%;
}
.header .header_content {
  width: 1200px;
  height: 165px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header_content .logo_link {
  display: inline-block;
  width: 528px;
  height: 75px;
}
.header .header_content .logo_link img {
  object-fit: contain;
}
.header .header_content .search {
  border: 1px solid #bf2233;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.header .header_content .search .search_input {
  width: 265px;
  height: 40px;
  line-height: 40px;
  padding: 0 13px;
  background-color: #fff;
}
.header .header_content .search .search_input input {
  width: 100%;
  outline: none;
  border: none;
  font-size: 14px;
}
.header .header_content .search .search_input input::placeholder {
  color: #c9caca;
}
.header .header_content .search .search_btn {
  height: 40px;
  cursor: pointer;
  border: none;
  background-color: #bf2233;
  padding: 0 15px 0 15px;
  line-height: 40px;
}
.header .header_content .search .search_btn span {
  color: #fff;
  font-size: 14px;
}
.header .header_content .search .search_btn::before {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/search.png) center no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  margin-right: 3px;
}
.header .header_content .go_donation {
  cursor: pointer;
  user-select: none;
  padding: 6px 23px;
  background: url(../images/donation_bg.png) center no-repeat;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
}
.header .header_content .go_donation img {
  width: 55px;
  height: 55px;
  margin-right: 10px;
}
.menu {
  width: 100%;
  background-color: #bf2233;
  position: relative;
  z-index: 999;
}
.menu .menu_content {
  width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
}
.menu .menu_content li {
  cursor: pointer;
  position: relative;
}
.menu .menu_content li a {
  line-height: 47px;
  font-size: 22px;
  color: #fff;
}
.menu .menu_content li .pull_list {
  position: absolute;
  top: 47px;
  left: 0;
  width: 90px;
  background-color: #f6f4f4;
  visibility: hidden;
}
.menu .menu_content li .pull_list img {
  position: absolute;
  top: -10px;
  left: calc(50% - 10px);
  width: 20px;
  height: 15px;
}
.menu .menu_content li .pull_list a {
  display: block;
  line-height: 40px;
  text-align: center;
  color: #221815;
  font-size: 14px;
}
.menu .menu_content li .pull_list a:hover {
  color: #fff;
  background-color: #bf2233;
}
.menu .menu_content li:hover .pull_list {
  visibility: visible;
}
.footer {
  width: 100%;
  margin-top: 50px;
  background-color: #f1f1f1;
}
.footer .footer_content {
  width: 1200px;
  margin: 0 auto;
  padding: 39px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footer_content .footer_item {
  width: 101px;
}
.footer .footer_content .footer_item .title {
  width: 102px;
  position: relative;
  font-size: 18px;
  height: 30px;
  text-align: left;
  color: #000000;
  border-bottom: 1px solid #c9caca;
}
.footer .footer_content .footer_item .title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: " ";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: #757575;
}
.footer .footer_content .footer_item ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .footer_content .footer_item ul li {
  margin-top: 17px;
  font-size: 14px;
  color: #595757;
}
.footer .footer_content .footer_item ul li a {
  font-size: 14px;
  color: #595757;
}
.footer .footer_content .footer_item:last-child {
  width: 323px;
}
.footer .footer_content .footer_item:last-child ul li {
  display: flex;
  justify-content: flex-start;
}
.footer .footer_content .footer_item:last-child ul li p:first-child {
  white-space: nowrap;
}
.footer .footer_content .footer_item .qr_code {
  width: 86px;
  height: 86px;
  border-radius: 5px;
  margin-right: 36px;
  position: relative;
}
.footer .footer_content .footer_item .code_wz::after {
  position: absolute;
  top: 0;
  right: -20px;
  content: "官方网站";
  display: inline-block;
  width: 19px;
  height: 100%;
  background-color: #bf2233;
  color: #fff;
  text-align: center;
  border-radius: 0 5px 5px 0;
}
.footer .footer_content .footer_item .code_wx::after {
  position: absolute;
  top: 0;
  right: -20px;
  content: "关注微信";
  display: inline-block;
  width: 19px;
  height: 100%;
  background-color: #bf2233;
  color: #fff;
  text-align: center;
  border-radius: 0 5px 5px 0;
}
.copyright {
  width: 100%;
  height: 50px;
}
.copyright p {
  line-height: 50px;
  font-size: 14px;
  color: #595757;
  text-align: center;
}

