@import url('../css/reset.css');
header {
  background: #8F00FC;
  border-radius: 0 0 20px 20px;
}
header .head-hd {
  width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
  margin: 0 auto;
}
header .head-hd .head-hd-l {
  display: flex;
}
header .head-hd .head-hd-l .logo {
  margin-right: 24px;
}
header .head-hd .head-hd-l .logo img {
  width: 168px;
  height: 74px;
}
header .head-hd .head-hd-l nav {
  display: flex;
  align-items: center;
}
header .head-hd .head-hd-l nav a {
  background: #B970F0;
  padding: 14px 48px;
  border-radius: 32px;
  font-family: b;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  margin-right: 24px;
}
header .head-hd .head-hd-l nav a:hover {
  background: #6D22D6;
}
header .head-hd .head-hd-l nav a:last-child {
  margin-right: 0;
}
header .head-hd .search-box {
  width: 250px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 25px 25px 25px 25px;
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
header .head-hd .search-box input {
  font-family: m;
  font-weight: 500;
  font-size: 16px;
  color: #999999;
  width: calc(100% - 25px);
  border: none;
}
header .head-hd .search-box input::-webkit-input-placeholder {
  color: #999999;
}
header .head-hd .search-box img {
  width: 20px;
  height: 20px;
}
header .head-hd .menu,
header .head-hd .m-search {
  width: 48px;
  height: 48px;
  background: #B970F0;
  border-radius: 32px 32px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .head-hd .menu img,
header .head-hd .m-search img {
  width: 24px;
  height: 24px;
}
header .head-hd .menu,
header .head-hd .m-search {
  display: none;
}
header .head-hd .menus-box {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: -120%;
  left: 0;
  z-index: 9;
}
header .head-hd .menus-box .m-child {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border-radius: 0 0 20px 20px;
}
header .head-hd .menus-box .m-child nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .head-hd .menus-box .m-child nav a {
  width: 100%;
  font-family: b;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}
header .head-hd .menus-box .m-child nav a:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
#content {
  flex: 1;
  width: 1280px;
  margin: 0 auto;
  padding: 12px 40px;
  box-sizing: border-box;
}
footer {
  background: url('../images/foot-bg.png') no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 133px;
  display: flex;
  align-items: end;
}
footer .top {
  padding: 26px 24px;
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .top .logos {
  width: 142px;
  height: 72px;
}
footer .top .top-r ul {
  display: flex;
  margin-bottom: 14px;
}
footer .top .top-r ul li {
  margin-right: 32px;
}
footer .top .top-r ul li a {
  font-family: b;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}
footer .top .top-r ul li a:hover {
  text-decoration: underline;
}
footer .top .top-r ul li:last-child {
  margin-right: 0;
}
footer .top .top-r span {
  font-family: l;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  float: right;
}
@media (min-width: 860px) and (max-width: 1200px) {
  header {
    border-radius: 0;
  }
  header .head-hd {
    width: 100%;
    padding: 4px 16px;
    height: 72px;
    box-sizing: border-box;
  }
  header .head-hd .menu,
  header .head-hd .m-search {
    display: flex;
  }
  header .head-hd .search-box {
    display: none;
  }
  header .head-hd .head-hd-l nav {
    display: none;
  }
  header .head-hd .head-hd-l .logo {
    margin-right: 0;
  }
  header .head-hd .head-hd-l .logo img {
    width: 139px;
    height: 64px;
  }
  #content {
    width: 100%;
    padding: 12px;
  }
  footer .top {
    padding: 12px;
    width: 100%;
    flex-direction: column;
  }
  footer .top .top-r ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .top .top-r span {
    display: block;
    text-align: center;
    float: none;
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  header {
    border-radius: 0;
  }
  header .head-hd {
    width: 100%;
    padding: 4px 16px;
    height: 72px;
    box-sizing: border-box;
  }
  header .head-hd .menu,
  header .head-hd .m-search {
    display: flex;
  }
  header .head-hd .search-box {
    display: none;
  }
  header .head-hd .head-hd-l nav {
    display: none;
  }
  header .head-hd .head-hd-l .logo {
    margin-right: 0;
  }
  header .head-hd .head-hd-l .logo img {
    width: 139px;
    height: 64px;
  }
  #content {
    width: 100%;
    padding: 12px;
  }
  footer .top {
    padding: 12px;
    width: 100%;
    flex-direction: column;
  }
  footer .top .top-r ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .top .top-r span {
    display: block;
    text-align: center;
    float: none;
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  header {
    border-radius: 0;
  }
  header .head-hd {
    width: 100%;
    padding: 4px 16px;
    height: 72px;
    box-sizing: border-box;
  }
  header .head-hd .menu,
  header .head-hd .m-search {
    display: flex;
  }
  header .head-hd .search-box {
    display: none;
  }
  header .head-hd .head-hd-l nav {
    display: none;
  }
  header .head-hd .head-hd-l .logo {
    margin-right: 0;
  }
  header .head-hd .head-hd-l .logo img {
    width: 139px;
    height: 64px;
  }
  #content {
    width: 100%;
    padding: 12px;
  }
  footer .top {
    padding: 12px;
    width: 100%;
    flex-direction: column;
  }
  footer .top .top-r ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .top .top-r span {
    display: block;
    text-align: center;
    float: none;
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  header {
    border-radius: 0;
  }
  header .head-hd {
    width: 100%;
    padding: 4px 16px;
    height: 72px;
    box-sizing: border-box;
  }
  header .head-hd .menu,
  header .head-hd .m-search {
    display: flex;
  }
  header .head-hd .search-box {
    display: none;
  }
  header .head-hd .head-hd-l nav {
    display: none;
  }
  header .head-hd .head-hd-l .logo {
    margin-right: 0;
  }
  header .head-hd .head-hd-l .logo img {
    width: 139px;
    height: 64px;
  }
  #content {
    width: 100%;
    padding: 16px;
  }
  footer {
    padding-top: 78px;
  }
  footer .top {
    padding: 16px;
    width: 100%;
    flex-direction: column;
  }
  footer .top .top-r ul {
    justify-content: space-between;
  }
  footer .top .top-r ul li {
    margin-right: 0;
  }
  footer .top .top-r span {
    display: block;
    text-align: center;
    float: none;
  }
}
