@import url('../css/head_foot.css');
.banner {
  width: 100%;
  height: 300px;
  background-image: url(../images/banner.png);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner h1 {
  text-align: center;
  font-size: 40px;
  font-family: b;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 60px;
  margin-bottom: 20px;
}
.banner .ban_btn {
  width: 400px;
  height: 58px;
  background: #0075FF;
  border-radius: 8px 8px 8px 8px;
  font-size: 18px;
  font-family: s;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .ban_btn img {
  width: 26px;
  height: 26px;
  margin-right: 4px;
}
#content {
  padding: 24px 60px;
  margin: 0 auto;
}
#content .cont {
  display: flex;
  justify-content: space-between;
}
#content .cont .cont_l {
  width: 760px;
}
#content .cont .cont_l .ad {
  margin-bottom: 24px;
}
#content .cont .cont_l .ad .ad_title {
  font-size: 12px;
  font-family: m;
  font-weight: 500;
  color: #D7D7D7;
  text-align: center;
}
#content .cont .cont_l .ad .ad_cont {
  min-height: 90px;
}
#content .cont .cont_l .brand-box {
  background: #FFFFFF;
  padding-bottom: 20px;
  margin-bottom: 24px;
}
#content .cont .cont_l .brand-box .brand_list {
  padding: 6px;
  border-radius: 8px 8px 8px 8px;
  display: grid;
  grid-template-columns: repeat(6, minmax(50px, 1fr));
  grid-gap: 12px;
  margin-bottom: 12px;
}
#content .cont .cont_l .brand-box .brand_list .brand_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 12px 8px 14px;
  background: #FFFFFF;
  border-radius: 8px 8px 8px 8px;
}
#content .cont .cont_l .brand-box .brand_list .brand_item img {
  width: 60px;
  height: 60px;
}
#content .cont .cont_l .brand-box .brand_list .brand_item span {
  display: block;
  text-align: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-family: m;
  font-weight: 500;
  color: #000000;
}
@media (any-hover: hover) {
  #content .cont .cont_l .brand-box .brand_list .brand_item:hover span {
    color: #00D179;
    text-decoration: underline;
  }
}
#content .cont .cont_l .brand-box .brand-more {
  width: 223px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #EEE;
  color: #666;
  text-align: center;
  font-family: m;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto;
  line-height: 36px;
  cursor: pointer;
}
#content .cont .cont_l .text h3 {
  margin-bottom: 8px;
  color: #333;
  font-family: m;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
}
#content .cont .cont_l .text p {
  color: #666;
  font-family: m;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 24px;
}
#content .cont .cont_l .text p:last-child {
  margin-bottom: 12px;
}
#content .cont .cont_r {
  width: 376px;
}
#content .cont .cont_r .popular_new .popular_title {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#content .cont .cont_r .popular_new .popular_title .popular_title_l {
  font-size: 24px;
  font-family: b;
  font-weight: bold;
  color: #111111;
  display: inline-block;
  position: relative;
}
#content .cont .cont_r .popular_new .popular_title .popular_title_l::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: #00D179;
  border-radius: 0px 0px 0px 0px;
  left: 0;
  bottom: 2px;
  z-index: -1;
}
#content .cont .cont_r .popular_new .popular_title .popular_more span {
  font-size: 14px;
  font-family: m;
  font-weight: 500;
  color: #666666;
}
#content .cont .cont_r .popular_new .popular_title .popular_more img {
  width: 16px;
  height: 16px;
}
#content .cont .cont_r .popular_new .p_n_list {
  display: flex;
  flex-direction: column;
}
#content .cont .cont_r .popular_new .p_n_list .p_n_item {
  width: 376px;
  height: 246px;
  padding: 12px;
  background: #FFFFFF;
  border-radius: 8px 8px 8px 8px;
  opacity: 1;
  border: 1px solid #F5F6FA;
  margin-bottom: 8px;
}
#content .cont .cont_r .popular_new .p_n_list .p_n_item img {
  width: 352px;
  height: 200px;
  border-radius: 8px;
}
#content .cont .cont_r .popular_new .p_n_list .p_n_item .p_title {
  font-size: 16px;
  font-family: s;
  font-weight: 600;
  color: #111111;
  margin-top: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (any-hover: hover) {
  #content .cont .cont_r .popular_new .p_n_list .p_n_item:hover {
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  }
  #content .cont .cont_r .popular_new .p_n_list .p_n_item:hover .p_title {
    color: #00D179;
  }
}
#content .cont .cont_r .r_ad {
  margin-bottom: 12px;
}
#content .cont .cont_r .r_ad .ad_title {
  font-size: 12px;
  font-family: m;
  font-weight: 500;
  color: #D7D7D7;
  text-align: center;
}
#content .cont .cont_r .r_ad .ad_cont {
  min-height: 90px;
  text-align: center;
}
#content .btm_cont {
  margin-top: 40px;
}
#content .btm_cont .btm_cont_list {
  margin-bottom: 20px;
}
#content .btm_cont .btm_cont_list .btm_cont_item {
  padding: 0 20px;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content .btm_cont .btm_cont_list .btm_cont_item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
#content .btm_cont .btm_cont_list .btm_cont_item .item_title {
  font-size: 16px;
  font-family: s;
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
}
#content .btm_cont .btm_cont_list .btm_cont_item .item_text {
  font-size: 14px;
  font-family: m;
  font-weight: 500;
  color: #999999;
  line-height: 21px;
  text-align: center;
}
#content .btm_cont a {
  display: block;
  width: 400px;
  height: 50px;
  background: #00D179;
  border-radius: 8px 8px 8px 8px;
  font-size: 16px;
  font-family: s;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  line-height: 50px;
  margin: 0 auto;
}
#content .btm_text {
  font-family: m;
  font-size: 12px;
  line-height: 20px;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 860px) and (max-width: 1200px) {
  #content {
    padding: 12px;
    width: 100%;
  }
  #content .cont {
    flex-direction: column;
  }
  #content .cont .cont_l {
    width: 100%;
  }
  #content .cont .cont_r {
    display: none;
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  #content {
    padding: 12px;
    width: 100%;
  }
  #content .cont {
    flex-direction: column;
  }
  #content .cont .cont_l {
    width: 100%;
  }
  #content .cont .cont_r {
    display: none;
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  .banner h1 {
    font-size: 20px;
    line-height: 40px;
  }
  .banner .ban_btn {
    width: calc(100% - 40px);
  }
  #content {
    padding: 12px;
    width: 100%;
  }
  #content .cont {
    flex-direction: column;
  }
  #content .cont .cont_l {
    width: 100%;
  }
  #content .cont .cont_l .brand-box .brand_list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
  #content .cont .cont_r {
    display: none;
  }
  #content .btm_cont {
    margin-top: 40px;
  }
  #content .btm_cont a {
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  .banner h1 {
    font-size: 20px;
    line-height: 40px;
  }
  .banner .ban_btn {
    width: calc(100% - 40px);
  }
  #content {
    padding: 12px;
    width: 100%;
  }
  #content .cont {
    flex-direction: column;
  }
  #content .cont .cont_l {
    width: 100%;
  }
  #content .cont .cont_l .brand-box .brand_list {
    grid-template-columns: repeat(3, minmax(50px, 1fr));
  }
  #content .cont .cont_r {
    display: none;
  }
  #content .btm_cont {
    margin-top: 40px;
  }
  #content .btm_cont a {
    width: 100%;
  }
}
