:root {
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: "microsoft yahei", Helvetica, simhei, simsun, sans-serif;
  --bs-body-font-size: 14px;
  --bs-body-font-weight: 400;
  --bs-body-color: black;
  --bs-body-text-align: left;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input,
optgroup,
select,
textarea {
  font-family: var(--bs-body-font-family);
}

.border-bottom-line {
  border-bottom: 1px solid #BFBFBF;
  margin: 10px 0 20px;
}

a {
  color: #4472C4;
  cursor: pointer;
}

a:hover {
  color: #4472C4;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}


.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.row>* {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 10px;
  padding-left: 10px
}

.scrollbar-box {
  scrollbar-width: thin;
  /* -ms-overflow-style: none; */
  scrollbar-base-color: #f2f2f2;
  scrollbar-track-color: #ccc;
  scrollbar-arrow-color: #ccc;
}

.scrollbar-box::-webkit-scrollbar {
  width: 10px;
}

.scrollbar-box::-webkit-scrollbar {
  width: 10px;
}

.scrollbar-box::-webkit-scrollbar-thumb {
  /* 滑块颜色 */
  background: #ccc;

  /* 滑块圆角 */
  border-radius: 5px;
}

.scrollbar-box::-webkit-scrollbar-thumb:hover {
  /* 鼠标移入滑块变红 */
  background: #ccc;
}

.scrollbar-box::-webkit-scrollbar-track {
  /* 轨道圆角 */
  border-radius: 10px;
  /* 轨道颜色 */
  background-color: #f2f2f2;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.container {
  width: 100%;
}

.hover-underline:hover {
  text-decoration: underline #4472C4 !important;
}

.common-title {
  font-size: 16px;
  font-weight: 600;
  color: #548235;
  border-bottom: 1px solid #548235;
  padding: 6px 5px;
}

.emilBox {
  background-color: #FCEDD6;
  text-align: center;
  margin: 15px 0;
  padding: 15px;
}

.emilBox .emilAddress {
  border: 1px solid #D0CECE;
  width: 480px;
  height: 28px;
  padding: 5px;
  font-size: 12px;
  outline: 0;
}

.emilBox .signBtn {
  background: #fff;
  height: 30px;
  border: 1px solid #808080;
  padding: 0 8px;
  margin-left: 20px;
  ;
}

@media (max-width: 576px) {
  .container {
    margin: auto;
    width: 100%;
  }

  .padding0 {
    padding: 0;
  }

  .margin0 {
    margin: 0;
  }

  .brandList .item {
    width: 50%;
  }
}

@media (min-width: 576px) {
  .container {
    margin: auto;
    max-width: 540px;
  }

  .brandList .item {
    width: 33.3333%;
  }
}

@media (min-width: 768px) {
  .container {
    margin: auto;
    max-width: 720px;
  }

  .brandList .item {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .container {
    margin: auto;
    max-width: 960px;
  }

  .p70 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 70%;
  }

  .p40 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 40%;
  }

  .p30 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 30%;
  }
}

@media (min-width: 1200px) {
  .container {
    margin: auto;
    max-width: 1140px;
  }

  .brandList .item {
    width: 20%;
  }
}

@media (min-width: 1400px) {
  .container {
    margin: auto;
    max-width: 1320px;
  }
}

.flex {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
}

.flex1 {
  -webkit-box-flex: 1;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  -moz-box-flex: 1;
  /* 老版本语法: Firefox (buggy) */
  -webkit-flex: 1;
  /* 新版本语法: Chrome 21+ */
  -ms-flex: 1;
  /* 混合版本语法: IE 10 */
  flex: 1;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
}

.col-5 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66667%;
}

.col-7 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333%;
}


.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}


.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}


.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
  -moz-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
  -moz-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -moz-justify-content: center !important;
  -ms-flex-pack: center !important;
  -ms-justify-content: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -webkit-box-pack: distribute !important;
  -webkit-justify-content: space-around !important;
  -moz-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  -ms-justify-content: space-around !important;
  justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -moz-align-items: center !important;
  -ms-align-items: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}


/* top.html */
.site-nav {
  position: relative;
  width: 100%;
  padding: 10px 0;
}


.site-nav .site-header {
  border-bottom: 2px solid #548235;
  padding: 5px;
}

.site-nav .site-header .title {
  color: #548235;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 0;
}

.site-nav .site-header input[type='text'] {
  width: calc(100% - 40px);
  height: 28px;
  border: 1px solid #C5E0B4;
  padding: 5px;
  font-size: 12px;
  outline: 0;
}

.site-nav .site-header img {
  width: 28px;
  height: 28px;
  border: 1px solid #C5E0B4;
  padding: 4.5px 5px;
  vertical-align: middle;
  cursor: pointer;
}

.site-nav .site-header img:hover {
  background-color: #f0f8ff;
}

.site-nav .site-menu {
  margin-bottom: 0;
  padding-left: 0;
}

.site-nav .site-menu>li {
  padding: 10px;
  font-size: 14px;
  display: inline-block;
}

.site-nav .site-search {
  background-color: #E2EFDA;
  padding: 10px 0;
}

.site-nav .site-search>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-nav .site-search .VinNumber {
  height: 28px;
  border: 1px solid #C5E0B4;
  padding: 5px;
  font-size: 12px;
  width: calc(50% - 28px);
  outline: 0;
}

.site-nav .site-search img {
  cursor: pointer;
}

.site-nav .site-navigation {
  font-size: 16px;
  font-weight: bolder;
  color: #808080;
  padding: 10px 0;
  border-bottom: 1px solid #BFBFBF;
  margin-bottom: 10px;
}

/* 下拉菜单 */
.select-box {
  border: 1px solid #0dcaf0;
  position: relative;
  display: inline-block;
  padding: 0 10px;
  height: 30px;
  font-size: 0;
  z-index: 1
}

.select-box:hover {
  z-index: 2;
}

.select-box input {
  border: 0;
  outline: 0;
  height: 100%;
  width: calc(100% - 20px);
  font-size: 14px;
}

.select-box .fa {
  width: 20px;
  height: 100%;
  font-size: 14px;
}

.select-box ul {
  position: absolute;
  left: -1px;
  top: 28px;
  border: 1px solid #808080;
  min-width: calc(100% + 2px);
  display: none;
  background-color: #fff;
}

.select-box ul li {
  padding: 0 10px;
  height: 26px;
  font-size: 14px;
  color: #808080;
  line-height: 26px;
}

.select-box ul li:hover {
  background-color: #e9ecef;
}

.select-box:hover ul {
  display: block;
}


.fusion-footer,
.fusion-header-wrapper {
  display: none;
}

#main {
  padding: 0 !important;
}

/* 咨询专家*/
.specialists-item {
  margin-top: 10px;
  padding: 5px;
}

.specialists-item .left {
  width: 80px;
  padding-right: 10px;
}

.specialists-item .right {
  width: calc(100% - 80px);
}

.specialists-item .name,
.specialists-item .desc {
  width: calc(100% - 80px);
  text-align: right;
  padding-right: 10px;
}

.specialists-item .name {
  font-size: 14px;
  line-height: 20px;
  color: #808080;
}

.specialists-item .fuhao {
  width: 80px;
  text-align: right;
}

.specialists-item .fuhao .add {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.specialists-item .fuhao .add:before,
.specialists-item .fuhao .add:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: #CD1727;
}

.specialists-item .fuhao .add:before {
  width: 2px;
  height: 16px;
  left: 7px;
  top: 0;
}

.specialists-item .fuhao .add:after {
  height: 2px;
  width: 16px;
  left: 0;
  top: 7px;
}

.specialists-item .fuhao .blue {
  border: 0;
  height: 16px;
  border-left: 8px solid #00257F;
  display: inline-block;
}

.specialists-item .fuhao .red {
  border: 0;
  height: 16px;
  border-left: 8px solid #F3172F;
  display: inline-block;
}

.specialists-item .center .desc {
  font-size: 14px;
  line-height: 20px;
}

.specialists-item .right .nation {
  font-size: 14px;
  color: #808080;
  width: 80px;
  text-align: right;
}

.specialists-item .active {
  background-color: black;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 4px 0;
}

.specialists-item .leave {
  background-color: #F2F2F2;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 4px 0;
}

/* 首页、品牌目录*/

.video-review .video-review-item {
  width: 50%
}

@media (min-width: 768px) {
  .video-review .video-review-item {
    width: 33.3333%
  }
}

@media (min-width: 1200px) {
  .video-review .video-review-item {
    width: 25%
  }
}

.video-review .video-review-item .type {
  font-size: 11px;
  font-weight: bold;
  color: #808080;
  padding: 0 5px;
}

.video-review .video-review-item .title {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 5px;
}

.video-review .video-review-item .videoImg {
  display: block;
  width: 100%;
}



/* 分页 */
.page_div {
  margin: 20px 10px 20px 0;
  color: #666;
  text-align: right;
}

/* 页数按钮样式 */
.page_div button {
  display: inline-block;
  min-width: 30px;
  height: 28px;
  cursor: pointer;
  color: #666;
  font-size: 13px;
  line-height: 28px;
  background-color: #f9f9f9;
  border: 1px solid #dce0e0;
  text-align: center;
  margin: 0 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#firstPage,
#lastPage,
#nextPage,
#prePage {
  min-width: 50px;
  color: #70ad47;
  border: 1px solid #70ad47;
  padding: 0 4px;
}

#nextPage,
#prePage {
  min-width: 70px;
  padding: 0 4px;
}

.page_div .current {
  background-color: #70ad47;
  border-color: #70ad47;
  color: #FFF
}

/* 页面数量 */
.totalPages {
  margin: 0 10px
}

.totalPages span,
.totalSize span {
  color: #70ad47;
  margin: 0 5px
}

/*button禁用*/
.page_div button:disabled {
  opacity: .5;
  cursor: no-drop
}