/********
cadex通用样式 2019-11-13 15:01
上次版本 2019-08-19 09:01
********/
@font-face {
  font-family: 'FZLTHK';
  src: url('../fonts/FZLTHK.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/******** 重置样式 ********/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'FZLTHK', Microsoft Yahei, sans-serif !important;
}

html {
  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' !important;
  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 {
  color: #333;
  background-color: #fff;
  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%;
}

/******** 清除浮动 ********/
.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: #333;
  color: #fff;
}
.btn_color_1.btn_text {
  background-color: #000;
  color: #fff;
}
.btn_color_1.btn_outline {
  box-shadow: inset 0 0 0 1px #000;
}
.btn_color_1:hover {
  background-color: #000;
  color: #fff;
}
/* 按钮初始色，红 */
.btn_color_2 {
  background-color: #ef3a3a;/*f4330d*/
  color: #fff;
}
.btn_color_2.btn_text {
  background-color: #f4f4f4;
  color: #ef3a3a;
}
.btn_color_2.btn_outline {
  box-shadow: inset 0 0 0 1px #ef3a3a;
}
.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_color_6 {
  background-color: #0081e6;
  color: #fff;
}
.btn_color_6.btn_text {
  background-color: #f4f4f4;
  color: #0081e6;
}
.btn_color_6.btn_outline {
  box-shadow: inset 0 0 0 1px #0081e6;
}
.btn_color_6:hover {
  background-color: #0072CC;
  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;
}



.btn-animated-arrow::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f061";
  position: absolute;
  top: 0;
  right: 30px;
  transition: all .2s ease;
  color: #111;
  opacity: 0;
}
a.btn-animated-arrow:hover:before {
  right: 20px;
  opacity: 1;
}


/******** 小徽章 标签 ********/
.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: #ef3a3a;/* 红 */
}
.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: #0081e7;
}
.nothing small {
  font-size: 14px;
}
.nothing .btn {
  font-size: 12px;
  padding: 5px 10px;
  margin: 10px 0 0;
}
.nothing .material-icons.big {
  font-size: 60px;
}
.nothing i {
  font-size:50px;
}

/******** 通用头像 ********/
.avatar,
.image {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-image: url(../img/u_avatar.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.image {
  border-radius: 0;
}
.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;
  color: #333;
}
.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,.3);
  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: 10px;
  /*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 .dark_theme_pop .con.center {
  color: #FFFFFF;
}
#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: #ef3a3a;
}
#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;
  text-align: center;
}
#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: 10002;
  -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 }
}


/** 表单 通用 **/

.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: #f4f4f4;*/
  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: #0ca7ff;/*#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: #0ca7ff;/*#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="checkbox"]:checked + span {
  color: #0ca7ff;
}
.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: #0ca7ff;
}
@-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: #ef3a3a;
}
.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;
}
.form_item_plane select.form_input {
  /*direction: rtl;*/
  background-color: transparent;
}
.form_item_plane select.form_input option {
  /*direction: ltr;*/
}

.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: #ef3a3a;
  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: #0081e6;/*#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: 60px;
  bottom: 0;
  left: 0;
  width: 100%;
}
.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);
  border-radius: 20px 20px 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%);
}
.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: #0081e6;
}
.tab_nav a.active {
  color: #0081e6;
  background-color: #fff;
  border-bottom: 3px solid #0081e6;
  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: #0081e6;
  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 .input_search {
  line-height: 40px;
  height: 40px;
  border: 0;
  width: 100%;
  padding: 0 0 0 35px;
  outline: none;
  font-size: 14px;
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
}
.search_box .material-icons {
  position: absolute;
  top: 5px;
  left: 5px;
  line-height: 40px;
  height: 40px;
}
.search_box .btn_search {
  position: absolute;
  top: 5px;
  right: 0;
  line-height: 52px;
  height: 52px;
  padding: 0 10px;
}
.search_box .icon {
  color: #333;
}



/** 顶栏 **/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0081e7;
  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;
}
.user_info_nav_fixed #header,
.club_tab_nav_fixed #header,
.event_tab_nav_fixed #header {
  box-shadow: none;
}
.header_box {
  width: 100%;
  height: 50px;
  color: #fff;
}

.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: #015fa9;
}
.header .search_box .icon {
  color: #0081e7;
}
.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: #e9e9e9;
  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 -1px 3px rgba(0,0,0,.4);
  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;
}
.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;
}
.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: #ef3a3a;
  color: #fff;
  border-radius: 100px;
  padding: 2px;
  font-size: 0;
}

.bottombar_part.active .btn_hasicon,
.bottombar_part:hover .btn_hasicon {
  color: #0081e7;
}
.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;
  /*background-color: #333;
  color: #fff;*/
  box-shadow: 0 2px 7px rgba(0,0,0,.7);
  font-size: 14px;
  padding: 0;
  min-width: 100%;
}
.tab_filter .tab_filter_item .dropdown_menu .menu_item {
  display: block;
  padding: 10px;
  cursor: pointer;
}
.tab_filter .tab_filter_item .dropdown_menu .active {
  color: #0081e6;
}
.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: #0081e6;
}
.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 1px 3px rgba(0,0,0,.1); */
  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 {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 55px;
  padding: 0 5px;
}
.main_maxwidth {
  margin: 0 -5px;
}
/** 标题 【主体区】 **/
.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;
}
.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: #ef3a3a;
  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: #ef3a3a;
  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;
}

/************************** cadex官网开始 ************************************/
/* 
@font-face {
  font-family: 'ridelife';
  src: url('../fonts/ridelife/ridelife-webfont.eot');
  src: url('../fonts/ridelife/ridelife-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/ridelife/ridelife-webfont.woff2') format('woff2'),
       url('../fonts/ridelife/ridelife-webfont.woff') format('woff'),
       url('../fonts/ridelife/ridelife-webfont.ttf') format('truetype');
  unicode-range: U+30-39, 61-7a, 41-5a;
  font-weight: bold;
  font-style: normal;
}
.font_ridelife {
  font-family: ridelife, Microsoft Yahei, sans-serif;
} */


.limitwidth {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.main_top {
  margin-top: 0;
  padding-top: 90px;
}
.main {
  max-width: initial;
}
@media (max-width: 900px) {
  .main_top {
    padding-top: 80px;
  }
}
@media (max-width: 800px) {

}
@media (max-width: 500px) {
  .main_top {
    padding-top: 80px;
  }
}
.img {
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  /* background-image: url(../img/img_blank.png);*/
}
.product_cate_area .product_cate_list .cate_item .image{
  background-image: url(../img/img_blank.png);
}



/** 弹出全局搜索 **/
#subplate_globalsearch {
  z-index: 100;
}
#subplate_globalsearch .mask {
  cursor: pointer;
  top:80px;
}
#subplate_globalsearch .globalsearch_card {
  position: absolute;
  top: 35px;
  width: 100%;
}
#subplate_globalsearch .globalsearch_card .card {
  padding: 30px;
  background-color: #fff;
  border-radius:0;
}
#subplate_globalsearch .globalsearch_card .limitwidth {
  max-width:100%;
  width:100%;
  padding:0;
}
#subplate_globalsearch .globalsearch_card .search_box .input_search {
  border: 1px solid #ddd;
  padding: 25px;
}
.search_box .icon {
  display:none;
}



/**** 页面头部 ****/
#header_wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid #555;
}
#header_cadex {
  height: 60px;
  padding:0 45px;
  background-color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
/*#header_cadex .header_cadex_box {*/
/*  font-size:0;*/
/*}*/
#header_cadex .header_cadex_box {
  font-size: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#header_cadex .header_cadex_leftarea {
  width:20%;
  display:inline-block;
  vertical-align: top;
}
#header_cadex .header_cadex_leftarea .header_logo {
  line-height:60px;
}
#header_cadex .header_cadex_leftarea .header_logo img {
  height: 27px;
}
#header_cadex .header_btnheadermenu {
  display:none;
}
#header_cadex .header_btnheadermenu .btn {
  /* color:#fff;
  line-height:60px; */
  height:25px;
  width:25px;
  margin-top: 12px;
  position:relative;
  display:block;
}
#header_cadex .header_btnheadermenu .btn span {
  width:25px;
  height:3px;
  background-color:#fff;
  border-radius:2px;
  display:block;
  position:absolute;
  left:0;
  transition:0.3s;
}
#header_cadex .header_btnheadermenu .btn span.btn1 {
  top:0;
}
#header_cadex .header_btnheadermenu .btn span.btn2 {
  top:9px;
}
#header_cadex .header_btnheadermenu .btn span.btn3 {
  top:9px;
}
#header_cadex .header_btnheadermenu .btn span.btn4 {
  top:18px;
}
#header_cadex .header_btnheadermenu .btn.active .btn2 {
  transform:rotate(45deg);
  top: 10px;
}
#header_cadex .header_btnheadermenu .btn.active .btn3 {
  transform:rotate(-45deg);
  top: 10px;
}
#header_cadex .header_btnheadermenu .btn.active .btn1,#header_cadex .header_btnheadermenu .btn.active .btn4 {
  display:none;
}
#header_cadex .header_cadex_nav {
  width:60%;
  display:inline-block;
  vertical-align: top;
  text-align:center;
}
#header_cadex .header_cadex_nav .header_nav_item {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  line-height: 60px;
}
#header_cadex .header_cadex_nav .header_nav_item .text {
  font-size: 14px;
  color: #fff;
  line-height: 60px;
  margin: 0 20px 0 0;
  cursor: pointer;
  display: block;
}
#header_cadex .header_cadex_nav .header_nav_item .text:hover {
  color: #aaa;
}
#header_cadex .header_cadex_rightarea {
  width:20%;
  display:inline-block;
  vertical-align: top;
  text-align:right;
}
#header_cadex .header_cadex_rightarea .btn_headersearch {
  color:#fff;
  line-height:60px;
}
.subnav {
  width:100%;
  position:absolute;
  top:90px;
  left:0;
  right:0;
  background-color:#fff;
  min-height:250px;
  display:none;
}
.subnav .mask {
  z-index:-1;
}
.subnav .subnav_box {
  padding:0 30px;
}
.subnav .subnav_box.pro_list {}
.subnav .subnav_box.pro_list .list {
  font-size:0;
  text-align:left;
}
.subnav .subnav_box.pro_list .list .item {
  width:16.6666%;
  display:inline-block;
  vertical-align:top;
  padding:0 27px;
  margin:20px 0 0 0;
  border-right:1px solid #ccc;

}
.subnav .subnav_box.pro_list .list .item .img {
  padding-top:70%;
}
.subnav .subnav_box.pro_list .list .item .text_tit {
  font-size:14px;
  color:#333;
  line-height: 35px;
}
.close_subnav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.close_subnav_box{
  margin: 0 auto;
  line-height: 20px;
  background: #eee;
  border: 1px solid #eee;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  color: #aaa;
  width: 50px;
  display: block;
  position: relative;
  font-size: 20px;
  text-align: center;
}

@media(max-width:900px){
  #header_cadex {
    padding:0 10px;
    height:50px;
  }
  #header_cadex .header_btnheadermenu {
    display:inline-block;
    width:20%;
  }
  #header_cadex .header_cadex_leftarea {
    width:60%;
    text-align:center;
  }
  #header_cadex .header_cadex_nav {
    display:none;
    background-color:#fff;
    position:fixed;
    top:80px;
    left:0;
    bottom:0;
    right:0;
    width:100%;
    height:100%;
    text-align:left;
  }
  #index_main_top {
    padding-top:80px;
  }
  #header_cadex .header_cadex_nav .header_nav_item {
    color:#333;
    display:block;
    margin:0;
    padding:0 20px;
    line-height:50px;
    border-top: 1px solid #eee;
    background: #f5f5f5;
  }
  #header_cadex .header_cadex_nav .header_nav_item .text {
    color: #555;
    font-size: 16px;
    font-weight: 700;
  }
  #header_cadex .header_cadex_nav .header_nav_item .text:hover {
    color: #ddd;
  }
  #header_cadex .header_cadex_nav .header_nav_item .text.active {
    color: #000; 
  }
  #header_cadex .header_cadex_nav .header_nav_item .text:after {
    content:"\e409";
    font-family:"Material Icons";
    position:absolute;
    top: 4px;
    right: -30px;
    color:#bababa;
    font-size:20px;
    transition:0.3s;
    line-height: 50px;
  }
  #header_cadex .header_cadex_nav .header_nav_item .text.active:after {
    transform:rotate(90deg);
  }
  .subnav {
    position:static;
    min-height: auto;
    background: none;
    margin-top: 0px;
  }
  .subnav .mask {
    display:none;
  }
  .subnav .subnav_box {
    padding: 0 15px;
  }
  .subnav .subnav_box.pro_list .list .item {
    width:100%;
    display:block;
    padding:0;
    border-right:none;
    margin-top:0;
  }
  .subnav .subnav_box.pro_list .list .item .img_wrap {
    display:none;
  }
  #header_cadex .header_cadex_leftarea .header_logo img {
    height: 18px;
  }
  #header_cadex .header_cadex_rightarea .btn_headersearch, #header_cadex .header_cadex_leftarea .header_logo {
    line-height: 50px;
  }
}


/** 首页 Banner **/
#index_first_banner {

}
#index_first_banner .swiper-slide, #index_middle_banner .swiper-slide {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 52%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#index_first_banner .bannerbg, #index_middle_banner .bannerbg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
}
#index_first_banner .swiper-slide video, #index_middle_banner .swiper-slide video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}
#index_first_banner .swiper-slide .title_wrap, #index_middle_banner .swiper-slide .title_wrap {
  position: absolute;
  width: 50%;
  left: 0;
  right: 100px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,.2);
}
#index_first_banner .swiper-slide .title_wrap .headlinepoint,
#index_middle_banner .swiper-slide .title_wrap .headlinepoint
{
  margin-bottom: 20px;
}
/* #index_first_banner .swiper-slide .title_wrap .headlinepoint:before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #006ebc;
  vertical-align: middle;
} */
#index_first_banner .swiper-slide .title_wrap .headlinepoint .btn, #index_middle_banner .swiper-slide .title_wrap .headlinepoint .btn{
  color: #fff;
  line-height: 30px;
  height: 30px;
  vertical-align: middle;
  padding: 0 10px;
  display: none;
}
#index_first_banner .swiper-slide .title_wrap .title,
#index_middle_banner .swiper-slide .title_wrap .title {
  /* font-weight: bold; */
  font-size: 50px;
  line-height: 50px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 100;
  font-style: italic;
  letter-spacing: unset;
}
#index_first_banner .swiper-slide .title_wrap .subtitle,
#index_middle_banner .swiper-slide .title_wrap .subtitle {
  display:inline-block;
  font-size: 23px;
  line-height: 23px;
  /* margin-bottom: 10px; */
  margin-top:10px;
  padding-top: 15px;
  /* border-top: 5px solid #fff; */
}

#index_first_banner .swiper_small_img,
#index_middle_banner .swiper_small_img {

  width: 100%;
  height: 0;
  padding-top: 52%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
/** 桌面版Banner **/
/* #index_first_banner .swiper-slide {
  background-image: url(./demo/img/banner01.jpg);
  cursor: pointer;
} */
/** 手机版Banner **/
/* @media (max-width: 800px) {
  #index_first_banner .swiper-slide {
    background-image: url(./demo/img/cadex_homepage_banner_mobile_1561753476.jpg);
  }
} */
.btn_readmore {
  margin-top: 10px;
  line-height: 35px;
  height: 35px;
  background: #fff!important;
  border-color: #fff!important;
  color: #000!important;
  overflow: hidden;
  position: relative;
  padding: 0px 35px;
  transition: all .2s ease;
  border-radius: 0;
  letter-spacing: 2px;
  font-weight: 400;
  border: 1px solid transparent;
  font-size: 14px;
}
.btn_readmore:after {
  content: "\e5c8";
  font-family: 'Material Icons';
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 30px;
  transition: all .2s ease;
  color: #111;
  opacity: 0;
}
.btn_readmore:hover {
  padding: 0 45px 0 25px;
}
.btn_readmore:hover:after {
  opacity: 1;
  right: 20px;
}

#index_first_banner .banner_prev,
#index_first_banner .banner_next,
#index_middle_banner .banner_prev,
#index_middle_banner .banner_next,
#image_swiper .banner_prev,
#image_swiper .banner_next
{
  position: absolute;
  display: block;
  width: 50px;
  text-align: center;
  bottom: 50%;
  margin-bottom: -25px;
  left: 0;
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 2.5px rgba(0,0,0,.6);
  cursor: pointer;
  vertical-align: middle;
}
@media (max-width: 480px) {
  #index_first_banner .banner_prev,
  #index_first_banner .banner_next,
  #index_middle_banner .banner_prev,
  #index_middle_banner .banner_next,
  #image_swiper .banner_prev,
  #image_swiper .banner_next
  {
    display: none;
  }
}
#index_first_banner .banner_next, #index_middle_banner .banner_next, #image_swiper .banner_next  {
  left: auto;
  right: 0;
}
#index_first_banner .banner_prev i,
#index_first_banner .banner_next i, 
#index_middle_banner .banner_prev i,
#index_middle_banner .banner_next i,
#image_swiper .banner_prev i,
#image_swiper .banner_next i
 {
  line-height: 50px;
  height: 50px;
  font-size: 50px;
}
#index_first_banner .banner_prev:hover,
#index_first_banner .banner_next:hover,
#index_middle_banner .banner_prev:hover,
#index_middle_banner .banner_next:hover,
#image_swiper .banner_prev:hover,
#image_swiper .banner_next:hover

{
  background-color: rgba( 0,0,0,.5 );
}
#index_first_banner .banner_pagination, #index_middle_banner .banner_pagination,
#image_swiper .banner_pagination
{
  position: absolute;
  text-align: center;
  bottom: 10px;
  left: 0;
  z-index: 1;
  height: 23px;
}
#index_first_banner .swiper-pagination-bullet-active, #index_middle_banner .swiper-pagination-bullet-active,
#image_swiper .swiper-pagination-bullet-active
{
  background: #fff;
  box-shadow: 0 1px 2.5px rgba(0,0,0,.6);
}

#index_first_banner .swiper-pagination-bullet, #index_middle_banner .swiper-pagination-bullet,
#image_swiper .swiper-pagination-bullet
{
  width: 10px;
  height: 20px;
  border-radius: 0;
  opacity: .8;
  -webkit-transform: skew(-20deg,0);
  transform: skew(-20deg,0);
  border: 1px solid #fff;
}
@media (max-width: 1280px) {
  #index_first_banner .swiper-slide .title_wrap .headlinepoint:before, #index_middle_banner .swiper-slide .title_wrap .headlinepoint:before {
    width: 30px;
    height: 30px;
  }
  #index_first_banner .swiper-slide .title_wrap .title, #index_middle_banner .swiper-slide .title_wrap .title {
    font-size: 40px;
    line-height: 40px;
  }
  #index_first_banner .swiper-slide .title_wrap .subtitle, #index_middle_banner .swiper-slide .title_wrap .subtitle {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 1000px) {
  #index_first_banner .swiper-slide .title_wrap, #index_middle_banner .swiper-slide .title_wrap {
    top: 30%;
    width:100%;
    bottom:auto;
    transform: none;
  }
}
@media (max-width: 900px) {
  #index_first_banner .swiper-slide .title_wrap .headlinepoint:before,
  #index_middle_banner .swiper-slide .title_wrap .headlinepoint:before
  {
    width: 30px;
    height: 30px;
  }
  #index_first_banner .swiper-slide .title_wrap .title,
  #index_middle_banner .swiper-slide .title_wrap .title
  {
    font-size: 28px;
    line-height: 35px;
  }
  #index_first_banner .swiper-slide .title_wrap .subtitle, #index_middle_banner .swiper-slide .title_wrap .subtitle {
    font-size: 22px;
    line-height: 22px;
  }
}

@media (max-width: 800px) {
  #index_first_banner .swiper-slide, #index_middle_banner .swiper-slide,
  #image_swiper .swiper-slide
  {
    padding-top: 156%;
  }
  #index_first_banner .bannerbg, #index_middle_banner .bannerbg,
  #image_swiper .bannerbg
  {
    display: block;
  }
  #index_first_banner .banner_pagination, #index_middle_banner .banner_pagination,
  #image_swiper .banner_pagination
  {
    text-align: right;
    padding-right: 30px;
  }
  #index_first_banner .swiper-slide video, #index_middle_banner .swiper-slide video,
  #image_swiper .swiper-slide video
  {
    display: none;
  }
  #index_first_banner .swiper-slide .title_wrap .headlinepoint .btn,
  #index_middle_banner .swiper-slide .title_wrap .headlinepoint .btn,
  #image_swiper .swiper-slide .title_wrap .headlinepoint .btn
  {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  #index_first_banner .swiper-slide .title_wrap, #index_middle_banner .swiper-slide .title_wrap,
  #image_swiper .swiper-slide .title_wrap
  {
    padding: 0 20px;
    top: 30%;
  }
}
@media (max-width: 400px) {
  #index_first_banner .swiper-slide .title_wrap {

  }
}

/* 首页主体部分 */
#index_main {
  padding:45px 0 45px 0;
}
.index_main_part {
  padding:0 30px;
}
.index_main_part .list_lart {
  font-size:0;
}
.index_main_part .list_lart .item {
  width:50%;
  display:inline-block;
  padding:0 15px;
}
.index_main_part .list_lart .item .item_box {
  padding-top:80%;
  position:relative;
}
.index_main_part .list_lart .item .item_box .intro {
  position:absolute;
  top:18%;
  left:40px;
  right:30%;
}
.index_main_part .list_lart .item .item_box .intro .title {
  font-size:32px;
  color:#fff;
  margin-bottom:20px;
  font-style: italic;
  letter-spacing: unset;

}
.index_main_part .list_lart .item .item_box .intro .subtitle {
  font-size:16px;
  color: #ddd;
  line-height:30px;
}
.index_main_part .list_lart .item .item_box .intro .btn {
  margin-top:15px;
  /* font-size:12px; */
}
@media(max-width:1280px){
  .index_main_part .list_lart .item .item_box {
    padding-top:100%;
  }
}
@media(max-width:1000px){
  .index_main_part {
    padding:0;
  }
  .index_main_part .list_lart .item {
    width:100%;
    margin-bottom:25px;
  }
  .index_main_part .list_lart .item .item_box {
    padding:0;
    height:500px;
  }
  .index_main_part .list_lart .item .item_box .intro {
    top:7%;
  }
}

/******** 内页 置顶部分 *********/
.main_top_banner_box {
  position:relative;
}
.main_top_banner_box .img_wrap {
  width:100%;
  position:relative;
}
.main_top_banner_box .img_wrap:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(transparent 33%,#000 100%);
  opacity: .5;
}
.main_top_banner_box .img_wrap .img {
  padding-top:31%;
}
.main_top_banner_box .title {
  width:100%;
  text-align:center;
  color:#fff;
  font-size:45px;
  position:absolute;
  bottom:40px;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
}
.main_top_banner .subtitle {
  background: #000;
  border-top: 1px solid #222;
  border-bottom: unset;
  font-size: 20PX;
  color: #ddd;
  text-shadow: 0 0 10px rgba(0,0,0,.5);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 2pX;
  padding: 50px 0;
}
.main_top_banner .subtitle .subtitle_box {
  text-align:center;
}
#inside_main {
  padding:0;
  margin-top:50px;
}
@media(max-width:900px){
  .main_top_banner_box .img_wrap .img {
    padding-top:60%;
  }
}
/******** 内页 产品系列 *********/

#highlights {}
#highlights .highlight_item {
  width:100%;
  padding-top:47%;
  position:relative;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
}
#highlights .highlight_item .text_wrap {
  position:absolute;
  top:25%;
  left:0;
  /* transform:translateY(-50%); */
  padding:0 20%;
  overflow-y: auto;
  bottom:0;
}
#highlights .highlight_item .text_wrap::-webkit-scrollbar {
  width:0;
}
#highlights .highlight_item .text_wrap .title {
  color: #fff;
  font-size: 46px;
  margin-bottom: 15px;
  text-transform: none;
  letter-spacing: .2rem;
  text-shadow: 0 0 15px #000;
}
#highlights .highlight_item .text_wrap .text {
  color: #ddd;
  font-size: 18px;
  line-height: 35px;
  text-shadow: 0 0 15px #000;
}

#highlights .highlight_item:nth-child(odd) .text_box {
  padding-right:39%;
  text-align:left;
}
#highlights .highlight_item:nth-child(even) .text_box {
  padding-left:39%;
  text-align:right;
}
/******** 内页 技术介绍 *********/
#technology {
  padding-top:45px;
  background: #eee;
  padding-bottom:20px;
}
#technology .technology_box {
  padding:0 30px;
}
#technology .technology_list {
  font-size:0;
}
#technology .technology_item {
  width:25%;
  display:inline-block;
  padding:0 15px;
  position:relative;
  margin-bottom: 30px;
}
#technology .technology_item .img_wrap {
  width:100%;
}
#technology .technology_item .img_wrap .img {
  padding-top:117%;
}
#technology .technology_item .text_wrap {
  position:absolute;
  top:0;
  left:0;
  padding:10%;
}
#technology .technology_item .text_wrap .titile {
  font-size: 32px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 2px;
  color:#fff;
  margin-bottom:20px;
}
#technology .technology_item .text_wrap .text {
  margin-bottom: 25px;
  font-size: 16px;
  letter-spacing: 2px;
  color: #ddd;
  text-shadow: 0 0 15px #000;
  line-height: 30px;
}

/******** 内页 相关产品 *********/
#models {
  padding:45px 45px 0 45px;
  background: #f5f5f5;
  padding-bottom:20px;
}
#models .models_box {
  padding:0 30px;
}
#models .models_list {
  font-size:0;
}
#models .models_list .models_item {
  width:50%;
  display:inline-block;
  vertical-align:top;
  padding:0 15px;
  margin-bottom:30px;
}
#models .models_list .models_item_box {
  background-color:#fff;
}
#models .models_list .models_item .img_wrap{
  overflow:hidden;
  padding:10px;
}
#models .models_list .models_item .img_wrap .img{
  padding-top:60%;
  -webkit-transition:0.3s;
  transition:0.3s;
  background-size:contain;
}
#models .models_list .models_item .img_wrap .img:hover {
   -webkit-transform:scale(1.1);
  transform:scale(1.1);
}
#models .models_list .models_item .text_wrap{
  padding:10px;
  text-align:center;
  min-height: 150px;
}
#models .models_list .models_item .text_wrap .titile{
  font-size:25px;
  font-weight: 700;
  color:#444;
}
#models .models_list .models_item .text_wrap .subtitle{
  font-size: 14px;
  font-weight:700;
  color: #999;
}

@media (max-width: 1280px) {
  #technology .technology_item .img_wrap .img {
    padding-top: 220%;
  }
}
@media (max-width: 1024px) {
  #highlights .highlight_item .text_wrap {
    top:20%;
  }
}
@media (max-width: 1000px) {
  #technology .technology_item {
    width:50%;
  }
  #technology .technology_item .img_wrap .img {
    padding-top: 117%;
  }
  #highlights .highlight_item .text_wrap .title {
    font-size:30px;
  }
  #highlights .highlight_item .text_wrap {
    padding:0 6%;
    top: 15%;
  }
  #highlights .highlight_item:nth-child(odd) .text_box {
    padding-right: 20%;
  }
  #highlights .highlight_item:nth-child(even) .text_box {
    padding-left: 20%;
  }
  #highlights .highlight_item .text_wrap .text {
    font-size:16px;
    line-height:25px;
  }
}
@media (max-width: 640px) {
  .main_top_banner .title {
    font-size:18px;
    padding:0;
    bottom: 15px;
    letter-spacing: 5px;
  }
  .main_top_banner .subtitle {
    line-height:25px;
    font-size: 16PX;
    padding:20px;
  }
  #highlights .highlight_item {
    height:320px;
  }
  #highlights .highlight_item .text_wrap .title {
    font-size:20px;
  }
  #highlights .highlight_item .text_wrap .text {
    font-size:14px;
    line-height:20px;
  }
  #highlights .highlight_item .text_wrap {
    padding:0 10px;
  }
  #highlights .highlight_item:nth-child(odd) .text_box {
    padding-right:0;
  }
   #highlights .highlight_item:nth-child(even) .text_box {
    padding-left:0;
  }
  #technology .technology_box {
    padding:0;
  }
  #technology .technology_item {
    width:100%;
  }
  #models .models_list .models_item {
    width:100%;
  }
  #models {
    padding: 45px 0 0 0;
  }
  #models .models_box {
    padding: 0 10px;
  }
  #technology .technology_item .text_wrap .titile {
    font-size:28px;
    margin-bottom: 10px;
  }
}

/******** 内页 产品详情 *********/
.main_top_productshow {
  width:100%;
}
.main_top_productshow_box {
  font-size:0;
  padding:0 45px;
}
.main_top_productshow .img_wrap {
  width:65%;
  display:inline-block;
  padding: 7% 10% 8%;
}
.main_top_productshow .img_wrap .img {
  padding-top:68%;
  background-size:contain;
}
.main_top_productshow .text_wrap {
  width:35%;
  display:inline-block;
  vertical-align:top;
  font-size:16px;
  padding: 20px 0 50px;
}
.main_top_productshow .breadcrumb {
  padding: 15px 0;
  margin: 0;
}
.main_top_productshow  .breadcrumb li {
  display:inline-block;
  margin-right:5px;
  font-size:12px;
}
.main_top_productshow .breadcrumb li .no_active {
  color: #767676;
}
.main_top_productshow  .breadcrumb li a {
  color:#585858;
  font-weight: 700;
}
.main_top_productshow  .breadcrumb li:after {
  content:"/";
  color:#585858;
  margin-left:5px;
}
.main_top_productshow .text_wrap .title {
  font-size:22px;
  font-weight:bold;
  line-height: 1;
  letter-spacing: 0;
}
.main_top_productshow .text_wrap  .subtit {
  color: #333;
  padding:10px 0;
}
.main_top_productshow .text_wrap .intro {
  padding: 10px 0;
  font-size: 16px;
  line-height:25PX;
}
.main_top_productshow .text_wrap .price_wrap {
  margin: 0 0 5px;
  padding: 10px 0 0;
  font-weight: 700;
}
.main_top_productshow .text_wrap .price_wrap .price {}
.main_top_productshow .text_wrap .tips {
  font-size: 16px;
  line-height: 26px;
}

#features {
  background: #111;
  color: #ddd;
  padding: 50px 0;
}
#features .features_box {}
#features .features_box .title {
  text-align:center;
  font-size:30px;
  margin-bottom:30px;
  font-weight: bold;
}
#features .features_box .text {
  padding:0 20%;
}
#features .features_box .text li {
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 10px;
  color: #ddd;
}


#responsive {}
#responsive .img {
  padding-top:52%;
}

#specifications {
  background: #444;
  color: #fff;
  border-top: 1px solid #ddd;
  padding: 50px 0;
}
#specifications .specifications_box {}
#specifications .specifications_box .title {
  margin-bottom:30px;
  font-size:30px;
  text-align:center;
}
#specifications .specifications_box .text_list {
  font-size:0;
}
#specifications .specifications_box .text_list .item {
  width:50%;
  display:inline-block;
  padding: 0 4%;
  vertical-align:top;
}
.specifications_table {
  margin: 20px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ddd;
  color: #fff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.specifications_table th {
  padding-right: 2%;
  width: 25%;
  font-weight: 400;
}
.specifications_table td {
  color: rgba(255,255,255,.7);
}
.specifications_table td,.specifications_table th {
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  padding: 5px 0;
  font-size: 16px;
  line-height:26px;
  text-align: left;
}

.bottom_tips {
  background: #f5f5f5;
  text-align:center;
  padding:30px 0;
}

@media(max-width:640px){
  .main_top_productshow_box {
    padding:0 10px;
  }
  .main_top_productshow .img_wrap {
    width:100%;
    padding: 20% 0% 8%;
  }
  .main_top_productshow .text_wrap {
    width:100%;
    text-align:center;
  }
  .main_top_productshow .text_wrap .breadcrumb {
    text-align:center;
  }
  .main_top_productshow .text_wrap .title {
    font-size:20px;
  }
  #features {
    padding:30px 0;
  }
  #features .features_box .text {
    padding:0;
  }
  #features .features_box {
    padding: 0 10px;
  }
  #features .features_box .text li {
    font-size:14px;
  }
  #features ul {
    display: inline-block;
    margin: 0 0 15px 15px;
    padding: 0;
  }
  #specifications .specifications_box .text_list .item {
    width:100%;
  }
  #specifications .specifications_box {
    padding:0 10px;
  }
  .specifications_table td, .specifications_table th {
    width:50%;
    font-size:14px;
  }
  .bottom_tips {
    padding: 30px 20px;
    line-height:26px;
  }
}

/** 内页 关于cadex **/
.main_top_about {
  padding-top:50%;
  position:relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main_top_about_box {

}
.main_top_about video {
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:100%;
  height:100%;
  object-fit: cover;
}
.about_tips {
  padding: 50px 0;
  background: #000;
  border-top: 1px solid #333;

}
.about_tips_box {
  font-size: 18px;
  line-height: 32px;
  color: #ddd;
}

#pro_list {
  text-align:center;
  padding: 50px 0;
}
#pro_list .title {
  font-size:30px;
  color: #999;
  padding-bottom: 25px;
  margin-bottom: 50px;
  position:relative;
}
#pro_list .title:after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform:translate(-50%);
  height: 5px;
  background: #ddd;
  width: 60px;
}
#pro_list .pro_list_box {
  font-size:0;
}
#pro_list .pro_list_box .item {
  width:25%;
  display:inline-block;
  vertical-align:top;
  padding:0 20px;
}
#pro_list .pro_list_box .item_box {}
#pro_list .pro_list_box .item_box .img_wrap {
  overflow:hidden;
}
#pro_list .pro_list_box .item_box .img_wrap .img {
  padding-top:67%;
  transition:0.3s;
}
#pro_list .pro_list_box .item_box .img_wrap .img:hover {
  transform:scale(1.1);
}
#pro_list .pro_list_box .item_box .text_wrap {
  padding:10px 0;
}
#pro_list .pro_list_box .item_box .text_wrap .text {
  font-size:16px;
}
.main_top_about .headlinepoint .btn {
  width:50px;
  height:50px;
  border-radius:100%;
  color: #fff;
  line-height: 45px;
  vertical-align: middle;
  background-color:rgba(0,0,0,0.3);
  border:2px solid #fff;
  display: none;
}
.main_top_about .headlinepoint {
  position:absolute;
  bottom:50%;
  left:50%;
  margin-left:-35px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 800px) {
  .main_top_about {
    padding-top:60%;
  }
  .main_top_about video {
    display: none;
  }

  .main_top_about .headlinepoint .btn {
    display: inline-block;
  }
}
@media(max-width:640px){
  #pro_list {
    padding: 25px 0;
  }
  #pro_list .pro_list_box .item  {
    width:100%;
    margin-bottom: 20px;
  }
  #pro_list .pro_list_box {
    padding:0;
  }
  #pro_list .title {
    font-size:25px;
    margin-bottom: 25px;
  }
}

/** 内页 overachieve **/
.main_top.overachieve .title {
  font-style:italic;
}
.main_top.overachieve .subtitle {
  font-style: unset;
  font-size: 12px;
  line-height: 28px;
  font-weight: 400;
  color:#fff;
  padding: 50px 22%;
  background: #222;
}

#overachieve {
  background-color:#000;
}
#overachieve .overachieve_box, #new_class_main .overachieve_box {
  padding:45px 0;
  text-align: center;
}
#overachieve .overachieve_box .overachieve_list, #new_class_main .overachieve_box .overachieve_list{
  font-size:0;
}
#overachieve .overachieve_box .overachieve_item, #new_class_main .overachieve_box .overachieve_item{
  width:33.33%;
  display:inline-block;
  vertical-align:top;
  padding:0 15px;
   margin-bottom:30px;
}
#overachieve .overachieve_item_box, #new_class_main .overachieve_item_box {
  background-color:#fff;
}
#overachieve .overachieve_item_box .img_wrap, #new_class_main .overachieve_item_box .img_wrap {
  overflow:hidden;
}
#overachieve .overachieve_item_box .img_wrap .img, #new_class_main .overachieve_item_box .img_wrap .img {
  padding-top:67%;
  -webkit-transition:0.3s;
  transition:0.3s;
}
#overachieve .overachieve_item_box .img_wrap:hover .img, #new_class_main .overachieve_item_box .img_wrap:hover .img {
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}
#overachieve .overachieve_item_box .text_wrap, #new_class_main .overachieve_item_box .text_wrap {
  padding:20px 0;
  text-align:center;
  min-height: 125px;
}
#overachieve .overachieve_item_box .text_wrap .titile, #new_class_main .overachieve_item_box .text_wrap .titile {
  color:#000;
  font-size:18px;
  font-weight:700;
}
#overachieve .overachieve_item_box .text_wrap .subtitle, #new_class_main .overachieve_item_box .text_wrap .subtitle {
  font-size:14px;
}
.overachieve_item_box .text_wrap:hover {
  opacity: 0.6;
}
@media (max-width:640px) {
  .main_top.overachieve .subtitle {
    padding:20px 10px;
  }
  #overachieve .overachieve_box .overachieve_item, #new_class_main .overachieve_box .overachieve_item {
    width:100%;
    margin-bottom:30px;
  }
  #overachieve .overachieve_item_box .text_wrap, #new_class_main .overachieve_item_box .text_wrap  {
    min-height: unset;
  }
}

/** 内页 overachieveshow **/
.main_top_overachieveshow {
  background-color:#000;
  padding:100px 0 0 0;
}
.main_top_overachieveshow_box {
  color:#fff;
}
.main_top_overachieveshow_box .title {
  font-size:50px;
  margin-bottom: 40px;
}
.main_top_overachieveshow_box .text_wrap {
  font-size:0;
}
.main_top_overachieveshow_box .text_wrap_content .text {
  font-size: 16px;
  line-height: 26px;
}
.main_top_overachieveshow_box .text_wrap .time {
  width:30%;
  display:inline-block;
  color: #ddd;
  font-size: 18px;
  text-align: center;
  padding-top: 40px;
  margin-bottom: 20px;
}
.main_top_overachieveshow_box .text_wrap .text {
  width:70%;
  display:inline-block;
  vertical-align:top;
  border-left: 1px solid #555;
  padding-left: 25px;
  font-size: 18px;
  line-height: 28px;
}
.main_top_overachieveshow_box .focusimg {
  margin-top:45px;
}
.main_top_overachieveshow_box .focusimg .focusimg_box {}

.focusimg .cover_wrap {}
.focusimg .cover_wrap .cover {
  width:100%;
  padding-top:57%;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  background-image:url(../img/img_blank.png);
}
.focusimg .small_cover_list {
  padding-top:20px;
  margin:0;
  margin: 0;
  padding-left: 0;
}
.focusimg .small_cover_list .item {
  width:62px;
  height:62px;
  display:inline-block;
  margin-right:10px;
  border:1px solid #fff;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  background-image:url(../img/img_blank.png);
}
.share {
  padding:45px 0;
}
.share_title {
  color: #ccc;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.share_list {}
.share_list a {
  background-color:#666;
  padding:3px 10px;
  display:inline-block;
  border-radius:3px;
}
.share_list a img {
  height: 15px;
  opacity: 0.8;
}
.overachieve_show #overachieve {
  background-color:#333;
  padding-top:45px;
}
.overachieve_show #overachieve .title, #new_class_main .title {
  font-size:30px;
  color: #fff;
  padding-bottom: 25px;
  position:relative;
  text-align:center;
}
.overachieve_show #overachieve .title:after, #new_class_main .title:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform:translate(-50%);
  height: 5px;
  background: #ddd;
  width: 60px;

}
.overachieve_show #overachieve .overachieve_box .overachieve_item, #new_class_main .overachieve_box .overachieve_item {
  width:25%;
}


@media(max-width:640px){
  .main_top_overachieveshow_box .title {
    font-size: 35px;
  }
  .main_top_overachieveshow_box .text_wrap .time,.main_top_overachieveshow_box .text_wrap .text {
    width:100%;
  }
  .main_top_overachieveshow_box .text_wrap .time {
    text-align:left;
    padding-top:0;
  }
  .main_top_overachieveshow_box .text_wrap .text {
    border-left:none;
    padding-left:0;
    font-size: 16px;
  }
  .main_top_overachieveshow {
    padding-top:45px
  }
  .overachieve_show #overachieve .overachieve_box .overachieve_item {
    width:100%;
  }
}

.main_top.technology {}
.main_top.technology .title span{
  display:block;
}
.main_top.technology .tit{
  position:relative;
  padding-bottom:15px;
  margin-bottom:15px;
}
.main_top.technology .tit:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform:translate(-50%);
  height: 5px;
  background: #ddd;
  width: 60px;

}
.main_top.technology .subtit{
  font-size:18px;
}
#new_class_main .title{
  color: #676767;
  font-weight: bold;
}




/*=============================================== 门店 开始 =======================================================*/
/*#BMapLib_transBox0 {
  white-space: nowrap;
}*/

#btn_filterstore_show {
  position: fixed;
  z-index: 9;
  top: 90px;
  right: 10px;
  background-color: #fff;
  width: 40px;
  line-height: 40px;
  height: 40px;
  border-radius: 100px;
  box-shadow: 0 0 10px;
  cursor:pointer;
  display: none;
}
@media (max-width: 800px) {
  #btn_filterstore_show {
    display: block;
  }
}
.filterstore_form {
  background-color: #333;
  color: #fff;
  padding: 5px 20px;
  box-shadow: 0 0 30px rgba(0,0,0,.2);
  z-index: 1;
  position: relative;
}
.filterstore_form .form_input {
  cursor: pointer;
  /*-webkit-appearance: none;
  appearance: none;*/
  background-color: #FFFFFF;
  border-radius: 0px;
}
.filterstore_form .btn_search {
  line-height: 40px;
  height: 40px;
  padding: 0 20px;
}
.filterstore_form .btn_close_wrap {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 5px;
  display: none;
}
.filterstore_form .btn_close_wrap .btn {
  line-height: 35px;
}
.filterstore_form .btn_close_wrap .btn * {
  line-height: inherit;
  vertical-align: top;
}
.filterstore_form .btn_close_wrap .btn {
  color: #fff;
}
body.from_liv .filterstore_form .btn_close_wrap .btn,
body.from_momentum .filterstore_form .btn_close_wrap .btn,
body.from_giantev .filterstore_form .btn_close_wrap .btn {
  color: #666;
}

#storemap_main {
  padding: 0;
  margin-top: 50px;
}
#storemap_main .storemap_wrap {
  font-size: 0;
  height: 300px;
}
#storemap_list {
  font-size: 12px;
  display: inline-block;
  width: 30%;
  height: inherit;
  vertical-align: top;
  background-color: #333;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#storemap_map {
  font-size: 12px;
  display: inline-block;
  width: 70%;
  height: inherit;
  vertical-align: top;
}
#storemap_list .list_giantstore {
  padding: 10px;
}
#storemap_list .main_more {
  background-color: transparent;
  color: #999;
}
/** 门店列表 **/
.item_giantstore {
  margin-bottom: 5px;
  padding: 20px 0 10px;
  box-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.item_giantstore_box {
  display: block;
  position: relative;
  padding: 0 20px;
  cursor: pointer;
}
.item_giantstore .item_giantstore_param {
  position: relative;
  padding-left: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item_giantstore .item_giantstore_param * {
  line-height: 24px;
}
.item_giantstore .item_giantstore_param .material-icons {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #fff;
  background-color: #333;
  width: 24px;
  text-align: center;
  border-radius: 100px;
  box-shadow: inset 0 0 0 3px;
}
.item_giantstore .name span {
  font-weight: bold;
}
.item_giantstore .phone_wrap {
  font-size: 0;
}
.item_giantstore .phone_wrap .phone {
  display: inline-block;
  font-size: 12px;
  padding-right: 10px;
}
.item_giantstore .vipmark {
  position: absolute;
  top: 0;
  right: 0;
}
.item_giantstore .btnbox {
  padding: 10px 20px 5px;
}
.item_giantstore .btnbox .btn {
  padding: 5px 15px;
}
.item_giantstore .vipmark {
  position: absolute;
  top: -20px;
  right: 0;
  background: #D93D3E;
  color: #fff;
  padding: 5px 10px;
  border-radius: 0 4px 0 0;
}









@media (max-width: 1000px) {
  #storemap_list {
    width: 50%;
  }
  #storemap_map {
    width: 50%;
  }
}
@media (max-width: 800px) {
  .filterstore_form {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    display: none;
    background-color: #FFFFFF;
  }
  .filterstore_form input.form_input {
  	-webkit-appearance: none;
  	appearance: none;
  }
  .filterstore_form.show {
    display: block;
  }
  .filterstore_form .btn_close_wrap {
    display: block;
  }
  .filterstore_form .form_input {
    width: 100%;
    border: 1px solid #ddd;
  	margin-bottom: 5px;
  	background-color: transparent;
  }
  .filterstore_form .btn_close_wrap .btn {
  	color: #666;
  }
  .filterstore_form .btn_search {
    width: 100%;
  }
  .filterstore_form > span,
  .filterstore_form > form> span  {
    display: none;
  }
  #storemap_main .storemap_wrap {
    font-size: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  #storemap_list {
    width: 100%;
    height: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
  }
  #storemap_map {
    width: 100%;
    height: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
  }
}




/* 门店详情页开始 */
#storeview_main {
  margin-top:100px;
}
#storeview_main .card_storeview {
  padding-bottom: 30px;
  margin-bottom: 50px;
}
#storeview_main .store_banner {
  width: 100%;
  padding-top: 20%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px 4px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background:url(./img/store_blank.jpg);
}
#storeview_main .store_banner.unfold {
  padding-top: 60%;
}

#storeview_main .store_title {
  font-size: 35px;
  color: #000;
  margin: 0;
  padding-bottom: 10px;
  margin-left: -1px;
}
#storeview_main .store_title * {
  vertical-align: middle;
}
#storeview_main .store_title i {
  font-size: 45px;
}
.storeview_info_wrap {
  padding: 30px 50px 30px;
  font-size: 0;
}
.storeview_info_wrap .storeview_info {
  display: inline-block;
  vertical-align: top;
  width: 60%;
  min-height: 250px;
  font-size: 12px;
  padding-right: 30px;
}
.storeview_info_wrap .storeview_map {
  display: inline-block;
  vertical-align: top;
  width: 40%;
  height: 250px;
  font-size: 12px;
}
.storeview_param {
  position: relative;
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.storeview_param dt {
  position: relative;
  padding: 0;
  margin: 0;
  padding-right: 10px;
}
.storeview_param dt * {
  display: inline-block;
  vertical-align: top;
  line-height: 24px;
}
.storeview_param dt i {
  margin-right: 5px;
}
.storeview_param dt span {
  font-weight: bold;
  font-size: 12px;
}
.storeview_param dd {
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  line-height: 24px;
  color: #666;
}
.storeview_info_wrap .btn_servicesupport {
  padding: 0 30px;
  line-height: 40px;
  margin-top: 10px;
}
.storeview_img {
  width: 100%;
  overflow-x: scroll;/*主要*/
  overflow-y: hidden;/*主要*/
  -webkit-overflow-scrolling: touch;
}
.storeview_img .list_storeviewimg {
  white-space: nowrap;
  padding: 0 50px;
}
.storeview_img .item_storeviewimg {
  width: 300px;
  height: auto;
  margin-right: 10px;
  display: inline-block;
}
.storeview_img .item_storeviewimg:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 60%;
}

@media (max-width: 1000px) {
  .storeview_info_wrap .storeview_info {
    width: 50%;
  }
  .storeview_info_wrap .storeview_map {
    width: 50%;
  }
  .storeview_img .item_storeviewimg {
    width: 250px;
  }
}
@media (max-width: 800px) {
  #storeview_main .store_title {
    font-size: 24px;
  }
  #storeview_main .store_title i {
    display: none;
  }
  .storeview_info_wrap .storeview_info {
    width: 100%;
    min-height: initial;
    margin-bottom: 20px;
  }
  .storeview_info_wrap .storeview_map {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #storeview_main .limitwidth {
    padding-left: 0;
    padding-right: 0;
  }
  /* #storeview_main .store_banner {
    padding-top: 60%;
  } */
  #storeview_main .store_title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .storeview_info_wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .storeview_param {
   /* display: block;*/
  }
  .storeview_param dd {
    font-size: 12px;
    /*line-height: 1.5;*/
  }
  .storeview_img .list_storeviewimg {
    padding: 0 20px;
  }


}
/* 门店详情页结束 */

/* 保修售后 */
.main_top_warranty {
  background: #444;
  padding:30px 0;
}
.main_top_warranty .subtitle {}
.main_top_warranty .subtitle .subtitle_box {
  text-align:center;
  font-weight: 300;
  font-size:45px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:#fff;
}
.warranty {
  padding:45px 0;
  font-size: 16px;
  line-height:26px;
}
@media(max-width:640px){
  .main_top_warranty {
    padding:20px 0;
  }
  .main_top_warranty .subtitle .subtitle_box {
    font-size:30px;
  }
  .warranty {
    padding:30px 15px;
    font-size: 16px;
    line-height:26px;
  }
}

/* 搜索开始 */
.main_top_search {}
.main_top_search_box {
  padding:50px 0;
}
.main_top_search_box .title {
  text-align:center;
  font-weight: 600;
  letter-spacing: unset;
  font-size: 28px;
  margin-bottom:20px;
}
.main_top_search_box .main_top_search {
  width:400px;
  margin:0 auto;
  position:relative;
}
.main_top_search_box .form_control {
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.main_top_search_box .btn_search {
  position: absolute;
  top: 0px;
  right: 0;
  line-height: 34px;
  height: 34px;
  padding: 0 10px;
}

.search_main {
  padding:30px 0;
}
.search_main .tab_nav {
  font-size: 0;
  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;

  border-top: 1px solid #ddd;
}
.search_main .tab_nav input {
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  z-index: 1;
  padding: 10px 6px;
  border: none;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  color: #aaa;
  text-transform: uppercase;
  background: #fafafa;
  outline: 0;
  line-height:30px;
}
 .search_main .tab_main_item {
 display:none;
}
.search_main #models {
  background:none;
}
.search_main #models .models_list .models_item {
  width:25%;
}
.search_main #models .models_list .models_item .text_wrap .titile {
  font-size: 14px;
}
.search_main #overachieve {
 background:none;
}
.search_main .tab_nav input.active {
  background: #fff;
  color: #111;
  box-shadow: none;
  font-weight: 700;
  border-bottom: 1px solid #fff;
}
@media (max-width: 640px){
  .main_top_search_box {
    padding:30px 10px;
  }
  .main_top_search_box .main_top_search {
    width:100%;
  }
  .search_main #models .models_list .models_item {
      width: 100%;
  }
  .search_main #models .models_box {
    padding:0;
  }
}

/*=============================================== 集团通用 开始 =======================================================*/
/* @font-face {
  font-family: 'ogticon';
  src: url('../fonts/ogticon/iconfont.eot');
  src: url('../fonts/ogticon/iconfont.eot?#iefix') format('embedded-opentype'),
  url('../fonts/ogticon/iconfont.woff') format('woff'),
  url('../fonts/ogticon/iconfont.ttf') format('truetype'),
  url('../fonts/ogticon/iconfont.svg#ogticon') format('svg');
}
.ogticon {
  font-family: "ogticon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
} */



/** cadex页脚 **/

.footer {
  background-color:#111;
  /* margin-top: 45px; */
}
.footer_box .row {
  padding: 50px 30px;
  font-size:0;
}
.footer_box .row .item {
  width:25%;
  display:inline-block;
  vertical-align:top;
  padding:0 15px;
}
.footer_box .row .item.web_link dd {
  display:inline-block;
  margin:0 10px 0 0;
}
.footer_box .row .item dt {
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color:rgba(255,255,255,.8);
  margin-bottom:10px;
}
.footer_box .row .item dd {
  margin: 0 0 10px;
}
.footer_box .row .item dd a {
  font-size:14px;
  color: rgba(255,255,255,.6);
}
.footer_box .row .item dd a:hover {
  color: rgba(255,255,255,.8);
  text-decoration: underline;
}
.footer_box .row .item dd img {
  height:25px;
  opacity:0.8;
}

.footer_box .credits {
  background: #0a0a0a;
  color: #666;
  font-size: 12px;
  text-align:center;
  padding:10px 0;
}
.footer .item_social {
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  position: relative;
  margin-left: 5px;
}

.footer .item_social .btn {
  display: block;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 14px;
  background-color: #262626;
  border-radius: 100px;
  cursor: pointer;
}
.footer .item_social:hover .btn {
  background-color: #fff;/*#1d1d1d*/
  border-radius: 0 0 100px 100px;
}
.footer .item_social .btn .ogticon {
  line-height: 40px;
  font-size: 20px;
}
.footer .item_social .btn .ogticon_weixin {
  color: #4CAF50;
}
.footer .item_social .btn .ogticon_weibo {
  color: #d63b3b;
}
.footer .item_social .footersocial_item_pop {
  font-size: 12px;
  position: absolute;
  background-color: #fff;
  z-index: 1;
  bottom: 40px;
  left: 0;
  padding: 10px;
  text-align: center;
  box-shadow: 0 -5px 10px rgba(0,0,0,.2);
  display: none;
}
.footer .item_social .footersocial_item_pop .img_qrcode {
  width: 150px;
  height: 150px;
}
.footer .item_social:hover .footersocial_item_pop {
  display: block;
}


@media(max-width:1000px){
  .footer_box {
    padding:0;
  }
  .footer_box .row .item {
    width:50%;
  }
}
@media(max-width:600px){
  .footer {
   /*  margin-top:25px; */
  }
  .footer_box .row .item {
    width:100%;
    margin-bottom: 30px;
  }
}


.dangdangdangdang {
  transition: all .8s;
  transform: translateY(100px);
  opacity: 0.5;
}


/* 选择国家 头部 */
.brandswitch {
  padding:0 50px;
  height:30px;
  line-height:30px;
  text-align:right;
  background-color:#fff;
}
.item_lanchange {
  float:right;
}
.item_lanchange .flag {
  display:block;
  float:left;
  margin-right:5px;
  margin-top: 6px;
  width: 16px;
  height: 16px;
  background-image: url(../img/flags_giant_custom.png);
  background-position: top left;
}
.item_lanchange .flag.flag_china {
  background-position: -1px -54px;
}
@media(max-width:900px){
  .brandswitch {
    padding:0 15px;
  }
}




/* 选择国家 内页 */
.header_country {
  background-color:#000;
  text-align:center;
  padding:20px 0;
}
.header_country .header_logo {
  display:inline-block;
}
.header_country .header_logo img {
  height:35px;
}
#country_main {
  margin-top:0;
  color:#fff;
  background-color:#222;
}
#country_main .country_title {
  text-align:center;
  font-size:20px;
  padding:70px 0 20px;
  letter-spacing: 3px;
  color: #eee;
}
#country_main .container {
  width:1170px;
  margin:0 auto;
}
#country_main .container .row {
  font-size:0;
}
#country_main .container .row .item_row {
  width:33.33%;
  display:inline-block;
  vertical-align:top;
  padding:15px;
  margin: 0 0 15px;
}
#country_main .container .row .item_row a {
  font-size: 17px;
  color: #fff;
  display: block;
  padding: 10px 24px 10px 0;
  border-bottom:1px solid #666;
  margin-right: 40px;
  transition:0.3s;
}
#country_main .container .row .item_row a:hover {
  background-color:#444;
  padding-left:20px;
}
#country_main .container .othercountries {
  padding: 10px 0 30px;
  text-align: center;
  font-size:16px;
}
#country_main .container .othercountries h2 {
  margin: 0;
  letter-spacing: 3px;
  padding: 10px 0;
  color: #aaa;
  font-weight:100;
  font-size: 20px;
}
#country_main .container .othercountries p {
  margin:0 0 50px 0;
  color: #999;
  font-size: 13px;
}
#country_main .container .othercountries p a {
  font-size: 17px;
  color: #ddd;
}
#country_main .container .othercountries p a i {
  font-size: 22px;
  vertical-align: middle;
}


@media(max-width:1170px){
  #country_main .container {
    width:100%;
    padding:0 15px;
  }
}
@media(max-width:740px){
  #country_main .container .row .item_row {
    width:100%;
    margin-bottom:0;
    padding:0;
  }
  #country_main .country_title {
    text-align:left;
    font-size: 18px;
    padding: 50px 15px 20px;
  }
  #country_main .container .othercountries {
    text-align:left;
  }
}

/************************************ 新增css ********************************************/

/* 产品注册右侧信息 */
.store_exh_intro {}
.store_exh_intro .checkbox,.store_exh_intro i {
  display:none;
}

/* 产品注册 */
.main_top_registration {
  padding:30px 0;
}
.main_top_registration .subtitle {}
.main_top_registration .subtitle_box {
  font-size:30px;
  font-weight:bold;
}
.registration {
  margin-bottom: 35px;
}
.registration .reg_content {}
.registration .reg_form {
  width:55%;
  display:inline-block;
}
.registration .reg_form .item {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin:5px 0;
}
.registration .reg_form .item .title_wrap {
  line-height:40px;
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
  overflow:hidden;
  position:relative;
}
.registration .reg_form .item .title_wrap .serial {
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  text-align: center;
  background-color:#333;
  float:left;
  margin:10px 10px 0 10px;
}
.registration .reg_form .item .title_wrap .title {
  font-size: 16px;
  float:left;
}
.registration .reg_form .item .title_wrap .correct_icon {
  position:absolute;
  top:8px;
  right:10px;
  color:green;
  font-weight:bold;
}
.registration .reg_form .item .title_wrap .correct_icon.hide {
  display:none;
}
.registration .reg_form .item .intro {
  display:none;
}
.registration .reg_form .item.active .intro {
  display:block;
}
.registration .reg_form .item .intro {
  padding:15px;
}
.registration .reg_form .item .intro .intro_title {
  margin-bottom:15px;
}
.registration .reg_form .item .intro .form_item {
  position:relative;
}
.registration .reg_form .item .intro .form_input {
  width:100%;
  height:35px;
  border-radius: 3px;
}
.registration .reg_form .item .intro .error {
  color:red;
  margin-top: 10px;
  display: block;
}
.registration .reg_form .item .intro .form_item .btn {
  line-height:34px;
  font-size:12px;
  padding: 0 10px;
}
.registration .reg_form .item .intro .form_item .btn_position {
  position:absolute;
  top:0;
  right:0;
}
.registration .reg_form .item .intro .form_item .btn i {
  font-size:20px;
  margin-top: -2px;
}
.registration .reg_form .item.contact .citychange {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
}
.registration .reg_form .item.contact .citychange .form_input {
  width:auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  margin-right:5px;
}
.registration .reg_form .item.contact .citychange .form_input:last-of-type{
  margin-right:0;
}
.registration .reg_form .item.contact .form_input {
  margin-bottom:10px;
}
.registration .reg_form .item.contact .form_item_row {
  position:relative;
}
.registration .reg_form .item.contact .form_item_row #datetime,#orderdatetime {
  position:relative;
  z-index:2;
  background-color: #00000000;
  cursor:pointer;
}
.registration .reg_form .item .intro .form_item .birthday .intro_title {
  margin-top:20px;
}
.registration .reg_form .item .checkbox {
  margin-bottom:10px;
}

.registrationstore_list {}
.registrationstore_list .item_giantstore {
  padding: 10px 0 10px;
  box-shadow: none;
  border:1px solid #e4e4e4;
  margin-bottom:10px;
}
.registrationstore_list .item_giantstore .checkbox {
  position:absolute;
  top:0px;
  right:20px;
}
.registration .reg_form .item.orderdate .form_input_file {
  margin-bottom:10px;
}


.registration .reg_Result {
  width:44%;
  display:inline-block;
  vertical-align:top;
  padding-left:20px;
}
.reg_Result .item_exh {}
.reg_Result .item_exh.hide {
  display:none;
}
.reg_Result .item_exh .title {
  font-size:14px;
  color:#666;
  border-bottom:1px solid #e3e3e3;
  padding:10px 0 5px 0;
}
.reg_Result .item_exh .intro {
  margin-top:10px;
}
.reg_Result .item_exh .serialnumber_exh_intro {
  position:relative;
  min-height:80px;
  padding-left:120px;
}
.reg_Result .item_exh .serialnumber_exh_intro .img_wrap {
  position:absolute;
  top:0;
  left:0;
}
.reg_Result .item_exh .serialnumber_exh_intro .img {
  width:100px;
  height:80px
}
.reg_Result .item_exh .serialnumber_exh_intro .text_wrap {}
.reg_Result .item_exh .serialnumber_exh_intro .text_wrap .pro_name {
  font-size:14px;
  font-weight:bold;
}
.reg_Result .item_exh .serialnumber_exh_intro .text_wrap .text_item {
  margin:3px 0;
}



/* 头部登录 */
.btn_headerlogin {
  color: #fff;
  line-height: 60px;
  margin-right:10px;
  vertical-align:top;
}
.btn_headerlogin span {
  font-size:12px;
  vertical-align: middle;
  margin-left:5px;
}
.btn_user {
  color: #fff;
  font-size:12px;
  line-height: 35px;
  margin-right:10px;
  vertical-align: middle;
  background-color:#D93D3E;
  padding:0 5px;
}
@media(max-width:900px){
  .btn_headerlogin span {
    display:none;
  }
  .btn_headerlogin,.btn_user {
    line-height:50px;
  }
  .btn_user {
    margin-right:2px;
    line-height: 35px;
  }
  .btn_user i {
    font-size:20px;
  }
  .btn_user span {
    display:none;
  }
}

/* 产品注册列表 */

#reggoods {
  padding-top:50px;
}
#reggoods .inside_title {
  font-size:20px;
  padding:20px 0;
  font-weight:bold;
}
#reggoods .reggoods_box {
  position:relative;
  min-height: 450px;
}
@media(max-width:900px){
  #reggoods .reggoods_box {
    min-height:auto;
  }
}
#reggoods .btn_reg {
  position:absolute;
  top:20px;
  right:20px;
  padding:8px 15px;
  font-size:12px;
}
.reggoods_list {
  margin-top:30px;
  margin-bottom:40px;
}
.reggoods_item {
  margin-bottom:10px;
  border-bottom:1px solid #ededed;
}
.reggoods_item .reggoods_item_box {
  position:relative;
  min-height:100px;
  padding-left:120px;
}
.reggoods_item .img_wrap {
  width:100px;
  height:100px;
  position:absolute;
  top:0;
  left:0;
}
.reggoods_item .img_wrap .img {
  padding-top:100%;
}

.reggoods_item .text_wrap {}
.reggoods_item .text_wrap .title {
  font-size:18px;
  font-weight:bold;
  margin-bottom:5px;
}
.reggoods_item .text_wrap .subtitle {
  color: #999;
  font-size:12px;
  margin-bottom:1px;
}
.reggoods_item .text_wrap .subtitle .time {
  color:#333;
  font-weight:bold;
}
@media(max-width:900px){
  .reggoods_list {
    margin-top:0;
    margin-bottom: 10px;
  }
}
@media(max-width:800px){
  .registration .reg_form,.registration .reg_Result {
    width:100%;
    padding:0;
  }
  .registration .reg_form .item.contact .citychange {
    display: grid;
  }
  .registration .reg_form .item.contact .citychange .form_input {
    margin-right:0;
  }
}

#popup {
  width:100%;
  height:100%;
}
#popup.hide {
  display:none;
}
#popup .mask {
  position:fixed;
  width:100%;
  height:100%;
  z-index:10;
}
#popup .popup_box {
  width:100%;
  max-width:640px;
  height:auto;
  position:fixed;
  top:5%;
  left:50%;
  right:0;
  bottom:10%;
  transform: translateX(-50%);
  z-index: 10;
  padding:20px;
  background-color:#fff;
  border-radius:10px;
  overflow: hidden;
}
#popup .popup_box .intro {
  overflow: auto;
  position: fixed;
  top: 50px;
  left: 0;
  height: auto;
  bottom: 50px;
  padding: 0 10px;
}

#popup .popup_box .warranty {
  padding:10px 0;
}
#popup .popup_box .title {
  font-size:20px;
}

#btn,#second {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  cursor:pointer;
  color:#fff;
  width:100%;
  height:45px;
  margin:0 auto;
  background-color:#0062ba;
  text-align:center;
  line-height:45px;
  border-radius: 0 0 10px 10px;
}
#btn{
  font-size:20px;
  margin-top:7px;
}
#btn{
  display:none;
}
#second {
  font-size:18px;
}

@media(max-width:800px){
  #popup .popup_box {
    width:282px;
    /* margin:0 auto; */
    padding: 20px 10px;
  }
  #popup .popup_box .warranty {
    font-size:14px;
    line-height:22px;
  }
  #popup .popup_box .warranty ol {
    padding-left: 20px;
  }
}

.contact_appellation{
  margin-left: 5px;
}

@media (max-width: 480px) {

  .btn_headersearch {
    display:none;
  }
  .btn_user {
    margin-top:7px;
    margin-left: -10px;
  }
  .btn_user i {
    display:none;
  }
  #header_cadex .header_cadex_leftarea {
    width:53%;
  }
}

/************************************ 新增css ********************************************/


/************ 胎压和适配的轮胎说明 ****************/
#explain {
   padding: 45px 45px 0 45px;
   padding-bottom: 20px;
}
#explain .explain_box {
  padding: 0 30px;
}
#explain .explain_box h2 {
  text-align:center;
  font-size: 30px;
  font-weight: 500;
  padding-bottom:20px;
  border-bottom: 1px solid #eee;
}
#explain .row {
  font-size:0;
  display:flex
}
.row .item {
  display:inline-block;
  flex:1;
  padding:0 30px;
}
.row .title {
  font-size: 24px;
  margin: 0 0 20px;
}
.row .intro {
  font-size: 15px;
  line-height: 2.6rem;
}
#explain .row.tire_list {
  padding:0 30px;
  font-size:12px;
  display:block;
  margin-bottom:20px;
}
#explain .row.tire_list table.data {
  width: 100%!important;
  margin: 25px 0 35px;
}
#explain .row.tire_list table.data tr th {
  background: #000;
  color: #000;
  border-bottom: 1px solid #fff;
  padding: 10px 0 10px 10px;
}
#explain .row.tire_list table.data tr:nth-child(even){
  background-color:#f5f5f5;
}
#explain .row.tire_list table.data tr td {
  padding: 8px 0 8px 10px;
  vertical-align: top;
  border-bottom: 1px solid #fff;
}
#explain .row.tire_list table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media(max-width:900px){
  #explain {
    padding:20px;
  }
  #explain .explain_box {
    padding: 0 10px;
  }
  #explain .row .item {
    padding:0 10px;
  }
  #explain .row.tire_list {
    padding:0 10px;
  }
}
@media(max-width:640px){
  #explain .row {
    display:block;
  }
  #explain .row .item {
    display:block;
    width:100%;
    flex:none;
    margin-bottom:15px;
  }
  #explain .explain_box {
    padding: 0;
  }
  #explain {
    padding: 10px;
  }
  #explain .row.tire_list table.data tr td {
    padding: 8px 0 8px 2px;
  }
  #explain .row.tire_list {
    padding: 0;
    margin-bottom:15px;
  }
  #explain .row {
    padding: 0;
    margin-bottom:15px;
  }
  #explain .row.tire_list table.data {
    margin-bottom:15px;
  }
}

/* 播放视频 */
.video-container {
  position: relative;
  width: 100%;
  margin: 100px auto 0;
}

.video-container video {
  width: 100%;
  display: block;
}

.video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 90px;
  background: rgba(0, 0, 0);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-container .play-button:hover {
  background: rgba(38, 38, 38);
}

.video-container .play-button svg {
  width: 80px;
  height: 40px;
  fill: white;
}
.mbsc-ic:before{
  font-family: icons_mobiscroll !important;
}
.registration .reg_form .item input{
  margin: -2px 4px 0;
  vertical-align: middle;
}
ol{
  padding-inline-start: 40px;
  margin-block-start: 1em;
  margin-block-end: 1em;
}