html,
body {
  background-color: #d7c6a5;
  min-height: 100vh;
}
input::-webkit-input-placeholder {
  color: #787878;
}
.night input::-webkit-input-placeholder {
  color: #E9E9E9;
}
.opacity {
  opacity: 0.6;
}
.container {
  width: 100%;
  max-width: 750px;
  height: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background: url(../image/card/back.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.main_box {
  width: 100%;
  height: 100%;
}
.main_box .title {
  width: 100%;
  height: 1.74rem;
  max-width: 750px;
  background: url(../image/card/header-back.jpg);
  background-size: 100% 16.24rem;
  background-position: top center;
  position: fixed;
  top: 0;
}
.main_box .title h2 {
  margin: 1.08rem 0 0.19rem 0.3rem;
  width: 3.6rem;
  height: 0.58rem;
  background: url(../image/card/title.png);
  background-size: 100% 100%;
}
.main_box .card_list {
  width: 100%;
  min-height: calc(100vh - 3.5rem);
  flex-grow: 1;
  box-sizing: border-box;
  padding: 1.74rem 0.08rem 2rem;
  overflow: scroll;
}
.main_box .card_list li {
  width: 2.4rem;
  height: 3.35rem;
  margin-right: 0.07rem;
  margin-bottom: 0.23rem;
  float: left;
}
.main_box .card_list li.hidden {
  display: none;
}
.main_box .card_list li img {
  max-width: 100%;
}
.main_box .card_list li:nth-child(3n) {
  margin-right: 0;
}
.main_box .card_list li a {
  display: block;
}
.main_box .empty {
  position: fixed;
  top: 40vh;
  width: 100%;
  height: 36vh;
  text-align: center;
}
.main_box .empty img {
  width: 3.33rem;
  height: 2.3rem;
}
.main_box .empty span {
  color: #000;
  font-size: 0.28rem;
}
.search_box {
  width: 100%;
  box-sizing: border-box;
  height: 1.7rem;
  background: url(../image/card/search-back.png);
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  padding: 0 0 0 0.38rem;
}
.search_box.android {
  height: 50%;
}
.search_box > div {
  position: relative;
  width: 100%;
}
.search_box > div .search-top-logo {
  position: absolute;
  top: -0.2rem;
  width: 100%;
  z-index: 3;
}
.search_box > div .search-top-logo img {
  display: block;
  width: 80%;
  margin: auto;
}
.search_box > div .search_input {
  margin-top: 0.2rem;
  display: inline-block;
  position: relative;
  width: 4.8rem;
  height: 0.7rem;
}
.search_box > div .search_input::before {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: url(../image/card/search.png);
  background-size: 100% 100%;
}
.search_box > div .search_input::after {
  position: absolute;
  bottom: 0.1rem;
  left: 0.48rem;
  z-index: -1;
  content: '';
  width: 4.73rem;
  height: 0.06rem;
  background: url(../image/card/search-line.png);
  background-size: 100% 100%;
}
.search_box > div .search_input input {
  width: 3rem;
  height: 0.6rem;
  background-color: transparent;
  font-size: 0.28rem;
  color: #908477;
}
.search_box > div .search_input .search_btn {
  position: absolute;
  width: 2rem;
  height: 0.6rem;
  right: -0.92rem;
  top: 0.018rem;
  background: url(../image/card/search-btn.png);
  background-size: 100% 100%;
}
.search_box > div .drawer_btn {
  position: absolute;
  right: 0.52rem;
  top: 0.18rem;
  width: 0.5rem;
  height: 0.64rem;
  background: url(../image/card/filter.png);
  background-size: 100% 100%;
}
.search_box > div .drawer_btn.open {
  background: url(../image/card/filter-open.png);
  background-size: 100% 100%;
}
.drawer {
  position: fixed;
  right: -7rem;
  bottom: 0;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.drawer.open {
  right: 0;
}
.drawer_box {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  width: 6.2rem;
  height: 8rem;
  box-sizing: border-box;
  padding: 0.3rem 0.22rem 0.3rem 0.38rem;
  background: url(../image/card/drawer-back.png);
  background-size: 100% 100%;
  padding-bottom: 2rem;
}
.drawer_box .drawer_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.4rem;
  margin-bottom: 0.2rem;
}
.drawer_box .drawer_head h3 {
  font-size: 0.36rem;
  font-weight: bold;
  color: #090909;
  margin-right: 0.2rem;
}
.drawer_box .drawer_head h3::before {
  content: '';
  display: inline-block;
  width: 0.26rem;
  height: 0.26rem;
  background: url(../image/card/filter-empty.png);
  background-size: 100% 100%;
  margin-right: 4px;
}
.drawer_box .drawer_head h3.checked::before {
  background: url(../image/card/filter-checked.png);
  background-size: 100% 100%;
}
.drawer_box .drawer_head span {
  font-size: 0.22rem;
  font-weight: 500;
  color: #77500b;
  display: flex;
  align-items: center;
}
.drawer_box .drawer_head span::before {
  content: '';
  display: inline-block;
  width: 0.26rem;
  height: 0.26rem;
  background: url(../image/card/clear-filter.png);
  background-size: 100% 100%;
  margin-right: 4px;
}
.drawer_box .drawer_title {
  font-size: 0.32rem;
  font-weight: 400;
  color: #000000;
  display: flex;
  align-items: center;
  padding: 0.15rem 0 0.26rem 0;
}
.drawer_box .drawer_title .title_text {
  margin-right: 0.1rem;
}
.drawer_box .drawer_title .title_dash {
  flex-grow: 1;
  height: 1px;
  border-bottom: 1px dashed #ad6c40;
}
.drawer_box .hero_more {
  font-size: 0.22rem;
  font-weight: 500;
  color: #1380F0;
  margin-top: 0.2rem;
  text-align: center;
}
.drawer_box .drawer_list {
  overflow: hidden;
}
.drawer_box .drawer_list input[type='checkbox'] {
  display: none;
}
.drawer_box .drawer_list label {
  width: 100%;
  height: 100%;
  display: block;
}
.drawer_box .drawer_list li {
  float: left;
  margin-right: 0.13rem;
  margin-bottom: 0.24rem;
}
.drawer_box .drawer_list li:nth-child(4n) {
  margin-right: 0;
}
.drawer_box .drawer_list li .name-str {
  font-size: 0.26rem;
  width: 1.26rem;
  height: 0.54rem;
  box-sizing: border-box;
  line-height: 0.48rem;
  text-align: center;
  color: #ac7310;
  border: 2px solid #92723a;
  border-radius: 4px;
}
.drawer_box .drawer_list li.checked {
  background: #e7cdb3;
}
.drawer_box .drawer_list li.checked .name-str {
  color: #b66012;
}
.popup {
  transition: all 2s;
  opacity: 0;
  display: none;
}
.popup.open {
  opacity: 1;
  display: block;
}
.popup .pop_mask {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
}
.popup .pop_title {
  margin-top: 0.27rem;
  font-size: 0.32rem;
  font-weight: 400;
  color: #000000;
  padding: 0 0.25rem;
}
.popup .pop_main {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  box-sizing: border-box;
  background: linear-gradient(327deg, #DAEBFB 0%, #EAEDF0 100%);
  box-shadow: -0.04rem 0px 0.02rem 0px rgba(0, 0, 0, 0.14);
}
.popup.keywords_pop .pop_main {
  width: 6.33rem;
  height: 5.05rem;
}
.popup.keywords_pop .pop_main .pop_content {
  padding: 0 0 0 0.25rem;
  box-sizing: border-box;
  height: 3.2rem;
  overflow: scroll;
}
.popup.keywords_pop .pop_main ul {
  overflow: hidden;
  margin-top: 0.3rem;
}
.popup.keywords_pop .pop_main ul li {
  float: left;
  margin-right: 0.18rem;
  margin-bottom: 0.18rem;
  opacity: 1!important;
}
.popup.keywords_pop .pop_main ul li.checked .keywords_item {
  color: #fff;
  background: #471010;
}
.popup.keywords_pop .pop_main ul li .keywords_item {
  font-size: 0.28rem;
  padding: 0 0.34rem;
  height: 0.56rem;
  box-sizing: border-box;
  line-height: 0.48rem;
  text-align: center;
  color: #4C1717;
  border: 2px solid #471010;
}
.popup.text_pop .pop_main {
  width: 6.33rem;
  height: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 0.32rem;
}
.popup.text_pop .close_btn {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 0.3rem;
  height: 0.3rem;
  background-size: 100% 100%;
}
.popup .bottom_btn {
  line-height: 0.67rem;
  text-align: center;
  position: absolute;
  width: 92%;
  bottom: 0.3rem;
  font-size: 0.32rem;
}
.popup .bottom_btn .cancel {
  width: 1.42rem;
  height: 0.67rem;
  color: #787878;
  float: left;
}
.popup .bottom_btn .confirm {
  float: right;
  width: 3.6rem;
  height: 0.67rem;
  color: #fff;
  background: linear-gradient(130deg, #AF1919 0%, #980303 100%);
  border: 0.02rem solid #000000;
}
.popup .bottom_btn .confirm.disabled {
  opacity: 0.39;
}
.night .container .main_box .title {
  background-image: url(../image/card/header-back.jpg);
}
.night .search_box {
  background: linear-gradient(180deg, #9EA6AD 0%, #2F455B 100%);
}
.night .search_box input {
  color: #E9E9E9 !important;
}
.night .search_box .clear_input {
  background: url(../image/card/close_btn_moon.png);
  background-size: 100% 100%;
}
.night .search_box .drawer_btn.open {
  background: url(../image/card/dewer_btn_bg_moon.png);
  background-size: 100% 100%;
}
.night .drawer_box {
  background: linear-gradient(180deg, #1F3E5A 0%, #3C5064 100%);
  box-shadow: -0.04rem 0px 0.02rem 0px rgba(0, 0, 0, 0.14);
}
.night .drawer_box .drawer_head h3 {
  color: #B6C9DF;
}
.night .drawer_box .drawer_head span {
  color: #72ABED;
}
.night .drawer_box .drawer_title {
  color: #B6C9DF;
}
.night .drawer_box .drawer_title .title_dash {
  border-color: #6C90B3;
}
.night .drawer_box .hero_list {
  color: #B6C9DF;
}
.night .drawer_box .hero_more {
  color: #72ABED;
}
.night .drawer_box .type_list .type_item {
  border-color: #A87778;
  color: #A87778;
}
.night .drawer_box .type_list li.checked {
  background-color: #A87778;
  color: #fff;
}
.night .drawer_box .keywords .keywords_btn {
  background: #12273E;
  color: #496F95;
}
.night .popup .pop_title {
  color: #B6C9DF;
}
.night .popup .pop_main {
  background: linear-gradient(333deg, #1F3E5A 0%, #3C5064 100%);
}
.night .popup.keywords_pop ul li.checked .keywords_item {
  color: #fff;
  background: #A87778;
}
.night .popup.keywords_pop ul li .keywords_item {
  color: #A87778;
  border: 2px solid #A87778;
}
.night .popup.text_pop .pop_main {
  background: transparent;
  width: 6.33rem;
  height: 2.4rem;
  box-shadow: -4px 0px 2px 0px rgba(0, 0, 0, 0.14);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #B3C7DD;
  font-size: 0.32rem;
}
.night .popup .bottom_btn .cancel {
  color: #71859B;
}
.night .empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70vh;
}
.night .empty img {
  width: 3.33rem;
  height: 2.3rem;
}
.night .empty span {
  color: #D7E4F0;
}
