.btn-common {
  background: linear-gradient(90deg, #5ed59f 0%, #3cb780 100%);
  line-height: 48px;
  font-size: 18px;
  border-radius: 48px;
  color: #fff;
  padding: 0 32px;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  transition: 0.1s all ease;
  outline: none;
  border: none;
  display: block;
}
.btn-common:hover {
  opacity: 0.85;
}
@media screen and (min-width: 100px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 384px) {
  html {
    font-size: 12px;
  }
}
@media screen and (min-width: 480px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 640px) {
  html {
    font-size: 20px;
  }
}
@media screen and (min-width: 800px) {
  html {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body::-webkit-scrollbar {
  display: none;
}
.mobile-container {
  max-width: 800px;
  margin: 0 auto;
}
.pc-container {
  display: none;
}
.m-nav-box {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}
.m-nav-box .nav-container {
  width: calc(100% - 3rem);
  max-width: 800px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.m-nav-box .nav-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}
.m-nav-box .nav-container ul li a {
  display: block;
  color: #3d3d3d;
  line-height: 4rem;
  padding: 0 1.5rem;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 300;
  position: relative;
}
.m-nav-box .nav-container ul li .active {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}
.m-nav-box .nav-container ul li .active::before {
  content: '';
  position: absolute;
  width: 1.2rem;
  height: 0.3rem;
  background: #4890FF;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 100px;
}
.m-nav-box .nav-drop-down {
  width: 3rem;
  height: 4rem;
  position: relative;
}
.m-nav-box .nav-drop-down::before {
  content: '';
  position: absolute;
  width: 2rem;
  height: 4rem;
  right: 3rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
}
.m-nav-box .nav-drop-down::after {
  content: '';
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: url("../upload/icon-more-m.png") no-repeat;
  background-size: 60%;
  background-position: center;
  transform: rotate(90deg);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0.5rem;
  margin: auto;
}
.m-nav-box .nav-drop-mask {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.m-nav-box .nav-drop-content {
  background: #fff;
  width: 100%;
  max-width: 800px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  display: none;
  padding: 0.5rem 0;
  z-index: 9;
}
.m-nav-box .nav-drop-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.m-nav-box .nav-drop-content ul li {
  width: 20%;
}
.m-nav-box .nav-drop-content ul li a {
  display: block;
  color: #3d3d3d;
  line-height: 3.5rem;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 300;
  position: relative;
}
.m-nav-box .nav-drop-content ul li .active {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
}
.m-nav-box .nav-drop-content ul li .active::before {
  content: '';
  position: absolute;
  width: 1.2rem;
  height: 0.3rem;
  background: #4890FF;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.quick-enter {
  width: 100%;
  padding: 1rem 1.25rem 1rem 1.25rem;
  box-sizing: border-box;
  background: #fff;
  z-index: 0;
}
.quick-enter ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.quick-enter ul li {
  width: calc(25% - 0.5rem);
}
.quick-enter ul li a {
  display: block;
  position: relative;
  width: 100%;
}
.quick-enter ul li a img {
  display: block;
  width: 100%;
}
.quick-enter ul li a .content {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: #fff;
}
.quick-enter ul li a .content .title {
  font-size: 1.5rem;
  font-weight: 600;
}
.quick-enter ul li a .content .description {
  margin-top: 0.25rem;
  font-size: 1rem;
}
.m-filter-box {
  background: #fff;
  padding-bottom: 1rem;
}
.m-filter-box .switch-box {
  width: calc(100% - 2.5rem);
  margin: 0 auto;
  box-shadow: 0 -1rem 1.5rem rgba(0, 0, 0, 0.06);
  background: #fff;
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
  overflow: auto;
}
.m-filter-box .switch-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.m-filter-box .switch-box ul li .title {
  font-size: 1.3rem;
  font-weight: 300;
  color: #111E36;
  line-height: 4.5rem;
  padding: 0 1rem;
  white-space: nowrap;
}
.m-filter-box .switch-box ul li .active {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}
.m-filter-box .content-box {
  width: calc(100% - 2.5rem);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.m-filter-box .content-box .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
.m-filter-box .content-box .list .item {
  margin-bottom: 0.5rem;
  width: 20%;
}
.m-filter-box .content-box .list .item a {
  display: block;
  width: 100%;
}
.m-filter-box .content-box .list .item a .pic-box {
  width: calc((100vw - 2.5rem) / 5 - 1rem);
  max-width: calc((800px - 2.5rem) / 5 - 1rem);
  margin: 0 auto;
  height: calc((100vw - 2.5rem) / 5 - 1rem);
  max-height: calc((800px - 2.5rem) / 5 - 1rem);
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.m-filter-box .content-box .list .item a .title {
  font-size: 1.2rem;
  color: #1a1a1a;
  text-align: center;
  line-height: 2rem;
  font-weight: 300;
}
.m-filter-box #filter-purpose .list,
.m-filter-box #filter-type .list,
.m-filter-box #filter-date .list {
  justify-content: flex-start;
}
.m-filter-box #filter-purpose .list .item a .title,
.m-filter-box #filter-type .list .item a .title,
.m-filter-box #filter-date .list .item a .title {
  font-size: 1.2rem;
  line-height: 3.5rem;
}
.m-swiper-box {
  background: #fff;
  padding: 1rem 0;
  box-sizing: border-box;
}
.m-swiper-box .m-swiper-container {
  width: 100%;
  height: 18rem;
  padding-bottom: 1rem;
}
.m-swiper-box .m-swiper-container .swiper-pagination {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.m-swiper-box .m-swiper-container .swiper-pagination .m-swiper-bullet-normal {
  display: block;
  width: 0.6rem;
  height: 0.2rem;
  background: #000;
  opacity: 0.16;
  border-radius: 100px;
  margin: 0 0.25rem;
  transition: 0.1s all linear;
}
.m-swiper-box .m-swiper-container .swiper-pagination .m-swiper-bullet-active {
  display: block;
  background: #4890FF;
  opacity: 1;
  width: 1rem;
  height: 0.2rem;
  border-radius: 100px;
}
.m-swiper-box .m-swiper-container .swiper-wrapper .swiper-slide {
  width: calc(100% - 2.5rem);
  box-sizing: border-box;
}
.m-swiper-box .m-swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  position: relative;
}
.m-swiper-box .m-swiper-container .swiper-wrapper .swiper-slide a .pic-box {
  display: block;
  width: 100%;
  height: 18rem;
  border-radius: 0.4rem;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.m-swiper-box .m-swiper-container .swiper-wrapper .swiper-slide a .title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 1.6rem;
  line-height: 2.1rem;
  color: #fff;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 93%;
}
.m-community-swiper-container {
  background: #fff;
  padding: 1rem 0 1rem 1.25rem;
  box-sizing: border-box;
}
.m-community-swiper-container .community-swiper-container {
  width: 100%;
  height: 17.25rem;
  padding-bottom: 1rem;
}
.m-community-swiper-container .community-swiper-container .swiper-pagination {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.m-community-swiper-container .community-swiper-container .swiper-pagination .m-swiper-bullet-normal {
  display: block;
  width: 0.6rem;
  height: 0.2rem;
  background: #000;
  opacity: 0.16;
  border-radius: 100px;
  margin: 0 0.25rem;
  transition: 0.1s all linear;
}
.m-community-swiper-container .community-swiper-container .swiper-pagination .m-swiper-bullet-active {
  display: block;
  background: #4890FF;
  opacity: 1;
  width: 1rem;
  height: 0.2rem;
  border-radius: 100px;
}
.m-community-swiper-container .community-swiper-container .swiper-wrapper .swiper-slide {
  width: 13.4rem;
}
.m-community-swiper-container .community-swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
}
.m-community-swiper-container .community-swiper-container .swiper-wrapper .swiper-slide a .pic-box {
  width: 13.4rem;
  height: 13.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.m-community-swiper-container .community-swiper-container .swiper-wrapper .swiper-slide a .title {
  color: #1a1a1a;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0.25rem 0;
  font-weight: 300;
}
.m-mall-container {
  background: #fff;
  padding: 1rem 0 1rem 0;
  box-sizing: border-box;
  width: 100%;
}
.m-mall-container .mall-banner-swiper-container {
  width: 100%;
  padding-bottom: 1rem;
}
.m-mall-container .mall-banner-swiper-container .swiper-pagination {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.m-mall-container .mall-banner-swiper-container .swiper-pagination .m-swiper-bullet-normal {
  display: block;
  width: 0.6rem;
  height: 0.2rem;
  background: #000;
  opacity: 0.16;
  border-radius: 100px;
  margin: 0 0.25rem;
  transition: 0.1s all linear;
}
.m-mall-container .mall-banner-swiper-container .swiper-pagination .m-swiper-bullet-active {
  display: block;
  background: #4890FF;
  opacity: 1;
  width: 1rem;
  height: 0.2rem;
  border-radius: 100px;
}
.m-mall-container .mall-banner-swiper-container .swiper-wrapper .swiper-slide {
  width: calc(100% - 2.5rem);
  box-sizing: border-box;
}
.m-mall-container .mall-banner-swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  position: relative;
}
.m-mall-container .mall-banner-swiper-container .swiper-wrapper .swiper-slide a .pic-box {
  display: block;
  width: 100%;
  height: 18rem;
  border-radius: 0.4rem;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.m-mall-container .mall-product-swiper-container {
  width: 100%;
  height: 17.25rem;
  margin-top: 1rem;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.m-mall-container .mall-product-swiper-container .swiper-pagination {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.m-mall-container .mall-product-swiper-container .swiper-pagination .m-swiper-bullet-normal {
  display: block;
  width: 0.6rem;
  height: 0.2rem;
  background: #000;
  opacity: 0.16;
  border-radius: 100px;
  margin: 0 0.25rem;
  transition: 0.1s all linear;
}
.m-mall-container .mall-product-swiper-container .swiper-pagination .m-swiper-bullet-active {
  display: block;
  background: #4890FF;
  opacity: 1;
  width: 1rem;
  height: 0.2rem;
  border-radius: 100px;
}
.m-mall-container .mall-product-swiper-container .swiper-wrapper .swiper-slide {
  width: 13.4rem;
}
.m-mall-container .mall-product-swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
}
.m-mall-container .mall-product-swiper-container .swiper-wrapper .swiper-slide a .pic-box {
  width: 13.4rem;
  height: 13.4rem;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.m-mall-container .mall-product-swiper-container .swiper-wrapper .swiper-slide a .title {
  color: #1a1a1a;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0.25rem 0;
  font-weight: 300;
}
.m-article-video-container {
  background: #fff;
  padding: 1rem 1.25rem 1rem 1.25rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.m-article-video-container .item {
  width: calc((100% - 6px) / 2);
  margin-bottom: 6px;
}
.m-article-video-container .item a {
  display: block;
}
.m-article-video-container .item a .pic-box {
  width: 100%;
  height: 9.6rem;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.m-article-video-container .item a .pic-box .icon-video {
  position: absolute;
  left: 10px;
  bottom: 10px;
  margin: 0;
  width: 40px;
  height: 40px;
  background: url("../upload/icon-play@2x.png") no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.36s all ease-in-out;
}
.m-article-video-container .item a .title {
  color: #1a1a1a;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0.25rem 0;
  font-weight: 300;
}
