@charset "UTF-8";
.navdark, .global-navbar.dark, .global-navbar.notfixed, .global-navbar.sticky, .global-navbar.collapsed {
  color: #313131;
}

.navdark .iconlogo, .global-navbar.dark .iconlogo, .global-navbar.notfixed .iconlogo, .global-navbar.sticky .iconlogo, .global-navbar.collapsed .iconlogo {
  color: #0046aa;
}

.navdark .navbar-left .navbar-toggle .icon-bar, .global-navbar.dark .navbar-left .navbar-toggle .icon-bar, .global-navbar.notfixed .navbar-left .navbar-toggle .icon-bar, .global-navbar.sticky .navbar-left .navbar-toggle .icon-bar, .global-navbar.collapsed .navbar-left .navbar-toggle .icon-bar {
  background-color: #313131;
}

.navdark.shrinked, .shrinked.global-navbar.dark, .shrinked.global-navbar.notfixed, .shrinked.global-navbar.sticky, .shrinked.global-navbar.collapsed {
  background: #fff;
}

html {
  font-size: calc(100vw / 37.5);
}

body {
  font-family: "FZLTZHUNHJW";
}

body.noscroll {
  overflow: hidden;
}

.iconfont {
  vertical-align: middle;
}

.fade-item {
  position: relative;
}

.fade-item .cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.fade-item.fadeIn .cover {
  opacity: 0;
}

.swiper-normal-prev,
.swiper-normal-next {
  position: absolute;
  top: 50%;
  width: 4.4rem;
  height: 4.4rem;
  margin-top: -2.2rem;
  font-size: 2.25rem !important;
  line-height: 4.4rem;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: none;
  opacity: 0.3;
  transition: all 0.3s;
  z-index: 9;
  outline: 0;
}

.swiper-normal-prev:hover,
.swiper-normal-next:hover {
  opacity: 1;
}

.swiper-normal-prev {
  left: 1%;
}

.swiper-normal-next {
  right: 1%;
}

.section .loading {
  position: relative;
}

.section .loading > * {
  opacity: 0;
}

.section .loading::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/imgs/global/imgloading.gif) no-repeat;
  background-size: 100%;
  width: 2rem;
  height: 2rem;
  opacity: 1;
}

.section .tag-list li {
  display: inline-block;
  padding: 0 0.6em;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #9cc4ff;
  border: 1px solid;
  border-radius: 0.75rem;
  margin: 0.4rem;
  margin-left: 0;
}

.section .tag-list li:last-of-type {
  margin-right: 0;
}

.section .card-box {
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.section .card-box .card-content {
  height: 100%;
  background-color: #fff;
  border-radius: 0.4rem 0.4rem 0 0;
  overflow: hidden;
}

.section .card-box .product-item-img {
  background-color: #fff;
}

.section .card-box .product-item-text {
  font-size: 1.2rem;
  padding: 1.35rem 1.35rem;
}

.section .card-box .product-item-text h6 {
  font-size: 1.4rem;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section .card-box .product-item-text p {
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: "FZLTXHJW";
  margin: 0.4rem 0;
}

.section .card-box .product-item-text p.desc {
  height: 3em;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.8rem !important;
  line-height: 1.1;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45em;
  width: 2rem;
  height: 0.2rem;
  margin: 0 auto;
  background-color: #0046aa;
  border-radius: 0.4rem;
  opacity: 0.9;
}

.common-template .section-title {
  margin-top: 5rem;
}

.section-banner,
.common-banner {
  position: relative;
}

.section-banner .banner-text,
.common-banner .banner-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}

.section-banner .banner-text h4,
.common-banner .banner-text h4 {
  margin: 0;
  font-size: 2em;
}

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

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

.flex-align-center {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex-pack-between {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex-pack-around {
  -webkit-box-pack: justify;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.global-select-box div.combo {
  position: relative;
}

.global-select-box div.combo-text {
  padding: 0 1.5em;
  font-size: 1rem;
  line-height: 3.4rem;
  cursor: pointer;
}

.global-select-box div.combo-text .iconfont {
  font-size: 0.75em;
  margin-left: 0.3em;
}

.global-select-box div.combo-options {
  display: none;
  position: absolute;
  top: 3.5rem;
  left: 0;
  min-width: 100%;
  background-color: #fff;
  z-index: 5;
  max-height: 12em;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 0 2px 6px #ccc;
  box-shadow: 0 2px 6px #ccc;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.global-select-box div.combo-options li {
  white-space: nowrap;
  color: #666;
  cursor: pointer;
}

.global-select-box div.combo-options li a.option {
  display: block;
  line-height: 3em;
  padding: 0 1em;
}

.global-select-box div.combo-options li:hover, .global-select-box div.combo-options li.active {
  background-color: #f2f2f2;
}

.global-select-box select {
  padding-right: 1.8rem;
  font-size: 1.2rem;
  border: 0;
  outline: 0;
  background: none;
  /* 清除默认的箭头样式 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.global-select-box .iconarrow-bottom.visible-xs {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  line-height: 1;
}

.navbar-collapse a.header-map-item-title,
.footer-map a.footer-map-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-collapse a.header-map-item-title .iconarrow-bottom,
.footer-map a.footer-map-item-title .iconarrow-bottom {
  font-size: 1rem;
  transition: all 0.3s;
}

.navbar-collapse a.header-map-item-title .iconarrow-right,
.footer-map a.footer-map-item-title .iconarrow-right {
  font-size: 2rem;
  transition: all 0.3s;
}

.navbar-collapse a.header-map-item-title[aria-expanded="true"] .iconarrow-bottom,
.footer-map a.footer-map-item-title[aria-expanded="true"] .iconarrow-bottom {
  transform: rotate(180deg);
}

.navbar-collapse a.header-map-item-title[aria-expanded="true"] .iconarrow-right,
.footer-map a.footer-map-item-title[aria-expanded="true"] .iconarrow-right {
  transform: rotate(90deg);
}

.global-search-input {
  position: relative;
  margin: 2rem 0;
}

.global-search-input input {
  border: none;
  outline: none;
  width: 100%;
  padding: 0 2rem 0 4rem;
  font-family: "FZLTXHJW";
  font-size: 1.2rem;
  line-height: 3.4rem;
  border-radius: 5rem;
  background-color: #f1f2f2;
}

.global-search-input .iconsearch {
  position: absolute;
  top: 50%;
  left: 2rem;
  padding: 0;
  font-size: 1.2rem;
  color: #9d9d9d;
  transform: translateY(-50%);
}

.global-search-input .search-cancel {
  display: none;
  font-size: 1.2rem;
  line-height: 3.4rem;
  color: #9c9e9f;
}

.global-right-nav {
  position: fixed;
  right: 0;
  top: calc(50vh - 9.2rem);
  text-align: center;
  color: #fff;
  z-index: 1003;
  background-color: #236bd3;
  border-radius: 0.8rem 0 0 0.8rem;
  padding: 0.3rem;
  font-size: 0.7rem;
}

.global-right-nav .global-rightnav-content a {
  vertical-align: middle;
}

.global-right-nav .global-rightnav-content .iconfont {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 0.2em;
}

.global-right-nav .global-rightnav-content span {
  display: block;
}

.global-right-nav .global-rightnav-content .btn_backtop {
  height: 0;
  transform: scaleY(0);
}

.global-right-nav .global-rightnav-content .btn_backtop .iconfont {
  font-size: 1.2rem;
}

.global-right-nav .global-rightnav-content .btn_backtop span {
  margin-bottom: 0.8rem;
}

.global-right-nav .global-rightnav-content .btn_backtop.in {
  height: auto;
  transform: scaleY(1);
}

.global-right-nav .global-rightnav-btn-list li {
  margin: 0.8rem 0;
  cursor: pointer;
}

.global-right-nav .opple-home-qrcode-wrapper,
.global-right-nav .opple-service-qrcode-wrapper {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1031;
}

.global-right-nav .opple-home-qrcode-wrapper .qrcode-box,
.global-right-nav .opple-service-qrcode-wrapper .qrcode-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 78%;
  background: #fff;
  padding: 1rem;
  border-radius: 0.45rem;
}

.global-right-nav .opple-home-qrcode-wrapper .qrcode-box .close-qrcode,
.global-right-nav .opple-service-qrcode-wrapper .qrcode-box .close-qrcode {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
  cursor: pointer;
}

.global-right-nav .opple-home-qrcode-wrapper .qrcode-box .close-qrcode .iconclose,
.global-right-nav .opple-service-qrcode-wrapper .qrcode-box .close-qrcode .iconclose {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  color: #666;
  transition: all 0.3s;
}

.global-right-nav .opple-home-qrcode-wrapper .qrcode-box .close-qrcode:hover .iconclose,
.global-right-nav .opple-service-qrcode-wrapper .qrcode-box .close-qrcode:hover .iconclose {
  transform: rotate(90deg);
}

.global-right-nav .opple-home-qrcode-wrapper .qrcode-box .qrcode-pop,
.global-right-nav .opple-service-qrcode-wrapper .qrcode-box .qrcode-pop {
  padding-top: 2rem;
}

.global-right-nav .opple-home-qrcode-wrapper .qrcode-box .qrcode-pop .img-qrcode,
.global-right-nav .opple-service-qrcode-wrapper .qrcode-box .qrcode-pop .img-qrcode {
  display: block;
  width: 70%;
  margin: auto;
}

.global-right-nav .opple-home-qrcode-wrapper .qrcode-box .qrcode-pop p,
.global-right-nav .opple-service-qrcode-wrapper .qrcode-box .qrcode-pop p {
  margin: 1rem 0 2rem;
  text-align: center;
  font-size: 1rem;
}

.global-footer {
  position: relative;
  padding: 0 1.5rem;
  color: #000;
  background-color: #fff;
}

.global-footer .footer-map {
  width: 100%;
}

.global-footer .footer-map a.footer-map-item-title {
  padding: 1.8rem 0;
  font-size: 1.6rem;
  line-height: 1.5;
  border-bottom: 1px solid #dfe0e6;
}

.global-footer .footer-map .footer-map-items {
  font-family: "FZLTXHJW";
}

.global-footer .footer-map .footer-map-items li {
  margin: 1.8rem 0;
  font-size: 1.2rem;
}

.global-footer .footer-copyright {
  display: block;
  padding: 1.5rem 0;
  text-align: center;
  clear: both;
  font-size: 1.2rem;
  color: #999;
}

.global-footer .footer-copyright a {
  font-family: "FZLTXHJW";
}

.global-footer .footer-copyright .footer-links {
  margin-top: 0.6rem;
}

.global-footer .footer-copyright .footer-links > a:nth-of-type(2) {
  margin: 0.5rem;
}

.global-footer .footer-copyright .footer-links .beian1 {
  width: 1.2rem;
}

.global-footer .footer-copyright .footer-links .beian2 {
  width: 1rem;
}

.global-honour .section-content {
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: inline-block;
}

.global-honour .nav-sidebar ul {
  overflow: auto;
}

.global-honour .nav-sidebar ul li {
  font-family: "FZLTXHJW";
  text-align: center;
  margin: 1rem 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s ease-out;
  color: #999;
  background: #f2f2f2;
  font-size: 1.2rem;
}

.global-honour .nav-sidebar ul li.active {
  background: #eaf1fa;
  color: #0063f5;
}

.global-honour #swiper-bg {
  height: 100%;
}

.global-honour #swiper-bg .swiper-wrapper {
  width: 100% !important;
  height: 100% !important;
}

.global-honour #swiper-bg .swiper-slide {
  font-size: 5rem;
  color: #373737;
  opacity: 0.2;
  padding-left: 5rem;
  position: relative;
  background: #fff;
  padding: 0.4rem;
}

.global-honour #swiper-bg .swiper-slide span.top {
  display: block;
  position: absolute;
  top: 0;
  color: #8e8e8e;
}

.global-honour #swiper-bg .swiper-slide span.bottom {
  position: absolute;
  display: block;
  bottom: 0;
}

.global-honour #swiper-bg .swiper-slide.swiper-slide-active span.top {
  top: -3rem;
}

.global-honour #swiper-bg .swiper-slide.swiper-slide-active span.bottom {
  bottom: -3rem;
}

.global-honour .swiper-container {
  width: 100%;
  height: auto;
}

.global-honour #swiper-box {
  width: 100%;
  margin: 2rem 0 2rem 0;
  padding-left: 0;
}

.global-honour #swiper-box .swiper-slide {
  width: 100%;
  color: #000;
  background: #fff;
  padding: 2rem 0;
}

.global-honour #swiper-box .swiper-slide .slide-inner {
  padding: 0 2rem;
  overflow: hidden;
}

.global-honour #swiper-box .swiper-slide h4 {
  font-size: 2.4rem;
  color: #373737;
  margin: 0rem 0 1.5rem 0;
  font-weight: normal;
  font-family: "FZLTZCHJW";
  position: relative;
  top: 10rem;
  opacity: 0;
  transition: all 0.5s ease;
}

.global-honour #swiper-box .swiper-slide .content {
  overflow: hidden;
  padding-bottom: 4rem;
  position: relative;
  top: 10rem;
  opacity: 0;
  transition: all 0.5s ease 0.3s;
}

.global-honour #swiper-box .swiper-slide .content p {
  font-size: 1.2rem;
  color: #5d5d5d;
  font-family: "FZLTXHJW";
}

.global-honour #swiper-box .swiper-slide .content .w80 {
  width: 80%;
}

.global-honour #swiper-box .swiper-slide .content .img {
  margin: 0.5rem 0;
}

.global-honour #swiper-box .swiper-slide .content .pic {
  margin-top: 2rem;
}

.global-honour #swiper-box .swiper-slide .content .pic .img {
  display: inline-block;
  width: 49%;
  vertical-align: middle;
  text-align: center;
}

.global-honour #swiper-box .swiper-slide .content .pic .img img {
  height: 6rem;
  width: auto;
  display: block;
  margin: auto;
}

.global-honour #swiper-box .swiper-slide .content .pic .img span {
  font-family: "FZLTXHJW";
  color: #5d5d5d;
  font-size: 1rem;
  display: inline-block;
  height: 4rem;
  width: 80%;
  margin-top: 1rem;
}

.global-honour #swiper-box .swiper-slide .toggle-more {
  color: #0046aa;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  margin-left: 2rem;
  position: absolute;
  bottom: 0rem;
}

.global-honour #swiper-box .swiper-slide .toggle-more i {
  font-size: 0.8rem;
  display: inline-block;
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.global-honour #swiper-box .swiper-slide .toggle-more.show i {
  transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.global-honour #swiper-box .swiper-slide.swiper-slide-active h4,
.global-honour #swiper-box .swiper-slide.swiper-slide-active .content {
  top: 0;
  opacity: 1;
}

.global-honour .padding-box {
  width: 94.79%;
  padding-right: 0;
  margin: auto;
  position: relative;
}

/*btn-primary css*/
.btn-primary {
  background-color: #0046aa;
  border: 1px solid transparent;
  color: #fff !important;
}

.btn-primary.focus, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background-color: #043985;
  border: 1px solid transparent;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #043985;
  border: 1px solid transparent;
}

.dealer-map .anchorBL.BMap_cpyCtrl {
  display: none;
}

.dealer-map .map-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.8rem;
  margin-bottom: 1rem;
}

.dealer-map .map-control .map-input {
  position: relative;
  margin-right: 2.5rem;
  padding-right: 1.2rem;
}

.dealer-map .map-control .map-input.loading button {
  pointer-events: none;
}

.dealer-map .map-control .map-input.loading::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  background: url(/assets/imgs/global/imgloading.gif) no-repeat;
  background-size: 100%;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
}

.dealer-map .map-control .map-input select {
  font-size: 1.2rem;
  border: 0;
  outline: 0;
  /* 清除默认的箭头样式 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  max-width: 5em;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}

.dealer-map .map-control .map-input .iconarrow-bottom {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  line-height: 1;
}

.dealer-map .map-control .map-input-search {
  position: relative;
  width: 22rem;
  float: right;
}

.dealer-map .map-control .map-input-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background-color: #f1f2f2;
  border-radius: 2.4rem;
  font-size: 1.2rem;
  line-height: 2.8;
  padding: 0 2.5em 0 1em;
}

.dealer-map .map-control .map-input-search input::placeholder {
  color: #999;
}

.dealer-map .map-control .map-btn-search {
  position: absolute;
  right: 0.8rem;
  padding: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.dealer-map .map-control .map-btn-search .iconsearch {
  font-size: 1.2rem;
  color: #9c9e9f;
}

.dealer-map .map-col {
  height: 23.8rem;
  background-color: #9c9e9f;
}

.dealer-map .map-col .map-container {
  height: 100%;
}

.dealer-map .map-col .BMap_bubble_content {
  font-size: 0.9rem;
}

.dealer-map .map-content {
  padding: 1.8rem;
  position: relative;
}

.dealer-map .map-content.loading::after {
  width: 3rem;
  height: 3rem;
}

.dealer-map .map-content p.noData {
  font-size: 1.2rem;
}

.dealer-map .map-content li {
  position: relative;
  font-size: 1.2rem;
  padding-bottom: 1.5rem;
  cursor: pointer;
}

.dealer-map .map-content li h4 {
  font-family: "FZLTXHJW";
  font-weight: bold;
  font-size: 1em;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 0.2em;
  color: #373737;
}

.dealer-map .map-content li .map-dealer-item-infos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dealer-map .map-content li .map-dealer-item-left {
  color: #9c9e9f;
  line-height: 1.9rem;
  flex: 1;
}

.dealer-map .map-content li .map-dealer-item-left p {
  font-family: "FZLTXHJW";
}

.dealer-map .map-content li .map-dealer-item-left .iconfont {
  display: inline-block;
  width: 1.6em;
  font-size: 1.08rem;
  line-height: 1.9rem;
}

.dealer-map .map-content li .map-dealer-channel {
  color: #0046aa;
  margin-bottom: 0.2rem;
}

.dealer-map .map-content li .map-dealer-channel span {
  display: inline-block;
  border: 1px solid;
  border-radius: 1rem;
  padding: 0 0.5em;
  margin-right: 0.5em;
}

.dealer-map .map-content li .map-dealer-distance {
  height: 2em;
  opacity: 1;
}

.dealer-map .map-content li .map-dealer-consult {
  display: inline-block;
  color: #125af4;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

.dealer-map .map-content li .map-dealer-consult i {
  font-size: 0.9rem;
  margin-right: 0.133333rem;
  vertical-align: baseline;
}

.dealer-map .map-content li .map-dealer-navigate {
  color: #0046aa;
  text-align: center;
  cursor: pointer;
}

.dealer-map .map-content li .map-dealer-navigate .iconnavigation {
  position: relative;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1.8rem;
  line-height: 1.8rem;
  border: 0.05rem solid #0046aa;
  border-radius: 50%;
}

.dealer-map .map-content li .map-dealer-navigate .iconnavigation::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dealer-map .map-content li .map-dealer-navigate .navigate-text::after {
  content: "到这去";
}

.dealer-map .map-content .map-dealer-more {
  display: block;
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.dealer-map .map-content .map-dealer-more .iconmore {
  font-size: 1.2rem;
  margin-left: 0.6em;
  vertical-align: text-top;
}

.global-footer-tools {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #f8f9f9;
}

.global-footer-tools ul {
  width: 94.79%;
  margin: auto;
}

.global-footer-tools ul li {
  padding: 2rem;
  display: inline-block;
  color: #373737;
  font-size: 1.5rem;
  text-align: center;
}

.global-footer-tools ul li > a::before {
  content: "";
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.global-footer-tools ul li .icon-border {
  display: inline-block;
  border: 0.1rem solid #3160b5;
  width: 3.8rem;
  height: 3.8rem;
  line-height: 3.8rem;
  border-radius: 50%;
}

.global-footer-tools ul li .icon-border i {
  color: #3160b5;
  font-size: 1.8rem;
}

.global-footer-tools ul li .icon-kf {
  width: 3.75rem;
}

.global-footer-tools ul li span {
  margin-left: 1rem;
  font-family: "FZLTXHJW";
}

.banner {
  position: relative;
}

.banner .icon-mouse {
  display: none;
}

.global-footer-service {
  font-size: 1rem;
}

.global-footer-service .container {
  margin-top: 3.7rem;
}

.global-footer-service .container .row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.global-footer-service .service-item-text {
  padding: 3.5rem 1.7rem;
  min-height: 10rem;
}

.global-footer-service .service-item-text h6 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.global-footer-service .service-item-text p {
  font-size: 1.2rem;
  font-family: "FZLTXHJW";
}

.radio-row .radiobox {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-row .radiobox .iconchecked {
  opacity: 0;
  color: #0063f5;
  font-size: 1.6rem;
  transition: all 0.1s;
}

.radio-row.checked {
  color: #0063f5;
  background-color: rgba(160, 199, 255, 0.16);
}

.radio-row.checked .radiobox {
  border: 0;
}

.radio-row.checked .radiobox .iconchecked {
  opacity: 1;
}

#advice-swiper .tag-list {
  min-height: 6.9rem;
}

#advice-swiper .product-item-img {
  height: 10rem;
  position: relative;
  background-color: #fff;
}

#advice-swiper .product-item-img > img {
  width: auto;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1031;
}

.pop .pop-video-box {
  height: 100%;
  width: 100%;
  position: relative;
}

.pop .pop-video-box .video-content {
  position: relative;
  width: 90%;
  height: 21rem;
  text-align: center;
  margin: 0 auto;
  background: #000;
  padding: 2.2rem;
  border-radius: 0.8rem;
  position: static;
  left: auto;
  right: auto;
  top: auto;
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.pop .pop-video-box .video-content .close-btn {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  color: #626262;
  cursor: pointer;
}

.pop .pop-video-box .video-content .close-btn .iconfont {
  font-size: 1.4rem;
}

.pop .pop-pic-box {
  display: table;
  width: 100%;
  height: 100%;
}

.pop .pop-pic-box .pic-full {
  display: table-cell;
  vertical-align: middle;
}

.pop .pop-pic-box .pic-full .pic-content {
  position: relative;
  text-align: center;
  margin: 0 auto;
  background: #000;
  padding: 2rem;
  border-radius: 0.8rem;
  margin: 0 auto;
  width: 35rem;
}

.pop .pop-pic-box .pic-full .pic-content #Pic {
  width: 100% !important;
  height: 100% !important;
}

.pop .pop-pic-box .pic-full .pic-content #Pic .swiper-wrapper,
.pop .pop-pic-box .pic-full .pic-content #Pic .swiper-slide {
  width: 100% !important;
  height: 100% !important;
}

.pop .pop-pic-box .pic-full .pic-content #Pic .swiper-slide > .pic {
  width: auto;
  height: 20rem;
}

.pop .pop-pic-box .pic-full .pic-content .close-btn {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  color: #626262;
  cursor: pointer;
}

.pop #Video {
  width: 100% !important;
  height: 100% !important;
}

.pop .pop-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.global-pop-page {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1031;
}

.global-pop-page .page-modal {
  position: relative;
  padding: 3rem 1.8rem;
  height: 100%;
}

.global-pop-page .page-modal .close-hook {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  cursor: pointer;
}

.global-pop-page .page-modal .close-hook .iconfont {
  font-size: 2rem;
  line-height: 1;
}

.global-pop-page .page-modal .page-modal-container {
  height: 100%;
}

.global-pop-page .page-modal .page-modal-title {
  font-size: 1.5rem;
  margin: 0;
  padding-bottom: 1em;
  text-align: center;
}

.global-pop-page .page-modal .page-modal-sub-title {
  text-align: center;
  color: #6e6e6e;
  display: block;
  font-size: 0.9rem;
  font-family: "FZLTXHJW";
}

.global-pop-page .page-modal-content {
  height: 0;
  overflow: hidden;
  overflow-y: auto;
  font-size: 1.2rem;
  line-height: 1.45;
  font-family: "FZLTXHJW";
}

.global-pop-page .page-modal-content table {
  width: calc(100% + 0.5rem);
  margin-left: -0.5rem;
  border-collapse: separate;
  border-spacing: 0.5rem;
}

.global-pop-page .page-modal-content table th,
.global-pop-page .page-modal-content table td {
  background-color: #f2f2f2;
  border-radius: 0.2rem;
  text-align: center;
}

.global-pop-page .page-modal-content table th {
  padding: 0.5em;
}

.global-pop-page .page-modal-content table td {
  height: 3.8rem;
  padding: 0.3em;
}

.global-pop-page .page-modal-content h5.title {
  margin-top: 0;
  margin-bottom: 0.8rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
}

.global-pop-page .page-modal-content h5.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2em;
  height: 0.1rem;
  background-color: #0046aa;
  opacity: 0.9;
  border-radius: 0.2rem;
}

.global-pop-page .page-modal-control {
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 0;
}

.global-pop-page .page-modal-control .btn {
  padding: 0 3em;
  font-size: 1.2rem;
  line-height: 3.5rem;
  color: #0063f5;
  background-color: rgba(160, 199, 255, 0.16);
  border-radius: 1.75rem;
}

.global-cookie-box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -10rem;
  background: #fff;
  padding: 0.8rem;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.16);
  font-family: "FZLTXHJW";
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  z-index: 2001;
}

.global-cookie-box.show {
  bottom: 0;
}

.global-cookie-box p {
  color: #666;
  line-height: 1.5;
}

.global-cookie-box p i {
  font-size: 1rem;
  display: inline-block;
  margin-left: 1rem;
  cursor: pointer;
}

.global-cookie-box #globalPolicy {
  text-decoration: underline;
  cursor: pointer;
}

.cookie-modal {
  /* 使用伪类选择器 ::-webkit-scrollbar ,兼容chrome和safari浏览器 */
  /*兼容火狐*/
  /* 兼容IE10+ */
}

.cookie-modal .modal-title {
  color: #666;
  font-size: 1.2rem;
}

.cookie-modal .modal-body {
  display: block;
  overflow: auto;
}

.cookie-modal .modal-body::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.cookie-modal .modal-body::-o-scrollbar {
  width: 3px;
  height: 3px;
}

.cookie-modal .modal-body {
  scrollbar-width: none;
}

.cookie-modal .modal-body {
  -ms-overflow-style: none;
}

.cookie-modal .modal-body::-webkit-scrollbar-thumb {
  border-radius: 1em;
  background-color: rgba(50, 50, 50, 0.3);
}

.cookie-modal .modal-body::-o-scrollbar-thumb {
  border-radius: 1em;
  background-color: rgba(50, 50, 50, 0.3);
}

.cookie-modal .modal-body::-webkit-scrollbar-track {
  border-radius: 1em;
  background-color: rgba(50, 50, 50, 0.1);
}

.cookie-modal .cooke-policy-content {
  font-family: "FZLTXHJW";
  width: 98%;
  margin: 0 auto;
  height: 100%;
  max-height: 100%;
}

.cookie-modal .cooke-policy-content h4 {
  font-size: 1.4rem;
}

.cookie-modal .cooke-policy-content a {
  color: #0063f5;
}

.cookie-modal .cooke-policy-content p {
  color: #5d5d5d;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cookie-modal .cooke-policy-content ul li {
  margin: 1.5rem 0;
  color: #5d5d5d;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cookie-modal .cooke-policy-content h4.sub-title {
  color: #0063f5;
  margin: 1.5rem 0 1rem 0;
  font-size: 1rem;
}

.global-video-wrap {
  position: relative;
}

.global-video-wrap .img-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.global-video-wrap .img-play {
  width: 13%;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.2s;
}

.global-pop-video .pop-full {
  width: 84%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.global-pop-video .pop-full .close-btn {
  position: absolute;
  top: -1.3rem;
  right: -1.3rem;
  color: #626262;
  cursor: pointer;
  z-index: 10;
}

.global-pop-video .pop-full .close-btn .iconclose {
  font-size: 1rem;
}

.global-videoinner-wrap {
  position: relative;
}

.global-videoinner-wrap .btn-play {
  width: 13%;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.2s;
}

.global-videoinner-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.global-videoinner-wrap.playing .btn-play {
  display: none;
}

.global-videoinner-wrap.playing video {
  opacity: 1;
}

.global-swiper .swiper-slide {
  position: relative;
}

.global-swiper .swiper-slide .imgscale {
  transform: scale(1.2);
}

.global-swiper .swiper-slide .swiper-text {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.global-swiper .swiper-slide .swiper-text.textfloat > * {
  position: relative;
  top: -1rem;
  opacity: 0;
}

.global-swiper .swiper-slide .swiper-text h3 {
  margin: 1rem 0;
  font-size: 2.4rem;
}

.global-swiper .swiper-slide .swiper-text p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.global-swiper .swiper-slide .swiper-text span.knowmore {
  display: block;
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-top: 1rem;
  color: #0063f5;
}

.global-swiper .swiper-slide .swiper-text span.knowmore .iconmore {
  font-size: 1.2rem;
  margin-left: 0.6em;
  vertical-align: text-top;
}

.global-swiper .swiper-slide-active .imgscale {
  transform: scale(1);
  transition: all 5.5s linear;
}

.global-swiper .swiper-slide-active .swiper-text.textfloat > * {
  top: 0;
  opacity: 1;
}

.global-swiper .swiper-slide-active .swiper-text.textfloat h3 {
  transition: all 0.5s ease 0.5s;
}

.global-swiper .swiper-slide-active .swiper-text.textfloat p {
  transition: all 0.5s ease 0.8s;
}

.global-swiper .swiper-slide-active .swiper-text.textfloat span {
  transition: all 0.5s ease 1.2s;
}

.global-swiper .swiper-button-disabled {
  opacity: 0 !important;
}

.global-swiper .swiper-pagination {
  bottom: 1.5rem !important;
  line-height: 0.2rem;
}

.global-swiper .swiper-pagination > span {
  display: inline-block;
  margin: 0 0.5rem !important;
  border: 0;
  width: 1rem !important;
  height: 0.2rem;
  background: #ffffff;
  border-radius: 0.4rem;
  opacity: 0.4;
  vertical-align: top;
  transition: all 0.3s;
}

.global-swiper .swiper-pagination > span.swiper-pagination-bullet-active {
  width: 3rem !important;
  background: #0046aa;
  opacity: 0.9;
}

.global-appointment * {
  margin: 0;
  padding: 0;
}

.global-appointment input,
.global-appointment select,
.global-appointment button {
  border: 0;
  outline: 0;
  background: none;
}

.global-appointment input::-webkit-input-placeholder {
  /* WebKit browsers 适配谷歌 */
  color: #999;
  font-weight: normal;
}

.global-appointment input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 适配火狐 */
  color: #999;
  font-weight: normal;
}

.global-appointment input::-moz-placeholder {
  /* Mozilla Firefox 19+ 适配火狐 */
  color: #999;
  font-weight: normal;
}

.global-appointment input:-ms-input-placeholder {
  /* Internet Explorer 10+  适配ie*/
  color: #999;
  font-weight: normal;
}

.global-appointment .btn-primary {
  border: 0;
  color: #0063f5 !important;
  background: rgba(160, 199, 255, 0.16) !important;
}

.global-appointment .appointment-item-content {
  padding: 1rem 0;
}

.global-appointment .appointment-content-item {
  font-size: 1.2rem;
  line-height: 4.8rem;
}

.global-appointment .appointment-content-item .appointment-item-d {
  display: none;
}

.global-appointment .appointment-content-item .appointment-item-t {
  position: relative;
}

.global-appointment .appointment-content-item .appointment-item-t input,
.global-appointment .appointment-content-item .appointment-item-t .select-box {
  background-color: rgba(241, 242, 242, 0.3);
  border-radius: 2.4rem;
  margin-bottom: 1rem;
}

.global-appointment .appointment-content-item .appointment-item-t input,
.global-appointment .appointment-content-item .appointment-item-t .select-box select,
.global-appointment .appointment-content-item .appointment-item-t .select-box button {
  width: 100%;
  padding: 0 1.5rem;
  height: 4.8rem;
  line-height: 4.8rem;
  font-size: 1.2rem;
}

.global-appointment .appointment-content-item .appointment-item-t.input-code {
  overflow: hidden;
}

.global-appointment .appointment-content-item .appointment-item-t.input-code input {
  float: left;
  width: 58.7%;
}

.global-appointment .appointment-content-item .appointment-item-t.input-code .phonecode {
  float: right;
  width: 39%;
  border-radius: 2.4rem;
}

.global-appointment .appointment-content-item .appointment-item-t .select-half {
  float: left;
  width: 48.85%;
}

.global-appointment .appointment-content-item .appointment-item-t .select-half:first-of-type {
  margin-right: 2.3%;
}

.global-appointment .appointment-content-item .appointment-item-t .select-dealer {
  clear: both;
}

.global-appointment .appointment-content-item .appointment-item-t .select-dealer .dropdown-toggle {
  width: 100%;
}

.global-appointment .appointment-content-item .appointment-item-t .select-dealer input {
  margin: 0;
}

.global-appointment .appointment-content-item .appointment-item-t .select-box {
  position: relative;
}

.global-appointment .appointment-content-item .appointment-item-t .select-box select {
  /* 清除默认的箭头样式 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: calc(100% - 1.8rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

.global-appointment .appointment-content-item .appointment-item-t .select-box select::-ms-expand {
  display: none;
}

.global-appointment .appointment-content-item .appointment-item-t .select-box .iconarrow-bottom {
  position: absolute;
  right: 1.8rem;
  top: 50%;
  font-size: 0.9rem;
  transform: translateY(-50%);
}

.global-appointment .appointment-btn-wrapper {
  text-align: center;
}

.global-appointment .appointment-btn-wrapper button {
  width: 45%;
  line-height: 4rem;
  font-size: 1.2rem;
  border-radius: 2.4rem;
}

.global-appointment .pop {
  text-align: center;
}

.global-appointment .pop .success-info {
  width: 90%;
  height: 50vh;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}

.global-appointment .pop .success-info .info-title {
  font-size: 1.5rem;
  text-align: center;
}

.global-appointment .pop .success-info dl {
  margin-top: 4rem;
  padding-left: 5.7rem;
}

.global-appointment .pop .success-info dd {
  font-size: 1.2rem;
}

.global-appointment .pop .success-info dt {
  margin-top: 2.5rem;
  font-size: 1.2rem;
  line-height: 2;
  color: #666;
  font-weight: normal;
}

.global-appointment .pop .close-btn {
  display: inline-block;
  padding: 0.5rem;
  margin-top: 2.5rem;
  line-height: 1;
  color: #fff;
  border: 0.2rem solid;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

.global-appointment .pop .close-btn .iconfont {
  font-size: 2.4rem;
}

.global-taginput-box {
  position: relative;
  font-size: 1.2rem;
}

.global-taginput-box div.combo {
  position: relative;
  z-index: 2;
}

.global-taginput-box div.combo input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.global-taginput-box div.combo.selected input {
  display: none !important;
}

.global-taginput-box div.combo div.combo-text {
  display: flex;
  align-items: center;
  line-height: 3em;
  min-height: 4em;
}

.global-taginput-box div.combo div.combo-text div.tag {
  display: inline-block;
  border: 1px solid;
  border-radius: 2rem;
  line-height: 2em;
  margin-right: 0.5em;
  padding-left: 0.7rem;
  padding-right: 0.5rem;
  color: #0063f5;
}

.global-taginput-box div.combo div.combo-text div.tag .delete {
  padding: 0 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}

.global-taginput-box div.combo-popbox {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.16);
}

.global-taginput-box div.combo-popbox div.combo-options {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 0.4rem;
  padding: 1.5rem;
  width: 90%;
}

.global-taginput-box div.combo-popbox div.combo-options dl {
  overflow: hidden;
}

.global-taginput-box div.combo-popbox div.combo-options dt {
  float: left;
  text-align: center;
}

.global-taginput-box div.combo-popbox div.combo-options dd {
  float: right;
  width: 100%;
  text-align: center;
}

.global-taginput-box div.combo-popbox div.combo-options dt,
.global-taginput-box div.combo-popbox div.combo-options dd {
  line-height: 2;
  margin: 0.6rem 0;
}

.global-taginput-box div.combo-popbox div.combo-options li {
  display: inline-block;
  padding: 0 1em;
  margin-right: 0.6rem;
  border-radius: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.global-taginput-box div.combo-popbox div.combo-options li a.option {
  display: block;
}

.global-taginput-box div.combo-popbox div.combo-options li.active {
  background-color: #eaf0f9;
  color: #0063f5;
}

.global-taginput-box div.combo-popbox div.combo-buttons {
  margin-top: 1rem;
  text-align: center;
}

.global-taginput-box div.combo-popbox div.combo-buttons a {
  display: inline-block;
  color: #0063f5;
  background-color: #eaf0f9;
  border-radius: 3rem;
  line-height: 4rem;
  width: 25%;
  margin: 0 1%;
}

.global-taginput-box .combo-popclose {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  padding: 0.5rem;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.global-taginput-box .combo-popclose:hover {
  color: #0063f5;
}

.common-width,
.common-template.setwidth > p,
.common-template.setwidth .sitepage > p {
  width: 90.4%;
  margin: 0 auto;
}

.common-picture {
  position: relative;
}

.common-picture .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}

.common-picture .text h3 {
  font-size: 2.4rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.common-picture .text p.desc {
  font-family: "FZLTXHJW";
  line-height: 1.8;
}

.common-picture .text a {
  margin-top: 1rem;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 0 1em;
  line-height: 1.67;
  font-family: "FZLTXHJW";
  transition: all 0.3s ease;
}

.common-card-item {
  position: relative;
  margin-bottom: 1rem;
}

.common-card-item > a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.common-card-item .card-item-text {
  position: absolute;
  left: 6%;
  bottom: 6%;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.common-card-item .card-item-text h5 {
  margin: 0.4em 0;
  font-size: 1.5em;
  font-family: "FZLTZCHJW";
}

.common-card-item .card-item-text p {
  font-family: "FZLTXHJW";
}

.common-card-item .card-item-text .iconmore {
  font-size: 1.2rem;
  margin-left: 0.7rem;
  vertical-align: text-bottom;
}

.common-panel {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}

.common-panel .panel-pic {
  height: 22.3rem;
  overflow: hidden;
}

.common-panel .panel-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-panel .panel-text {
  padding: 1.08rem 1.7rem;
  transition: all 0.3s;
}

.common-panel .panel-text h6 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin: 1rem 0;
}

.common-panel .panel-text p {
  color: #5d5d5d;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.common-panel .panel-text a.btn {
  margin-top: 0.8rem;
  padding: 0;
  color: #0063f5;
  font-size: 1.2rem;
}

.common-column {
  overflow: hidden;
}

.common-column > .row {
  padding: 0;
}

.common-join-three .common-card-item .card-item-text {
  bottom: 1rem;
}

.common-media {
  padding: 1.6rem;
  background-color: #fff;
  font-size: 0;
}

.common-media .half {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

.common-media .media-text {
  font-size: 1.2rem;
}

.common-media .media-text a {
  color: #0063f5;
}

.common-media .media-text > ul > li {
  overflow: hidden;
  list-style: none;
  margin-bottom: 1rem;
}

.common-article {
  margin-bottom: 1rem;
}

.common-article .panel {
  margin: 0;
  overflow: hidden;
}

.common-article .panel .half-right {
  padding: 1rem;
}

.common-article .panel .half-right .item-title {
  font-size: 1.4rem;
  font-family: "FZLTZHUNHJW";
  position: relative;
  color: #313131;
}

.common-article .panel .half-right .item-desc {
  margin-top: 0.6rem;
  color: #666;
  font-family: "FZLTXHJW";
  font-size: 1.2rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.common-article .panel .half-right .item-footer {
  margin-top: 1rem;
  font-family: "FZLTXHJW";
  font-size: 1.2rem;
}

.common-article .panel .half-right .item-footer span.time {
  color: #666;
}

.common-article .panel .half-right .item-footer span.all {
  display: inline-block;
  float: right;
  color: #0046aa;
}

.common-article .panel .half-right .item-footer span.all .icon-small {
  display: inline-block;
  margin-left: 0.8em;
  font-size: 1rem;
  vertical-align: baseline;
}

.common-template p,
.common-richtext p {
  margin: 0;
  font-family: "FZLTXHJW";
  font-size: 1.2rem;
  line-height: 2rem;
  text-indent: 2em;
}

.common-richtext img {
  display: block;
  margin: 1rem auto;
  width: auto;
  max-width: 100%;
}

#global-pop-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  font-family: "FZLTXHJW";
  display: none;
  z-index: 1031;
}

#global-pop-form input::placeholder,
#global-pop-form .placeholder-text {
  color: #999;
}

#global-pop-form button {
  outline: 0;
  border: 0;
}

#global-pop-form .pop-content {
  width: 34%;
  margin: 0 auto;
  padding: 0 2.8rem 2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#global-pop-form .pop-content .pop-close {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  padding: 1rem;
  cursor: pointer;
}

#global-pop-form .pop-content .pop-close:hover .iconclose {
  transform: rotate(90deg);
}

#global-pop-form .pop-content .pop-close .iconclose {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #666;
  transition: all 0.3s;
}

#global-pop-form .form-title {
  text-align: center;
  font-size: 1.5rem;
  margin: 0;
  padding: 2.25rem 0;
  color: #070002;
  font-weight: bold;
}

#global-pop-form .appointment-btn {
  text-align: center;
  margin-top: 1rem;
}

#global-pop-form .appointment-btn button {
  padding: 0 5em;
  font-size: 1rem;
  line-height: 3em;
  border-radius: 1.5em;
}

#global-pop-form form {
  font-size: 0.9rem;
  line-height: 3em;
  color: #333;
}

#global-pop-form form .input-item {
  margin-bottom: 1rem;
}

#global-pop-form form .input-item .input-d {
  float: left;
}

#global-pop-form form .input-item .input-d span {
  display: inline-block;
  width: 4em;
  text-align-last: justify;
}

#global-pop-form form .input-item .input-t {
  float: right;
  width: calc(100% - 5.5em);
}

#global-pop-form form .input-item .input-t input {
  width: 100%;
  border: 0;
  outline: 0;
  background: none;
  padding: 0 1em;
  background-color: #f5f5f5;
  border-radius: 1.5em;
  line-height: 3em;
  height: 3em;
}

#global-pop-form form .input-item .input-code {
  display: flex;
  justify-content: space-between;
}

#global-pop-form form .input-item .input-code input {
  width: calc(100% - 8em);
}

#global-pop-form form .input-item .input-code .phonecode {
  float: right;
  background-color: rgba(160, 199, 255, 0.16);
  color: #0063f5;
  border: 0;
  padding: 0;
  border-radius: 1.5em;
  width: 7em;
  text-align: center;
}

#global-pop-form form .input-item .input-code .phonecode:hover {
  background-color: rgba(160, 199, 255, 0.2);
}

#global-pop-form form #select-cascader-wrap {
  padding: 0 1em;
  background-color: #f5f5f5;
  border-radius: 1.5em;
}

#global-pop-form form #select-cascader-wrap .sel-cascader-input {
  background: none;
  margin: 0;
  border-radius: 0;
}

#global-pop-form form #select-cascader-wrap .sel-cascader-input > button {
  padding: 0 !important;
  border-radius: 0;
  background: none;
}

#global-pop-form form #select-cascader-wrap .sel-cascader-dropdown {
  top: 2.6rem;
}

#global-pop-form form #select-cascader-wrap .sel-cascader-dropdown .sel-cascader-panel .sel-cascader-menu {
  min-width: 9rem;
  max-width: 13.5rem;
  max-height: calc(50vh - 7rem);
}

#global-pop-form form #select-cascader-wrap .sel-cascader-dropdown .sel-cascader-panel .sel-cascader-menu li.sel-cascader-item {
  padding: 0 1.5rem 0 1rem;
  height: 2.4rem;
  line-height: 2.4rem;
}

#global-pop-form form #select-cascader-wrap .sel-cascader-dropdown .sel-cascader-panel .sel-cascader-menu li.sel-cascader-item i.iconarrow-right {
  font-size: 0.9rem;
  line-height: 1;
}

#global-pop-form form #select-cascader-wrap .sel-cascader-dropdown .sel-cascader-panel .sel-cascader-menu li.sel-cascader-item .sel-cascader-label {
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .global-honour .nav-sidebar ul {
    padding: 0 1rem;
    white-space: nowrap;
    overflow: auto;
  }
  .global-honour .nav-sidebar ul li {
    display: inline-block;
  }
  .global-appointment .select-dealer .dropdown-menu {
    width: 100%;
    min-width: auto;
    max-height: 15rem;
    overflow: auto;
    font-size: 1.2rem;
  }
  .global-appointment .select-dealer .dropdown-menu li {
    padding: 0 1.5rem;
  }
  .common-banner p.desc {
    display: none;
  }
  #global-pop-form .pop-content {
    width: 96%;
    padding: 0 2rem 2rem;
  }
  #global-pop-form .pop-content .pop-close .iconclose {
    font-size: 1.4rem;
  }
  #global-pop-form form {
    font-size: 1.2rem;
  }
  #global-pop-form form .input-item .input-d span {
    width: 3.5em;
    white-space: nowrap;
  }
  #global-pop-form form .input-item .input-t {
    width: calc(100% - 4.8em);
  }
  #global-pop-form form #select-cascader-wrap .sel-cascader-dropdown {
    top: 3.6rem;
    left: -6.6rem;
    right: 0;
    margin: 0;
  }
  #global-pop-form form #select-cascader-wrap .sel-cascader-dropdown .sel-cascader-panel .sel-cascader-menu {
    min-width: auto;
    width: 33.34%;
    max-height: calc(50vh - 11rem);
  }
  #global-pop-form form #select-cascader-wrap .sel-cascader-dropdown .sel-cascader-panel .sel-cascader-menu li.sel-cascader-item {
    padding: 0 1.5rem 0 1rem;
    height: 3rem;
    line-height: 3rem;
  }
  #global-pop-form form #select-cascader-wrap .sel-cascader-dropdown .sel-cascader-panel .sel-cascader-menu li.sel-cascader-item i.iconarrow-right {
    font-size: 1.2rem;
  }
  #global-pop-form form #select-cascader-wrap .sel-cascader-dropdown .sel-cascader-panel .sel-cascader-menu li.sel-cascader-item .sel-cascader-label {
    font-size: 1.2rem;
    padding: 0;
  }
  #global-pop-form form #select-cascader-wrap .sel-cascader-input > button {
    font-size: 1.2rem;
    height: 3em;
    line-height: 3em;
  }
  #global-pop-form .form-title {
    font-size: 2.2rem;
  }
  #global-pop-form .appointment-btn button {
    font-size: 1.2rem;
    padding: 0 3em;
  }
  #global-header-nav .category-container {
    padding-bottom: 1.75rem;
  }
  #global-header-nav .category-container h5 {
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem 0;
  }
  #global-header-nav .category-container .headerseries-swiper .swiper-slide {
    text-align: center;
    margin-bottom: 1.2rem;
    color: #222;
  }
  #global-header-nav .category-container .headerseries-swiper .iconfont {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 4.2rem;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: inline-block;
    line-height: 5.5rem;
  }
  #global-header-nav .category-container .headerseries-swiper .iconright {
    font-size: 2rem;
  }
  #global-header-nav .category-container .headerseries-swiper p {
    font-size: 1.1rem;
    margin: 0.8em 0;
  }
  #global-header-nav .category-container .swiper-pagination-headerseries {
    width: 6%;
    height: 0.3rem;
    border-radius: 0.2rem;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
    background-color: #cbcacf;
  }
  #global-header-nav .category-container .swiper-pagination-headerseries > span {
    background-color: #1065f1;
  }
  #global-header-nav .category-case {
    margin-top: 3.5rem;
    display: flex;
    justify-content: space-between;
  }
  #global-header-nav .category-case .case-item {
    width: 45%;
    text-align: center;
  }
  #global-header-nav .category-case .case-item .case-img {
    display: block;
    background-color: #fafafa;
    position: relative;
  }
  #global-header-nav .category-case .case-item .case-img .tag {
    position: absolute;
    font-size: 1.1rem;
    color: #1065f1;
    left: 1rem;
    top: 1rem;
  }
  #global-header-nav .category-case .case-item .case-name {
    font-size: 1.5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 1.2rem 0;
  }
  #global-header-nav .category-case .case-item .btn-more {
    display: inline-block;
    color: #999;
    font-size: 1.1rem;
    line-height: 2.5rem;
    border: 1px solid;
    border-radius: 2rem;
    padding: 0 1em;
  }
  #global-header-nav .category-case .case-item .btn-more .iconfont {
    vertical-align: top;
    font-size: 0.8rem;
    line-height: 2.5rem;
    margin-left: 0.4em;
  }
  .dealer-map .map-control {
    display: block;
  }
  .dealer-map .map-control .map-input {
    display: inline-block;
  }
  .dealer-map .map-control .map-input-search {
    width: 100%;
    margin-top: 1rem;
  }
  .global-navbar {
    transition: all 0.5s ease;
  }
  .global-navbar .navbar-menu-xs {
    display: flex;
    align-items: center;
  }
  .global-navbar .navbar-menu-xs .navbar-toggle {
    float: none;
  }
  .global-navbar .navbar-menu-xs > span {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-family: "FZLTXHJW";
    margin-left: 0.5rem;
  }
  .global-navbar .navbar-menu-xs,
  .global-navbar .navbar-right {
    position: relative;
    z-index: 1;
  }
  .global-navbar .global-personal-infos .global-personal-user {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #c1c1c1;
    border-radius: 50%;
    text-align: center;
    box-sizing: content-box;
  }
  .global-navbar .global-personal-infos .global-personal-user span {
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
  .global-navbar .global-personal-infos.login .global-personal-login {
    display: none;
  }
  .global-navbar .global-personal-infos.login .global-personal-user {
    display: block;
  }
  .global-navbar .navbar-toggle {
    padding: 0;
    margin: 0;
  }
  .global-navbar .navbar-toggle .icon-bar {
    background-color: #fff;
    border-radius: 0.1rem;
  }
  .global-navbar .navbar-toggle .icon-bar {
    width: 1.65rem;
    height: 0.2rem;
    margin-top: 0.5rem;
    transition: all 0.3s;
  }
  .global-navbar .navbar-toggle .icon-bar:first-child {
    margin-top: 0 !important;
  }
  .global-navbar .navbar-toggle .icon-bar:nth-child(2) {
    width: 2.3rem;
  }
  .global-navbar .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    max-height: none;
    height: 0;
    border: 0;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s;
  }
  .global-navbar .navbar-collapse .global-header-nav .global-header-nav-wrap .header-nav-text {
    color: #373737;
  }
  .global-navbar .navbar-collapse .global-header-nav .global-header-nav-wrap .header-nav-text a.header-map-item-title {
    padding: 1.4em 0;
    font-size: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
  }
  .global-navbar .navbar-collapse .global-header-nav .global-header-nav-wrap .header-nav-text .header-nav-list li {
    margin: 2rem 0;
    font-size: 1.2rem;
    font-family: "FZLTXHJW";
  }
  .global-navbar .navbar-collapse .global-header-nav-item {
    overflow: hidden;
  }
  .global-navbar .navbar-collapse .navbar-content {
    height: calc(100% - 7.4rem);
    overflow-y: auto;
  }
  .global-navbar .navbar-collapse .nav-service-list {
    margin: 4rem 0;
    text-align: center;
  }
  .global-navbar .navbar-collapse .nav-service-list .iconfont {
    color: #0063f5;
    font-size: 2rem;
  }
  .global-navbar .navbar-collapse .nav-service-list p {
    font-family: "FZLTZHUNHJW";
    color: #373737;
    font-size: 1.2rem;
    margin-top: 0.3em;
  }
  .global-navbar .navbar-collapse .global-search-hot {
    display: none;
  }
  .global-navbar .navbar-collapse .global-search-hot dt {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 2.5rem;
  }
  .global-navbar .navbar-collapse .global-search-hot dd {
    font-size: 1.2rem;
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-searchwords {
    margin-bottom: 2rem;
    color: #666;
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-searchwords ul {
    overflow: hidden;
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-searchwords li {
    float: left;
    width: 25%;
    margin-bottom: 2rem;
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-products ul {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-products li {
    display: inline-block;
    width: 45%;
    margin-right: 1rem;
    border-radius: 0.4rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.06);
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-products li .product-img {
    height: 10rem;
    overflow: hidden;
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-products li .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-products li .product-text {
    padding: 1rem;
    font-family: "FZLTXHJW";
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-products li .product-text h4 {
    font-weight: bold;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
  }
  .global-navbar .navbar-collapse .global-search-hot dd.hot-products li .product-text p {
    font-size: 1.2rem;
  }
  .global-navbar .navbar-collapse.searching .global-search-input {
    display: flex;
    justify-content: space-between;
  }
  .global-navbar .navbar-collapse.searching .global-search-input input {
    width: 86%;
  }
  .global-navbar .navbar-collapse.searching .global-search-input .search-cancel {
    display: inline-block;
  }
  .global-navbar .navbar-collapse.searching .global-header-nav {
    display: none;
  }
  .global-navbar .navbar-collapse.searching .global-search-hot {
    display: block;
  }
  .global-right-nav {
    font-size: 0.8rem;
    top: calc(95vh - 24rem);
  }
  .global-right-nav .global-rightnav-content {
    min-width: 4rem;
    min-height: 4rem;
  }
  .global-right-nav .global-rightnav-content .iconfont {
    font-size: 1.6rem;
  }
  .global-right-nav .global-rightnav-content .global-rightnav-open {
    height: 4rem;
    position: relative;
  }
  .global-right-nav .global-rightnav-content .global-rightnav-open .line {
    width: 1.5rem;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: auto;
    margin-top: -0.1rem;
    margin-left: -0.75rem;
    border-radius: 0.1867rem;
    transition: all 0.3s ease-in-out;
  }
  .global-right-nav .global-rightnav-content .global-rightnav-open .line2 {
    width: 0.2rem;
    height: 1.5rem;
    margin-top: -0.75rem;
    margin-left: -0.1rem;
  }
  .global-right-nav .global-rightnav-content .global-rightnav-btn-list {
    height: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
  }
  .global-right-nav .global-rightnav-content.on .global-rightnav-open .line {
    transform: rotate(45deg);
  }
  .global-right-nav .global-rightnav-content.on .global-rightnav-btn-list {
    height: auto;
    transform: scaleY(1);
  }
}

.free-customization-project .free-customization-btn .btn1 {
  width: 11em;
  padding: 0;
  line-height: 3.3rem;
  display: block;
  margin: 0 auto;
  margin-top: 1.4rem !important;
}

.free-customization-project .free-customization-btn .iconbofang {
  display: inline-block;
  font-size: 1rem;
  width: 1.5rem;
  line-height: 1.5rem;
  border: 1px solid;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 0.6em;
  box-sizing: content-box;
}

.pop-wholehome-video .pop-kv-video-box {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.pop-wholehome-video .pop-kv-video-box .pop-full {
  width: 84%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pop-wholehome-video .pop-kv-video-box .pop-full .pop-content-kv-video {
  position: relative;
}

.pop-wholehome-video .pop-kv-video-box .pop-full .pop-content-kv-video #VideoWrap {
  background: #000;
  overflow: hidden;
  border-radius: 0.8rem;
}

.pop-wholehome-video .pop-kv-video-box .pop-full .close-btn {
  position: absolute;
  top: -2rem;
  right: -1rem;
  color: #626262;
  cursor: pointer;
  z-index: 10;
}

.global-search {
  position: static;
}

.global-search .global-search-wrap {
  top: 4.1rem;
  padding-bottom: 5rem;
  text-align: left;
  opacity: 0;
}

.global-search .global-search-wrap .global-search-content {
  width: 40%;
  margin: 0 auto;
  margin-top: 1rem;
  position: relative;
}

.global-search .global-search-wrap .global-search-content .iconclose {
  position: absolute;
  right: 0;
  top: 1%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
}

.global-search .global-search-wrap .global-search-input {
  margin: 0;
  overflow: hidden;
}

.global-search .global-search-wrap .global-search-input input {
  padding-left: 1rem;
  padding-right: 2rem;
  font-size: 1rem;
  line-height: 2;
  height: 2em;
  border-radius: 5rem;
  color: #999;
  width: calc(100% - 2rem);
  float: right;
  background: none;
}

.global-search .global-search-wrap .global-search-input .iconsearch {
  left: 0;
  font-size: 1rem;
  color: #373737;
  cursor: pointer;
}

.global-search .global-search-wrap .global-search-hot {
  max-height: calc(100vh - 10.8rem);
  overflow-y: auto;
  overflow-x: hidden;
}

.global-search .global-search-wrap .global-search-hot dt {
  font-family: "FZLTXHJW";
  padding: 0.9rem 0;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #cccecf;
}

.global-search .global-search-wrap .global-search-hot .hot-products {
  margin-bottom: 0.25rem;
}

.global-search .global-search-wrap .global-search-hot .hot-products ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 0;
}

.global-search .global-search-wrap .global-search-hot .hot-products li {
  font-family: "FZLTXHJW";
  font-weight: bold;
  display: inline-block;
  text-align: center;
  width: 30%;
  background-color: #f5f5f5;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.global-search .global-search-wrap .global-search-hot .hot-products li:hover {
  box-shadow: 0 0.2rem 0.6rem #ccc;
}

.global-search .global-search-wrap .global-search-hot .hot-products li .product-img {
  height: 7rem;
  overflow: hidden;
}

.global-search .global-search-wrap .global-search-hot .hot-products li .product-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.global-search .global-search-wrap .global-search-hot .hot-products li .product-text h4 {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.global-search .global-search-wrap .global-search-hot .hot-products li .product-text p {
  display: none;
}

.global-search .global-search-wrap .global-search-hot .hot-searchwords ul {
  width: 125%;
  font-size: 0;
}

.global-search .global-search-wrap .global-search-hot .hot-searchwords li {
  font-family: "FZLTXHJW";
  font-weight: bold;
  display: inline-block;
  width: 33.33%;
  font-size: 1rem;
  margin-bottom: 1em;
}

.global-search .global-search-wrap .global-search-hot .hot-searchwords li:last-child {
  margin-bottom: 0;
}

.global-search .global-search-wrap .global-search-hot .hot-searchwords li a:hover {
  color: #0046aa;
}

.global-search > .iconsearch {
  font-size: 2rem;
  padding: 0 0.8rem;
}

.global-search.on .global-search-wrap {
  transform: none;
  opacity: 1;
}

.global-search-m .iconsearch {
  font-size: 2rem;
  padding: 0 0.8rem;
}

.global-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 6rem;
  z-index: 1030;
  color: #fff;
  transition: all 0.2s;
}

.global-navbar.shrinked {
  background: rgba(0, 0, 0, 0.75);
}

.global-navbar.notfixed {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.06);
}

.global-navbar.sticky {
  position: sticky;
  background-color: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.06);
}

.global-navbar.fadeout {
  margin-top: -6rem;
}

.global-navbar.collapsed {
  background-color: #fff;
}

.global-navbar.collapsed .navbar-left .navbar-toggle .icon-bar {
  margin-top: 0;
  width: 2.3rem;
}

.global-navbar.collapsed .navbar-left .navbar-toggle .icon-bar:first-child {
  transform: translate3d(0, 0.3rem, 0) rotate(45deg);
}

.global-navbar.collapsed .navbar-left .navbar-toggle .icon-bar:nth-child(2) {
  transform: scaleX(0);
}

.global-navbar.collapsed .navbar-left .navbar-toggle .icon-bar:nth-child(3) {
  transform: translate3d(0, -0.15rem, 0) rotate(-45deg);
}

.global-navbar.collapsed .navbar-collapse {
  height: 100vh;
  padding: 0 1.8rem;
  padding-top: 6rem;
}

.global-navbar .navbar-middle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.global-navbar .navbar-middle .iconlogo {
  font-size: 1.64rem;
}

.global-navbar .navbar-right .nav-items > li {
  display: inline-block;
  vertical-align: top;
}

.global-navbar .navbar-right button {
  background: none !important;
  border: 0;
  color: inherit !important;
  padding: 0;
}

.global-navbar .navbar-right .iconpersonal {
  font-size: 2rem;
}

.global-navbar .navbar-right .global-personal-login {
  margin-right: -0.8rem;
  padding: 0 0.8rem;
}

.global-navbar .nav-box {
  position: absolute;
  left: 0;
  top: 3.65rem;
  width: 100%;
  color: #373737;
  background-color: #fff;
  border-top: 1px solid #d8d8d8;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.5s ease;
  opacity: 0;
}

/* 修改滚动条的宽度、颜色和圆角 */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #aaaaaa;
}

::-webkit-scrollbar-thumb:hover {
  border-radius: 5px;
  background: #aaaaaa;
}

html {
  scrollbar-width: thin;
}

.global-breadcrumb {
  padding: 1rem 1.8rem;
}

.global-breadcrumb > ul {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.global-breadcrumb li {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  color: #313131;
}

.global-breadcrumb li:last-child {
  overflow: hidden;
}

.global-breadcrumb li h1 {
  margin: 0;
  font-size: 1em;
  line-height: 1.5;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.global-breadcrumb li:not(:last-child) {
  color: #999;
}

.global-breadcrumb li:not(:last-child) a:hover {
  color: #0046aa;
}

.global-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 0.4em;
}

.global-breadcrumb.dark li h1 {
  color: #fff;
}
