/********
捷安特官网样式 2018-11-19 09:41
上次版本 2018-11-08 09:41
********/

/******** 重置样式 ********/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  font-size: 12px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-appearance: none;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  /*height: 100%;*/
}
img {
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #666;
  cursor: pointer;
}
hr {
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  margin: 10px 0;
}

/**
https://github.com/google/material-design-icons
感谢Google
**/

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/materialicons/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: url(../fonts/materialicons/MaterialIcons-Regular.eot?#iefix) format('embedded-opentype'),
       url(../fonts/materialicons/MaterialIcons-Regular.woff2) format('woff2'),
       url(../fonts/materialicons/MaterialIcons-Regular.woff) format('woff'),
       url(../fonts/materialicons/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  /*cursor: default;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
/******** 通用 ********/
body {
  font-family: 'Open Sans', Arial,Helvetica, Microsoft Yahei, sans-serif;
  color: #333;
  background-color: #fff;/*#e9e9e9;*/
  height: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
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;
  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: #008DFF;
  color: #fff;
}
.btn_color_1.btn_text {
  background-color: transparent;
  color: #008DFF;
}
.btn_color_1.btn_outline {
  box-shadow: inset 0 0 0 1px #008DFF;
}
.btn_color_1:hover {
  background-color: #0072CC;
  color: #fff;
}
/* 按钮初始色，红 */
.btn_color_2 {
  background-color: #ef3a3a;/*f4330d*/
  color: #fff;
}
.btn_color_2.btn_text {
  background-color: transparent;
  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: transparent;
  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: transparent;
}
.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: transparent;
  color: #ff7e00;
}
.btn_color_5.btn_outline {
  box-shadow: inset 0 0 0 1px #ff7e00;
}
.btn_color_5:hover {
  background-color: #F77200;
  color: #fff;
}

.btn_shadow {
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.btn.disabled,
.btn.disabled:hover {
  background-color: #e5e5e5;
  color: #aaa;
  box-shadow: none;
  cursor: default;
}

.btn_round {
  border-radius: 100px;
}
.btn .material-icons {
  position: relative;
  vertical-align: middle;
}
.btn.btn_hasicon .material-icons {
  vertical-align: top;
  line-height: inherit;
}
.btn.btn_hasicon span {
  padding: 0 5px;
  line-height: inherit;
}


/******** 小徽章 标签 ********/
.badge {
  display: inline-block;
  font-style: normal;
  background-color: #008DFF;/* 蓝 */
  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) */
  -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 {
  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;
}

/******** 通用头像 ********/
.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;
  background-image: url(../img/img_blank.png);
}

/******** 通用弹出 ********/
/** 通用弹出
UPDATE: 2017/06/06
 **/
#poptips {
  display: none;
  z-index: 10001;
}
.poptips_show {
  overflow: hidden;
  /*position: fixed;*/
  position: absolute;
  width: 100%;
  height: 100%;
}
.poptips_show #poptips {
  display: block;
  /*cursor: pointer;*/
}
@keyframes poptips_ani {
  0% {
    transform: translate(-50%, -150%)/* perspective( 100px ) rotateX(-10deg)*/;
  }
  85% {
    transform: translate(-50%, 5%)/* perspective( 100px ) rotateX(.5deg)*/;
  }
  100% {
    transform: translate(-50%, 0)/* perspective( 100px ) rotateX(0deg)*/;
  }
}
#poptips:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 899;
}
#poptips .poptips_box {
  display: inline-block;
  position: fixed;
  top: 30%;
  left: 50%;
  min-width: 300px;
  max-width: 600px;
  margin: 0 auto;
/*  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);*/
  background-color: #fff;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(0,0,0,.6);
  z-index: 900;
  -webkit-animation: poptips_ani .7s 1 both;
  animation: poptips_ani .7s 1 both;
}
#poptips .title {
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
}
#poptips .con {
  color: #757575;
  font-size: 14px;
  overflow: auto;
  -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;
}
#poptips .btn_group .btn {
  display: inline-block;
  font-size: 12px;
  line-height: 40px;
  background-color: #008DFF;
  color: #fff;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  cursor: pointer;
  font-weight: bold;
}
#poptips .btn_group .cancel {
  background-color: #e5e5e5;
  color: #424242;
  margin-right: 10px;
}

.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-transform: rotate(30deg);
  transform: rotate(30deg);
}
#loader.hide:before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: unset;
  animation: unset;
  opacity: .2;
  -webkit-transform: rotate(390deg);
  transform: rotate(390deg);
}

@-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;
}
/*.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;
}



.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;
}
.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-right: 10px;
  vertical-align: middle;
}
.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: #008DFF;
  -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: #008DFF;
  -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="radio"] + span,
.form_check input[type="checkbox"] + span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_check input[type="radio"]:checked + span,
.form_check input[type="checkbox"]:checked + span {
  color: #008DFF;
}
.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=radio]:checked ~ span,
.form_check [type=radio]:checked ~ .material-icons,
.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;
}

.table_wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/** 通用地址选择 **/
.select_zone .dropdown {
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}
.select_zone .dropdown_menu {
  position: absolute;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  z-index: 1;
  padding: 10px;
  width: 100%;
  top: auto;
}
.select_zone .dropdown_menu .form_select {
  margin-bottom: 10px;
  width: 100%;
}
.select_zone .dropdown_menu .form_select:last-of-type {
  margin-bottom: 0;
}
.select_zone .input_address {
  margin-top: 10px;
}

.form_item_plane .form_item_con.select_zone {
  font-size: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown:after {
  content: "";
}
.form_item_plane .form_item_con.select_zone .dropdown_menu {
  margin-left: -80px;
  border: 0;
  background-color: transparent;
  position: relative;
  width: auto;
  padding: 0;
  margin-top: -10px;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select {
  border-bottom: 1px solid #e8e8e8;
/*  line-height: 40px;
  height: 40px;*/
  margin-bottom: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:first-of-type {
  margin-top: 10px;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:last-of-type {
  border-bottom: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:after {
  right: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select select {
  direction: ltr;
}

/** 范围 滑杆 数字拉杆 **/
.form_range {
  position: relative;
  width: 100%;
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
}
.form_range .form_range_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;/*#e8e8e8*/
  border-radius: 100px;
}
.form_range .form_range_bar {
  position: absolute;
  top: 0;
  left: 0;
  /*right: 0;*/
  bottom: 0;
  background-color: #0ca7ff;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
}
.form_range.warning .form_range_bar {
  background-color: #ffa82b;
}
.form_range.danger .form_range_bar {
  background-color: #ff442b;
}
.form_range input[type=range] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: col-resize;
}

/** 目录树 **/
.ul_tree {
  padding-left: 0;
  list-style-type: none;
  margin-top: 4px;
}
.ul_tree label {
  margin: 0;
  width: 100%;
}
.ul_tree ul {
  /*border: 1px solid #DEDEDE;*/
  padding: 5px;
  padding-left: 20px;
  margin: 5px 0;
  list-style-type: none;
  position: relative;
}
.ul_tree ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 11px;
  width: 0;
  bottom: 17px;
  border-left: 1px dotted #bbb;
}
/*
.ul_tree ul:after {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 11px;
  height: 0;
  border-top: 1px dotted #bbb;
}
*/
.ul_tree li {
  position: relative;
}
.ul_tree li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -8px;
  width: 5px;
  height: 0;
  border-top: 1px dotted #bbb;
}
.ul_tree > li:before {
  display: none;
}
.ul_pool {
  background-color: #f4f4f4;
  background-color: rgba(0,0,0,.03);
}
.ul_pool li {
  display: inline-block;
  padding-right: 20px;
}
.ul_pool li:before {
  display: none;
}

.ul_tree .placeholder_fold i,
.ul_tree .btn_fold i {
  vertical-align: middle;
  color: #ccc;
  font-size: 16px;
  width: 24px;
  text-align: center;
}
.ul_tree .flod .btn_fold i.off,
.ul_tree .btn_fold i.on {
  display: none;
}
.ul_tree .flod .btn_fold i.on {
  display: inline-block;
  color: #999;
}
.ul_tree .placeholder_fold {
  /*cursor: default;*/
}
.ul_tree .placeholder_fold i {
  opacity: 0;
}
.ul_tree .flod ul {
  display: none;
}

.ul_tree.has_foldbtn .ul_pool {
  padding-left: 40px;
}
.ul_tree .form_check {
  line-height: 30px;
  height: 30px;
}







/******** 滑出面板 ********/
.subplate_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.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;
  -webkit-overflow-scrolling: touch;
}
.subplate_box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.subplate_wrap.hide {
  visibility: hidden;
}
.subplate_wrap.hide .subplate {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.subplate_wrap.hide .mask {
  opacity: 0;
}
/*
.subplate_wrap .btn_cancel {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 100px;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}
*/
.subplate_wrap .subplate_title {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  color: #858585;
  margin-bottom: 10px;
}

.subplate_wrap .bottombar {
  z-index: 7;
  box-shadow: none;
}


/******** 通用下拉菜单 ********/
.dropdown {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
.dropdown_menu {
  position: relative;
  z-index: 1;
  top: 0;
  display: none;
}
.dropdown_menu dl {
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 7px rgba(0,0,0,.1);
  border: 1px solid #c8c8c8;
}
.dropdown_menu dd {
  padding: 10px 15px;
  margin: 0;
  cursor: pointer;
}
.dropdown_menu dd:hover {
  background-color: #f4f4f4;
}
.dropdown_menu dd.active {
  font-weight: bold;
  background-color: #8FCEFF;
}
.dropdown:after {
  content: "\e5c5";
  font-family: 'Material Icons';
  font-size: 24px;
  line-height: 1;
  height: 100%;
  vertical-align: middle;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -12px;
}

/** 通用页签导航 **/
.tab_nav {
  font-size: 0;
  /*background-color: #e5e5e5;
  box-shadow: inset 0 -1px 3px rgba(0,0,0,.2);*/
  white-space: nowrap;
  overflow: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  -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: #008DFF;
}
.tab_nav a.active {
  color: #008DFF;
  background-color: #fff;
  border-bottom: 3px solid #008DFF;
  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: #008DFF;
  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;
  -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;
  -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;
  -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: 40px;
  height: 40px;
  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: #008DFF;
}
.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: #008DFF;
}
.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;
}





/** 右下角浮动按钮 **/
.float_tools {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 10;
  font-size: 0;
  width: 40px;
}
.float_tools .btn {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  opacity: .9;
  background-color: #333;
  color: #fff;
  margin-top: 5px;
}
.float_tools .btn:hover {
  opacity: 1;
}


.float_tools .btn_scroll_to_top {
  display: none;
}
.float_tools .btn_scroll_to_top.active {
  display: block;
  -webkit-animation: scroll_to_top_ani .3s ease-out;
  animation: scroll_to_top_ani .3s ease-out ;
}

@-webkit-keyframes scroll_to_top_ani {
  0% {
    -webkit-transform: scale(0);
  }
  80% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: .8;
  }
}

@keyframes scroll_to_top_ani {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.float_tools .btn_backhome {
  background-color: #0081e7;
}

.float_tools .btn_favorite {
  background-color: #ef3a3a;
}
.float_tools .btn_favorite.active .no,
.float_tools .btn_favorite .ok {
  display: none;
}
.float_tools .btn_favorite.active .ok {
  display: inline-block;
}
.float_tools .btn_favorite.active {
  -webkit-animation: scroll_to_top_ani .3s ease-out;
  animation: scroll_to_top_ani .3s ease-out ;
}

body.fixed .float_tools {
  display: none;
}




/*=============================================== 集团通用 开始 =======================================================*/
@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;
}


#header_wrap {
  background-color: #232323;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

/**** 集团头部 ****/
#header_headquarters {
  height: 40px;
  background-color: #232323;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_headquarters_box {
  padding: 0 10px;
  max-width: 1400px;
  position: relative;
  margin: 0 auto;
}
#header_headquarters .brandsite {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}
#header_headquarters .brandsite a {
  display: inline-block;
  padding-top: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: .5;
  cursor: pointer;
}
#header_headquarters .brandsite a:hover {
  opacity: 1;
}
#header_headquarters .brandsite a img {
  height: 30px;
}
#header_headquarters .btn_globalchange {
  /*display: inline-block;*/
  display: none;
  color: #fff;
  cursor: pointer;
}
#header_headquarters .btn_globalchange * {
  vertical-align: middle;
}

.header_headquarters_rightarea {
  position: absolute;
  top: 0;
  right: 10px;
}
.header_headquarters_rightarea a {
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
  height: 40px;
  color: #fff;
}
.header_headquarters_rightarea * {
  vertical-align: middle;
}
.header_headquarters_rightarea .avatar {
  width: 30px;
  height: 30px;
  border: 2px solid #999;
}
.header_headquarters_rightarea span {
  padding-left: 5px;
  display: none;
}

@media (min-width: 800px) {
  #header_headquarters .brandsite:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    width: 1px;
    background-color: #666;
  }
  #header_headquarters .brandsite a {
    padding-top: 0;
  }
  #header_headquarters .brandsite a img {
    height: 40px;
  }
  #header_headquarters .btn_globalchange {
    display: inline-block;
  }
  .header_headquarters_rightarea span {
    display: inline-block;
  }
}
@media (max-width: 500px) {
  #header_headquarters {
    display: none;
  }
}



/** 全球站导航 **/
#subplate_globalsite {
  z-index: 100;
}
#subplate_globalsite .mask {
  cursor: pointer;
}
#subplate_globalsite h2 {
  margin: 0 0 20px;
  font-weight: bold;
}
#subplate_globalsite .btn_cancel {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
}
#subplate_globalsite .globalsite_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  padding: 20px 0 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#subplate_globalsite.hide .globalsite_wrap {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
#subplate_globalsite .globalsite_wrap .limitwidth {
  position: relative;
}
#subplate_globalsite .globalsite_wrap .list_globalsite {
  font-size: 0;
}
#subplate_globalsite .globalsite_wrap .item_globalsite {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  font-size: 14px;
  padding: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#subplate_globalsite .globalsite_wrap .item_globalsite:hover {
  padding-left: 10px;
  background-color: #333;
  color: #fff;
}
#subplate_globalsite .btn_gotoglobalsite {
  padding: 10px 20px;
  margin-top: 5px;
}

/*=============================================== 集团通用 结束 =======================================================*/
/** 个人中心卡片 开始 **/
#subplate_usercenter {
  z-index: 100;
}
#subplate_usercenter .mask {
  cursor: pointer;
}
#subplate_usercenter .subplateusercenter_wrap {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 400px;
  right: 0;
  bottom: 0;
  background-color: #333;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 30px #000;
}
#subplate_usercenter.hide .subplateusercenter_wrap {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
#subplate_usercenter .btn_cancel {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  z-index: 1;
}
#subplate_usercenter .btn_cancel * {
  line-height: inherit;
  vertical-align: top;
}
#subplate_usercenter .subplateusercenter_top {
  background-color: #444;
  padding: 20px 0;
}

#subplate_usercenter .subplateusercenter_usercard {
  display: block;
  position: relative;
  padding: 0 20px;
}
#subplate_usercenter .avatar_wrap {
  position: absolute;
  top: 0;
  left: 20px;
}
#subplate_usercenter .avatar {
  width: 60px;
  height: 60px;
  border: 2px solid #ccc;
}
#subplate_usercenter .name_wrap {
  color: #fff;
  font-size: 14px;
  padding-left: 70px;
  min-height: 60px;
}
#subplate_usercenter .name {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 50px;
}
.subplateusercenter_topmenu {
  background-color: #333;
  margin-top: 20px;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 0;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.subplateusercenter_topmenu .btn {
  text-align: center;
  display: inline-block;
  color: #fff;
  background-color: #444;
  padding: 10px;
  width: 70px;
  font-size: 12px;
  margin-right: 5px;
}
.subplateusercenter_topmenu .btn .material-icons {
  margin-bottom: 5px;
}
.subplateusercenter_topmenu .btn > div {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.subplateusercenter_menu .item {
  text-align: center;
  display: block;
  height: 45px;
  line-height: 45px;
  margin: 0 auto;
  color: #fff;
  border-bottom: 1px solid #2b2b2b;
}

#subplate_usercenter .btn_logout {
  margin: 10px 30px 30px;
  width: auto;
}



/** 个人中心卡片 结束 **/
/*=============================================== 捷安特官网 开始 =======================================================*/
/*
@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;
}
*/
.main_top {
  margin-top: 0;
  padding-top: 120px;
}
.main {
  max-width: initial;
}
@media (max-width: 800px) {
  .main_top {
    padding-top: 90px;
  }
  .font_ridelife {

  }
}
@media (max-width: 500px) {
  .main_top {
    padding-top: 50px;
  }
}

/**** 车辆列表 通用 ****/

.list_bike {
  font-size: 0;
}
.item_bike {
  display: inline-block;
  width: 50%;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  vertical-align: top;
  cursor: pointer;
  overflow: hidden;
}
.item_bike_box {
  display: block;
}
.item_bike .cover_wrap {
  position: relative;
}
.item_bike .cover {
  display: block;
  width: 100%;
  padding-top: 66.666666666%;
  background-image: url(../img/bike_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;/*cover*/
  -webkit-transition: all 0.3s, transform .5s;
  transition: all 0.3s, transform .5s;
}

.item_bike:hover .cover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.item_bike .modelcolor {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
}
.item_bike .modelcolor .item_modelcolor {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #fff;
  border: 3px solid #ccc;
  margin-right: 5px;
}


.item_bike .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  white-space: initial;
  color: #333;
}
.item_bike .title .badge {
  font-weight: normal;
  line-height: initial;
  height: initial;
  padding: 3px 10px;
  margin-right: 5px;
  vertical-align: top;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.item_bike .title span {
  vertical-align: middle;
}
.item_bike .subtitle {
  color: #999;
}



/**** 装备列表 通用 ****/

.list_gear {
  font-size: 0;
}
.item_gear {
  display: inline-block;
  width: 25%;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  vertical-align: top;
  cursor: pointer;
  overflow: hidden;
}
.item_gear_box {
  display: block;
}
.item_gear .cover_wrap {
  position: relative;
}
.item_gear .cover {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-image: url(../img/gear_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;/*cover*/
  -webkit-transition: all 0.3s, transform .5s;
  transition: all 0.3s, transform .5s;
}

.item_gear:hover .cover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.item_gear .modelcolor {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
}
.item_gear .modelcolor .item_modelcolor {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #fff;
  border: 3px solid #ccc;
  margin-right: 5px;
}


.item_gear .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  white-space: initial;
  color: #333;
}
.item_gear .title .badge {
  font-weight: normal;
  line-height: initial;
  height: initial;
  padding: 3px 10px;
  margin-right: 5px;
  vertical-align: top;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.item_gear .title span {
  vertical-align: middle;
}
.item_gear .subtitle {
  color: #999;
}



/**** 页面头部 ****/
#header_giant {
  height: 80px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header_giant .header_giant_box {
  padding: 0 10px;
  max-width: 1400px;
  position: relative;
  margin: 0 auto;
}
#header_giant .header_giant_leftarea {
  white-space: nowrap;
}
#header_giant .header_logo {
  display: inline-block;
  /*line-height: 80px;*/
  padding: 15px 0;
  vertical-align: top;
  cursor: pointer;
}
#header_giant .header_logo img {
  height: 50px;
}
#header_giant .header_nav {
  /*display: inline-block;*/
  display: inline-block;
  font-size: 0;
  vertical-align: top;
}
#header_giant .header_nav_item {
  display: inline-block;
  font-size: 14px;
  color: #666;
  line-height: 80px;
  height: 80px;
  vertical-align: top;
  padding: 0 20px;
  cursor: pointer;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  /*text-shadow: 0 2px 10px rgba(0,0,0,.5);*/
  border-top: 4px solid #fff;
  border-bottom: 4px solid transparent;
}
#header_giant .header_nav_item:hover,
#header_giant .header_nav_item.active {
  font-weight: bold;
  color: #140d8e;
  border-bottom-color: #140d8e;
  border-top-color: #fff;
  /*background-image: -webkit-linear-gradient(top, transparent, rgba(0, 110, 188, .15));
  background-image: linear-gradient(to bottom, transparent, rgba(0, 110, 188, .15));*/
}

#header_giant .header_nav_item .material-icons {
  vertical-align: top;
  line-height: 80px;
  font-size: 20px;
  padding-right: 5px;
}

#header_giant .header_giant_rightarea {
  position: absolute;
  top: 0;
  right: 10px;
}
#header_giant .header_giant_rightarea .btn_headersearch {
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
  height: 40px;
  width: 40px;
  background-color: #0e1587;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  margin-top: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header_giant .header_giant_rightarea .btn_headersearch:hover {
  background-color: #fff;
  color: #0e1587;
}
#header_giant .header_giant_rightarea .btn_headersearch .material-icons {
  line-height: 40px;
  height: 40px;
  font-size: 24px;
  vertical-align: initial;
}

#header_giant .header_giant_rightarea .avatar {
  width: 30px;
  height: 30px;
  border: 2px solid #999;
  margin-top: 10px;
  display: none;
}


#header_giant .header_btnheadermenu {
  position: absolute;
  top: 0;
  left: 10px;
}
#header_giant .btn_caidan {
  display: none;
  vertical-align: top;
  line-height: 50px;
  height: 50px;
  width: 40px;
  /*color: #fff;*/
  text-align: center;
  cursor: pointer;
}
#header_giant .btn_caidan .material-icons {
  line-height: 50px;
}

@media (max-width: 1024px) {
  #header_giant .header_nav_item .hide_1024 {
    display: none;
  }
}

@media (max-width: 800px) {
  #header_giant {
    height: 50px;
  }
  #header_giant .header_giant_leftarea {
    text-align: center;
  }
  #header_giant .header_logo {
    padding: 10px 0;
  }
  #header_giant .header_logo img {
    height: 30px;
  }
  #header_giant .header_nav {
    display: none;
  }
  #header_giant .header_giant_rightarea .btn_headersearch {
    line-height: 30px;
    height: 30px;
    width: 30px;
    margin-top: 10px;
  }
  #header_giant .header_giant_rightarea .btn_headersearch .material-icons {
    line-height: 30px;
    height: 30px;
    font-size: 18px;
  }
  #header_giant .btn_caidan {
    display: inline-block;
  }
}
@media (max-width: 500px) {
  #header_giant .header_giant_rightarea .btn_headersearch {
    display: none;
  }
  #header_giant .header_giant_rightarea .avatar {
    display: inline-block;
  }
}


/** 移动端主菜单 **/
#subplate_headermenu {
  z-index: 100;
}
#subplate_headermenu .mask {
  cursor: pointer;
}
#subplate_headermenu .mobilemenu_wrap {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  background-color: #19233c;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  padding-top: 50px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#subplate_headermenu.hide .mobilemenu_wrap {
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

#subplate_headermenu .btn_cancel {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
}
#subplate_headermenu .btn_cancel * {
  line-height: inherit;
  vertical-align: top;
}

#subplate_headermenu .btn_headersearch {
  border: 1px solid;
  width: 100%;
  line-height: 35px;
  color: #5271bf;
  background-color: #111829;
}

#subplate_headermenu .item_mobilemenunav {
  display: block;
  border-bottom: 1px solid #29375a;
  line-height: 40px;
  height: 40px;
  color: #fff;
}
#subplate_headermenu .item_mobilemenunav * {
  line-height: inherit;
  vertical-align: top;
  color: #fff;
}
.item_mobilemenunav_shop .btn {
  padding: 0 10px;
}
.item_mobilemenunav_shop .btn .ogticon {
  font-size: 24px;
}

#subplate_headermenu .brandsite_wrap {
  padding-top: 10px;
}
#subplate_headermenu .brandsite {
  position: relative;
}
#subplate_headermenu .brandsite a {
  display: inline-block;
  padding-top: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: .5;
  cursor: pointer;
}
#subplate_headermenu .brandsite a:hover {
  opacity: 1;
}
#subplate_headermenu .brandsite a img {
  height: 30px;
}


/** 弹出全局搜索 **/
#subplate_globalsearch {
  z-index: 100;
}
#subplate_globalsearch .mask {
  cursor: pointer;
}
#subplate_globalsearch .globalsearch_card {
  position: absolute;
  top: 40%;
  width: 100%;
}
#subplate_globalsearch .globalsearch_card .card {
  padding: 30px;
  background-color: #f4f4f4;
}
#subplate_globalsearch .globalsearch_card .search_box .input_search {
  border: 2px solid #aaa;
}



/** 捷安特页脚 **/
.footer {
  width: 100%;
  padding-top: 20px;
}

.footer_box {
  background-color: #19233c;
  color: #999;
}
.footer_gotolink_wrap {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px 20px;
}

.index_gotolink .item_gotolinkwrap {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  min-width: 100px;
}
.gotolink_title {
  color: rgba(255, 255, 255, .6);
  font-size: 24px;
}
.index_gotolink .list_gotolink {
  padding: 5px 0;
}
.index_gotolink .item_gotolink {
  display: block;
  color: #fff;
  padding: 5px 0;
}

.index_gotolink {
  padding-bottom: 20px;
  float: left;
  margin-right: 50px;
}


.footer_gotolink_wrap hr {
  border-color: #29375a;
  margin: 0;
}

.footerlink_list {

}
.footerlink_sublist {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  position: relative;
  margin-right: 10px;
}
.footerlink_sublist:before {
  content: "";
  display: block;
  width: 2px;
  height: 60px;
  background-color: #29375a;
  position: absolute;
  top: 0;
  left: 0;
}
.footerlink_title {
  padding-top: 20px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, .6);
  font-weight: bold;
}
.footerlink_item_plus_wrap {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
}
.footerlink_item_plus {
  display: inline-block;
  font-size: 12px;
  position: relative;
}
.footerlink_item_plus .btn_footerlink_item_plus {
  display: block;
  line-height: 26px;
  height: 26px;
  vertical-align: top;
  width: 25px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  /*color: rgba(255, 255, 255, .6);*/
}
.footerlink_item_plus:hover .btn_footerlink_item_plus {
  background-color: #fff;
}
.btn_footerlink_item_plus .ogticon {
  line-height: 26px;
}
.btn_footerlink_item_plus .ogticon.ogticon_weixin {
  color: #4CAF50;
}
.btn_footerlink_item_plus .ogticon.ogticon_weibo {
  color: #d63b3b;
}

.footerlink_item_plus_pop {
  position: absolute;
  background-color: #fff;
  z-index: 1;
  bottom: 26px;
  right: 0;
  padding: 10px;
  text-align: center;
  box-shadow: 0 -5px 10px rgba(0,0,0,.2);
  display: none;
}
.footerlink_item_plus_pop .img_qrcode {
  width: 150px;
  height: 150px;
}
.footerlink_item_plus:hover .footerlink_item_plus_pop {
  display: block;
}
.footerlink_item_plus_pop div {
  padding: 5px 0;
}

.footerlink_item {
  position: relative;
}
.footerlink_item > a {
  display: block;
  width: 180px;
  line-height: 26px;
  height: 26px;
  color: #fff;
  /*background-color: #202b48;*/
  margin-bottom: 2px;
  padding: 0 10px;
}
.footerlink_item > a:hover {
  color: #fff;
  background-color: #29375a;
}




.footer .info {
  padding-bottom: 20px;
  float: right;
  text-align: right;
}

.footer_copyright {
  background-color: #006ebc;
  background-image: -webkit-linear-gradient(left, #2127FF 5%, #0ff 95%);
  background-image: linear-gradient(to right, #2127FF 5%, #0ff 95%);
  color: #fff;
  padding: 20px;
}
.footer_copyright_box {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.footer_copyright_box a {
  color: #fff;
  padding: 0 10px;
}

.footer .info_phone {
  display: block;
  padding-bottom: 10px;
}
.footer .info_phone .info_phone_num {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}
.footer .info_phone:nth-of-type(1) .info_phone_num {
  font-size: 30px;
}
.footer .info_phone .info_phone_text {
  color: #006ebc;
}

.footer .list_social {
  font-size: 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: #29375a;
  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;
  right: 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;
}

.footer .info .btn_online {
  display: inline-block;
  width: 120px;
  text-align: center;
  line-height: 35px;
  border-radius: 4px;
  margin-top: 10px;
}
.footer .info .btn_online * {
  vertical-align: top;
  line-height: inherit;
}
.footer .info .btn_online .material-icons {
  margin-right: 5px;
}


@media (max-width: 900px) {
  .gotolink_title {
    font-size: 16px;
  }
  .index_gotolink {
    float: none;
    margin-right: 0;
  }
  .footer .info {
    float: none;
    text-align: left;
  }
  .footer .item_social {
    margin-left: 0;
    margin-right: 5px;
  }
  .footer .item_social .footersocial_item_pop {
    left: -20px;
    right: auto;
  }
  .footer hr,
  .footer .footerlink_wrap {
    display: none;
  }
}



/** 首页 Banner **/
#index_first_banner {

}
#index_first_banner .swiper-slide {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 40%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#index_first_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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}
#index_first_banner .swiper-slide .title_wrap {
  position: absolute;
  left: 100px;
  right: 100px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,.2), 0 0 5px rgba(0,0,0,.5);
}
#index_first_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 {
  color: #fff;
  line-height: 30px;
  height: 30px;
  vertical-align: middle;
  padding: 0 10px;
  display: none;
}
#index_first_banner .swiper-slide .title_wrap .title {
  font-weight: bold;
  font-size: 80px;
  line-height: 80px;
  margin-bottom: 10px;
}
#index_first_banner .swiper-slide .title_wrap .subtitle {
  font-weight: bold;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 10px;
}
#index_first_banner .swiper-slide .title_wrap .text {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
}
#index_first_banner .swiper-slide .title_wrap .btn_readmore {
  margin-top: 10px;
  width: 200px;
  line-height: 40px;
  height: 40px;
  background-color: rgba(0,0,0,.5);
  border: 1px solid #fff;
  color: #fff;
}

#index_first_banner .banner_prev,
#index_first_banner .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 {
    display: none;
  }
}
#index_first_banner .banner_next {
  left: auto;
  right: 0;
}
#index_first_banner .banner_prev i,
#index_first_banner .banner_next i {
  line-height: 50px;
  height: 50px;
  font-size: 50px;
}
#index_first_banner .banner_prev:hover,
#index_first_banner .banner_next:hover {
  background-color: rgba( 0,0,0,.5 );
}
#index_first_banner .banner_pagination {
  position: absolute;
  text-align: center;
  bottom: 10px;
  left: 0;
  z-index: 1;
  height: 23px;
}
#index_first_banner .swiper-pagination-bullet-active {
  background: #fff;
  box-shadow: 0 1px 2.5px rgba(0,0,0,.6);
}

#index_first_banner .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 {
    width: 30px;
    height: 30px;
  }
  #index_first_banner .swiper-slide .title_wrap .title {
    font-size: 60px;
    line-height: 60px;
  }
  #index_first_banner .swiper-slide .title_wrap .subtitle {
    font-size: 35px;
    line-height: 35px;
  }
}

@media (max-width: 900px) {
  #index_first_banner .swiper-slide .title_wrap .headlinepoint:before {
    width: 30px;
    height: 30px;
  }
  #index_first_banner .swiper-slide .title_wrap .title {
    font-size: 30px;
    line-height: 30px;
  }
  #index_first_banner .swiper-slide .title_wrap .subtitle {
    font-size: 24px;
    line-height: 24px;
  }
  #index_first_banner .swiper-slide .title_wrap .text {
    font-size: 16px;
    line-height: 16px;
  }
}

@media (max-width: 800px) {
  #index_first_banner .swiper-slide {
    padding-top: 100%;
  }
  #index_first_banner .bannerbg {
    display: block;
  }
  #index_first_banner .banner_pagination {
    text-align: right;
    padding-right: 30px;
  }
  #index_first_banner .swiper-slide video {
    display: none;
  }
  #index_first_banner .swiper-slide .title_wrap .headlinepoint .btn {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  #index_first_banner .swiper-slide .title_wrap {
    left: 50px;
    right: 50px;
  }
}
@media (max-width: 400px) {
  #index_first_banner .swiper-slide .title_wrap {
    left: 30px;
    right: 30px;
  }
}


/**** 首页小banner ****/
.list_subbanner {
  font-size: 0;
  white-space: nowrap;
}
.item_subbanner {
  display: inline-block;
  font-size: 12px;
  width: 33.33333333333%;
}
.item_subbanner_box {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item_subbanner_box .item_subbanner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.item_subbanner_box .item_subbanner_text {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: rgba(0,0,0,.5);
  padding: 20px 50px;
}

.item_subbanner_box .item_subbanner_text .item_subbanner_text_box {
  border-left: 10px solid #fff;
  color: #fff;
  padding-left: 20px;
  text-shadow: 0 0 10px rgba(0,0,0,.5);
}
.item_subbanner_box .item_subbanner_text .item_subbanner_text_box .text_zh {
  font-size: 36px;
  font-weight: bold;
}
.item_subbanner_box .item_subbanner_text .item_subbanner_text_box .text_en {
  font-size: 26px;
}

.item_subbanner_onroad .item_subbanner_text .item_subbanner_text_box {
  border-left-color: #585647;
}
.item_subbanner_xroad .item_subbanner_text .item_subbanner_text_box {
  border-left-color: #bb1d26;
}
.item_subbanner_offroad .item_subbanner_text .item_subbanner_text_box {
  border-left-color: #0f77a1;
}

.item_subbanner_box:hover {
  box-shadow: 0 0 7px rgba(0,0,0,.2), 0 8px 30px rgba(0,0,0,.2);
}
.item_subbanner_box:hover .item_subbanner_bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.item_subbanner_box:hover .item_subbanner_text {
  -webkit-transform: translate(-5%, 0);
  transform: translate(-5%, 0);
}

@media (max-width: 1024px) {
  .item_subbanner_box .item_subbanner_text {
    padding: 10px 20px;
    bottom: 0;
  }
  .item_subbanner_box .item_subbanner_text .item_subbanner_text_box .text_zh {
    font-size: 30px;
  }
}

@media (max-width: 800px) {
  .list_subbanner {
    white-space: initial;
  }
  .item_subbanner {
    width: 100%;
  }
  .item_subbanner_box {
    padding-bottom: 40%;
  }
  .item_subbanner_box .item_subbanner_text .item_subbanner_text_box .text_en {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .item_subbanner_box .item_subbanner_text .item_subbanner_text_box .text_zh {
    font-size: 20px;
  }
  .item_subbanner_box .item_subbanner_text .item_subbanner_text_box .text_en {
    font-size: 12px;
  }
}

/**** 引导到选车 ****/
#index_guidetobike {
  background-color: #f4f4f4;
  color: #666;
  font-size: 20px;
}
#index_guidetobike .index_guidetobike_box {
  text-align: right;
  padding: 30px 0;
}
#index_guidetobike .btn {
  padding: 0 50px;
  line-height: 50px;
  height: 50px;
  font-size: 16px;
}
@media (max-width: 800px) {
  #index_guidetobike {
    font-size: 12px;
  }
  #index_guidetobike .index_guidetobike_box {
    padding: 10px 5px;
  }
  #index_guidetobike .btn {
    padding: 0 10px;
    line-height: 40px;
    height: 40px;
    font-size: 12px;
  }
}





/**** 首页正文区 ****/
#index_main {
  max-width: initial;
  padding: 0;
  padding-top: 30px;
}
/*#index_main_top .limitwidth,
#index_main .limitwidth,*/
.limitwidth {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}


/**** 首页子标题 ****/
.index_main_title {
  line-height: 50px;
  height: 50px;
  position: relative;
  /*text-shadow: 0 0 5px rgba(0,0,0,.2);*/
  color: #140d8e;
}
.index_main_title .title {
  font-size: 40px;
  font-weight: bold;
}
.index_main_title .more_wrap {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 14px;
}
.index_main_title .more_wrap .btn:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  bottom: 5px;
  background-color: currentColor;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.index_main_title .more_wrap .btn:hover:before {
  width: 100%;
}

/**** 首页自行车 ****/
.index_bike_part {
  font-size: 0;
  margin-bottom: 30px;
}
/*.index_bike_part .item_bike .title .badge {
  margin-left: -50px;
}*/
.index_bike_part .list_bike:nth-child(1) {
  width: 68%;
  display: inline-block;
  vertical-align: top;
}
.index_bike_part .list_bike:nth-child(1) .item_bike {
  width: 100%;
}
.index_bike_part .list_bike:nth-child(1) .title {
  font-size: 30px;
}
.index_bike_part .list_bike:nth-child(2) {
  width: 32%;
  display: inline-block;
  vertical-align: top;
}
.index_bike_part .list_bike:nth-child(2) .item_bike {
  width: 100%;
}

@media (max-width: 800px) {
  .index_bike_part .list_bike:nth-child(1) {
    width: 100%;
  }
  .index_bike_part .list_bike:nth-child(1) .title {
    font-size: 18px;
  }
  .index_bike_part .list_bike:nth-child(2) {
    width: 100%;
  }
  .index_bike_part .list_bike:nth-child(2) .item_bike {
    width: 50%;
  }
}




/**** 首页新闻 ****/

.index_main_news {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 30px;
}

.item_indexnews_wrap {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item_indexnews {
  position: relative;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  margin-bottom: 10px;
  overflow: hidden;
}
/*
.item_indexnews:hover {
  box-shadow: 0 0 7px rgba(0,0,0,.2), 0 8px 30px rgba(0,0,0,.2);
}
*/
.item_indexnews .cover_wrap {
  width: 60%;
}
.item_indexnews .cover {
  display: block;
  padding-top: 66.66%;
  background-color: #d8d8d8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s, transform 1s;
  transition: all 0.3s, transform 1s;
}

.item_indexnews .title_wrap {
  padding: 10px 20px;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  width: 40%;
  bottom: 0;
  right: 0;
}
.item_indexnews .title_wrap .title {
  line-height: 1;
  font-weight: bold;
}
.item_indexnews .title_wrap .title .badge {
  padding: 0 10px;
  margin-bottom: 5px;
}
.item_indexnews .title_wrap .btn_readmore {
  padding: 0 60px;
  line-height: 40px;
  height: 40px;
  margin-top: 20px;
}


.indexmainnews {
  background-color: #140d8e;
  padding-top: 30px;
}
.indexmainnews .index_main_title .title {
  color: #fff;
}
.indexmainnews .index_main_title .btn {
  color: #999;
}
.indexmainnews .item_indexnews {
  padding-top: 30px;
  padding-bottom: 50px;
  margin-bottom: 0;
}
.indexmainnews .item_indexnews .title_wrap {
  padding: 0;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,.2);
}
.indexmainnews .item_indexnews .title_box {
  position: relative;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 25px 0 0px 50px;
}
.indexmainnews .item_indexnews .title_wrap:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-image: -webkit-linear-gradient(top, rgba(20, 13, 142, 0), #140d8e);
  background-image: linear-gradient(to bottom, rgba(20, 13, 142, 0), #140d8e);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.indexmainnews .item_indexnews .title_wrap .title {
  font-size: 30px;
}

.indexmainnews .item_indexnews .title_wrap .title * {
  vertical-align: middle;
}
.indexmainnews .item_indexnews .title_wrap .text {
  padding: 10px 0 5px;
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
}


.indexsubnews {
  font-size: 0;
  padding-top: 50px;
}
.indexsubnews .item_indexnews_wrap {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
.indexsubnews .item_indexnews_wrap:nth-child(1) .item_indexnews {
  margin-right: 20px;
}
.indexsubnews .item_indexnews_wrap:nth-child(2) .item_indexnews {
  margin-left: 20px;
}
.indexsubnews .item_indexnews .cover_wrap {
  width: 50%;
}
.indexsubnews .item_indexnews .title_wrap {
  width: 50%;
  padding-right: 0;
  padding-top: 0;
}
.indexsubnews .item_indexnews .title_wrap .title {
  font-size: 18px;
  display: -webkit-box;
  display: -moz-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.indexsubnews .item_indexnews .title_wrap .title .text {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}
.indexsubnews .item_indexnews .title_wrap .title .text,
.indexsubnews .item_indexnews .title_wrap .title span {
  display: -webkit-box;
  display: -moz-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: normal;
}
.indexsubnews .item_indexnews .title_wrap .btn_readmore {
  position: absolute;
  bottom: 10px;
  height: 30px;
  line-height: 30px;
  padding: 0 35px;
  margin-top: 0px;
}
@media (max-width: 1440px) {
  .indexsubnews .item_indexnews .title_wrap .btn_readmore {

  }

}

@media (max-width: 1000px) {
  .item_indexnews .cover_wrap {
    width: 50%;
  }
  .item_indexnews .title_wrap {
    width: 50%;
  }

}

@media (max-width: 800px) {
  .indexmainnews .item_indexnews .title_box {
    padding-left: 30px;
  }
  .indexmainnews .item_indexnews .title_wrap .title {
    font-size: 24px;
  }
  .indexmainnews .item_indexnews .title_wrap .text {
    font-size: 12px;
  }
  .item_indexnews .title_wrap .btn_readmore {
    margin-top: 10px;
  }

 #index_main .index_main_news .title_wrap .title .badge {
   margin-bottom: 10px;
 }
  #index_main .index_main_news .limitwidth {
    padding: 0;
  }
  .indexsubnews .item_indexnews .cover_wrap,
  .item_indexnews .cover_wrap {
    width: 100%;
  }
  .indexsubnews .item_indexnews .title_wrap,
  .indexmainnews .item_indexnews .title_wrap {
    width: 100%;
    position: relative;
    padding: 20px;
  }
  .indexsubnews .item_indexnews .title_wrap .btn_readmore {
    position: static;
    margin-top: 10px;
  }
  .indexmainnews .item_indexnews .title_box {
    padding: 0;
  }
  .indexmainnews .item_indexnews .title_wrap:after {
    display: none;
  }
  .indexsubnews .item_indexnews_wrap {
    width: 100%;
  }

  .indexsubnews .item_indexnews_wrap:nth-child(1) .item_indexnews {
    margin-right: 0;
  }
  .indexsubnews .item_indexnews_wrap:nth-child(2) .item_indexnews {
    margin-left: 0;
  }
}




/**** 首页底部三块 ****/
#index_main .list_indexbottomflag {
  font-size: 0;
  margin-left: -10px;
  margin-right: -10px;
}
#index_main .item_indexbottomflag {
  width: 33.333333%;
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  padding: 10px;
  color: #fff;
}
#index_main .item_indexbottomflag_box {
  background-color: #19233c;
  padding: 30px;
  padding-left: 130px;
  position: relative;
  height: 160px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#index_main .item_indexbottomflag .cover {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 30px;
  left: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#index_main .item_indexbottomflag:hover .cover {
  -webkit-transform: scale(.9);
  transform: scale(.9);
}
#index_main .item_indexbottomflag .title_wrap {
  padding-left: 10px;
}
#index_main .item_indexbottomflag .title {
  font-size: 14px;
  font-weight: bold;
  padding-top: 20px;
  color: #0FF;
  margin-bottom: 5px;
}
@media (max-width: 1000px) {
  #index_main .item_indexbottomflag .cover {
    width: 40px;
    height: 40px;
    top: 20px;
  }
  #index_main .item_indexbottomflag_box {
    padding-left: 30px;
  }
  #index_main .item_indexbottomflag .title_wrap {
    padding-left: 0;
  }
  #index_main .item_indexbottomflag .title {
    padding-top: 40px;
  }
}
@media (max-width: 800px) {
  #index_main .list_indexbottomflag {
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #index_main .item_indexbottomflag {
    width: 60%;
    padding: 5px;
  }
  #index_main .item_indexbottomflag_box {
    height: 135px;
  }
  #index_main .item_indexbottomflag .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  #index_main .item_indexbottomflag .text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
@media (max-width: 800px) {
  #index_main .item_indexbottomflag {
    width: 80%;
  }
}


/**** 首页特性 ****/

.index_featurelist {
  font-size: 0;
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding-top: 20px;
}

.item_feature {
  display: inline-block;
  font-size: 14px;
  width: 50%;
  padding-left: 20px;
  color: #666;
  cursor: pointer;
}
.item_feature * {
  vertical-align: top;
  line-height: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item_feature span {
  padding-left: 5px;
}
.item_feature:hover i {
  -webkit-transform: scale(.9);
  transform: scale(.9);
}

@media (min-width: 500px) {
  .item_feature {
    width: 33.33333%;
  }
}
@media (min-width: 900px) {
  .item_feature {
    width: 20%;
  }
  .item_feature .material-icons {
    font-size: 30px;
  }
}










/**** 内页通用 ****/
.main_top_banner {
  height: 330px;
  position: relative;
  overflow: hidden;
  background-color: #232323;
}
.main_top_banner_box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-animation: main_top_banner_box_ani 10s ease-out;
  animation: main_top_banner_box_ani 10s ease-out;
}
@-webkit-keyframes main_top_banner_box_ani {
  0%{ -webkit-transform: scale(1.1); }
  100%{ -webkit-transform: scale(1); }
}
@keyframes main_top_banner_box_ani {
  0%{ transform: scale(1.1); }
  100%{ transform: scale(1); }
}
.main_top_banner .title_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  /*background-color: #006ebc;
  background-color: rgba(0, 110, 188, 0.8);*/
  line-height: 1;
  padding-top: 20px;
  padding-bottom: 20px;
}
.main_top_banner .title_box {
  position: relative;
}
.main_top_banner .title {
  font-size: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.main_top_banner .subtitle {
  font-size: 36px;
  padding-top: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .main_top_banner {
    height: 200px;
  }
  .main_top_banner .title {
    font-size: 30px;
  }
  .main_top_banner .subtitle {
    font-size: 12px;
  }
}


.main_top_banner.hasjiugongge .title {
  padding-left: 70px;
}
.main_top_banner .jiugongge {
  display: none;
  font-size: 0;
  width: 60px;
  margin-right: 10px;
  position: absolute;
}
.main_top_banner.hasjiugongge .jiugongge {
  display: inline-block;
}
.main_top_banner .jiugongge div {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}
.main_top_banner .jiugongge div:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
  background-color: #f4f4f4;
}
.main_top_banner .jiugongge.jiugongge_1 div:nth-child(1):before {
  background-color: #585647;
}
.main_top_banner .jiugongge.jiugongge_2 div:nth-child(2):before {
  background-color: #ba1d26;
}
.main_top_banner .jiugongge.jiugongge_3 div:nth-child(3):before {
  background-color: #0f77a1;
}
.main_top_banner .jiugongge.jiugongge_4 div:nth-child(4):before {
  background-color: #94948a;
}
.main_top_banner .jiugongge.jiugongge_5 div:nth-child(5):before {
  background-color: #f38331;
}
.main_top_banner .jiugongge.jiugongge_6 div:nth-child(6):before {
  background-color: #1baccb;
}
.main_top_banner .jiugongge.jiugongge_7 div:nth-child(7):before {
  background-color: #bcbeae;
}
.main_top_banner .jiugongge.jiugongge_8 div:nth-child(8):before {
  background-color: #faaf32;
}
.main_top_banner .jiugongge.jiugongge_9 div:nth-child(9):before {
  background-color: #68b4c4;
}
@media (max-width: 800px) {
  .main_top_banner.hasjiugongge .title,
  .main_top_banner.hasjiugongge .subtitle {
    padding-left: 55px;
  }
  .main_top_banner .jiugongge {
    width: 48px;
  }
  .main_top_banner .jiugongge div {
    width: 16px;
    height: 16px;
  }
}


/**** 整车筛选筛选框 ****/
.bikefinder_wrap {
  font-size: 0;
  padding-top: 20px;
}
.bikefinder_filterform .tabnav_power {
  background-color: transparent;
  box-shadow: none;
  margin-bottom: 10px;
  max-width: 250px;
  margin-left: -5px;
  margin-right: -5px;
}

.bikefinder_filterform {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  width: 25%;
}
.bikefinder_con {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  width: 75%;
}

.filterform_block {
  margin-bottom: 20px;
}
.filterform_block .title_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;
  cursor: pointer;
}
.filterform_block .title {
  color: #999;
  font-size: 24px;
}
.filterform_block .selectedtext,
.filterform_block .icon_unfold {
  display: none;
}


.filterform_block .form_check {
  display: block;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}
.filterform_block .form_check input[type="radio"] {
  margin-right: 5px;
}
.filterform_block .form_check input[type="radio"]:checked:before {
  content: "\e86c";
}
.filterform_block .form_check span {
  font-weight: bold;
}
.filterform_block .form_check.disabled {
  opacity: .3;
}

.filterform_block .search_box {
  max-width: 250px;
}
.filterform_block .search_box .input_search {
  border: 2px solid #666;
}

.filterform_block .list_hotkeyword {
  font-size: 0;
}

.filterform_block .item_hotkeyword {
  font-size: 12px;
  padding: 8px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  background-color: #f8f8f8;
}


@media (max-width: 1000px) {
  .bikefinder_filterform {
    width: 30%;
  }
  .bikefinder_con {
    width: 70%;
  }
  .filterform_block .form_check {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .bikefinder_filterform {
    width: 50%;
  }
  .bikefinder_con {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .bikefinder_filterform {
    width: 100%;
    margin-bottom: 20px;
  }
  .bikefinder_con {
    width: 100%;
  }

  .bikefinder_filterform .tabnav_power {
    max-width: initial;
  }

  .filterform_block {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
  }
  .filterform_block .title {
    font-size: 14px;
  }
  .filterform_block .title_wrap {
    height: 35px;
  }
  .filterform_block .title_wrap .selectedtext {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding-left: 10px;
    font-weight: bold;
    color: #008DFF;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .filterform_block.unfold .title_wrap .selectedtext {
    opacity: 0;
  }
  .filterform_block .title_wrap .icon_unfold {
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .filterform_block.unfold .title_wrap .icon_unfold {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .filterform_block .filterform_con {
    background-color: #f4f4f4;
    padding: 10px;
    display: none;
  }
  .filterform_block.unfold .filterform_con {
    display: block;
  }

  .filterform_block .form_check {
    line-height: 35px;
    height: 35px;
    font-size: 12px;
  }
  .filterform_block .form_check input[type="radio"] {
    margin-top: 0;
  }








}


/**** 整车筛选结果区 ****/
.bikefinder_con .crumb_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;
  color: #666;
  margin-bottom: 30px;
  padding-top: 10px;
}
.bikefinder_con .crumb_wrap .crumb {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bikefinder_con .crumb_wrap .totalcounter {
  text-align: right;
}
.bikefinder_con .bikeseries_title {
  text-align: right;
  border-bottom: 1px solid #999;
  margin-bottom: 20px;
}
.bikefinder_con .bikeseries_title > * {
  line-height: 40px;
}
.bikefinder_con .bikeseries_title .title {
  font-size: 24px;
}
.bikefinder_con .bikeseries_title .btn {
  line-height: 24px;
  padding: 0 10px 0 20px;
}
.bikefinder_con .bikeseries_title .btn * {
  line-height: inherit;
  display: inline-block;
  vertical-align: top;
}

/** 车系分组 车辆列表 **/
.list_bikeseries .item_bikeseries {
  margin-bottom: 20px;
}



@-webkit-keyframes item_bike_ani {
  0%   {-webkit-transform: scale(0);}
  100%  {-webkit-transform: scale(1);}
}
@keyframes item_bike_ani {
  0%   {transform: scale(0);}
  100%  {transform: scale(1);}
}
.bikefinder_con .item_bike {
  padding: 20px;
  width: 33.333333%;
  -webkit-animation: item_bike_ani .3s both;
  animation: item_bike_ani .3s both;
}
@media (max-width: 1000px) {
  .bikefinder_con .item_bike {
    width: 50%;
  }
}
@media (max-width: 800px) {
  .bikefinder_con .item_bike {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .bikefinder_con .crumb_wrap .crumb {
    opacity: 0;
  }
}



/**** 车系主题页 ****/
#bikeseries_main .bikeseries_text {
  position: relative;
  margin-bottom: 30px;
  padding-top: 20px;
}
#bikeseries_main .bikeseries_text:before {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #006ebc;
}
#bikeseries_main .item_bike {
  padding: 20px;
  width: 33.333333%;
  -webkit-animation: item_bike_ani .3s both;
  animation: item_bike_ani .3s both;
}
@media (max-width: 1000px) {
  #bikeseries_main .item_bike {
    width: 50%;
  }
}
@media (max-width: 800px) {
  #bikeseries_main .item_bike {
    width: 100%;
  }
}



/**** 骑行装备分类 ****/
.item_geartype_box {
  display: block;
}
#gear_main {
  padding-top: 20px;
}
#gear_main .list_geartype_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;
}
#gear_main .list_geartype_wrap .list_geartype {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  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;
}
#gear_main .list_geartype_wrap .list_geartype_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  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;
}
#gear_main .list_geartype_wrap .item_geartype {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  position: relative;
  height: 230px;
  margin: 5px;
}
#gear_main .list_geartype_wrap .item_geartype_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  background-color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gear_main .list_geartype_wrap .item_geartype_box .image {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  border-radius: 5px;
  opacity: .8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gear_main .list_geartype_wrap .item_geartype_box .title {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,0,0,.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gear_main .list_geartype_wrap .item_geartype_box:hover {
  background-color: #006ebc;
}
#gear_main .list_geartype_wrap .item_geartype_box:hover .image {
  opacity: .05;
}
#gear_main .list_geartype_wrap .item_geartype_box:hover .title {
  bottom: 30px;
}

/**3个分类**/
#gear_main .list_geartype_wrap.counter_3 {
  display: block;
}
/**4个分类**/
#gear_main .list_geartype_wrap.counter_4 {
  display: block;
}
#gear_main .list_geartype_wrap.counter_4 .list_geartype:nth-child(1) .item_geartype:nth-child(2) {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  flex: 1.5;
}
#gear_main .list_geartype_wrap.counter_4 .list_geartype:nth-child(2) .item_geartype:nth-child(1) {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  flex: 1.5;
}

/**5个分类**/
#gear_main .list_geartype_wrap.counter_5 .list_geartype_box {
  display: block;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  flex: 2;
}
#gear_main .list_geartype_wrap.counter_5 > .list_geartype .item_geartype {
  height: 470px;
}
#gear_main .list_geartype_wrap.counter_5 .list_geartype_box .list_geartype:nth-child(1) .item_geartype:nth-child(2) {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  flex: 1.5;
}
#gear_main .list_geartype_wrap.counter_5 .list_geartype_box .list_geartype:nth-child(2) .item_geartype:nth-child(1) {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  flex: 1.5;
}
@media (max-width: 500px) {
  #gear_main .list_geartype_wrap .list_geartype {
    display: block;
  }
  #gear_main .list_geartype_wrap.counter_5 {
    display: block;
  }
  #gear_main .list_geartype_wrap.counter_5 .list_geartype .item_geartype {
    height: 120px;
  }
}


#gear_main .index_main_title {
  padding-top: 20px;
  height: auto;
}
#gear_main .list_gear {
  padding-bottom: 20px;
}
@media (max-width: 800px) {
  #gear_main .index_main_title .title {
    font-size: 24px;
  }
  #gear_main .item_gear {
    width: 50%;
  }
  #gear_main .item_gear .title {
    font-size: 14px;
  }
  #gear_main {
    padding: 5px !important;
  }
}


/**** 装备筛选页 ****/
.gearfinder_wrap {
  font-size: 0;
  padding-top: 20px;
}
.gearfinder_wrap .gearfinder_con .item_gear .subtitle {
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.gearfinder_filterform {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  width: 25%;
}
.gearfinder_con {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  width: 75%;
}

.filterform_block select.form_input {
  border: 2px solid #666;
  border-radius: 3px;
  width: 100%;
  max-width: 250px;
  margin-top: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

@media (max-width: 1000px) {
  .gearfinder_filterform {
    width: 30%;
  }
  .gearfinder_con {
    width: 70%;
  }
}
@media (max-width: 800px) {
  .gearfinder_filterform {
    width: 50%;
  }
  .gearfinder_con {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .gearfinder_filterform {
    width: 100%;
    margin-bottom: 20px;
  }
  .gearfinder_con {
    width: 100%;
  }
}



/**** 装备筛选结果区 ****/
.gearfinder_con .crumb_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;
  color: #666;
  margin-bottom: 30px;
  padding-top: 10px;
}
.gearfinder_con .crumb_wrap .crumb {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gearfinder_con .crumb_wrap .totalcounter {
  text-align: right;
}
.gearfinder_con .geartype_title {
  text-align: right;
  border-bottom: 1px solid #999;
  margin-bottom: 20px;
}
.gearfinder_con .geartype_title .title {
  font-size: 24px;
}
/** 装备分组 装备列表 **/
.list_geartype .item_geartype {
  margin-bottom: 20px;
}
.gearfinder_con .item_gear {
  padding: 20px;
  width: 25%;
  -webkit-animation: item_bike_ani .3s both;
  animation: item_bike_ani .3s both;
}
@media (max-width: 1000px) {
  .gearfinder_con .item_gear {
    width: 33.333333%;
  }
}
@media (max-width: 800px) {
  .gearfinder_con .item_gear {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .gearfinder_con .crumb_wrap .crumb {
    opacity: 0;
  }
}

/**** 聚合搜索 ****/
#search_main_top {
  background-color: #333;
}
#search_main_top .limitwidth {
  padding-top: 20px;
  padding-bottom: 20px;
}

#search_main {
  padding-top: 20px;
}
#search_main .index_main_title {
  margin-bottom: 20px;
  font-size: 30px;
}
#search_main .item_bike {
  width: 25%;
}
#search_main .item_gear {
  width: 16.6666%;
}
#search_main .item_bike .title,
#search_main .item_gear .title,
#search_main .item_bike .subtitle,
#search_main .item_gear .subtitle {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.item_searchnews {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.item_searchnews .cover_wrap {
  position: absolute;
  top: 0;
  left: 0;
}
.item_searchnews .cover {
  width: 60px;
  height: 40px;
}
.item_searchnews .title_wrap {
  padding-left: 70px;
}
.item_searchnews .title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item_searchnews .title .badge {
  margin-right: 5px;
}

#search_main .item_searchqa {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
#search_main .item_searchqa .title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#search_main .item_searchqa .title .badge {
  margin-right: 5px;
}


#search_main .btn_searchmore {
  display: block;
  line-height: 40px;
  height: 40px;
  margin-bottom: 30px;
  margin-top: 20px;
}

@media (max-width: 1000px) {
  #search_main .index_main_title .more_wrap {
    right: 0;
  }
  #search_main .index_main_title .title {
    font-size: 20px;
  }
  #search_main .item_bike {
    width: 33.333333%;
  }
  #search_main .item_bike:nth-child(4) {
    display: none;
  }
  #search_main .item_gear {
    width: 20%;
  }
  #search_main .item_gear:nth-child(6) {
    display: none;
  }
}
@media (max-width: 800px) {
  #search_main .item_bike {
    width: 50%;
  }
  #search_main .item_bike:nth-child(4) {
    display: inline-block;
  }
  #search_main .item_gear {
    width: 25%;
  }
  #search_main .item_gear:nth-child(5) {
    display: none;
  }
}
@media (max-width: 500px) {
  #search_main .item_bike {
    width: 100%;
  }
  #search_main .item_gear {
    width: 50%;
  }
  #search_main .item_gear:nth-child(5),
  #search_main .item_gear:nth-child(6) {
    display: inline-block;
  }
}


/**** 客服帮助聚合页面 ****/
.helpindex_title_wrap {
  margin-bottom: 30px;
}
.helpindex_title_wrap .helpindex_title {
  font-size: 45px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #000000;
  font-weight: bold;
}
.helpindex_title_wrap .helpindex_subtitle {
  color: #006EB9;
  font-size: 35px;
  font-weight: bold;
  padding: 10px 0;
}
.helpindex_title_wrap .helpindex_text {
  font-size: 18px;
  font-weight: bold;
  color: #999;
}

.helpindex_step_wrap {
  padding-bottom: 10px;
}
.helpindex_step_wrap .helpindex_step {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #008DFF;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  border-radius: 100px;
}


#helpindex_main .tips {
  font-size: 18px;
  font-weight: bold;
}
.helpindex_faq .btn {
  padding: 0 30px;
  margin-top: 10px;
  line-height: 40px;
}





.helpindex_contact_wrap {
  font-size: 0;
  padding: 30px 0;
  position: relative;
}
.helpindex_contact_wrap .helpindex_contact {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  width: 30%;
  text-align: right;
  padding-right: 50px;
}
.helpindex_contact_wrap .helpindex_contact_feedback {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  width: 70%;
  padding-left: 50px;
}
.helpindex_contact_wrap .helpindex_contact_separate {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30%;
  width: 1px;
  background-color: #ccc;
}

/** 联系方式 客服帮助 **/
.helpindex_contact_wrap .helpindex_contact .tips {
  padding-bottom: 20px;
}
.helpindex_contact_wrap .helpindex_contact .helpindex_contact_phone_num {
  font-size: 30px;
  color: #006EBD;
  font-weight: bold;
}
.helpindex_contact_wrap .helpindex_contact .helpindex_contact_phone_text {
  font-size: 14px;
  color: #999;
  margin-bottom: 5px;
}
.helpindex_contact_wrap .helpindex_contact .helpindex_contact_phone_num:nth-child(1) {
  font-size: 40px;
}
.helpindex_contact_wrap .helpindex_contact .btn {
  padding: 0 30px;
  margin-top: 20px;
  line-height: 40px;
}
.helpindex_contact_wrap .helpindex_contact .btn * {
  line-height: inherit;
  vertical-align: top;
  display: inline-block;
}
.helpindex_contact_wrap .helpindex_contact .btn i {
  margin-right: 5px;
}


/** 反馈单 客服帮助 **/
.helpindex_contact_wrap .helpindex_contact_feedback .tips {
  padding-bottom: 20px;
}
.helpindex_contact_feedback_title {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 20px;
}
.helpindex_feedbackform {
  padding: 50px;
  padding-top: 70px;
  border: 1px solid #ccc;
  position: relative;
  overflow: hidden;
}
.helpindex_feedbackform:before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 20px;
  background-color: #24aaff;
  top: 0;
  left: 0;
  -webkit-transform: skew(-30deg) translateX(-20px);
  transform: skew(-30deg) translateX(-20px);
  box-shadow: 100px 0 0 #ff7a7a, 200px 0 0 #24aaff,
              300px 0 0 #ff7a7a, 400px 0 0 #24aaff,
              500px 0 0 #ff7a7a, 600px 0 0 #24aaff,
              700px 0 0 #ff7a7a, 800px 0 0 #24aaff,
              900px 0 0 #ff7a7a, 1000px 0 0 #24aaff,
              1100px 0 0 #ff7a7a, 1200px 0 0 #24aaff,
              1300px 0 0 #ff7a7a, 1400px 0 0 #24aaff,
              1500px 0 0 #ff7a7a, 1600px 0 0 #24aaff,
              1700px 0 0 #ff7a7a, 1800px 0 0 #24aaff,
              1900px 0 0 #ff7a7a, 2000px 0 0 #24aaff,
              2100px 0 0 #ff7a7a, 2200px 0 0 #24aaff,
              2300px 0 0 #ff7a7a, 2400px 0 0 #24aaff;
}
.helpindex_feedbackform .form_item {
  border-bottom: none;
}
.helpindex_feedbackform .form_item .form_input {
  padding-left: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 5px;
}
.helpindex_feedbackform .form_item select.form_input {
  width: auto;
}
.helpindex_feedbackform .form_item textarea.form_input {
  padding: 10px;
}

@media (max-width: 1200px) {
  .helpindex_contact_wrap .helpindex_contact {
    width: 40%;
  }
  .helpindex_contact_wrap .helpindex_contact_feedback {
    width: 60%;
  }
  .helpindex_contact_wrap .helpindex_contact_separate {
    left: 40%;
  }
}
@media (max-width: 800px) {
  .helpindex_contact_wrap .helpindex_contact {
    width: 100%;
    text-align: left;
    padding: 0 0 50px;
  }
  .helpindex_contact_wrap .helpindex_contact_feedback {
    width: 100%;
    padding: 0;
  }
  .helpindex_contact_wrap .helpindex_contact_separate {
    display: none;
  }
}
@media (max-width: 600px) {
  .helpindex_title_wrap .helpindex_title {
    font-size: 30px;
  }
  .helpindex_title_wrap .helpindex_subtitle {
    font-size: 20px;
  }
  .helpindex_title_wrap .helpindex_text {
    font-size: 14px;
  }
  .helpindex_feedbackform {
    padding: 10px;
    padding-top: 50px;
  }
  .helpindex_feedbackform .form_label {
    position: relative;
  }
  .helpindex_feedbackform .form_item_con {
    padding-left: 0;
  }
}

/*************************************** 新闻导航开始 */
#newslist_main {

}

.newslist_tabnav_wrap {
  padding: 30px 0;
  border-bottom: 3px solid #ccc;
}
.newslist_tabnav_wrap .tab_nav {
  margin-left: -5px;
  margin-right: -5px;
  background-color: transparent;
  box-shadow: none;
  display: block;
  font-size: 0;
}
.newslist_tabnav_wrap .tab_nav .item {
  display: inline-block;
  padding: 0 20px;
}
@media (max-width: 800px) {
  .newslist_tabnav_wrap {
    padding: 0;
  }
}
/* 新闻导航结束 */


/*************************************** 新闻内容开始 */
/*#news_main .richtext img {
  width: 100%;
}*/
.item_news {
  position: relative;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.item_news .title_wrap {
  display: block;
  padding-right: 370px;
  position: relative;
  min-height: 233px;
}

.item_news .title_wrap .title {
  font-size: 24px;
  margin: 0 0 25px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item_news .title_wrap .text {
  color: #666666;
  font-size: 14px;
  max-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.item_news .cover {
  position: absolute;
  top: 20px;
  right: 0;
  width: 350px;
  height: 233px;
}

.item_news .time_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;
}

.item_news .time_wrap .time {
  font-size: 14px;
  color: #666;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.item_news .time_wrap .time * {
  vertical-align: top;
  line-height: 30px;
  height: 30px;
}

.item_news .time_wrap .btn {
  height: 30px;
  width: 130px;
  line-height: 30px;
}
.news_content .main_more {
  display: block;
  width: 100%;
  text-align: center;
  padding: 80px 0;
  color: #444444;
}


@media (max-width: 800px) {
  .item_news .title_wrap .text {
    display: none;
  }
  .item_news .title_wrap {
    padding-right: 270px;
  }
  .item_news .cover {
    width: 250px;
    height: 166px;
  }
  .item_news .title_wrap {
    min-height: 166px;
  }
}

@media (max-width: 600px) {
  .item_news .title_wrap {
    width: 100%;
    padding: 0 0 10px;
    min-height: initial;
  }
  .item_news .cover {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding-top: 66.66%;
  }
  .item_news .time_wrap .btn {
    display: none;
  }
  .news_content .main_more {
    padding: 30px 0;
  }
}

@media (max-width: 400px) {
  .item_news .title_wrap .title {
    margin-bottom: 15px;
  }
  .item_news .cover {
    height: auto;
  }
  .item_news .title_wrap .text {
    display: block;
    margin-bottom: 5px;
  }
}


/* 新闻内容结束 */



/** 新闻详情 开始 **/
.mainarticle_crumb {
  display: block;
  padding: 35px 0;
  font-size: 16px;
}

.mainarticle_title_wrap {
  border-bottom: 2px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.mainarticle_title_wrap .title {
  margin: 0 0 5px;
  font-size: 45px;
}

.mainarticle_title_wrap .time {
  font-size: 14px;
  color: #666;
}

.mainarticle_title_wrap .time * {
  vertical-align: top;
  line-height: 30px;
  height: 30px;
}

.mainarticle_content {
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .mainarticle_crumb {
    padding: 10px 0;
    font-size: 12px;
  }
  .mainarticle_title_wrap .title {
    font-size: 24px;
  }
}
/** 新闻详情 结束 **/







/* 车队列表开始 */
.list_team {
  font-size: 0;
}
#team_main .item_team {
  display: inline-block;
  width: 33.333333%;
  padding: 15px;
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#team_main .item_team_box {
  overflow: hidden;
  height: 430px;
  width: 100%;
  border-radius: 10px;
  position: relative;
  background-color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#team_main .item_team_box .cover {
  position: absolute;
  top: 0;
  width: 100%;
  right: 0;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#team_main .item_team:hover .cover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#team_main .item_team_box .cover:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: -webkit-linear-gradient(top, transparent, #111);
  background-image: linear-gradient(to bottom, transparent, #111);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#team_main .item_team .item_team_con {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#team_main .item_team:hover .item_team_con {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
#team_main .item_team .item_team_con .title_wrap {
  color: #fff;
  text-align: right;
  text-shadow: 0 0 10px rgba(0,0,0,.5);
  line-height: 1;
}
#team_main .item_team .item_team_con .title {
  font-size: 26px;
  font-weight: bold;
}
#team_main .item_team .item_team_con .subtitle {
  font-size: 20px;
  font-weight: bold;
}
#team_main .item_team .text {
  background-color: #006ebc;
  background-color: rgba(0, 110, 188, 0.8);
  border-left: 7px solid #FFF;
  color: #fff;
  padding: 15px;
  margin-bottom: 10px;
}


@media (max-width: 1200px) {
  #team_main .item_team {
    padding: 5px;
  }
}
@media (max-width: 900px) {
  #team_main .item_team_box {
    height: 320px;
  }
  #team_main .item_team {
    width: 50%;
  }
}
@media (max-width: 500px) {
  #team_main .item_team {
    width: 100%;
  }
}





/* 领先技术开始 */
#technology_main .list_technology {
  padding-top: 20px;
  font-size: 0;
}
#technology_main .list_technology .item_technology {
  font-size: 12px;
  display: inline-block;
  width: 25%;
  padding: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#technology_main .list_technology .item_technology_box {
  position: relative;
  height: 350px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#technology_main .item_technology .cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 210px;
  width: 100%;
  display: block;
  border-radius: 10px 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#technology_main .item_technology:hover .cover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#technology_main .item_technology .title_wrap {
  text-align: center;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: #fff;
  min-height: 140px;
  border-radius: 0 0 10px 10px;
}
#technology_main .item_technology .title_wrap .titleimg {
  background-size: contain;
  width: 100%;
  padding-top: 20%;
}
#technology_main .item_technology .title_wrap .title {
  padding-top: 10px;
}

@media (max-width: 1200px) {
  #technology_main .list_technology .item_technology {
    padding: 5px;
  }
}
@media (max-width: 900px) {
  #technology_main .list_technology .item_technology_box {
    height: 320px;
  }
  #technology_main .list_technology .item_technology {
    width: 50%;
  }
}
@media (max-width: 500px) {
  #technology_main .list_technology .item_technology {
    width: 100%;
  }
}

/* 领先技术结束 */



/** 整车详情 **/
.main_top_details {
  height: auto;
  width: 100%;

}
.main_top_details .nav_wrap {
  padding: 20px 0;
  font-size: 16px;
  color: #666;
}
.main_top_details .bikeview_wrap {
  width: 100%;
  position: relative;
}
.main_top_details .bikeview_wrap .cover_wrap {
  width: 60%;
}
#bike_view_main_top .cover {
  position: relative;
}
#bike_view_main_top .cover .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#bike_view_main_top .cover .swiper-container .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#bike_view_main_top .cover .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.bikeview_wrap .cover_wrap .cover_small {
  overflow: hidden;
}

.bikeview_wrap .cover_wrap .cover_small .swiper-slide {
  /*width: 100px!important;*/
  height: 67px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #e2dede;
  display: inline-block;
  cursor: pointer;
}
.bikeview_wrap .cover_wrap .cover_small .swiper-slide-thumb-active {
  border: 1px solid #999;
}

.bikeview_wrap .cover_wrap .cover {
  display: block;
  padding-top: 66.666666%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bikeview_wrap .cover_wrap .cover_small {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-bottom: 20px;
  padding-top: 20px;
  white-space: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.bikeview_wrap .cover_wrap .cover_small li {
  width: 100px;
  height: 67px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #e2dede;
  display: inline-block;
  margin-right: 5px;
  cursor: pointer;
}
.bikeview_wrap .cover_wrap .cover_small li.active {
  border: 1px solid #999;
}

.bikeview_wrap .cover_wrap .modelcolor {
  position: absolute;
  font-size: 0;
  margin: 10px 0;
  top: 0;
  left: 0;
  z-index: 5;
}
.bikeview_wrap .cover_wrap .modelcolor .item_modelcolor {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: #fff;
  border: 3px solid #ccc;
  margin-right: 5px;
}



.bikeview_wrap .title_wrap {
  position: absolute;
  top: 0;
  width: 40%;
  bottom: 0;
  right: 0;
}
.bikeview_wrap .title_wrap .title_box {
  position: relative;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 30px 30px;
}
.bikeview_wrap .title_wrap .title_box .year {
  display: block;
  font-weight: bold;
  color: #c7c7c7;
  font-size: 20px;
  text-align: left;
  margin-bottom: 10px;
}
.bikeview_wrap .title_wrap .title_box .title {
  display: block;
  color: #3a3a3a;
  font-size: 32px;
  text-align: left;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
.bikeview_wrap .title_wrap .title_box .price {
  display: block;
  color: #008DFF;
  font-size: 32px;
  text-align: left;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  margin-top: 10px;
}

.bikeview_wrap .title_wrap .title_box .btnbox {
  text-align: right;
}
.bikeview_wrap .title_wrap .title_box .btnbox .btn {
  padding: 0 20px;
  line-height: 35px;
  height: 35px;
}
.bikeview_wrap .title_wrap .title_box .btnbox .btn * {
  line-height: inherit;
  display: inline-block;
  vertical-align: top;
}
.bikeview_wrap .title_wrap .title_box .btnbox .btn .material-icons {
  margin-right: 5px;
}
.bikeview_wrap .title_wrap .title_box .btnbox .btn_fav.active .no,
.bikeview_wrap .title_wrap .title_box .btnbox .btn_fav .ok {
  display: none;
}
.bikeview_wrap .title_wrap .title_box .btnbox .btn_fav.active .ok {
  display: inline-block;
}
.bikeview_wrap .title_wrap .title_box .btnbox .btn_fav.active {
  color: #ef3a3a;
  box-shadow: inset 0 0 0 1px #ef3a3a, inset 0 0 20px #ef3a3a;
}

.bikeview_wrap .title_wrap .title_box .modelcolor {
  font-size: 0;
  margin: 10px 0;
}

.bikeview_wrap .title_wrap .title_box .modelcolor .item_modelcolor {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: #fff;
  border: 3px solid #ccc;
  margin-right: 5px;
}
.bikeview_wrap .title_wrap .title_box .leibie {
  width: 100%;
  color: #666;
  font-size: 0;
  margin-bottom: 10px;
  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;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge {
  display: inline-block;
  font-size: 0;
  width: 48px;
  margin-right: 10px;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge div {
  background-color: #f4f4f4;
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px solid #fff;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_1 div:nth-child(1) {
  background-color: #585647;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_2 div:nth-child(2) {
  background-color: #ba1d26;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_3 div:nth-child(3) {
  background-color: #0f77a1;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_4 div:nth-child(4) {
  background-color: #94948a;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_5 div:nth-child(5) {
  background-color: #f38331;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_6 div:nth-child(6) {
  background-color: #1baccb;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_7 div:nth-child(7) {
  background-color: #bcbeae;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_8 div:nth-child(8) {
  background-color: #faaf32;
}
.bikeview_wrap .title_wrap .title_box .leibie .jiugongge.jiugongge_9 div:nth-child(9) {
  background-color: #68b4c4;
}

.bikeview_wrap .title_wrap .title_box .leibie_text {
  display: inline-block;
  font-size: 14px;
  vertical-align: top;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.bikeview_wrap .title_wrap .title_box .leibie_text span {
  display: block;
  line-height: 24px;
}
.bikeview_wrap .title_wrap .title_box .lxjs {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0;
  margin-bottom: 10px;
}
.bikeview_wrap .title_wrap .title_box .lxjs li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
}
.bikeview_wrap .title_wrap .title_box .lxjs li img {
  height: 25px;
  width: auto;
}
.bikeview_wrap .title_wrap .title_box .text {
  font-size: 14px;
  color: #666;
  text-align: left;
  line-height: 22px;
  margin-bottom: 30px;
}
.bikeview_wrap .title_wrap .title_box .btn_item {
  margin-bottom: 20px;
}
.bikeview_wrap .title_wrap .title_box .btn_item a {
  position: relative;
  font-size: 14px;
  line-height: 35px;
  display: block;
  padding: 0 5px;
  text-align: center;
  cursor: pointer;
  border-top: 3px solid #0000;
  border-bottom: 3px solid #0000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  z-index: 1;
  margin-bottom: 10px;
}
.bikeview_wrap .title_wrap .title_box .btn_item a span {
  padding-left: 5px;
}
.bikeview_wrap .title_wrap .title_box .btn_item .btn_color_4 {
  background-color: #333;
  color: #fff;
}
.main_top_details .subtab_nav {
  width: 65%;
  box-shadow: none;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.main_top_details .subtab_nav .item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.main_top_details .subtab_nav_wrap.fixed {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 3;
  top: 100px;
  background-color: #fff;
  width: auto;
  box-shadow: 0 0 30px rgba(0,0,0,.2);
}
.main_top_details .subtab_nav_wrap.fixed .subtab_nav_box {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}



@media (max-width: 1000px) {
  .bikeview_wrap .title_wrap .title_box .title {
    font-size: 28px;
  }
  .bikeview_wrap .title_wrap .title_box .leibie .material-icons {
    font-size: 60px;
  }
  .bikeview_wrap .title_wrap .title_box .lxjs li img {
    height: 30px;
  }
  .main_top_details .bikeview_wrap .cover_wrap {
    width: 100%;
    padding-bottom: 10px;
  }
  .bikeview_wrap .title_wrap {
    position: inherit;
    width: 100%;
  }
  .bikeview_wrap .title_wrap .title_box .year  {
    font-size: 16px;
  }
  .bikeview_wrap .title_wrap .title_box {
    padding: 0;
  }
  .main_top_details .subtab_nav {
    width: 100%;
  }
  .bikeview_wrap .title_wrap .title_box .leibie {
    width: 45%;
    display: inline-block;
    vertical-align: top;
  }
  .bikeview_wrap .title_wrap .title_box .leibie_text {
    margin-top: 5px;
  }
  .bikeview_wrap .title_wrap .title_box .lxjs {
    width: 53%;
    display: inline-block;
    margin-top: 7px;
  }
}
@media (max-width: 800px) {
  .bikeview_wrap .title_wrap .title_box .title {
    font-size: 24px;
  }
  .bikeview_wrap .title_wrap .title_box .lxjs li {
    /*margin-right: 5px;*/
  }
  .bikeview_wrap .title_wrap .title_box .lxjs li img {
    height: 18px;
  }
  .bikeview_wrap .title_wrap .title_box .leibie .material-icons {
    font-size: 50px;
  }
  .bikeview_wrap .title_wrap .title_box .leibie_text span {
    line-height: 20px;
  }

}
@media (max-width: 500px) {
  .bikeview_wrap .title_wrap .title_box .title {
    font-size: 20px;
  }
  .bikeview_wrap .title_wrap .title_box .year  {
    font-size: 14px;
  }
  .bikeview_wrap .title_wrap .title_box .lxjs,
  .bikeview_wrap .title_wrap .title_box .leibie  {
    width: 100%;
  }
  .bikeview_wrap .title_wrap .title_box .lxjs {
    margin-bottom: 10px;
  }


  .bikeview_wrap .cover_wrap .modelcolor .item_modelcolor {
    width: 20px;
    height: 20px;
  }
}


/** 分享面板 商品详情页 **/
#subplate_sharepic {
  z-index: 10;
}
#subplate_sharepic .mask {
  cursor: pointer;
}
#subplate_sharepic .subplate_box .image_sharepic {
  display: block;
  width: 200px;
  /* margin: 20px auto; */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,.3);
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -100px;
}

#subplate_sharepic .subplate_box .sharepicbtnbox {
  text-align: center;
  padding-top: 340px;
  padding-bottom: 70px;
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepicbtn {
  display: inline-block;
  width: 70px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepicbtn:hover {
  color: #333;
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepicbtn .sharepicicon {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #383838;
  color: #fff;
  line-height: 50px;
  -webkit-text-stroke-color: #383838;
  font-size: 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(.9);
  transform: scale(.8);
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepicbtn:hover .sharepicicon {
  -webkit-transform: scale(1) translateY(-10px);
  transform: scale(1) translateY(-10px);
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepicbtn_link .sharepicicon {
  background-color: #383838;
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepicbtn_download .sharepicicon {
  background-color: #2b68f1;
  -webkit-text-stroke-color: #2b68f1;
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepicbtn_wx .sharepicicon {
  background-color: #05af10;
  -webkit-text-stroke-color: #05af10;
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepicbtn_pyq .sharepicicon {
  background-color: #fa5452;
  -webkit-text-stroke-color: #fa5452;
}
#subplate_sharepic .subplate_box .sharepicbtnbox .sharepictitle {
  font-weight: bold;
}

/** 微信分享提醒 商品详情页 **/
#subplate_wxsharetips {
  z-index: 10;
  cursor: pointer;
}
#subplate_wxsharetips .img_wxsharetips {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/sharetips.png);
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}












/*内容部分*/
#bikeview_main {
  width: 100%;
  padding: 0;
  margin-top: 50px;
}
.bike_view_video {
  background-color: #f8f8f8;
  width: 100%;
  padding: 30px 0;
  font-size: 0;
}
.bike_view_video .video_wrap .video_wrap_shipin {
  width: 65%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
}
.bike_view_video .video_wrap .video_wrap_shipin:before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 60%;
}

.bike_view_video .video_wrap .video_wrap_shipin video,
.bike_view_video .video_wrap .video_wrap_shipin iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: initial;
  z-index: 1;
  display: none;
}

.bike_view_video .video_wrap .video_wrap_shipin .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.bike_view_video .video_wrap .video_wrap_shipin .image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bike_view_video .video_wrap .video_wrap_shipin .image:hover:before {
  background-color: rgba(0,0,0,.8);
}
.bike_view_video .video_wrap .video_wrap_shipin .image:after {
  content: "\e039";
  font-family: 'Material Icons';
  position: absolute;
  font-size: 100px;
  color: #f47e00;
  left: 50%;
  top: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, .9);
  border-radius: 100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bike_view_video .video_wrap .video_wrap_shipin .image:hover:after {
  background-color: #fff;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.bike_view_video .video_wrap .video_wrap_shipin .btn_justplay {
  display: block;
}

.bike_view_video .video_wrap .video_wrap_text {
  width: 33%;
  display: inline-block;
  margin-left: 2%;
}
.bike_view_video .video_wrap .video_wrap_text .title {
  color: #333;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: bold;
}
.bike_view_video .video_wrap .video_wrap_text .text {
  color: #999;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 1000px) {
  .bike_view_video .video_wrap .video_wrap_shipin {
    width: 100%;
    margin-bottom: 20px;
  }
  .bike_view_video .video_wrap .video_wrap_shipin video,
  .bike_view_video .video_wrap .video_wrap_shipin iframe {
    width: 100%;
  }
  .bike_view_video .video_wrap .video_wrap_text {
    width: 100%;
    margin-left:0;
  }
  .bike_view_video .video_wrap .video_wrap_text .title {
    font-size: 28px;
  }

}
@media (max-width: 800px) {
  .bike_view_video .video_wrap .video_wrap_shipin video {
    display: none;
  }
  .bike_view_video .video_wrap .video_wrap_shipin .image {
    display: block;
  }
  .bike_view_video .video_wrap .video_wrap_shipin .btn_justplay {
    display: none;
  }
  .bike_view_video .video_wrap .video_wrap_shipin .image:after {
    font-size: 60px;
    margin-top: -30px;
    margin-left: -30px;
    width: 60px;
    height: 60px;
  }
  .bike_view_video .video_wrap .video_wrap_text .title {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .bike_view_video .video_wrap .video_wrap_text .title {
    font-size: 20px;
  }
}


.bike_view_imagetext {
  background-color: #fff;
  width: 100%;
  padding: 40px 0;
}
.imagetext_wrap {
  color: #666;
  font-size: 14px;
  line-height: 24px;
}
.imagetext_wrap img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.imagetext_box {
  /*font-size: 0;*/
  position: relative;
  color: #666;
  line-height: 24px;
}
.imagetext_box:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: -webkit-linear-gradient(top, #0000, #fff);
  background-image: -o-linear-gradient(top, #0000, #fff);
  background-image: -moz-linear-gradient(top, #0000, #fff);
  background-image: linear-gradient(top, #0000, #fff);
  background-image: -webkit-linear-gradient(to bottom, #0000, #fff);
  background-image: -o-linear-gradient(to bottom, #0000, #fff);
  background-image: -moz-linear-gradient(to bottom, #0000, #fff);
  background-image: linear-gradient(to bottom, #0000, #fff);

  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.fold .imagetext_box:after {
  display: block;
}
.imagetext_text {
  margin-bottom: 20px;
}

.fold .imagetext_box {
  height: 600px;
  overflow: hidden;
}


#bikeview_main .title_big {
  font-weight: bold;
  font-size: 30px;
  color: #333;
  text-align: left;
  margin-bottom: 20px;
}
#bikeview_main .title_big.font_color {
  color: #fff;
}
#bikeview_main .title_big span {
  color: #979797;
  font-size: 20px;
  padding-left: 10px;
}
#bikeview_main .index_featurelist {
  margin-top: 0;
}
#bikeview_main .btn_spreadmore {
  display: none;
  width: 150px;
  height: 40px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 40px;
}
#bikeview_main .fold .btn_spreadmore {
  display: block;
}
@media (max-width: 1000px) {
  #bikeview_main .title_big {
    font-size: 26px;
  }
  #bikeview_main .title_big span {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  #bikeview_main .title_big {
    font-size: 22px;
  }
  #bikeview_main .title_big span {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  #bikeview_main .title_big {
    font-size: 18px;
  }
  #bikeview_main .title_big span {
    font-size: 14px;
  }
}
/*规格*/
.bike_view_specs {
  width: 100%;
  background-color: #f8f8f8;
  padding: 30px 0;
}
.specs_wrap {
  position: relative;
}
.specs_wrap .specs_text {
  color: #999;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: left;
}
.specs_box_table {
  font-size: 0;

}
.specs_box {
  position: relative;
}
.specs_box:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: -webkit-linear-gradient(top, #0000, #f8f8f8);
  background-image: linear-gradient(to bottom, #0000, #f8f8f8);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.fold .specs_box:after {
  display: block;
}
.specs_box_table table {
  width: 48%;
  display: inline-table;
  margin-bottom: 20px;
}
.specs_box_table table:nth-child(odd) {
  margin-right: 4%;
}
.specs_box_table th {
  text-align: left;
  font-size: 20px;
  color: #666;
  border-bottom: 2px solid #ededed;
  padding: 5px;
  font-weight: normal;
  background-color: #f4f4f4;
}
.specs_box_table td {
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #ededed;
  padding: 10px;
}
.specs_box_table td:nth-child(odd) {
  color: #333;
  width: 15%;
}
.specs_box_table td:nth-child(even) {
  color: #999;
  width: 85%;
  white-space: pre-line;
}

.fold .specs_box_table {
  height: 400px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .specs_box_table table {
    width: 100%;
    margin-bottom: 20px;
  }
  .specs_box_table table {
    margin-right: 0;
  }
}
@media (max-width: 800px) {
  .specs_box_table td:nth-child(odd) {
    width: 20%;
  }
  .specs_box_table td:nth-child(even) {
    width: 80%;
    white-space: pre-line;
  }
}


/*领先技术*/
#bikeview_main .bike_view_technology {
  padding: 30px 0;
  background-color: #333;
}
#bikeview_main .list_technology {
  padding-top: 20px;
  font-size: 0;
}
#bikeview_main .list_technology .item_technology {
  font-size: 12px;
  display: inline-block;
  width: 25%;
  padding: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#bikeview_main .list_technology .item_technology_box {
  position: relative;
  height: 350px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#bikeview_main .item_technology .cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 210px;
  width: 100%;
  display: block;
  border-radius: 10px 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#bikeview_main .item_technology:hover .cover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#bikeview_main .item_technology .title_wrap {
  text-align: center;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: #fff;
  min-height: 140px;
  border-radius: 0 0 10px 10px;
}
#bikeview_main .item_technology .title_wrap .titleimg {
  background-size: contain;
  width: 100%;
  padding-top: 20%;
}
#bikeview_main .item_technology .title_wrap .title {
  padding-top: 10px;
}
@media (max-width: 1200px) {
  #bikeview_main .list_technology .item_technology {
    padding: 5px;
  }
}
@media (max-width: 900px) {
  #bikeview_main .list_technology .item_technology_box {
    height: 320px;
  }
  #bikeview_main .list_technology .item_technology {
    width: 50%;
  }
}
@media (max-width: 500px) {
  #bikeview_main .list_technology .item_technology {
    width: 100%;
  }
}

/*车架几何*/
.bike_view_framegeometry {
  padding: 30px 0;
  background-color: #fff;
}
.framegeometry_box img {
  max-width: 100%;
  height: auto;
  margin: 10px auto;
  display: block;
}
.framegeometry_box .table {
  width: 100%;
  display: inline-table;
  margin-bottom: 20px;
}
.framegeometry_box .table th {
  text-align: center;
  font-size: 16px;
  color: #999;
  border-top: 2px solid #eee;
  padding: 10px;
  font-weight: bold;
  background-color: #f8f8f8;
}
.framegeometry_box .table td {
  text-align: center;
  font-size: 16px;
  border-top: 1px solid #ededed;
  padding: 10px;
  color: #999;
}
.framegeometry_box .table td.first_color {
  color: #0a6bba;
  font-weight: bold;
}
.framegeometry_box .table td.second_color {
  color: #333;
  font-weight: bold;
  text-align: left;
}

@media (max-width: 800px) {
  .framegeometry_box .table th,
  .framegeometry_box .table td  {
     font-size: 14px;
  }
}
@media (max-width: 500px) {
  .framegeometry_box .table th,
  .framegeometry_box .table td  {
     font-size: 12px;
  }
}




/*相关装备*/
.bike_view_relatedgear {
  padding: 30px 0;
  background-color: #f8f8f8;
}
.bike_view_relatedgear .item_gear_box {
  background-color: #fff;
}
.bike_view_relatedgear .item_gear_box .title_wrap {
  height: 90px;
}
.bike_view_relatedgear .item_gear_box .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bike_view_relatedgear .item_gear_box .subtitle {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 600px) {
  .bike_view_relatedgear .list_gear {
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .bike_view_relatedgear .item_gear {
    width: 60%;
  }
  .bike_view_relatedgear .item_gear_box .title_wrap {
    height: 80px;
  }
  .bike_view_relatedgear .item_gear .title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    white-space: initial;
    color: #333;
  }
}

/*同系列*/
.bike_view_series {
  padding: 30px 0;
  background-color: #fff;
}
.bike_view_series .item_bike {
  width: 25%;
}
@media (max-width: 800px) {
  .bike_view_series .item_bike {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .bike_view_series .list_bike {
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .bike_view_series .item_bike {
    width: 70%;
  }
}


/*相关报道*/
.bike_view_news {
  padding: 30px 0;
  background-color: #f8f8f8;
}






/*配件*/
#gearview_main {
  width: 100%;
  padding: 0;
  margin-top: 50px;
}
#gearview_main .title_big {
  font-weight: bold;
  font-size: 30px;
  color: #333;
  text-align: left;
  margin-bottom: 20px;
}
#gearview_main .title_big span {
  color: #979797;
  font-size: 20px;
  padding-left: 10px;
}
#gearview_main .bike_view_relatedgear {
  background-color: #fff;
}


#gearview_main_top .main_top_details .bikeview_wrap .cover_wrap {
  width: 40%;
}
#gearview_main_top .bikeview_wrap .cover_wrap .cover {
  display: block;
  padding-top: 100%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#gearview_main_top .bikeview_wrap .cover_wrap .cover_small li {
  width: 80px;
  height: 80px;
}
#gearview_main_top .bikeview_wrap .title_wrap .title_box .text dd{
  margin-left: 0;
}
#gearview_main_top .bikeview_wrap .title_wrap {
  position: absolute;
  top: 0;
  width: 60%;
  bottom: 0;
  right: 0;
}
#gearview_main_top .cover {
  position: relative;
}
#gearview_main_top .cover .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#gearview_main_top .cover .swiper-container .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#gearview_main_top .cover .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  opacity: 0;
}
#gearview_main .btn_spreadmore {
  display: none;
  width: 150px;
  height: 40px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 40px;
}
#gearview_main .fold .btn_spreadmore {
  display: block;
}

@media (max-width: 1000px) {
  #gearview_main_top .main_top_details .bikeview_wrap .cover_wrap {
    width: 50%;
  }
  #gearview_main_top .bikeview_wrap .title_wrap {
    width: 50%;
  }
  .main_top_details .nav_wrap {
    display: none;
  }
}
@media (max-width: 600px) {
  #gearview_main_top .main_top_details .bikeview_wrap .cover_wrap {
    width: 100%;
  }
  #gearview_main_top .bikeview_wrap .title_wrap {
    width: 100%;
    position: initial;
  }
  .bikeview_wrap .cover_wrap .cover_small {
    padding-bottom: 0;
    padding-top: 10px;
  }
}



/*** QA页面 开始 ***/

.faqlist_tabnav_wrap {
  padding: 30px 0;
  border-bottom: 3px solid #ccc;
}
.faqlist_tabnav_wrap .tab_nav {
  margin-left: -5px;
  margin-right: -5px;
  background-color: transparent;
  box-shadow: none;
  display: block;
  font-size: 0;
}
.faqlist_tabnav_wrap .tab_nav .item {
  display: inline-block;
  padding: 0 20px;
}
.item_faq {
  padding: 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  color: #666;
}
.item_faq:last-of-type {
  border-bottom: none;
}
.item_faq .title {
  color: #008DFF;
  padding: 10px 0;
  position: relative;
  font-weight: bold;
  cursor: pointer;
}
.item_faq .title:before {
  content: "";
  display: block;
  width: 4px;
  background-color: #008DFF;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -20px;
}
.faqlist_contact {
  padding: 20px 0;
}
.faqlist_contact .btn {
  padding: 0 20px;
  line-height: 35px;
  height: 35px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.faqlist_contact * {
  margin-right: 10px;
}

@media (max-width: 800px) {
  .faqlist_tabnav_wrap {
    padding: 0;
    margin-bottom: 10px;
  }
  .item_faq {
    padding: 0 20px;
  }
  .item_faq .text {
    display: none;
  }
}
/*** QA页面 结束 ***/

/**** QA详情页 开始 ****/

.faqhelp_link {
  padding: 20px;
  border: 1px solid #e8e8e8;
}
.faqhelp_link_title {
  color: #008DFF;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.faqhelp_link .item_faqhelplink {
  display: block;
  padding: 8px 0px 8px 20px;
  position: relative;
}
.faqhelp_link .item_faqhelplink:before {
  content: "";
  top: 50%;
  width: 4px;
  height: 4px;
  background-color: #008DFF;
  position: absolute;
  left: 0;
  margin-top: -2px;
}

.video_wrap {
  display: flex;
  justify-content: center;
}

.richtext .ql-align-left{
  text-align:left
}
.richtext .ql-align-center{
  text-align:center
}
.richtext .ql-align-right{
  text-align:right
}
.richtext .ql-align-justify{
  text-align: justify;
}
/*yxj 颜色图增加tooltip显示 2024.08.29*/
.color_warp{
  position: relative;
  display: inline-block;
}
.color_warp .tooltip {
  display: none;
  position: absolute;
  left: 6px;
  top: 35px;
  background: #303133;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1000;
  font-size: 14px;
  min-width: 80px;
  text-align: center;
}
.color_warp .tooltip::before {
  content: "";
  position: absolute;
  top: -6px; /* 根据需要调整这个值来定位三角形 */
  left: 0; /* 将三角形居中对齐 */
  width: 0;
  height: 0;
  border-left: 8px solid transparent; /* 左边框透明 */
  border-right: 8px solid transparent; /* 右边框透明 */
  border-bottom: 8px solid #303133; /* 底部边框为白色，形成三角形 */
  z-index: 1001; /* 确保三角形在 tooltip 之上 */
}
@media (max-width: 500px){
  .color_warp .tooltip{
    font-size: 12px;
    min-width: 60px;
    top: 24px;
  }
  .color_warp .tooltip::before{
    top: -4px; /* 根据需要调整这个值来定位三角形 */
    border-left: 5px solid transparent; /* 左边框透明 */
    border-right: 5px solid transparent; /* 右边框透明 */
    border-bottom: 5px solid #303133; /* 底部边框为白色，形成三角形 */
  }
}
/* 鼠标悬停时的样式 */
.image:hover + .tooltip {
  display: block;
}
.bikeview_wrap .cover_wrap .modelcolor .item_modelcolor{
  margin-right: 10px;
}
.bikefinder_wrap .item_bike .modelcolor,#search_main .item_bike .modelcolor{
  z-index: 10;
}
.bikefinder_wrap .item_bike .modelcolor{
  top:-15px;
}




