/********
样式 2021-03-25 09:01
上次版本 2020-11-13 09:01
********/


/******** 重置样式 ********/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  font-size: 12px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-appearance: none;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  /*height: 100%;*/
  scroll-behavior: smooth;
}
img {
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #666
}
hr {
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  margin: 10px 0;
}

/**
https://github.com/google/material-design-icons
感谢Google
**/

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/materialicons/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: url(../fonts/materialicons/MaterialIcons-Regular.eot?#iefix) format('embedded-opentype'),
       url(../fonts/materialicons/MaterialIcons-Regular.woff2) format('woff2'),
       url(../fonts/materialicons/MaterialIcons-Regular.woff) format('woff'),
       url(../fonts/materialicons/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  /*cursor: default;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
/******** 通用 ********/
body {
  font-family: Microsoft Yahei, sans-serif;
  color: #333;
  background-color: #f4f4f4;
  height: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
/*  -webkit-transition: all 0.3s;
  transition: all 0.3s;*/
}
body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
/*
body ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: rgba(0,0,0,0.1);
  border-radius: 100px;
}
body ::-webkit-scrollbar-thumb:window-inactive {
  background-color: #333;
}
body ::-webkit-scrollbar-thumb:vertical:hover,
body ::-webkit-scrollbar-thumb:horizontal:hover {
}
body ::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: rgba(0,0,0,0.2);
  border: 2px solid rgba(0,0,0,0.2);
}
*/
/******** 清除浮动 ********/
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  clear: both;
}

/******** 按钮 ********/
.btn {
  display: inline-block;
  border: 0;
  border-radius: 3px;
  outline: none;
  /*box-shadow: 0 1px 2.5px rgba(0,0,0,.6);*/
  font-family: inherit;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}


/* 按钮初始色，蓝 */
.btn_color_1 {
  background-color: #4E66FF;
  color: #fff;
}
.btn_color_1.btn_text {
  background-color: #f4f4f4;
  color: #4E66FF;
}
.btn_color_1.btn_outline {
  box-shadow: inset 0 0 0 1px #4E66FF;
}
.btn_color_1:hover {
  background-color: #1A38FF;
  color: #fff;
}
/* 按钮初始色，红 */
.btn_color_2 {
  background-color: #e62828;/*f4330d*/
  color: #fff;
}
.btn_color_2.btn_text {
  background-color: #f4f4f4;
  color: #e62828;
}
.btn_color_2.btn_outline {
  box-shadow: inset 0 0 0 1px #e62828;
}
.btn_color_2:hover {
  background-color: #d63131;
  color: #fff;
}
/* 按钮初始色，绿 */
.btn_color_3 {
  background-color: #00c800;
  color: #fff;
}
.btn_color_3.btn_text {
  background-color: #f4f4f4;
  color: #00c800;
}
.btn_color_3.btn_outline {
  box-shadow: inset 0 0 0 1px #00c800;
}
.btn_color_3:hover {
  background-color: #00B100;
  color: #fff;
}
/* 按钮初始色，白 */
.btn_color_4 {
  background-color: #f6f6f6;
  color: #333;
}
.btn_color_4.btn_text {
  background-color: #f4f4f4;
}
.btn_color_4.btn_outline {
  box-shadow: inset 0 0 0 1px #999;
}
.btn_color_4:hover {
  background-color: #eee;
}
/* 按钮初始色，黄 */
.btn_color_5 {
  background-color: #ff7e00;
  color: #fff;
}
.btn_color_5.btn_text {
  background-color: #f4f4f4;
  color: #ff7e00;
}
.btn_color_5.btn_outline {
  box-shadow: inset 0 0 0 1px #ff7e00;
}
.btn_color_5:hover {
  background-color: #F77200;
  color: #fff;
}

.btn_shadow {
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.btn.disabled,
.btn.disabled:hover {
  background-color: #e5e5e5;
  color: #aaa;
  box-shadow: none;
  cursor: default;
}
.btn_round {
  border-radius: 100px;
}
.btn .material-icons {
  position: relative;
  vertical-align: middle;
}
.btn.btn_hasicon .material-icons {
  vertical-align: top;
  line-height: inherit;
}
.btn.btn_hasicon span {
  padding: 0 5px;
  line-height: inherit;
}

/******** 小徽章 标签 ********/
.badge {
  display: inline-block;
  font-style: normal;
  background-color: #0081e6;/* 蓝 */
  color: #fff;
  border-radius: 3px;
  padding: 0 4px;
  font-size: 12px;
  line-height: 24px;
  height: 24px;
}
.badge_color_1 {
  background-color: #e62828;/* 红 */
}
.badge_color_2 {
  background-color: #00c800;/* 绿 */
}
.badge_color_3 {
  background-color: #ff7e00;/* 黄 */
}
.badge_color_4 {
  background-color: #e5e5e5;/* 灰 */
  color: #aaa;
}


/******** 子页面 ********/
.subpage {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #e9e9e9;
  z-index: 100;
  overflow-y: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: none;
  transform: none;/* translate(0, 0) */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.subpage.hide {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

/******** 卡片 ********/
.card {
  display: block;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border-radius: 4px;
  position: relative;
  /*overflow: hidden;*/
}

.card_title {
  color: #858585;
}

.card_more {
  /*position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;*/
  display: block;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  color: #6d6d6d;
  font-size: 12px;
  background-color: #f4f4f4;
}

/******** 通用黑色遮罩 ********/
.mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#shadow {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
  z-index: 5;
  display: none;
}
.shadow_show {
  overflow: hidden;
  position: fixed;
  /*position: absolute;*/
  width: 100%;
  height: 100%;
}

/** 通用空结果 **/
.nothing {
  font-size: 20px;
  text-align: center;
  color: #aaa;
  padding: 60px 0;
}
.nothing a {
  color: #4E66FF;
}
.nothing small {
  font-size: 14px;
}
.nothing .btn {
  font-size: 12px;
  padding: 5px 10px;
  margin: 10px 0 0;
}
.nothing .material-icons.big {
  font-size: 60px;
}

/******** 通用头像 ********/
.avatar,
.image {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-image: url(../img/img_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.image {
  border-radius: 0;
}
.avatar {
  box-shadow: inset 0 0 5px rgba(0,0,0,.2);
  background-image: url(../img/u_avatar.png);
}
.iconimg {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/img_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/******** 通用弹出 ********/
/** 通用弹出
UPDATE: 2017/06/06
 **/
#poptips {
  display: none;
  z-index:10001;
}
.poptips_show {
  overflow: hidden;
  /*position: fixed;*/
  position: absolute;
  width: 100%;
  height: 100%;
}
.poptips_show #poptips {
  display: block;
  /*cursor: pointer;*/
}
@-webkit-keyframes poptips_ani {
  0% {
    -webkit-transform: translate(-50%, -150%);
  }
  85% {
    -webkit-transform: translate(-50%, 5%);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
  }
}
@keyframes poptips_ani {
  0% {
    transform: translate(-50%, -150%)/* perspective( 100px ) rotateX(-10deg)*/;
  }
  85% {
    transform: translate(-50%, 5%)/* perspective( 100px ) rotateX(.5deg)*/;
  }
  100% {
    transform: translate(-50%, 0)/* perspective( 100px ) rotateX(0deg)*/;
  }
}
#poptips:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 899;
}
#poptips .poptips_box {
  display: inline-block;
  position: fixed;
  top: 30%;
  left: 50%;
  min-width: 300px;
  max-width: 600px;
  margin: 0 auto;
/*  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);*/
  background-color: #fff;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(0,0,0,.6);
  z-index: 900;
  -webkit-animation: poptips_ani .7s 1 both;
  animation: poptips_ani .7s 1 both;
}
#poptips .title {
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
  color: #333;
  font-size: 14px;
}
#poptips .con {
  color: #757575;
  font-size: 14px;
  overflow: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
#poptips .con.center {
  text-align: center;
}
#poptips .con strong {
  color: #e62828;
}
#poptips .con hr {
  margin: 10px 0;
}
#poptips .btn_group {
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
}
#poptips .btn_group .btn {
  display: inline-block;
  font-size: 12px;
  line-height: 40px;
  background-color: #4E66FF;
  color: #fff;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 1px 5px rgba(0,0,0,.3);
}
#poptips .btn_group .cancel {
  background-color: #e5e5e5;
  color: #424242;
  margin-right: 10px;
  box-shadow: none;
}

.ie8 #poptips .poptips_box {
  left: 40px;
  right: 40px;
  border: 1px solid #c8c8c8;
}
@media (min-width: 320px) {
  #poptips .poptips_box {
    max-width: 310px;
  }
}
@media (min-width: 350px) {
  #poptips .poptips_box {
    max-width: 340px;
  }
}

@media (min-width: 480px) {
  #poptips .poptips_box {
    max-width: 400px;
  }
}

/** 快速闪现提示
UPDATE: 2018/09/06
上次版本: 2017/11/30
 **/
#winktips {
  position: fixed;
  bottom: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 999999;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#winktips .item {
  display: block;
  margin-bottom: 5px;
  display: none;
}
#winktips .item.pointer {
  pointer-events: initial;
}
#winktips .item span {
  display: inline-block;
  background-color: #000;
  background-color: rgba(0,0,0,.8);
  color: #fff;
  padding: 10px;
  border-radius: 3px;
}
#winktips .item a {
  cursor: pointer;
}

/******** 载入指示器 ********/

#loader {
  background-color: #fff;
  opacity: 1;
  position: fixed;
  bottom: 90px;
  left: 50%;
  margin-left: -25px;
  z-index: 100;
  padding: 10px;
  border-radius: 100px;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: loader_show .3s 1 both;
  animation: loader_show .3s 1 both;
}
#loader.hide {
  display: none;
  /*-webkit-animation: loader_hide .5s 1 both;
  animation: loader_hide .5s 1 both;*/
}

@-webkit-keyframes loader_show {
  0%{ -webkit-transform: translate(0, 190px); opacity:0 }
  1%{ -webkit-transform: translate(0, 190px); opacity:1 }
  100%{ -webkit-transform: translate(0, 0); opacity:1 }
}
@keyframes loader_show {
  0%{ transform: translate(0, 190px); opacity:0 }
  1%{ transform: translate(0, 190px); opacity:1 }
  100%{ transform: translate(0, 0); opacity:1 }
}
@-webkit-keyframes loader_hide {
  0%{ -webkit-transform: translate(0, 0); opacity:1 }
  30%{ -webkit-transform: translate(0, 0); opacity:1 }
  100%{ -webkit-transform: translate(0, 190px); opacity:0 }
}
@keyframes loader_hide {
  0%{ transform: translate(0, 0); opacity:1 }
  30%{ transform: translate(0, 0); opacity:1 }
  100%{ transform: translate(0, 190px); opacity:0 }
}


#loader:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border: 5px solid #1e88e5;
  border-top-color: transparent;
  border-radius: 100px;
  -webkit-animation: loader_ani 1s infinite;
  animation: loader_ani 1s infinite;
  /*display: none;*/
}


@-webkit-keyframes loader_ani {
  0%{ -webkit-transform: rotate(30deg); opacity:1 }
  50%{ opacity:0.5 }
  100%{ -webkit-transform: rotate(390deg); opacity:1 }
}
@keyframes loader_ani {
  0%{ transform: rotate(30deg); opacity:1 }
  50%{ opacity:0.5 }
  100%{ transform: rotate(390deg); opacity:1 }
}




#loader_tf {
  user-select: none;
  background-color: #fff;
  opacity: 1;
  position: fixed;
  bottom: 90px;
  left: 50%;
  margin-left: -25px;
  z-index: 100;
  padding: 10px;
  border-radius: 100px;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 50px;
  height: 50px;
  -webkit-animation: loader_tf_3_ani 4s ease-in-out infinite both;
  animation: loader_tf_3_ani 4s ease-in-out infinite both;
  border: solid 4px #de0515;
}
#loader_tf.hide {
  display: none;
}
.loader_tf_logo {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/set_blank.png);
  -webkit-animation: loader_tf_ani 4s ease-in-out infinite both;
  animation: loader_tf_ani 4s ease-in-out infinite both;
  position: absolute;
  top: 6px;
  left: 6px;
}
.loader_tf_logo:nth-child(2) {
  animation-delay: -2s;
}

@-webkit-keyframes loader_tf_ani {
  0%{ -webkit-transform: rotateY(0deg); }
  6%{ -webkit-transform: rotateY(0deg); }
  15%{ -webkit-transform: rotateY(0deg) }
  21%{ -webkit-transform: rotateY(80deg); }
  25%{ -webkit-transform: rotateY(90deg); }
  75%{ -webkit-transform: rotateY(90deg); }
  79%{ -webkit-transform: rotateY(80deg); }
  85%{ -webkit-transform: rotateY(0deg) }
  94%{ -webkit-transform: rotateY(0deg); }
  100%{ -webkit-transform: rotateY(0deg); }
}
@keyframes loader_tf_ani {
  0%{ transform: rotateY(0deg); }
  6%{ transform: rotateY(0deg); }
  15%{ transform: rotateY(0deg) }
  21%{ transform: rotateY(80deg); }
  25%{ transform: rotateY(90deg); }
  75%{ transform: rotateY(90deg); }
  79%{ transform: rotateY(80deg); }
  85%{ transform: rotateY(0deg) }
  94%{ transform: rotateY(0deg); }
  100%{ transform: rotateY(0deg); }
}

@-webkit-keyframes loader_tf_3_ani {
  0%{ -webkit-transform: scale(3.5);opacity: 0;border-color: #de0515; }
  5%{ opacity: 0;border-color: #de0515; }
  10%{ opacity: 1;border-color: #de0515; }
  25%{ -webkit-transform: scale(1); }
  40%{ opacity: 1;border-color: #940bb7; }
  45%{ opacity: 0;border-color: #940bb7; }
  50%{ -webkit-transform: scale(3.5);opacity: 0; }
  55%{ opacity: 0;border-color: #940bb7; }
  60%{ opacity: 1;border-color: #940bb7; }
  75%{ -webkit-transform: scale(1); }
  90%{ opacity: 1;border-color: #de0515; }
  95%{ opacity: 0;border-color: #de0515; }
  100%{ -webkit-transform: scale(3.5);opacity: 0; }
}
@keyframes loader_tf_3_ani {
  0%{ transform: scale(3.5);opacity: 0;border-color: #de0515; }
  5%{ opacity: 0;border-color: #de0515; }
  10%{ opacity: 1;border-color: #de0515; }
  25%{ transform: scale(1); }
  40%{ opacity: 1;border-color: #940bb7; }
  45%{ opacity: 0;border-color: #940bb7; }
  50%{ transform: scale(3.5);opacity: 0; }
  55%{ opacity: 0;border-color: #940bb7; }
  60%{ opacity: 1;border-color: #940bb7; }
  75%{ transform: scale(1); }
  90%{ opacity: 1;border-color: #de0515; }
  95%{ opacity: 0;border-color: #de0515; }
  100%{ transform: scale(3.5);opacity: 0; }
}


/** 表单 通用 **/

.card_form {
  padding: 15px;
  margin-bottom: 5px;
}
@media (min-width: 480px) {
  .card_form {
    padding: 15px 30px;
  }
}
/*.card_form .form_item:last-of-type,
.card_form .form_item:last-child {
  border-bottom: none;
}*/

/*select.form_input*/
.form_check input[type="checkbox"],
.form_check input[type="radio"]
.form_input[type="text"],
textarea.form_input,
.appearance_none {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  outline: none;
  margin: 0;
}



.form_item {
  display: block;
  position: relative;
  font-size: 0;
  padding: 0;
  font-size: 14px;
  border-bottom: 1px solid #e8e8e8;
  /*display: -webkit-box;
  display: -webkit-flex;
  display: flex;*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_item.focus {
  border-color: #555;
}
.form_item.noborder {
  border-bottom: none;
}
.form_label {
  /*float: left;*/
  color: #8c8c8c;
  display: block;
  /*width: 20%;*/
  line-height: 40px;
  /*position: absolute;
  top: 0;
  left: 0;*/
  font-size: 14px;
  /*z-index: 1;*/
  /*min-width: 80px;*/
  width: 80px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.form_item_con {
  position: relative;
  padding-left: 80px;
  width: 100%;
  min-height: 40px;
  /*-webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;*/
}
.form_static {
  /*border: 1px solid transparent;*/
  line-height: 1;
  min-height: 40px;
  padding: 13px 0;
  font-size: 14px;
}
.form_input {
  background-color: transparent;
  border: 0;
  /*line-height: 40px;*/
  height: 40px;
  padding: 0 15px;
  font-size: 14px;
  font-family: inherit;
  max-width: 100%;
  display: inline-block;
  outline: none;
  /*border: 1px solid #ddd;*/
}
.form_input.hasborder {
  border-bottom: 1px solid #e8e8e8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_input.hasborder.focus {
  border-color: #555;
}
.form_check {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  padding-right: 5px;
}
.form_check input[type="checkbox"],
.form_check input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  margin: 0 0px 0 0;
  vertical-align: middle;
  display: inline-block;
  width: 24px;
  height: 22px;
}
.form_check input[type="checkbox"]:before,
.form_check input[type="checkbox"]:after,
.form_check input[type="radio"]:before,
.form_check input[type="radio"]:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  position: relative;
  top: 6px;
  left: 0;
  line-height: 10px;
  padding-bottom: 12px;
  color: #ddd;
}
.form_check input[type="radio"]:before {
  content: "";
}
.form_check input[type="radio"]:checked:before {
  content: "";
  color: #e71f24;/*#0081e6*/
  -webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;/**/
}

.form_check input[type="checkbox"]:before {
  content: "";
}
.form_check input[type="checkbox"]:checked:before {
  content: "\e86c";
  color: #e71f24;/*#0081e6*/
  -webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;
}
.form_check input[type="checkbox"] + span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_check input[type="radio"]:checked + span,
.form_check input[type="checkbox"]:checked + span {
  color: #e71f24;
}
.form_check > .material-icons {
  vertical-align: middle;
  color: #999;
  opacity: .7;
}
.form_check span {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.form_check [type=checkbox]:checked ~ span,
.form_check [type=checkbox]:checked ~ .material-icons {
  color: #e71f24;
}
@-webkit-keyframes check_radio {
  0%{-webkit-transform:scale(0); opacity:0}
  100%{-webkit-transform:scale(1); opacity:1}
}
@keyframes check_radio {
  0%{transform:scale(0); opacity:0}
  100%{transform:scale(1); opacity:1}
}
/*
.form_imgupload {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #fff;
}*/
.form_item .cover {
  background-color: #f4f4f4;
  background-image: url(../img/img_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*
.form_item .cover,
.form_item .avatar {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #fff;
  margin: 0 0 0 auto;
}
*/
.form_imgupload_box {
  font-size: 0;
}



.form_item_plane .form_item_con {
  /*text-align: right;*/
}
.form_item_plane .form_item_con .form_input {
  width: 100%;
  background-color: transparent;
  /*text-align: right;*/
  padding: 0;
}
.form_item_plane .form_item_con .form_input:focus {
  outline: none;
}
.form_item_plane .form_item_con textarea.form_input {
  line-height: 1.2;
  padding-top: 10px;
  min-height: 80px;
  text-align: left;
}

.form_item_tips {
  padding: 5px 0;
}
.form_item_tips .form_item_con {
  min-height: initial;
}
.form_item_tips .form_static {
  text-align: left;
  background-color: #FEFFD9;
  border: 1px dotted #c8c8c8;
  padding: 5px 10px;
  line-height: 1.2;
  font-size: 14px;
  min-height: initial;
}
.form_item_tips .form_static small {
  color: #e62828;
}
.form_item_tips.form_item_plane .form_label {
  display: none;
}
.form_item_tips.form_item_plane .form_item_con {
  padding-left: 0;
}
.form_item_tips .form_static hr {
  margin: 5px 0;
  border: 0;
  border-bottom: 1px dotted #c8c8c8;
}
.form_item_con select.form_input {
  background-color: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAACV0lEQVR4Xu2YPUvDQBiA700xXfwXbi4WBCfB0b+jW0wpHpQm2XTtT3EUnAShLm7+hG4uDSQnBw2IJLmP3HuXj+uapHd5+jy5S4FM/AMTv3/iAXgDJk7AJzBxAfxD0CfgE5g4AZ/AxAXwq4BPoCmBzWZzGwRBNIZEyrLMlsvlS929NBpAKQ3m8/krIeR64BDeDofDDaW0VALAT16v12ez2WwHAKdDhMAY+ymKYrFarb6b5i98BiRJcgcATwMFcB/H8XPb3IUABpxCq/oVFCGAIaYgo74SAH7ykFJgjAnVVwYwoBSk1FcG8CeFLwAI+/hQVFFfC8AxhQgA0p4CkFZfG0CPU1BSXxtAH1NgjOVFUZy3bXi0N0JNFyZJ0psUGGMPcRxnOllK7QPqvrhHKWip3ymB6uLju4KzVaGL+kYAuF4VuqhvDIDDFDqpbwyAi1XBhPpGAdhOwYT6xgHwFMIw/ACAhc5ypHCNEfWNA+BfmGXZRVmW71jvCibVRwGAnYJJ9dEAIKZgVH00ABgpYKiPCsB0ChjqowMwlQJjbJfn+WXT//oKq0ftqdovQzIDd10VuPpBEFxFUfQpM57OOagAuqaAqT56AtUAuilgq28NgM6qYEN9qwD4YGmaUkLIo0ynNtS3DmC73Z7s93u+TW59V7ClvnUAMinYVN8JAFEKNtV3BqApBdvqOwNQl4IL9Z0C+J+CC/WdA6hS4BPB3OuLll30rXDbBPi7Aj+OudfvNQDR5Gwcd2qAjRsUjeEBiAiN/bg3YOy/sOj+vAEiQmM/7g0Y+y8sur9fwQmLULMwzdsAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-size: auto 12px;
  background-position: calc(100% - 7px) 50%;
  cursor: pointer;
}
.form_item_plane select.form_input {
  /*direction: rtl;*/
  background-color: transparent;
}
select.form_input option {
  /*direction: ltr;*/
  color: #333;
}

.form_textarea {
  display: block;
}
.form_textarea .form_label {
  position: relative;
  width: 100%;
}
.form_textarea .form_item_con {
  padding-left: 0;
  clear: both;
}
.form_textarea .form_item_con textarea.form_input {
  padding-top: 0;
}

.form_help {
  text-align: left;
  /*background-color: #FEFFD9;
  border: 1px dotted #c8c8c8;*/
  padding: 5px 0;
  margin-bottom: 5px;
  line-height: 1.2;
  font-size: 12px;
  color: #858585;
}
.form_item_plane .form_help {
  text-align: right;
}
.haserror .form_help {
  padding: 5px;
  border-color: #FFC6C6;
  color: #e62828;
  background-color: #FEFFD9;
}

.form_unit {
  position: absolute;
  top: 0;
  right: 0;
  color: #8c8c8c;
  line-height: 40px;
  height: 40px;
}
.form_item_con .form_input.has_unit {
  padding-right: 40px;
}

.form_icon {
  position: absolute;
  top: 0;
  left: 0;
  color: #8c8c8c;
  line-height: 40px;
  height: 40px;
  width: 40px;
  text-align: center;
}
.form_item_con .form_input.has_icon {
  padding-left: 40px;
}


.form_item.form_item_btn {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 0;
  color: #6d6d6d;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  /*padding-top: 10px;*/
  border: none;
}
.form_item.form_item_btn .form_btn_part {
  position: relative;
  padding: 0 2.5px;
  font-size: 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.form_item.form_item_btn .form_btn_part.half {
  -webkit-box-flex: .5;
  -webkit-flex: .5;
  flex: .5;
}
.form_item.form_item_btn .form_btn_part .form_btn {
  display: block;
  width: 100%;
  line-height: 40px;
}
.form_item.form_item_btn .form_btn_part:first-of-type {
  padding-left: 0;
}
.form_item.form_item_btn .form_btn_part:last-of-type {
  padding-right: 0;
}
.form_item.form_item_btn .form_btn_part .form_btn i,
.form_item.form_item_btn .form_btn_part .form_btn span {
  vertical-align: top;
  line-height: inherit;
}
/** 时间段 **/
.dateregion_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.dateregion_wrap .form_input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  background-color: transparent;
  border-color: #e8e8e8;
  cursor: pointer;
  color: #333;
  text-align: center;
  padding: 0;
  width: 100%;
}
.dateregion_wrap span {
  display: block;
  padding: 0 10px;
}

.main_top_box .dateregion_wrap {
  width: 100%;
}
.main_top_box .dateregion_wrap .form_input {
  display: block;
}

/** 切换Switch **/
.form_switchbox {
  margin: 0;
  display: block;
  padding: 3px 0;
}
.form_switchbox .switchbox {
  background-color: #7d7d7d;/*#d9534f*/
  border-radius: 3px;
  min-width: 34px;
  height: 34px;
  line-height: 34px;
  padding: 0 8px 0 18px;
  font-weight: normal;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_switchbox .switchbox span {
  line-height: inherit;
  vertical-align: top;
}
.form_switchbox [type=checkbox]:checked + .switchbox .sorry,
.form_switchbox .switchbox .ok {
  display: none;
}
.form_switchbox [type=checkbox]:checked + .switchbox .ok {
  display: block;
}
.form_switchbox .switchbox:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  left: 2px;
  top: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_switchbox [type=checkbox]:checked + .switchbox {
  background-color: #4E66FF;/*#5cb85c*/
  color: #fff;
  padding: 0 18px 0 8px;
}
.form_switchbox [type=checkbox]:checked + .switchbox:before {
  left: auto;
  right: 2px;
  background-color: #fff;
}

/** 通用地址选择 **/
.select_zone .dropdown {
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}
.select_zone .dropdown_menu {
  position: absolute;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  z-index: 1;
  padding: 10px;
  width: 100%;
  top: auto;
}
.select_zone .dropdown_menu .form_select {
  margin-bottom: 10px;
  width: 100%;
}
.select_zone .dropdown_menu .form_select:last-of-type {
  margin-bottom: 0;
}
.select_zone .input_address {
  margin-top: 10px;
}

.form_item_plane .form_item_con.select_zone {
  font-size: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown:after {
  content: "";
}
.form_item_plane .form_item_con.select_zone .dropdown_menu {
  margin-left: -80px;
  border: 0;
  background-color: transparent;
  position: relative;
  width: auto;
  padding: 0;
  margin-top: -10px;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select {
  border-bottom: 1px solid #e8e8e8;
/*  line-height: 40px;
  height: 40px;*/
  margin-bottom: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:first-of-type {
  margin-top: 10px;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:last-of-type {
  border-bottom: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:after {
  right: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select select {
  direction: ltr;
}

/** 范围 滑杆 数字拉杆 **/
.form_range {
  position: relative;
  width: 100%;
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
}
.form_range .form_range_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;/*#e8e8e8*/
  border-radius: 100px;
}
.form_range .form_range_bar {
  position: absolute;
  top: 0;
  left: 0;
  /*right: 0;*/
  bottom: 0;
  background-color: #0ca7ff;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
}
.form_range.warning .form_range_bar {
  background-color: #ffa82b;
}
.form_range.danger .form_range_bar {
  background-color: #ff442b;
}
.form_range input[type=range] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: col-resize;
}

/** 目录树 **/
.ul_tree {
  padding-left: 0;
  list-style-type: none;
  margin-top: 4px;
}
.ul_tree label {
  margin: 0;
  width: 100%;
}
.ul_tree ul {
  /*border: 1px solid #DEDEDE;*/
  padding: 5px;
  padding-left: 20px;
  margin: 5px 0;
  list-style-type: none;
  position: relative;
}
.ul_tree ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 11px;
  width: 0;
  bottom: 17px;
  border-left: 1px dotted #bbb;
}
/*
.ul_tree ul:after {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 11px;
  height: 0;
  border-top: 1px dotted #bbb;
}
*/
.ul_tree li {
  position: relative;
}
.ul_tree li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -8px;
  width: 5px;
  height: 0;
  border-top: 1px dotted #bbb;
}
.ul_tree > li:before {
  display: none;
}
.ul_pool {
  background-color: #f4f4f4;
  background-color: rgba(0,0,0,.03);
}
.ul_pool li {
  display: inline-block;
  padding-right: 20px;
}
.ul_pool li:before {
  display: none;
}

.ul_tree .placeholder_fold i,
.ul_tree .btn_fold i {
  vertical-align: middle;
  color: #ccc;
  font-size: 16px;
  width: 24px;
  text-align: center;
}
.ul_tree .flod .btn_fold i.off,
.ul_tree .btn_fold i.on {
  display: none;
}
.ul_tree .flod .btn_fold i.on {
  display: inline-block;
  color: #999;
}
.ul_tree .placeholder_fold {
  /*cursor: default;*/
}
.ul_tree .placeholder_fold i {
  opacity: 0;
}
.ul_tree .flod ul {
  display: none;
}

.ul_tree.has_foldbtn .ul_pool {
  padding-left: 40px;
}
.ul_tree .form_check {
  line-height: 30px;
  height: 30px;
}









/******** 滑出面板 ********/
.subplate_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 12;
}
.subplate_wrap .mask {
  cursor: pointer;
}
.subplate {
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
  z-index: 6;
  overflow: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.subplate_box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.subplate_wrap.hide {
  visibility: hidden;
}
.subplate_wrap.hide .subplate {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.subplate_wrap.hide .mask {
  opacity: 0;
}
/*
.subplate_wrap .btn_cancel {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 100px;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}
*/
.subplate_wrap .subplate_title {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  color: #858585;
  margin-bottom: 10px;
}

.subplate_wrap .bottombar {
  z-index: 7;
  box-shadow: none;
}


/******** 通用下拉菜单 ********/
.dropdown {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
.dropdown_menu {
  position: relative;
  z-index: 1;
  top: 0;
  display: none;
}
.dropdown_menu dl {
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 7px rgba(0,0,0,.1);
  border: 1px solid #c8c8c8;
}
.dropdown_menu dd {
  padding: 10px 15px;
  margin: 0;
  cursor: pointer;
}
.dropdown_menu dd:hover {
  background-color: #f4f4f4;
}
.dropdown_menu dd.active {
  font-weight: bold;
  background-color: #8FCEFF;
}
.dropdown:after {
  content: "\e5c5";
  font-family: 'Material Icons';
  font-size: 24px;
  line-height: 1;
  height: 100%;
  vertical-align: middle;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -12px;
}

/** 通用页签导航 **/
.tab_nav {
  font-size: 0;
  /*background-color: #e5e5e5;
  box-shadow: inset 0 -1px 3px rgba(0,0,0,.2);*/
  white-space: nowrap;
  overflow: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.tab_nav a {
  position: relative;
  font-size: 12px;
  line-height: 35px;
  display: inline-block;
  padding: 0 5px;
  text-align: center;
  cursor: pointer;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  z-index: 1;
}
.tab_nav a:hover {
  color: #e62828;
}
.tab_nav a.active {
  color: #e62828;
  background-color: #fff;
  border-bottom: 3px solid #e62828;
  font-weight: bold;
}
.tab_nav a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-right: 1px solid #f4f4f4;
}
.tab_nav a:first-of-type:after {
  border-right: 0;
}
.tab_nav a span,
.tab_nav a .material-icons {
  vertical-align: middle;
}

.tab_plate {
  display: none;
}

.tab_plate.active {
  display: block;
}
.tab_nav.noflex {
  display: block;
}
.tab_nav.noflex a {
  padding: 0 15px;
}

.subtab_nav {
  background-color: #f4f4f4;
  box-shadow: inset 0 2px 2px rgba(0,0,0,.1);
}
.subtab_nav .item {
  margin: 5px;
  border: none;
  border-radius: 4px;
}
.subtab_nav .item.active {
  color: #fff;
  background-color: #4E66FF;
  border: none;
}
.subtab_nav a:after {
  display: none;
}

/******** 通用富文本内容 ********/
.richtext {
  /*font-size: 16px;
  line-height: 1.5;*/
  font-size: 13px;
  line-height: 1.5;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.richtext img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.richtext p {
  max-width: 100%;
  /*text-indent: 2em;*/
}
.richtext .table {
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.richtext table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;  
  border-spacing: 0;
  text-align: left;
  margin-bottom: 60px;
  overflow: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.richtext table caption {
  text-align: left;
  padding: 10px 0;
  font-weight: bold;
}
.richtext table caption small {
  font-size: 12px;
}
.richtext th,
.richtext td {
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 5px 10px;
  background-color: #fff;
}
.richtext th {
  font-size: 14px;
  padding: 10px;
  background-color: #F3F3F3;
}
.richtext .face {
  display: inline-block;
}

/** 动画 心跳 **/
@-webkit-keyframes popheart {
  0 {
    -webkit-transform: scale( 1 );
  }
  100% {
    -webkit-transform: scale( 3 );
    opacity: 0;
  }
}
@keyframes popheart {
  0 {
    transform: scale( 1 );
  }
  100% {
    transform: scale( 3 );
    opacity: 0;
  }
}
/** 动画 摇动 **/
@-webkit-keyframes shake {
  from{-webkit-transform:rotate(0deg)}
  25%{-webkit-transform:rotate(3deg)}
  50%{-webkit-transform:rotate(0deg)}
  75%{-webkit-transform:rotate(-3deg)}
  to{-webkit-transform:rotate(0deg)}
}
@keyframes shake {
  from{transform:rotate(0deg)}
  25%{transform:rotate(3deg)}
  50%{transform:rotate(0deg)}
  75%{transform:rotate(-3deg)}
  to{transform:rotate(0deg)}
}

/** 搜索框 通用母版 **/
.search_box {
  position: relative;
  padding: 5px 0;
}
.search_box .form_search {
  width: 100%;
  padding: 0;
  margin: 0;
}
.search_box .input_search {
  line-height: 40px;
  height: 40px;
  border: 0;
  width: 100%;
  padding: 0 20px;
  outline: none;
  font-size: 14px;
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
}
.search_box .btn_search {
  position: absolute;
  top: 5px;
  right: 0;
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  margin: 0;
}
.search_box .icon {
  color: #333;
}



/** 顶栏 **/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  /*box-shadow: 0 1px 3px rgba(0,0,0,.4);*/
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header_current {
  display: none;
}
.header_box {
  width: 100%;
  height: 50px;
}

.header_title {
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  width: calc( 100% - 100px );
  margin: 0 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header_leftarea {
  position: absolute;
  top: 0;
  left: 5px;
  height: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header_rightarea {
  position: absolute;
  top: 0;
  right: 5px;
  height: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header_leftarea .back span {
  vertical-align: top;
}
.header_leftarea .btn,
.header_rightarea .btn {
  display: inline-block;
  vertical-align: top;
  line-height: 50px;
  font-size: 14px;
  height: 100%;
  color: inherit;
  text-align: center;
  min-width: 40px;
}
.header_leftarea .btn .iconfont,
.header_rightarea .btn .iconfont {
  font-size: 28px;
  min-width: 26px;
}
.header_leftarea .btn .material-icons,
.header_rightarea .btn .material-icons {
  top: -1px;
  font-size: 28px;
}

.header .header_search {
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  /*width: 100%;*/
  padding: 0 10px;
  z-index: 1;
}
.no_leftarea .header_search {
  left: 0;
}
.no_rightarea .header_search {
  right: 0;
}
.header .header_search .btn_search {
  /*display: none;*/
}
.header .header_search .input_search {
  background-color: #f4f4f4;
}
.header .search_box .icon {
  color: #4E66FF;
}
.header .header_search .input_search,
.header .header_search .input_search::-webkit-input-placeholder {
  /*color: #60b0f7;*/
}
.header.has_header_search {
  background-color: #015fa9;
}
.header.has_header_search .header_search .input_search {
  background-color: #fff;
  padding-right: 60px;
  color: #333;
}
.header.has_header_search .search_box .icon {
  color: #333;
}
.header.has_header_search .header_search .input_search::-webkit-input-placeholder {
  color: #999;
}
.header.has_header_search .header_search .btn_search {
  display: block;
}

.header.header_transparent {
  background-color: transparent;
  box-shadow: none;
}
.header.header_transparent .header_box,
.header.header_transparent .header_leftarea .btn,
.header.header_transparent .header_rightarea .btn {
  color: #666;
}

/** 页脚 **/
#footer {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}

#footer_box {
  background-color: #333;
  color: #999;
  padding-bottom: 50px;
  margin-bottom: -50px;
}
#footer_box .list_planemenu .planemenu_item {
  color: #edf0f8;
  border-bottom: 1px solid #222;
}
#footer_box .info {
  padding: 10px 10px 20px 10px;
}
#footer .copyright {
  text-align: center;
}
#footer .copyright a {
  color: #666;
}


/** 通用底栏 **/
.bottombar {
  position: fixed;
  padding-bottom: 10px;
  bottom: -10px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  z-index: 3;
}
.bottombar_box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  height: 50px;
  text-align: center;
  font-size: 0;
  color: #6d6d6d;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.bottombar .bottombar_btn {
  margin: 0;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 50px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.bottombar .bottombar_part {
  position: relative;
  padding: 0 2.5px;
  font-size: 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.bottombar .bottombar_part .btn_inner {
  display: block;
  width: 100%;
  line-height: 40px;
  height: 40px;
}
.bottombar .bottombar_part.half {
  -webkit-box-flex: .5;
  -webkit-flex: .5;
  flex: .5;
}

.bottombar_part .bottombar_text {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.bottombar_text .bottombar_text_box {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


.bottombar .bottombar_part .btn_hascountdown {
  line-height: 22px;
  font-size: 14px;
  height: 40px;
}
.bottombar .bottombar_part .btn_hascountdown .countdown {
  line-height: 15px;
  font-size: 12px;
  opacity: .8;
}

/** 通用底栏 **/
.bottombar_part .btn_hasicon {
  display: block;
  cursor: pointer;
  position: relative;
}
.bottombar_part .btn_hasicon .icon {
  font-size: 25px;
  line-height: 1;
}
.bottombar_part .btn_hasicon span {
  display: block;
  vertical-align: top;
}
.bottombar_part.hasnew:after {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  margin-right: -20px;
  display: block;
  width: 10px;
  height: 10px;
  text-align: center;
  background-color: #e62828;
  color: #fff;
  border-radius: 100px;
  padding: 2px;
  font-size: 0;
}

.bottombar_part.active .btn_hasicon,
.bottombar_part:hover .btn_hasicon {
  color: #4E66FF;
}
.bottombar_part .btn_hasicon .active_show,
.bottombar_part.active .btn_hasicon .active_hide {
  /*visibility: hidden;*/
  display: none;
}
.bottombar_part.active .btn_hasicon .active_show,
.bottombar_part .btn_hasicon .active_hide {
  /*visibility: visible;*/
  display: inline-block;
}



/** 筛选标签 通用母版 **/
.tab_filter {
  /*padding-bottom: 5px;*/
  font-size: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
}
.tab_filter .tab_filter_item {
  position: relative;
  font-size: 12px;
  line-height: 40px;
  display: inline-block;
  padding: 0 5px;
  text-align: center;
  cursor: pointer;
  /*border-bottom: 3px solid transparent;*/
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1 1 auto;
}
.tab_filter .tab_filter_item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-right: 1px solid #f4f4f4;
}
.tab_filter .tab_filter_item:last-of-type:after {
  border-right: 0;
}
.tab_filter .tab_filter_item_box,
.tab_filter .tab_filter_item .dropdown {
  display: block;
  /*display: table;
  table-layout: fixed;
  width: 100%;*/
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tab_filter .tab_filter_item_box span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tab_filter .tab_filter_item .dropdown_menu {
  position: absolute;
  top: -10px;
  right: 0;
  background-color: #fff;
  color: #333;
  box-shadow: 0 20px 20px rgba(0,0,0,.1), 0 5px 5px rgba(0,0,0,.1);
  font-size: 14px;
  padding: 0;
  min-width: 150%;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.tab_filter .tab_filter_item .dropdown_menu .menu_item {
  display: block;
  padding: 10px 20px;
  cursor: pointer;
  user-select: none;
}
.tab_filter .tab_filter_item .dropdown_menu .active {
  color: #e62828;
}
.tab_filter .tab_filter_item .dropdown_menu .active:before {
  content: "\e86c";
  font-family: 'Material Icons';
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  margin-left: -25px;
  padding-right: 10px;
  position: relative;
  top: -2px;
}
.tab_filter .tab_filter_item .dropdown_menu .menu_item:hover {
  background-color: #f4f4f4;
}

.tab_filter_item_toggle a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tab_filter_item_toggle .on {
  color: #e62828;
}
.tab_filter_item_toggle.active .off,
.tab_filter_item_toggle .on {
  display: none;
}
.tab_filter_item_toggle.active .on,
.tab_filter_item_toggle .off {
  display: block;
}


.tab_filter .tab_filter_item.tab_filter_icon {
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  flex: initial;
  width: 50px;
}
.tab_filter_item .material-icons {
  vertical-align: middle;
}

.tab_filter select.form_input {
  width: 100%;
  background-color: transparent;
  border: 0;
  font-family: inherit;
  line-height: 35px;
  height: 35px;
  font-size: 12px;
  padding: 0 10px;
  outline: none;
}






/** 置顶区 **/

.main_top {
  position: relative;
  margin-top: 50px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.05), 0 0 10px rgba(0,0,0,.05);
  margin-bottom: -50px;
}
.main_top_box {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  top: 0;
  left: 0;
  z-index: 2;
}
.main_top_fixed .main_top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.main_top ::-webkit-scrollbar {
  background-color: #2a2a2a;
}
.main_top ::-webkit-scrollbar-thumb {
  border-color: #2a2a2a;
}
body ::-webkit-scrollbar-thumb:window-inactive {
  background-color: #000;
}

/** 页面主体 **/
.main {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 55px;
  padding: 0 20px;
}
.main_maxwidth {
  margin: 0 -20px;
}
/** 标题 【主体区】 **/
.main_title {
  font-size: 14px;
  margin: 10px 0;
  /*text-align: center;*/
  display: block;
}
.main_title .iconfont {
  font-size: 25px;
  vertical-align: middle;
}
.main_title .material-icons {
  vertical-align: middle;
}
.main_title span {
  vertical-align: middle;
}

/** 载入更多按钮 【主体区】 **/
.main_more {
  position: relative;
  display: block;
  text-align: center;
  font-size: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  /*background-color: #f9f9f9;*/
  cursor: pointer;
}
.main_more i,
.main_more span {
  vertical-align: middle;
}

.main_more.nomore {
  background-color: transparent;
  box-shadow: none;
}
.main_more.nomore:before,
.main_more.nomore:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 25%;
  border-bottom: 1px solid #c8c8c8;
}
.main_more.nomore:after {
  left: auto;
  right: 0;
}

.main_tips {
  margin: 20px 10px;
  color: #858585;
}
.main_tips strong {
  color: #d71726;
}






/** 通屏菜单 **/

.list_planemenu {
  
}
.list_planemenu .planemenu_item {
  position: relative;
  display: block;
  line-height: 45px;
  height: 45px;
  border-bottom: 1px solid #e8e8e8;
  padding-left: 10px;
  padding-right: 40px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #666;
  cursor: pointer;
}
.list_planemenu .planemenu_item:last-child {
  border-bottom: none;
}

.list_planemenu .planemenu_item .material-icons {
  line-height: 45px;
  vertical-align: middle;
}
.list_planemenu .planemenu_item .label {
  padding-left: 10px;
  vertical-align: middle;
}
.list_planemenu .planemenu_item .iconimg {
  width: 25px;
  height: 25px;
  position: relative;
  top: 7px;
}
.list_planemenu .planemenu_item .icon {
  margin-right: 5px;
}
.list_planemenu .planemenu_item .enter {
  position: absolute;
  top: 0;
  right: 5px;
}

.list_planemenu .planemenu_item .text {
  position: absolute;
  display: block;
  top: 10px;
  right: 40px;
  font-style: normal;
  line-height: 25px;
  max-width: calc( 100% - 100px );
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


.list_planemenu .planemenu_item em {
  position: absolute;
  top: 14px;
  right: 35px;
  display: block;
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  min-width: 16px;
  font-style: normal;
  text-align: center;
  background-color: #e62828;
  color: #fff;
  border-radius: 100px;
  padding: 0 2px;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.list_planemenu .planemenu_item.noenter em {
  right: 10px;
}

.list_planemenu .planemenu_item.noenter .text {
  right: 10px;
}
.list_planemenu .planemenu_item.hasnew .text {
  padding-right: 25px;
}



/******** 上传图片 ********/
.part_imgupload {
  padding-top: 70px;
  padding-bottom: 70px;
}
#part_imgupload {
  2display: none;
  z-index: 10;
}
.imgupload_preview_box {
  position: relative;
  min-width: 100px;
  min-height: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.imgupload_preview {
  max-width: 95%;
  background-color: #ddd;
  /*min-width: 100px;
  min-height: 100px;*/
}
.imgupload_preview_label {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  min-width: 100px;
  min-height: 100px;
}
.bottombar_imgupload {
  z-index: 600;
}
#crop_bottombar {
  display: none;
}
#submit_imgupload {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  flex: 2;
}





/** 头部按钮红点 **/
.header .header_rightarea .btn.hasnew em {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  display: block;
  text-align: center;
  background-color: #e62828;
  color: #fff;
  border-radius: 100px;
  padding: 0 2px;
  font-size: 12px;
  font-style: normal;
  line-height: 16px;
  height: 16px;
  min-width: 16px;
  -webkit-transform: scale(.9);
  transform: scale(.9);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  display: none;
}

/** 右上角弹出菜单 首页 **/
.headermenu_popmenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.headermenu_popmenu .menu_box {
  position: absolute;
  top: 50px;
  right: 10px;
  background-color: #fff;
  box-shadow: 0 2px 7px rgba(0,0,0,.7);
  font-size: 14px;
  padding: 0;
  min-width: 150px;
  border-radius: 4px;
  overflow: hidden;
  margin-left: 10px;
}
.headermenu_popmenu .menu_box .menu_item {
  display: block;
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}
.headermenu_popmenu .mask {
  cursor: pointer;
}

/************* 覆盖时间选择器 *************/
.mbsc-fr-w {
  font-family: inherit!important;
}
.mbsc-material .mbsc-fr-popup,
.mbsc-mobiscroll .mbsc-fr-w {
  border-radius: 10px!important;
}
.mbsc-material .mbsc-sc-whl-l {
  border-color: #ccc!important;
}
.mbsc-material .mbsc-fr-btn {
  color: #555!important;
}
.mbsc-material .mbsc-fr-w {
  padding-top: 10px!important;
}
.mbsc-material .mbsc-sc-lbl {
  margin-bottom: -10px!important;
  color: #999!important;
}
.mbsc-mobiscroll .mbsc-sc-itm {
  font-size: 1em!important;
}
.mbsc-mobiscroll .mbsc-range-btn {
  border-radius: 4px;
}

.mbsc-mobiscroll .mbsc-range-btn {
  border-color: #4E66FF!important;
}
.mbsc-mobiscroll .mbsc-range-btn-sel .mbsc-range-btn {
  background-color: #4E66FF!important;
}
.mbsc-mobiscroll .mbsc-cal-btn-txt {
  color: #4E66FF!important;
}
.mbsc-mobiscroll .mbsc-cal-days {
  color: #4E66FF!important;
}
.mbsc-mobiscroll .mbsc-cal-days th {
  border-bottom-color: #4E66FF!important;
}
.mbsc-mobiscroll .mbsc-fr-btn {
  color: #4E66FF!important;
}
.mbsc-mobiscroll .mbsc-cal .mbsc-cal-day-sel .mbsc-cal-day-i,
.mbsc-mobiscroll .mbsc-cal .mbsc-cal-sc-sel .mbsc-cal-sc-cell-i {
  background-color: #4E66FF!important;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal-table .mbsc-cal-day-sel .mbsc-cal-day-i {
  background-color: rgba(0, 129, 230, .3)!important;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal-table .mbsc-cal-day-hl .mbsc-cal-day-i {
  background-color: #4E66FF!important;
}

.mbsc-material .mbsc-range-btn-sel .mbsc-range-btn {
  border-color: #4E66FF!important;
  color: #4E66FF!important;
}
.mbsc-material .mbsc-cal-btn-txt {
  color: #4E66FF!important;
}
.mbsc-material.mbsc-range .mbsc-cal-table .mbsc-cal-day-hl .mbsc-cal-day-i .mbsc-cal-day-fg {
  background-color: rgba(0, 129, 230, .8)!important;
}
.mbsc-mobiscroll .mbsc-cal-hl-now .mbsc-cal-today {
  color: #0081e6!important;
}


/** 评星 通用 **/
.star {
  font-size: 0;
  white-space: nowrap;
  clip: rect(21px 68px 51px 38px);
}
.star em {
  display: inline-block;
}
.star i {
  color: #999;
}
.star em i:nth-of-type(2) {
  color: #e71f24;
  display: none;
}
.star_1 em:nth-of-type(1) i:nth-of-type(2),
.star_2 em:nth-of-type(1) i:nth-of-type(2),
.star_2 em:nth-of-type(2) i:nth-of-type(2),
.star_3 em:nth-of-type(1) i:nth-of-type(2),
.star_3 em:nth-of-type(2) i:nth-of-type(2),
.star_3 em:nth-of-type(3) i:nth-of-type(2),
.star_4 em i:nth-of-type(2),
.star_4 em:nth-of-type(5) i:nth-of-type(1),
.star_5 em i:nth-of-type(2) {
  display: inline-block;
}
.star_1 em:nth-of-type(1) i:nth-of-type(1),
.star_2 em:nth-of-type(1) i:nth-of-type(1),
.star_2 em:nth-of-type(2) i:nth-of-type(1),
.star_3 em:nth-of-type(1) i:nth-of-type(1),
.star_3 em:nth-of-type(2) i:nth-of-type(1),
.star_3 em:nth-of-type(3) i:nth-of-type(1),
.star_4 em i:nth-of-type(1),
.star_4 em:nth-of-type(5) i:nth-of-type(2),
.star_5 em i:nth-of-type(1) {
  display: none;
}



.star i {
  font-size: 12px;
  vertical-align: middle;
}


/** 五个星星，显示评星 **/
.ratestar {
  font-family: 'Material Icons';
  font-size: 12px;
  color: #999;
}
.ratestar:before {
  color: #e71f24;
}
.ratestar.star_0:after {
  content: "\e83a\e83a\e83a\e83a\e83a";
}
.ratestar.star_1:before {
  content: "\e838";
}
.ratestar.star_1:after {
  content: "\e83a\e83a\e83a\e83a";
}
.ratestar.star_2:before {
  content: "\e838\e838";
}
.ratestar.star_2:after {
  content: "\e83a\e83a\e83a";
}
.ratestar.star_3:before {
  content: "\e838\e838\e838";
}
.ratestar.star_3:after {
  content: "\e83a\e83a";
}
.ratestar.star_4:before {
  content: "\e838\e838\e838\e838";
}
.ratestar.star_4:after {
  content: "\e83a";
}
.ratestar.star_5:before {
  content: "\e838\e838\e838\e838\e838";
}


/** 首页 样式 **/
body.index {
  
}
.main_hr {
  border-bottom: 5px solid #1d1d1d;
  margin-left: -10px;
  margin-right: -10px;
}

/** 右下角浮动按钮 **/
.float_tools {
  display: block;
  position: fixed;
  right: 0;
  bottom: 70px;
  z-index: 10;
  font-size: 0;
  width: 40px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  pointer-events: none;
}
.float_tools .btn {
  /*border-radius: 100px;*/
  width: 80px;
  height: 40px;
  padding-right: 40px;
  line-height: 40px;
  opacity: .9;
  background-color: #333;
  color: #fff;
  margin-top: 5px;
  position: relative;
  pointer-events: initial;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.float_tools .btn:hover {
  opacity: 1;
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}
.float_tools .btn_scroll_to_top {
  display: none;
}
.float_tools .btn_scroll_to_top.active {
  display: block;
}
.float_tools .btn_backhome {
  background-color: #e62828;
}
.float_tools .btn_search {
  background-color: #00bf2e;
}


.float_tools .float_user {
  /*padding: 5px;*/
  padding-top: 5px;
  border-radius: 100px;
  background-color: #fff;
  min-height: 60px;
  pointer-events: initial;
  filter: drop-shadow(0 0 10px rgba(0,0,0,.5));
}
.float_tools .float_user .avatar {
  width: 50px;
  height: 50px;
  margin-left: -5px;
  border: 5px solid #fff;
}
.float_tools .float_user .btn {
  margin-bottom: 5px;
}
.float_tools .float_user .btn .material-icons {
  line-height: 40px;
}

.float_tools .float_user .btn.hasnew:after {
  content: "";
  position: absolute;
  right: 50%;
  top: 2px;
  margin-right: -18px;
  display: block;
  width: 10px;
  height: 10px;
  text-align: center;
  background-color: #e62828;
  color: #fff;
  border-radius: 100px;
  padding: 2px;
  font-size: 0;
  animation: float_tools_hasnew_ani 2s linear infinite;
}

@keyframes float_tools_hasnew_ani {
  0% {
    transform: translateY(-10px) scale(.7, 1);
  }
  10% {
    transform: translateY(5px) scale(1.2, .8);
  }
  15% {
    transform: translateY(-5px) scale(.9, 1.1);
  }
  20% {
    transform: translateY(5px) scale(1.1, .9);
  }
  25% {
    transform: translateY(-2px) scale(.9, 1.05);
  }
  30% {
    transform: translateY(5px) scale(1, 1);
  }
  90% {
    transform: translateY(5px) scale(1, 1);
  }
  92% {
    transform: translateY(5px) scale(1.2, .8);
  }
  95% {
    transform: translateY(5px) scale(1, 1.2);
  }
  100% {
    transform: translateY(-10px) scale(.7, 1.1);
  }

}

.float_tools .float_tools_btn .btn_backhome {
  background-color: #0081e7;
}
.float_tools .float_tools_btn .btn_eventadd {
  background-color: #db4424;
}
.float_tools .btn .iconfont {
  font-size: 26px;
  -webkit-text-stroke-width: 0;
}

.float_tools .btn_eventadd_s {
  height: 64px;
}
.float_tools .btn_eventadd_s span {
  font-size: 12px;
  line-height: 14px;
  padding-top: 10px;
  display: inline-block;
}
.float_tools.fold {
  transition: all 0.3s;
  right: -20px;
  animation: float_tools_fold_ani 1.5s linear infinite alternate;
}
.float_tools .float_tools_btn {
  transition: all 0.3s;
}
.float_tools.fold .float_tools_btn {
  transform: scale(0);
  transform-origin: 50% 0;
}
.float_tools.fold .float_user .btn {
  display: none;
}

@keyframes float_tools_fold_ani {
  0% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(2px);
  }

}

/** 价格 底栏 **/
.bottombar .bottombar_part.btn_price {
  font-size: 17px;
  color: #ff8003;
  font-weight: bold;
}


/** 表单错误高亮提示 **/
#tipshighlight {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-animation: tipshighlight_ani .5s 3 both;
  animation: tipshighlight_ani .5s 3 both;
  z-index: 1000;
}
@-webkit-keyframes tipshighlight_ani {
  0%{ -webkit-transform: scale(1.05); box-shadow: 0 0 0 4px #e62828; }
  100%{ -webkit-transform: scale(1); }
}
@keyframes tipshighlight_ani {
  0%{ transform: scale(1.05); box-shadow: 0 0 0 4px #e62828; }
  100%{ transform: scale(1); }
}


/** 图文详情展开 **/
.richtext_wrap.folded {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.richtext_wrap.folded .card_more {
  display: block;
}

.richtext_wrap .card_more {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  color: #e62828;
  font-size: 12px;
  display: none;
}
.richtext_wrap .card_more:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  display: block;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: #999;
  font-weight: bold;
  background-image: linear-gradient(rgba(51, 51, 51, 0), #fff 70%);
}
.richtext_wrap .card_more span {
  width: 100%;
  display: block;
  line-height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
}



/**================= 首页 =================**/
#index_header {
  display: none;
  background-color: #f4f4f4;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
}
#index_header .header_box {
  padding: 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
#index_header .logo {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-image: url(../img/logo_bs.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
#index_header .fakesearch {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.05);
  line-height: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0 20px 0;
  color: #999;
}


#index_maintop {
  padding: 20px 30px 20px;
  background-color: #f4f4f4;
  margin-top: 0;
}
#index_maintop .logo_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#index_maintop .logo_wrap .logo {
  width: 60px;
  height: 60px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  /*background-color: #ccc;*/
  background-image: url(../img/logo_bs.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#index_maintop .logo_wrap .title_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 0 10px;
}
#index_maintop .logo_wrap .title_wrap .title {
  font-size: 20px;
  font-weight: bold;
}


#index_maintop .fakesearch {
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.05);
  line-height: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0 20px;
  color: #999;
}

#index_main {
  background-color: #fff;
  margin-top: 50px;
  box-shadow: 0 0 20px rgba(0,0,0,.05);
  position: relative;
  padding: 0;
}

#index_main .main_title .title_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
#index_main .main_title .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  font-size: 18px;
  font-weight: bold;
}
#index_main .main_title .btn_more {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  color: #e62828;
}

/** TAB 首页 **/
#index_main .tab_nav {
  margin: 0 30px 10px;
}
#index_main .tab_nav a {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
#index_main .tab_nav a:after {
  display: none;
}
#index_main .tab_nav a.active {
  color: #e62828;
  border-bottom: 3px solid #e62828;
  font-size: 18px;
}
#index_main .tab_nav a:hover {
  color: #e62828;
}


/** Banner 首页 **/
#index_main .firstbanner {
  background-color: #ccc;
  border-radius: 10px;
  margin: 0 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
#index_main .firstbanner:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 20%;
}


/** 宫格入口 首页 **/
#index_entrance {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  text-align: center;
  margin: 20px 30px 15px;
}
#index_entrance .item_entrance {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  font-size: 0;
}
#index_entrance .item_entrance .icon {
  width: 50px;
  height: 50px;
  background-color: #ccc;
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 20px;
}
#index_entrance .item_entrance .title {
  font-size: 14px;
}



/** 专题入口 首页 **/
#index_topic {
  margin: 10px 0 -10px;
  overflow: auto;
  padding: 0 30px 10px;
}
#index_topic .list_banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin: 0;
}
#index_topic .banner {
  background-color: #ccc;
  border-radius: 10px;
  margin-right: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 0 0 40%;
  flex: 0 0 40%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  box-shadow: 0 0 5px rgba(0,0,0,.05);
  overflow: hidden;
}
#index_topic .banner:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 50%;
  background-image: linear-gradient(rgba(51, 51, 51, 0), rgba(255, 255, 255, .9) 70%);
}
#index_topic .banner div {
  display: block;
  text-align: center;
  padding-bottom: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-weight: bold;
}
#index_topic .doufu {
  width: 20px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}


/** 近期热门 首页 **/

#index_hot {
  padding: 10px 0 0;
}
#index_hot .main_title {
  padding: 0 30px;
}
.list_index_set_wrap {
  overflow: auto;
  padding: 15px 30px;
  margin-top: -10px;
}
.list_index_set {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  /*-webkit-flex-wrap: wrap;
  flex-wrap: wrap;*/
  margin: 0 -5px;
}

.item_index_set {
  -webkit-box-flex: 1;
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 5px;
}
.item_index_set_box {
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background-color: #fff;
}
.item_index_set .cover {
  width: 100%;
  padding-top: 100%;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.item_index_set .cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.04);
}
.item_index_set .title_wrap {
  padding: 20px 20px 30px;
}
.item_index_set .title {
  font-size: 15px;
  font-weight: bold;
}
.item_index_set .title_wrap .brandandnumber {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 10px 0 0;
}
.item_index_set .brandandnumber .logo {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 4px;
}
.item_index_set .brandandnumber .brandandnumber_text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.list_index_set_wrap .doufu {
  width: 30px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

/** 评测、资讯 首页 **/

#index_review {
  padding: 10px 30px 20px;
}

.item_index_review {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 20px;
}
.item_index_review .cover {
  width: 80px;
  height: 50px;
  background-color: #ccc;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 10px;
  border-radius: 10px;
}
.item_index_review .title_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.item_index_review .title {
  font-size: 14px;
  font-weight: bold;
}
.item_index_review .author {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.item_index_review .avatar {
  width: 20px;
  height: 20px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.item_index_review .name_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

/** 品牌大全 首页 **/

#index_brand {
  
}
#index_brand .list_brandlist {
  padding: 10px 30px 20px;
  font-size: 0;
  margin: 0 -5px;
}
#index_brand .item_brandlist {
  display: inline-block;
  font-size: 12px;
  vertical-align: top;
  text-align: center;
  position: relative;
  padding: 10px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  width: 33.33%;
}

#index_brand .item_brandlist_box {
  display: block;
  padding-top: 20px;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#index_brand .item_brandlist_box:hover {
  background-color: #f8f8f8;
}
#index_brand .item_brandlist .brandname_wrap {
  display: block;
}
#index_brand .item_brandlist .brandlogo {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/img_blank.png);
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#index_brand .item_brandlist_box:hover .brandlogo {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#index_brand .item_brandlist .brandname {
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  color: #333;
  padding: 2px 10px;
  font-weight: bold;
}
#index_brand .item_brandlist .counter {
  text-align: center;
}
#index_brand .item_brandlist .counter .num {
  display: inline-block;
  background-color: #555;
  color: #fff;
  border-radius: 3px;
  padding: 0 10px;
}



/** 主题系列 首页 **/

#index_theme {
  
}
#index_theme .list_theme {
  padding: 10px 30px 20px;
  font-size: 0;
  margin: 0 -5px;
}
#index_theme .item_theme {
  display: inline-block;
  font-size: 12px;
  vertical-align: top;
  text-align: center;
  position: relative;
  padding: 5px;
  white-space: nowrap;
  text-align: center;
  width: 50%;
}

#index_theme .item_theme_box {
  display: block;
  padding-top: 20px;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f4f4f4;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
}
#index_theme .item_theme_box:hover {
  background-color: #f8f8f8;
  box-shadow: 0 0 20px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1);
}

#index_theme .item_theme_box .cover {
  display: inline-block;
  background-color: #fff;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80%;
  padding-top: 50%;
  margin-bottom: 5px;
  border-radius: 10px;
}




#index_theme .item_theme_box .title {
  font-size: 14px;
  font-weight: bold;
}
#index_theme .item_theme_box .subtitle {
  opacity: .8;
}



#index_brand .item_brandlist .brandname_wrap {
  display: block;
}
#index_brand .item_brandlist .brandlogo {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/img_blank.png);
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#index_brand .item_brandlist_box:hover .brandlogo {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#index_brand .item_brandlist .brandname {
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  color: #333;
  padding: 2px 10px;
  font-weight: bold;
}
#index_brand .item_brandlist .counter {
  text-align: center;
}
#index_brand .item_brandlist .counter .num {
  display: inline-block;
  background-color: #555;
  color: #fff;
  border-radius: 3px;
  padding: 0 10px;
}





/**================= 搜索界面 首页 =================**/
#index_search {
  background-color: #fff;
}
#index_search .header_search {
  padding-top: 5px;
}
#index_search .header_search input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.05), 0 0 10px rgba(0,0,0,.05);
  line-height: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0 20px 0;
  border: none;
  width: 100%;
}
#index_search #index_search_main {
  padding: 20px 30px 0;
}











/**================= 套组详情页 =================**/
/** 导航栏 套组详情页 **/

#setindex_header {
  z-index: 11;
  background-color: rgba(255,255,255,0);
}

#setindex_header.hasshadow {
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  background-color: #fff;
}

#setindex_header .header_title {
  opacity: 0;
}
#setindex_header.hasshadow .header_title {
  opacity: 1;
}

/** 底栏 套组详情页 **/
#setindex_bottombar {
  z-index: 13;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#setindex_bottombar.hasshow {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#setindex_bottombar .bottombar_box {
  height: 60px;
}
#setindex_bottombar .btn {
  line-height: 50px;
  height: 50px;
  box-shadow: 0 0 20px rgba(230, 40, 40, .3);
}

/** 主体 套组详情页 **/
#setindex_maintop {
  margin-top: 0;
}

#setindex_maintop_box {
  padding: 0 30px 140px;
}
.setindex_bigcover {
  padding-top: 80%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 10px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../img/set_blank.png);
}

#setindex_maintop_box .brandandnumber {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  font-size: 20px;
  
  box-shadow: 0 0 10px #33333326;
  position: absolute;
  background-color: #fff;
  padding: 5px 10px;
  top: 6px;
  right: 0;
  border-radius: 10px;
}
#setindex_maintop_box .brandandnumber .logo {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 4px;
}
#setindex_maintop_box .brandandnumber .brandandnumber_text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}



#setindex_maintop_box .title_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
#setindex_maintop_box .title_wrap .logo {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 4px;
}
#setindex_maintop_box .title_wrap .title_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

#setindex_maintop_box .series_logo {
  display: inline-block;
  margin-top: -40px;
  z-index: 1;
  position: relative;
}
#setindex_maintop_box .series_logo img {
  height: 40px;
  display: block;
}

#setindex_maintop_box .theme_text {
  /*margin-bottom: 10px;*/
}
#setindex_maintop_box .theme_text * {
  line-height: 20px;
  vertical-align: top;
  display: inline-block;
  /*height: 20px;*/
}
#setindex_maintop_box .theme_text a {
  font-size: 0;
}
#setindex_maintop_box .theme_text a span {
  font-size: 12px;
}
#setindex_maintop_box .theme_text a:after {
  font-family: 'Material Icons';
  font-size: 18px;
  content: "";
  color: #ccc;
}
#setindex_maintop_box .theme_text a:last-child {
  font-weight: bold;
}
#setindex_maintop_box .theme_text a:last-child:after {
  display: none;
}
#setindex_maintop_box .theme_text a:last-child span {
  font-size: 14px;
}


#setindex_maintop_box .title {
  font-size: 30px;
  font-weight: bold;
}
#setindex_maintop_box .subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #00439f;
}


.setindex_param {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  text-align: center;
}
.setindex_param .item_param {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}
.setindex_param .item_param .num {
  font-size: 18px;
  font-weight: bold;
}

.setindex_param .item_param .logo_faction {
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* .setindex_param .bricktype {
  color: #fff;
  background-color: #ffa317;
  display: inline-block;
  padding: 0 5px 0 10px;
  margin-top: 5px;
  border-radius: 100px;
}
.setindex_param .bricktype * {
  vertical-align: middle;
  display: inline-block;
}
.setindex_param .bricktype .material-icons {
  -webkit-transform: scale(.6);
  transform: scale(.6);
} */



.setindex_tags {
  font-size: 0;
}
.setindex_tags span {
  font-size: 12px;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  margin-top: 5px;
  margin-right: 5px;
  background-color: #ededed;
  color: #555;
  padding: 0 5px;
  font-style: normal;
  border-radius: 3px;
}
.setindex_tags span.color_reverse {
  background-color: #555;
  color: #fff;
}




#setindex_maintop #setindex_maintop_box .table_param_wrap {
  color: #fff;
  background-color: #de0515;
  /*background-image: -webkit-gradient(linear,left top,left bottom,color-stop(20%,#fff3f3),color-stop(90%,#f4f4f4));
  background-image: linear-gradient(#fff3f3 20%,#f4f4f4 90%);*/
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #de0515;
}
#setindex_maintop #setindex_maintop_box .table_param_wrap .table_param {
  padding: 30px;
}
#setindex_maintop #setindex_maintop_box .table_param_wrap .table_param dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
  margin: 0;
}
#setindex_maintop #setindex_maintop_box .table_param_wrap .table_param dl:nth-child(2n) {
  background-color: rgba(0,0,0,.05);
}
#setindex_maintop #setindex_maintop_box .table_param_wrap .table_param dl dt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 0 0 10px;
  margin: 0;
  width: 100px;
  opacity: .6;
}
#setindex_maintop #setindex_maintop_box .table_param_wrap .table_param dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 10px 0 0;
  margin: 0;
  overflow: hidden;
}
#setindex_maintop #setindex_maintop_box .table_param_wrap .barcode {
  width: 90%!important;
  max-width: 200px;
  max-height: 60px;
  display: block;
  outline: 5px solid #fff;
  margin: 5px;
  overflow: hidden!important;
  background-color: #fff;
}
#setindex_maintop #setindex_maintop_box .table_param_wrap .barcode img {
  width: 100%;
}

#setindex_maintop_box .btn_more {
  color: #e62828;
  background-color: #f4f4f4;
  display: block;
  text-align: right;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 0;
}



#setindex_maintop_box .form_item {
  margin-top: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 42px;
}
#setindex_maintop_box .form_item .price {
  color: #e62828;
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}
#setindex_maintop_box .form_item .btn_color_2 {
  box-shadow: 0 0 20px rgba(230, 40, 40, .3);
}
#setindex_maintop_box .form_item.hashide {
  height: 0;
  opacity: 0;
  overflow: hidden;
}




#setindex_main {
  padding: 30px 0;
  background-color: #fff;
  margin-top: -120px;/*30px*//*50px*/
  z-index: 10;
  position: relative;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
  -webkit-animation: setindex_main_ani 5s;
  animation: setindex_main_ani 1s ease-out;
}
@-webkit-keyframes setindex_main_ani {
  0%   {-webkit-transform: translateY(-300px);}
  100% {-webkit-transform: translateY(0);}
}
@keyframes setindex_main_ani {
  0%   {transform: translateY(-300px);}
  100% {transform: translateY(0);}
}


#setindex_main .main_title {
  padding: 0;
}

#setindex_main .main_title .title {
  font-size: 18px;
  font-weight: bold;
}

#setindex_main .maincard_hasborder {
  border-bottom: solid 10px #f4f4f4;
}





/** 描述 套组详情页 **/
#setindex_describe {
  padding: 0 30px 20px;
}

/* #setindex_describe .series_logo {
  max-width: 100%;
  margin-bottom: 10px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
} */

#setindex_describe .theme_text {
  margin-bottom: 10px;
}
#setindex_describe .theme_text * {
  line-height: 20px;
  vertical-align: top;
  display: inline-block;
  height: 20px;
}
#setindex_describe .theme_text a {
  font-size: 0;
}
#setindex_describe .theme_text a span {
  font-size: 12px;
}
#setindex_describe .theme_text a:after {
  font-family: 'Material Icons';
  font-size: 18px;
  content: "";
  color: #ccc;
}
#setindex_describe .theme_text a:last-child {
  font-weight: bold;
}
#setindex_describe .theme_text a:last-child:after {
  display: none;
}
#setindex_describe .theme_text a:last-child span {
  font-size: 14px;
}

#setindex_describe .richtext_wrap {
  position: relative;
}
#setindex_describe .richtext_wrap.folded {
  height: 350px;
  overflow: hidden;
}

#setindex_describe .richtext img {
  /* min-height: 200px; */
}

#setindex_describe .richtext_wrap .card_more {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
}
#setindex_describe .richtext_wrap.folded .card_more {
  display: block;
}




#setindex_describe .information_card {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  /*background-color: #fcfafc;*/
  margin-bottom: 10px;
  color: #333;
  border: 2px solid #fff;
}
#setindex_describe .information_card .information_cover {
  width: 100px;
  min-height: 100px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(../img/set_blank.png);
}
#setindex_describe .information_card .information_cover span {
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100px;
  display: block;
  background-color: rgba(0,0,0,.5);
  color: #fff;
  padding: 2px 5px;
}
#setindex_describe .information_card .information_name_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 10px 10px;
  position: relative;
  background-color: rgba(247,246,247,.5);
  z-index: 1;
}
#setindex_describe .information_card .information_name_wrap .information_title {
  font-size: 18px;
  font-weight: bold;
}
#setindex_describe .information_card .information_name_wrap .information_title span {
  padding-right: 5px;
}
#setindex_describe .information_card .information_name_wrap .information_title small {
  font-size: 12px;
  font-weight: bold;
  opacity: .5;
  display: inline-block;
}
#setindex_describe .information_card .information_name_wrap .information_title_en {
  font-weight: bold;
  opacity: .5;
}
#setindex_describe .information_card .logo_faction {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .5;
}
#setindex_describe .information_card .information_faction .doufu {
  display: inline-block;
  background-color: #ccc;
  left: 0;
  top: 50%;
  height: 8px;
  margin-top: -3px;
  width: 2px;
  margin-right: 7px;
}
#setindex_describe .information_card .information_faction .item_faction {
  line-height: 16px;
  display: inline-block;
  margin-right: 5px;
}
#setindex_describe .information_card .information_faction .faction_logo {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
  margin-right: 2px;
  vertical-align: bottom;
  background-image: url(../img/faction_blank.png);
}
#setindex_describe .information_card .information_faction .item_faction span {
  vertical-align: bottom;
}
#setindex_describe .information_card .information_faction .information_job {
  display: inline-block;
  background-color: #333;
  color: #fff;
  line-height: 16px;
  padding: 0 5px;
  border-radius: 3px;
}
#setindex_describe .information_card .information_text {
  margin-top: 5px;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 5px;
}


/** 设计师 套组详情页 **/
#setindex_designer {
  padding: 10px 30px 20px;
}

.list_setindex_designer {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
}

.item_setindex_designer {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  padding: 5px;
  margin-right: 20px;
  border-radius: 100px;
}
.item_setindex_designer .avatar {
  width: 60px;
  height: 60px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.item_setindex_designer .name_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 0 10px;
}
.item_setindex_designer .name_wrap .name {
  font-size: 14px;
  font-weight: bold;
}
.item_setindex_designer .name_wrap .subname {
  opacity: .8;
}

/** 视频 套组详情页 **/
#setindex_video {
  padding: 10px 30px 0;
  background-color: #f4f4f4;
}

#setindex_video .list_setindex_video {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  white-space: nowrap;
  margin: 0 -30px;
  padding: 0 10px 20px;
  overflow: auto;
}
.item_setindex_video {
  -webkit-box-flex: 1 0 60%;
  -webkit-flex: 1 0 60%;
  flex: 1 0 60%;
  display: block;
  width: 60%;
  margin-right: 10px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  color: #333;
  font-size: 12px;
}
.item_setindex_video .url {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
  color: #999;
}
.item_setindex_video .author {
  font-weight: bold;
  color: #333;
}

.item_setindex_video .cover {
  padding-top: 57%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 10px;
  /* border-radius: 10px; */
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}

.item_setindex_video .cover.nocover {
  background-color: #f4f4f4;
  overflow: hidden;
}
.item_setindex_video .cover:before {
  content: "";
  display: block;
  width: 100%;
  height: 38px;
  background-image: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.2) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.item_setindex_video .cover .textbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  font-size: 60px;
  font-weight: bold;
  opacity: .05;
  color: #000;
}
.item_setindex_video .cover .material-icons {
  font-size: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ef3a3a;
  /* text-shadow: 0 0 20px rgba(230, 40, 40, .3); */
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 0 20px rgb(230 40 40 / 30%);
}
.item_setindex_video .cover .video_duration {
  position: absolute;
  right: 5px;
  bottom: 5px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,.2), 0 0 1px rgba(0,0,0,.4);
}
.item_setindex_video:hover .cover {
  opacity: .9;
}
.item_setindex_video:hover .cover .material-icons {
  transform: translate(-50%, -50%) scale(1.1);
}



.item_setindex_video .title_wrap {
}
.item_setindex_video .title {
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: initial;
}



/** 视频 套组详情页 **/
#setindex_review {
  padding: 10px 30px 20px;
}

.list_setindex_review {

}
.item_setindex_review {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item_setindex_review:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #f4f4f4;
}
.item_setindex_review .cover_wrap {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 100px;
  margin-right: 10px;
}
.item_setindex_review .cover {
  padding-top: 60%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}


.item_setindex_review .title_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.item_setindex_review .title {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.item_setindex_review .title b {
  color: #e62828;
}
.item_setindex_review .author_wrap  {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item_setindex_review .author_wrap .avatar {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
  background-color: #eee;
  width: 10px;
  height: 10px;
}
.item_setindex_review .author_wrap .author {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.item_setindex_review .author_wrap .from {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  opacity: .5;
}



/** 购买 套组详情页 **/
#setindex_shopping {
  padding: 10px 30px 20px;
}

#setindex_shopping .price_timeflow_echarts {
  height: 150px;
  margin-bottom: 20px;
}




.list_setindex_shopping {
  
}
.item_setindex_shopping {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.list_setindex_shopping .item_setindex_shopping:nth-child(2n) {
  background-color: #fdfdfd;
}
.list_setindex_shopping .item_setindex_shopping .logo {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 3px;
}
.list_setindex_shopping .item_setindex_shopping .title_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 0 10px;
  overflow: hidden;
}
.list_setindex_shopping .item_setindex_shopping .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #333;
}
.list_setindex_shopping .item_setindex_shopping .time {
  opacity: 80%;
}
.list_setindex_shopping .item_setindex_shopping .price {
  color: #e62828;
  font-weight: 700;
}



/** 关联套组 套组详情页 **/
#setindex_relset {
  padding: 10px 30px 20px;
}

.item_setindex_relset {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  align-items: center;
}
.item_setindex_relset:nth-child(2n) {
  background-color: rgba(0,0,0,.02);
}
.item_setindex_relset .cover {
  width: 60px;
  height: 60px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/set_blank.png);
  background-color: #fff;
}
.item_setindex_relset .title_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.item_setindex_relset .title_wrap .series {
  opacity: .5;
}
.item_setindex_relset .title_wrap .title {
  font-weight: bold;
}
.item_setindex_relset .title_wrap .brandandnumber {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.item_setindex_relset .brandandnumber .logo {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 4px;
}
.item_setindex_relset .brandandnumber .brandandnumber_text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.item_setindex_relset .param .faction_logo {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: bottom;
  margin-right: 5px;
  margin-top: 5px;
}
.item_setindex_relset .param span {
  padding: 0 10px 0 0;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  margin-top: 5px;
}
.item_setindex_relset .param span:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ccc;
  right: 4px;
  top: 50%;
  height: 8px;
  margin-top: -3px;
  width: 2px;
}
.item_setindex_relset .param span:last-child:before {
  display: none;
}



/** 推荐套组 套组详情页 **/
#setindex_recommendset {
  padding: 10px 30px 20px;
}

.list_setindex_recommendset {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.item_setindex_recommendset {
  -webkit-box-flex: 1;
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 5px;
  color: #333;
}
.item_setindex_recommendset_box {
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.item_setindex_recommendset .cover {
  width: 100%;
  padding-top: 100%;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.item_setindex_recommendset .cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.04);
}
.item_setindex_recommendset .title_wrap {
  padding: 20px 20px 30px;
}
.item_setindex_recommendset .title {
  font-size: 15px;
  font-weight: bold;
}
.item_setindex_recommendset .title_wrap .brandandnumber {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 10px 0 0;
}
.item_setindex_recommendset .brandandnumber .logo {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 4px;
}
.item_setindex_recommendset .brandandnumber .brandandnumber_text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.item_setindex_recommendset .param .faction_logo {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: bottom;
  margin-right: 5px;
  margin-top: 5px;
}
.item_setindex_recommendset .param span {
  padding: 0 10px 0 0;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  margin-top: 5px;
}
.item_setindex_recommendset .param span:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ccc;
  right: 4px;
  top: 50%;
  height: 8px;
  margin-top: -3px;
  width: 2px;
}
.item_setindex_recommendset .param span:last-child:before {
  display: none;
}






/** 页脚免责 套组详情页 **/
#setindex_footer {
  padding: 20px 30px 60px;
  color: #999;
}




/** B站视频直接看 套组详情页 **/

#subplate_video_preview {
  z-index: 100;
}

#subplate_video_preview .subplate {
  top: 0;
  background-color: #000;
}
#subplate_video_preview .subplate .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  /* background: #ccc; */
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
#subplate_video_preview .subplate .btn_close i {
  line-height: inherit;
  vertical-align: top;
}
#subplate_video_preview .subplate .video_preview_wrap {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
}
#subplate_video_preview .subplate iframe {
  height: 100%;
  width: 100%;
}















/**================= 搜索套组 =================**/
.fixed #searchset_header {
  transform: translate3d(0,0,0);
  -webkit-filter: blur(5px);
  filter: blur(5px);
}
#searchset_header .header_search {
  right: 20px;
}
#searchset_header .search_box .input_search {
  background-color: #f4f4f4;
  border-radius: 100px;
  box-shadow: inset 0 0 10px rgba(0,0,0,.05);
}
#searchset_header .search_box .btn_search {
  border-radius: 0 100px 100px 0;
  padding-right: 15px;
  box-shadow: 0 0 20px rgba(230, 40, 40, .3);
}








.fixed #searchset_maintop {
  transform: translate3d(0,0,0);
  -webkit-filter: blur(5px);
  filter: blur(5px);
}
#searchset_maintop .main_top_box {
  padding: 0 30px;
}
/*
#searchset_maintop .search_box .input_search {
  background-color: #f4f4f4;
  border-radius: 100px;
}
#searchset_maintop .search_box .btn_search {
  border-radius: 0 100px 100px 0;
  padding-right: 15px;
}
*/
#searchset_maintop .tab_filter {
  justify-content: space-between;
}
#searchset_maintop .tab_filter_box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  /* -webkit-box-pack: justify;
  justify-content: space-between; */
}
#searchset_maintop .tab_filter .tab_filter_item {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
#searchset_maintop .tab_filter .btn_search_order,
#searchset_maintop .tab_filter .btn_search_groupby_disabled,
#searchset_maintop .tab_filter .btn_search_groupby {
  padding-right: 40px;
}
#searchset_maintop .tab_filter .btn_search_order:after,
#searchset_maintop .tab_filter .btn_search_groupby_disabled:after,
#searchset_maintop .tab_filter .btn_search_groupby:after {
  display: none;
}
#searchset_maintop .tab_filter .btn_search_order .dropdown_menu,
#searchset_maintop .tab_filter .btn_search_groupby .dropdown_menu {
  left: -10px;
  right: auto;
  top: 40px;
}

#searchset_maintop .tab_filter .btn_search_groupby_disabled {
  opacity: .3;
  display: none;
}
#searchset_maintop .tab_filter .btn_search_groupby_disabled * {
  pointer-events: none;
}


#searchset_maintop .tab_filter .btn_viewmode {
  width: 40px;
  text-align: center;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
#searchset_maintop .tab_filter .btn_viewmode .material-icons {
  line-height: 40px;
}

#searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_grid],
.viewmode_smallcard #searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_smallcard],
.viewmode_list #searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_list] {
  display: inline-block;
}

#searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_smallcard],
#searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_list],
.viewmode_smallcard #searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_list],
.viewmode_smallcard #searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_grid],
.viewmode_list #searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_smallcard],
.viewmode_list #searchset_maintop .tab_filter .btn_viewmode [rel=viewmode_grid] {
  display: none;
}


#searchset_maintop .tab_filter .btn_search_filter * {
  vertical-align: top;
  display: inline-block;
  line-height: inherit;
}
#searchset_maintop .tab_filter .btn_search_filter:before {
  content: "";
  display: block;
  background-color: #e8e8e8;
  height: 30px;
  width: 1px;
  position: absolute;
  top: 5px;
  left: 0;
}

.fixed #searchset_main {
  transform: translate3d(0,0,0);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#searchset_main {
  padding: 0;
}


#searchset_main .filter_viewer {
  font-size: 0;
  margin: -5px 0px 5px;
  border-radius: 0;
  padding: 5px;
  z-index: 1;
}
#searchset_main .filter_viewer .filter_viewer_box {
  display: inline-block;
  vertical-align: middle;
}
#searchset_main .filter_viewer .filter_viewer_box div {
  font-size: 12px;
  display: inline-block;
  background-color: #f4f4f4;
  border-radius: 100px;
  line-height: 36px;
  padding: 0 35px 0 20px;
  cursor: pointer;
  margin: 2px;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
#searchset_main .filter_viewer .filter_viewer_box div:after {
  content: "\D7";
  width: 18px;
  text-align: center;
  line-height: 18px;
  background-color: #ff5252;
  color: #fff;
  display: block;
  position: absolute;
  top: 9px;
  right: 9px;
  border-radius: 100px;
}
#searchset_main .setcount {
  padding: 5px 15px;
  color: #999;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}
#searchset_main .setcount span {
  color: #333;
  font-weight: bold;
}

#searchset_main .main_endingtips {
  line-height: 20px;
  display: block;
  margin: 5px 0;
  font-size: 14px;
  text-align: center;
  color: #aaa;
}


.list_search_set_wrap {
  padding: 0 15px;
  /* margin-top: -10px; */
}
.list_setcard {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.list_setcard .list_setcard_group {
  flex: 0 0 100%;
  width: 100%;
  font-size: 20px;
  padding: 10px 5px;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.list_setcard .list_setcard_group div {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-right: 15px;
}
.list_setcard .list_setcard_group div small {
  padding-left: 5px;
  font-size: 12px;
}
.list_setcard .list_setcard_group::after {
  content: "";
  display: block;
  height: 4px;
  right: 5px;
  background-color: #000;
  opacity: .1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  border-radius: 100px;
}

.item_setcard {
  -webkit-box-flex: 1;
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
  padding: 5px 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item_setcard_box {
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background-color: #fff;
  color: #333;
  height: 100%;
}
.item_setcard .cover {
  width: 100%;
  padding-top: 100%;
  /* margin-right: 10px; */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../img/set_blank.png);
}
.item_setcard .cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.04);
  z-index: 1;
}
.item_setcard .cover .logo_brand {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 5px;
  top: 5px;
  background-image: url(../img/set_blank.png);
}

.item_setcard .title_wrap {
  padding: 20px 20px 30px;
}
.item_setcard .title_wrap .series {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  opacity: .5;
}
.item_setcard .title {
  font-size: 15px;
  font-weight: bold;
}
.item_setcard .title_wrap .brandandnumber {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 10px 0 0;
}
.item_setcard .brandandnumber .logo {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 4px;
}
.item_setcard .brandandnumber .brandandnumber_text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.item_setcard .param .faction_logo {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: bottom;
  margin-right: 5px;
  margin-top: 5px;
}
.item_setcard .param span {
  padding: 0 10px 0 0;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  margin-top: 5px;
}
.item_setcard .param span:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ccc;
  right: 4px;
  top: 50%;
  height: 8px;
  margin-top: -3px;
  width: 2px;
}
.item_setcard .param span:last-child:before {
  display: none;
}
.item_setcard .param i {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  margin-top: 5px;
  margin-right: 5px;
  background-color: #ededed;
  color: #555;
  padding: 0 5px;
  font-style: normal;
  border-radius: 3px;
}
.item_setcard .param i.color_reverse {
  background-color: #555;
  color: #fff;
}


.viewmode_smallcard .list_setcard .item_setcard {
  -webkit-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  width: 33.33%;
}
.viewmode_smallcard .list_setcard .item_setcard .title_wrap {
  padding: 10px;
}
.viewmode_smallcard .list_setcard .item_setcard .title {
  font-size: 13px;
}
.viewmode_smallcard .list_setcard .item_setcard .subtitle {
  display: none;
}

.viewmode_list .list_setcard {
  display: block;
}
.viewmode_list .list_setcard .item_setcard {
  -webkit-flex: 1;
  flex: 1;
  width: 100%;
}
.viewmode_list .list_setcard .item_setcard_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.viewmode_list .list_setcard .item_setcard .cover {
  width: 120px;
  padding-top: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.viewmode_list .list_setcard .item_setcard .title_wrap {
  -webkit-flex: 1;
  flex: 1;
  overflow: hidden;
  padding: 10px 20px;
}


@media only screen and (min-width: 450px) {
  .item_setcard .cover .logo_brand {
    width: 50px;
    height: 50px;
  }
  .viewmode_smallcard .item_setcard .cover .logo_brand {
    width: 30px;
    height: 30px;
  }
  .viewmode_list .item_setcard .cover .logo_brand {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 650px) {
  .viewmode_smallcard .item_setcard .cover .logo_brand {
    width: 50px;
    height: 50px;
  }
}


#searchset_main .list_informationcard_warp {
  margin-top: -10px;
}
#searchset_main .list_informationcard_warp.morecard {
  overflow: auto;
}
#searchset_main .list_informationcard {
  padding: 0 5px;
}
#searchset_main .list_informationcard_warp .list_informationcard {
  padding: 10px 10px;
}
#searchset_main .list_informationcard_warp.morecard .list_informationcard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#searchset_main .list_informationcard_warp.morecard .list_informationcard:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  flex-shrink: 0;
}
#searchset_main .item_informationcard_wrap {
  padding: 5px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#searchset_main .list_informationcard_warp.morecard .item_informationcard_wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  width: 70%;
}


#searchset_main .item_informationcard {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  /* margin: 5px 0; */
  color: #333;
  /* border: 2px solid #fff; */
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  min-height: 90px;
  height: 100%;
}
#searchset_main .item_informationcard .information_cover {
  width: 100px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(../img/set_blank.png);
  position: relative;
}
#searchset_main .item_informationcard .information_cover span {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 100px;
  display: block;
  background-color: rgba(0,0,0,.5);
  color: #fff;
  padding: 2px 5px;
}
#searchset_main .item_informationcard_wrap_movie .information_cover {
  position: relative;
  margin: 5px;
  border-radius: 5px;
}
#searchset_main .item_informationcard_wrap_movie .information_cover span {
  top: 5px;
  left: 5px;
}
#searchset_main .item_informationcard .information_cover {
  width: 100px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(../img/set_blank.png);
  position: relative;
}
#searchset_main .item_informationcard .information_type {
  
}
#searchset_main .item_informationcard .information_type span {
  border-radius: 100px;
  display: inline-block;
  background-color: rgba(0,0,0,.5);
  color: #fff;
  padding: 2px 5px;
  margin-bottom: 5px;
}
#searchset_main .item_informationcard .information_cover_img {
  max-width: 100px;
  max-height: 80px;
  margin-bottom: 5px;
  min-width: 1px;
  min-height: 1px;
}
#searchset_main .item_informationcard .information_name_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 10px 10px;
  position: relative;
  /* background-color: rgba(247,246,247,.5); */
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-flow: column;
}
#searchset_main .item_informationcard .information_name_wrap .information_title {
  font-size: 18px;
  font-weight: bold;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
#searchset_main .item_informationcard .information_name_wrap .information_title span {
  padding-right: 5px;
}
#searchset_main .item_informationcard .information_name_wrap .information_title small {
  font-size: 12px;
  font-weight: bold;
  opacity: .5;
  display: inline-block;
}
#searchset_main .item_informationcard .information_name_wrap .information_title_en {
  font-weight: bold;
  opacity: .5;
}
#searchset_main .item_informationcard .logo_faction {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .5;
}
#searchset_main .item_informationcard .information_faction {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
#searchset_main .item_informationcard .information_faction .doufu {
  display: inline-block;
  background-color: #ccc;
  left: 0;
  top: 50%;
  height: 8px;
  margin-top: -3px;
  width: 2px;
  margin-right: 7px;
}
#searchset_main .item_informationcard .information_faction .item_faction {
  line-height: 16px;
  display: inline-block;
  margin-right: 5px;
}
#searchset_main .item_informationcard .information_faction .faction_logo {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
  margin-right: 2px;
  vertical-align: bottom;
  background-image: url(../img/faction_blank.png);
}
#searchset_main .item_informationcard .information_faction .item_faction span {
  vertical-align: bottom;
}
#searchset_main .item_informationcard .information_faction .information_job {
  display: inline-block;
  background-color: #333;
  color: #fff;
  line-height: 16px;
  padding: 0 5px;
  border-radius: 3px;
}
#searchset_main .item_informationcard .information_text {
  margin-top: 5px;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 5px;
}
#searchset_main .item_informationcard .btnbox {
  text-align: right;
  margin-top: 10px;
}
#searchset_main .item_informationcard .btnbox .btn {
  line-height: 40px;
  background-color: #f4f4f4;
  padding: 0 15px;
  margin-left: 5px;
}



@media only screen and (min-width: 1000px) {
  #searchset_main {
    max-width: unset;
  }
  #searchset_main .item_setcard {
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }
  .viewmode_smallcard #searchset_main .list_setcard .item_setcard {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    width: 20%;
  }
  .viewmode_list #searchset_main .list_setcard .item_setcard {
    -webkit-flex: 1;
    flex: 1;
    width: 100%;
  }
  .viewmode_list #searchset_main {
    max-width: 1000px;
  }
  #searchset_main .list_informationcard_warp.morecard .item_informationcard_wrap,
  #searchset_main .list_informationcard_warp .item_informationcard_wrap {
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
    width: 400px;
  }
}
@media only screen and (min-width: 1500px) {
  #searchset_main .item_setcard {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    width: 20%;
  }
  .viewmode_smallcard #searchset_main .list_setcard .item_setcard {
    -webkit-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    width: 12.5%;
  }
  .viewmode_smallcard #searchset_main .item_setcard .cover .logo_brand {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 1900px) {
  #searchset_main .item_setcard {
    -webkit-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    width: 12.5%;
  }
  .viewmode_smallcard #searchset_main .list_setcard .item_setcard {
    -webkit-flex: 0 0 10%;
    flex: 0 0 10%;
    width: 10%;
  }
}
@media only screen and (min-width: 2200px) {
  #searchset_main .item_setcard {
    -webkit-flex: 0 0 10%;
    flex: 0 0 10%;
    width: 10%;
  }
  .viewmode_smallcard #searchset_main .list_setcard .item_setcard {
    -webkit-flex: 0 0 8.33%;
    flex: 0 0 8.33%;
    width: 8.33%;
  }
}



/**================= 筛选面板 搜索套组 =================**/


#subplate_searchset_filter {
  
}
#subplate_searchset_filter.hide .subplate {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

#subplate_searchset_filter .bottombar {
  left: 80px;
  width: auto;
  right: 0;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
}
#subplate_searchset_filter .bottombar .bottombar_box {
  padding: 0 17.5px 0;
}
#subplate_searchset_filter .bottombar .bottombar_box .btn_color_2 {
  box-shadow: 0 0 20px rgba(230, 40, 40, .3);
}


#subplate_searchset_filter .subplate {
  top: 0;
  left: 80px;
  right: 0;
  width: auto;
  border-radius: 20px 0 0 20px;
}

#subplate_searchset_filter .subplate_box {
  padding: 20px 20px 60px;
}



#subplate_searchset_filter .searchsetfilter_part {
  margin-bottom: 20px;
}
#subplate_searchset_filter .searchsetfilter_title_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#subplate_searchset_filter .searchsetfilter_title {
  font-size: 14px;
  font-weight: bold;
  /* -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1; */
}
#subplate_searchset_filter .searchsetfilter_title_handle {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-left: 20px;
}


#subplate_searchset_filter .searchsetfilter_box {
  
}


#subplate_searchset_filter .list_filtersomething {
  font-size: 0;
}
#subplate_searchset_filter .item_filtersomething {
  background-color: #f4f4f4;
  line-height: 35px;
  height: 35px;
  display: inline-block;
  font-size: 12px;
  margin: 0 5px 5px 0;
  padding: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
}
#subplate_searchset_filter .item_filtersomething.active {
  background-color: rgba(230, 40, 40, .08);
  color: #e62828;
  text-shadow: .5px 0 0,.5px 0 0,0 .5px 0,0 -.5px 0,.5px .5px 0,-.5px -.5px 0,-.5px .5px 0,.5px -.5px 0;
  text-shadow: .2px 0 0,.2px 0 0,0 .2px 0,0 -.2px 0,.2px .2px 0,-.2px -.2px 0,-.2px .2px 0,.2px -.2px 0;
}
#subplate_searchset_filter .item_filtersomething.disabled {
  opacity: .3;
}


#subplate_searchset_filter .list_filterseries .item_filtersomething {
  line-height: 1;
  height: auto;
  padding: 10px;
  vertical-align: middle;
}
#subplate_searchset_filter .list_filterseries .item_filtersomething small {
  display: block;
  padding-top: 5px;
  opacity: .5;
}




/**================= 系列时间线 =================**/

#series_timeline_main {
  padding: 0;
  margin-top: 50px;
}
/* #series_timeline_main::before {
  content: "";
  display: block;
  background-image: url(../../upload/tf/1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .05;
  filter: blur(1px);
} */

#series_timeline_main .list_yearpart {
  /* overflow: auto; */
}

#series_timeline_main .item_yearpart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

#series_timeline_main .item_yearpart .axle_year_wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  position: absolute;
  /* top: revert; */
  /* left: 0; */
  height: 100%;
  z-index: 1;
}
#series_timeline_main .item_yearpart .axle_year {
  background-color: #00439f;
  color: #fff;
  height: 100%;
  padding: 10px 5px;
  width: 50px;
  /* text-align: center; */
  position: relative;
  line-height: 30px;
  font-weight: bold;
}
#series_timeline_main .item_yearpart .axle_year:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: inherit;
  border-radius: 100px;
  position: absolute;
  right: -8px;
  top: 18px;
  border: 2.5px solid #fff;
}


#series_timeline_main .list_series_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  scroll-behavior: smooth;
  padding-left: 60px;
  margin-bottom: 10px;
  min-height: 40px;
}
#series_timeline_main .list_series {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  margin-right: 10px;
}
#series_timeline_main .item_series {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  padding: 10px 15px;
  margin: 10px 0;
  align-items: center;
  border-radius: 10px;
  display: block;
}

#series_timeline_main .item_series .cover {
  max-width: 100px;
  max-height: 80px;
  margin-bottom: 5px;
  min-width: 1px;
  min-height: 1px;
}
#series_timeline_main .item_series .item_series_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  overflow: hidden;
}
#series_timeline_main .item_series .title_wrap {
  overflow: hidden;
}
#series_timeline_main .item_series .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #333;
  font-size: 20px;
  font-weight: bold;
}
#series_timeline_main .item_series .extra {
  margin-top: 5px;
}
#series_timeline_main .item_series .extra * {
  display: inline-block;
  line-height: 20px;
}
#series_timeline_main .item_series .extra .year {
  font-weight: bold;
}
#series_timeline_main .item_series .extra .counter {
  background-color: #333;
  color: #fff;
  padding: 0 10px;
  border-radius: 3px;
}

#series_timeline_main .item_series .text {
  margin-top: 5px;
}



/**================= 系列树 =================**/
#seriestree_maintop {
  padding: 0 20px;
}
#seriestree_maintop .search_box {

}
#seriestree_maintop .search_box .input_search {
  background-color: #f4f4f4;
}



#seriestree_main .list_seriestree {

}

#seriestree_main .item_seriestree {
  padding: 20px;
  margin-bottom: 5px;
  border-radius: 10px;
}
#seriestree_main .item_seriestree .item_seriestree_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  align-items: center;
}
#seriestree_main .item_seriestree .cover {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
}
#seriestree_main .item_seriestree .cover img {
  min-width: 1px;
  min-height: 1px;
  max-height: 30px;
  max-width: 120px;
}
#seriestree_main .item_seriestree .title_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
#seriestree_main .item_seriestree .title_wrap .title {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
#seriestree_main .item_seriestree .list_seriestree_wrap {
  padding: 5px;
  background-color: #f4f4f4;
  margin-top: 5px;
  margin-right: -15px;
  border-radius: 10px;
  /* border-left: 2px dotted #ccc; */
  position: relative;
}
#seriestree_main .item_seriestree .list_seriestree_wrap.has_expand {
  padding-left: 30px;
  min-height: 35px;
}
#seriestree_main .item_seriestree .list_seriestree_wrap .btn_expand {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  cursor: pointer;
}
#seriestree_main .item_seriestree .list_seriestree_wrap .btn_expand .material-icons {
  line-height: 35px;
  width: 35px;
  vertical-align: top;
}
#seriestree_main .item_seriestree .list_seriestree_wrap .btn_expand span {
  line-height: 35px;
  display: inline-block;
  vertical-align: top;
}
#seriestree_main .item_seriestree .list_seriestree_wrap.is_fold {
  cursor: pointer;
}
#seriestree_main .item_seriestree .list_seriestree_wrap.is_fold > .list_seriestree {
  display: none;
}
#seriestree_main .item_seriestree .list_seriestree_wrap.has_expand > .btn_expand {
  display: block;
}
#seriestree_main .item_seriestree .list_seriestree_wrap > .btn_expand.icon_on,
#seriestree_main .item_seriestree .list_seriestree_wrap.is_fold > .btn_expand.icon_off {
  display: none;
}
#seriestree_main .item_seriestree .list_seriestree_wrap.is_fold > .btn_expand.icon_on {
  display: block;
}


#seriestree_main .item_seriestree .list_seriestree_wrap .item_seriestree {
  /* display: inline-block; */
  vertical-align: top;
  margin: 5px;
}
#seriestree_main .item_seriestree .list_seriestree_wrap .title {
  font-size: 15px;
}
#seriestree_main .item_seriestree .list_seriestree_wrap .list_seriestree_wrap .title {
  font-size: 12px;
}

#seriestree_main .item_seriestree .extra {
  margin-top: 5px;
}
#seriestree_main .item_seriestree .extra * {
  display: inline-block;
  line-height: 20px;
}
#seriestree_main .item_seriestree .extra .year {
  font-weight: bold;
}
#seriestree_main .item_seriestree .extra .counter {
  background-color: #333;
  color: #fff;
  padding: 0 10px;
  border-radius: 3px;
}

#seriestree_main .item_seriestree .text {
  margin-top: 5px;
  color: #666;
}




/**================= 影视详情页 =================**/
/** 导航栏 套组详情页 **/

#movieindex_header {
  z-index: 11;
  background-color: rgba(255,255,255,0);
}

#movieindex_header.hasshadow {
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  background-color: #fff;
}

#movieindex_header .header_title {
  opacity: 0;
}
#movieindex_header.hasshadow .header_title {
  opacity: 1;
}





#movieindex_maintop {
  margin-top: 0;
}

#movieindex_maintop_box {
  padding: 30px;
  padding-top: 50px;
  /* background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 10px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../img/set_blank.png); */
}

.movieindex_maintop_card {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

#movieindex_maintop_box .movieindex_cover {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 20px;
  width: 150px;
  /* background-size: contain; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 10px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../img/set_blank.png);
  border-radius: 10px;
  background-color: #f4f4f4;
}
#movieindex_maintop_box .movieindex_cover:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 140%;
}
#movieindex_maintop_box .title_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
#movieindex_maintop_box .title_box {
  margin-bottom: 10px;
}
#movieindex_maintop_box .title_wrap .title {
  font-size: 24px;
  font-weight: bold;
}
#movieindex_maintop_box .title_wrap .subtitle {
  margin-top: 5px;
}

#movieindex_maintop_box .param {
  margin-bottom: 5px;
}
#movieindex_maintop_box .param span {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 2px 10px;
}
#movieindex_maintop_box .date {
  margin-bottom: 5px;
}

#movieindex_maintop_box .another_name {
  margin-bottom: 5px;
}


#movieindex_maintop_box #movieindex_summary {
  background-color: #f4f4f4;
  padding: 15px;
}


#movieindex_main {
  padding: 30px 0;
  background-color: #fff;

  z-index: 10;
  position: relative;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 20px rgba(0,0,0,.1);

}

#movieindex_main .maincard_hasborder {
  border-bottom: solid 10px #f4f4f4;
}
#movieindex_main .main_title .title_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
#movieindex_main .main_title .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  font-size: 18px;
  font-weight: bold;
}
#movieindex_main .main_title .btn_more {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  color: #e62828;
}

#movieindex_photo {
  padding: 10px 30px 20px;
}

#movieindex_photo .list_moviephoto_wrap {
  overflow: auto;
  margin-left: -30px;
  margin-right: -30px;
}
#movieindex_photo .list_moviephoto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 30px;
}
#movieindex_photo .list_moviephoto:after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  flex-shrink: 0;
}
#movieindex_photo .item_moviephoto {
  display: block;
  margin-right: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  width: 70%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 10px;
  position: relative;
  /* -webkit-transition: all 0.3s;
  transition: all 0.3s; */
  background-image: url(../img/set_blank.png);
  /* border-radius: 10px; */
  background-color: #f4f4f4;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
#movieindex_photo .item_moviephoto:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 60%;
}



#movieindex_trailer {
  padding: 10px 30px 20px;
}

#movieindex_trailer .list_movietrailer_wrap {

}
#movieindex_trailer .item_movietrailer {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f4f4f4;
}
#movieindex_trailer .item_movietrailer_box {
  position: relative;
  margin-bottom: 10px;
}
#movieindex_trailer .item_movietrailer_box:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 60%;
}
#movieindex_trailer .item_movietrailer_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}









#movieindex_text {
  padding: 10px 30px 20px;
}




















/** 推荐套组 套组详情页 **/
#movieindex_recommendset {
  padding: 10px 30px 20px;
}

.list_movieindex_recommendset {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.item_movieindex_recommendset {
  -webkit-box-flex: 1;
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 5px;
  color: #333;
}
.item_movieindex_recommendset_box {
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.item_movieindex_recommendset_box .cover {
  width: 100%;
  padding-top: 100%;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.item_movieindex_recommendset_box .cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.04);
}
.item_movieindex_recommendset_box .title_wrap {
  padding: 20px 20px 30px;
}
.item_movieindex_recommendset_box .title {
  font-size: 15px;
  font-weight: bold;
}
.item_movieindex_recommendset_box .title_wrap .brandandnumber {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 10px 0 0;
}
.item_movieindex_recommendset_box .brandandnumber .logo {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 4px;
}
.item_movieindex_recommendset_box .brandandnumber .brandandnumber_text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.item_movieindex_recommendset_box .param .faction_logo {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: bottom;
  margin-right: 5px;
  margin-top: 5px;
}
.item_movieindex_recommendset_box .param span {
  padding: 0 10px 0 0;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  margin-top: 5px;
}
.item_movieindex_recommendset_box .param span:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ccc;
  right: 4px;
  top: 50%;
  height: 8px;
  margin-top: -3px;
  width: 2px;
}
.item_movieindex_recommendset_box .param span:last-child:before {
  display: none;
}





/**================= 影视列表 =================**/
#movielist_header {
  z-index: 5;
}
#movielist_maintop {
  
}
#movielist_maintop .list_movietype {
  font-size: 0;
  padding: 0 20px 10px;
}
#movielist_maintop .item_movietype {
  display: inline-block;
  font-size: 12px;
  padding: 0 15px;
  line-height: 40px;
  cursor: pointer;
}
#movielist_maintop .item_movietype.active {
  color: #e62828;
  /* border: 1px solid #de0515; */
  box-shadow: inset 0 0 0 1px #de0515;
}



#movielist_main {
  padding: 20px 30px;
  margin-top: 60px;
}


#movielist_main .list_movie {
  
}

#movielist_main .item_movie {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  overflow: hidden;
  position: relative;
  /* background-color: #fcfafc; */
  margin-bottom: 10px;
  color: #333;
  /* border: 2px solid #fff; */
  /* background-color: rgba(247,246,247,.5); */
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
}

#movielist_main .item_movie .cover {
  width: 100px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(../img/set_blank.png);
  border-radius: 10px;
  background-color: #efefef;
}
#movielist_main .item_movie .cover:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 150%;
}
#movielist_main .item_movie .item_movie_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 10px 10px;
  position: relative;
  z-index: 1;
}

#movielist_main .item_movie .item_movie_box .title {
  font-size: 18px;
  font-weight: bold;
}
#movielist_main .item_movie .item_movie_box .title_en {
  font-weight: bold;
  opacity: .5;
}
#movielist_main .item_movie .item_movie_box .type {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 2px 10px;
  margin-top: 5px;
  margin-right: 5px;
}
#movielist_main .item_movie .item_movie_box .released_year {
  
}
#movielist_main .item_movie .item_movie_box .summary {
  margin-top: 5px;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 5px;
}





















