@charset "utf-8";

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd {
  margin: 0;
  padding: 0;
  /*font-size: 16px;*/
  font-family: "Microsoft Yahei", sans-serif;
  list-style: none;
  cursor: default;
}

html,
body {
  width: 100%;
  height: 100vh;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: top;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.head_products {
  overflow: unset!important;
}
input,
img {
  margin: 0;
  padding: 0;
  border: 0 none;
  outline-style: none;
  vertical-align: bottom;
}

a,
a:active,
a:visited {
  /*color: #333;*/
  text-decoration: none;
}

i {
  font-style: normal;
}

/*单行文本溢出*/
.inaline {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*多行文本溢出*/
.intwoline {
  display: -webkit-box !important;
  overflow: hidden;

  text-overflow: ellipsis;
  word-break: break-all;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*清楚浮动*/
.clearfix::before,
.clearfix::after {
  content: "";
  height: 0;
  line-height: 0;
  display: block;
  visibility: none;
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/*方正兰亭粗黑简体*/
@font-face {
  font-family: 'FZLTCHJW';
  src: url('../font/FZLTCHJW.TTF') format('truetype');
}

/*方正兰亭特黑简体*/
@font-face {
  font-family: 'FZLTTHJW';
  src: url('../font/FZLTTHJW.TTF') format('truetype');
}

/*方正兰亭中粗黑简体*/
@font-face {
  font-family: 'FZLTZCHJW';
  src: url('../font/FZLTZCHJW.TTF') format('truetype');
}

/*方正兰亭粗黑_GBK*/
@font-face {
  font-family: 'FZLTCHJWGBK';
  src: url('../font/FZLTCHJWGBK.TTF') format('truetype');
}

/*方正兰亭纤黑简体*/
@font-face {
  font-family: 'FZLTXHJW';
  src: url('../font/FZLTXHJW.TTF') format('truetype');
}

/*方正兰亭大黑简体*/
@font-face {
  font-family: 'FZLTDHJW';
  src: url('../font/FZLTDHJW.TTF') format('truetype');
}

/*DIN-Condensed-Bold*/
/*@font-face {*/
/*    font-family: 'DIN-Condensed-Bold';*/
/*    src: url('../font/DIN-Condensed-Bold.ttf') format('truetype');*/
/*}*/
@font-face {
  font-family: 'DIN-Condensed-Bold';
  src: url('../font/BentonSans-ExtraComp-Black.otf') format('OpenType');
}
/*DIN-Alternate-Bold*/
/*@font-face {*/
/*    font-family: 'DIN-Alternate-Bold';*/
/*    src: url('../font/DIN-Alternate-Bold.ttf') format('truetype');*/
/*}*/
@font-face {
  font-family: 'DIN-Alternate-Bold';
  src: url('../font/BentonSans-Cond-Bold.otf') format('OpenType');
}

* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

html {
  width: 100%;
  min-height: 100%;
}

/*方正兰亭粗黑简体*/
.FZLTCHJW {
  font-family: 'FZLTCHJW';
}

/*方正兰亭特黑简体*/
.FZLTTHJW {
  font-family: 'FZLTTHJW';
}

/*方正兰亭中粗黑简体*/
.FZLTZCHJW {
  font-family: 'FZLTZCHJW';
}

/*方正兰亭粗黑_GBK*/
.FZLTCHJWGBK {
  font-family: 'FZLTCHJWGBK';
}

/*方正兰亭纤黑简体*/
.FZLTXHJW {
  font-family: 'FZLTXHJW';
}

/*方正兰亭大黑简体*/
.FZLTDHJW {
  font-family: 'FZLTDHJW';
}

/*DIN-Condensed-Bold*/
.DIN-Condensed-Bold {
  font-family: 'DIN-Condensed-Bold';
}

/*DIN-Alternate-Bold*/
.DIN-Alternate-Bold {
  font-family: 'DIN-Alternate-Bold';
}

body {
  background: #000;
}

.wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  color: #fff;
}

.imgWidth {
  width: 100%;
  height: auto;
  display: block;
}

/*导航开始*/
.cbike-nav {
  width: 100%;
  max-width: 1200px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0);
  font-size: 16px;
  margin: auto;
  right: 0;
  color: #fff;
}

.cbike-nav-list {
  display: flex;
}

.cbike-nav-list>li {
  margin-left: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cbike-nav-list>li>a {
  color: #fff;
  font-size: 16px;
}

.cbike-nav-list>li>a:hover {
  color: #ff6700;
}

.cbike-nav-list>li.cbike-buy>a {
  color: #333;
}

.cbike-nav-list>li.cbike-buy>a:hover {
  color: #ff6700;
}

/*.cbike-nav-list > li.cbike-buy:hover{*/
/*    background: #ff6700;*/
/*}*/
.cbike-buy {
  font-size: 14px;
  color: #333;
  width: 91px;
  height: 34px;
  background: #fff;
  border-radius: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*导航结束*/