@import url('../css/reset.css');
header {
  background: #fff;
  border-bottom: 1px solid #EEEEEE;
}
header .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1280px;
  padding: 0px 34px;
  margin: 0 auto;
}
header .head .head-l {
  display: flex;
  align-items: center;
}
header .head .head-l .logo {
  width: 100px;
  height: 80px;
  margin-right: 112px;
}
header .head .head-l nav {
  display: flex;
  align-items: center;
}
header .head .head-l nav a {
  width: 110px;
  height: 40px;
  background: #F7F7F7;
  border-radius: 30px 30px 30px 30px;
  margin-right: 12px;
  text-align: center;
  line-height: 40px;
}
header .head .head-l nav a span {
  font-family: r;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
header .head .head-l nav a:hover {
  background: #3EA8FE;
}
header .head .head-l nav a:hover span {
  color: #fff;
}
header .head .head-l nav a:last-child {
  width: 47px;
  margin-right: 0;
}
header .head .search-box {
  width: 288px;
  height: 48px;
  background: #F4F4F4;
  border-radius: 24px 24px 24px 24px;
  padding: 4px 4px 4px 16px;
  display: flex;
  align-items: center;
}
header .head .search-box input {
  width: calc(100% - 36px);
  height: 21px;
  font-family: r;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  background: #F4F4F4;
  border: none;
}
header .head .search-box button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
header .head .search-box button img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
header .m-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}
header .m-head .menu {
  width: 32px;
  height: 32px;
}
header .m-head .m-logo img {
  width: 54px;
}
header .m-head .m-search {
  display: flex;
}
header .m-head .m-search input {
  width: 251px;
  height: 40px;
  background: #F4F4F4;
  border-radius: 24px 24px 24px 24px;
  font-family: r;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  padding: 0 16px;
  box-sizing: border-box;
  display: none;
  border: none;
  margin-right: 6px;
}
header .m-head .m-search button {
  background: #fff;
  cursor: pointer;
}
header .m-head .m-search button img {
  width: 32px;
  height: 32px;
}
header .m-head .m-list-box {
  position: fixed;
  top: 56px;
  left: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: none;
}
header .m-head .m-list-box .m-list-chlid {
  background: #FFFFFF;
  width: 100%;
}
header .m-head .m-list-box .m-list-chlid ul li {
  border-top: 1px solid #D9D9D9;
}
header .m-head .m-list-box .m-list-chlid ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}
header .m-head .m-list-box .m-list-chlid ul li a img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
header .m-head .m-list-box .m-list-chlid ul li a span {
  font-family: m;
  font-weight: 500;
  font-size: 16px;
  color: #333;
}
header .m-head .m-list-box .m-list-chlid ul li:last-child {
  border-bottom: 1px solid #D9D9D9;
}
#content {
  flex: 1;
  width: 1280px;
  margin: 0 auto;
  padding: 20px 34px;
}
footer {
  background: #fff;
}
footer .foot {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 10px 30px 30px;
}
footer .foot .foot-l {
  width: 656px;
}
footer .foot .foot-l .foot-logo {
  width: 100px;
  height: 80px;
  margin-bottom: 4px;
}
footer .foot .foot-l span {
  display: block;
  font-family: s;
  font-size: 16px;
  color: #333333;
}
footer .foot .foot-l p {
  margin-top: 8px;
  font-family: r;
  font-weight: 500;
  font-size: 14px;
  color: #999999;
  line-height: 21px;
}
footer .foot .foot-r nav {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
footer .foot .foot-r nav a {
  margin-right: 20px;
  font-family: m;
  font-weight: 400;
  font-size: 16px;
  color: #666;
}
footer .foot .foot-r nav a:hover {
  color: #333;
  text-decoration: underline;
}
footer .foot .foot-r nav a:last-child {
  margin-right: 0;
}
footer .foot .foot-r span {
  display: block;
  font-family: r;
  font-weight: 500;
  font-size: 14px;
  color: #999999;
  text-align: right;
}
@media (min-width: 860px) and (max-width: 1200px) {
  header .head {
    display: none;
  }
  header .m-head {
    display: flex;
  }
  #content {
    width: 100%;
    padding: 16px;
  }
  footer .foot {
    width: 100%;
    padding: 12px;
    flex-direction: column;
  }
  footer .foot .foot-l {
    width: 100%;
    margin-bottom: 16px;
  }
  footer .foot .foot-r {
    width: 100%;
  }
  footer .foot .foot-r nav {
    justify-content: space-between;
  }
  footer .foot .foot-r nav a {
    margin-right: 0;
    font-size: 12px;
  }
  footer .foot .foot-r span {
    text-align: center;
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  header .head {
    display: none;
  }
  header .m-head {
    display: flex;
  }
  #content {
    width: 100%;
    padding: 16px;
  }
  footer .foot {
    width: 100%;
    padding: 12px;
    flex-direction: column;
  }
  footer .foot .foot-l {
    width: 100%;
    margin-bottom: 16px;
  }
  footer .foot .foot-r {
    width: 100%;
  }
  footer .foot .foot-r nav {
    justify-content: space-between;
  }
  footer .foot .foot-r nav a {
    margin-right: 0;
    font-size: 12px;
  }
  footer .foot .foot-r span {
    text-align: center;
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  header .head {
    display: none;
  }
  header .m-head {
    display: flex;
  }
  #content {
    width: 100%;
    padding: 16px;
  }
  footer .foot {
    width: 100%;
    padding: 12px;
    flex-direction: column;
  }
  footer .foot .foot-l {
    width: 100%;
    margin-bottom: 16px;
  }
  footer .foot .foot-r {
    width: 100%;
  }
  footer .foot .foot-r nav {
    justify-content: space-between;
  }
  footer .foot .foot-r nav a {
    margin-right: 0;
    font-size: 12px;
  }
  footer .foot .foot-r span {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  header .head {
    display: none;
  }
  header .m-head {
    display: flex;
  }
  #content {
    width: 100%;
    padding: 16px;
  }
  footer .foot {
    width: 100%;
    padding: 12px;
    flex-direction: column;
  }
  footer .foot .foot-l {
    width: 100%;
    margin-bottom: 16px;
  }
  footer .foot .foot-r {
    width: 100%;
  }
  footer .foot .foot-r nav {
    justify-content: space-between;
  }
  footer .foot .foot-r nav a {
    margin-right: 0;
    font-size: 12px;
  }
  footer .foot .foot-r span {
    text-align: center;
  }
}
