﻿@charset "utf-8";

/* CSS Document */

* {
  outline: none;
}

/*主题*/

:root {
  --head_height: 7rem;
  --colour1: #da2228;
  --colour2: #ae1b20;
  --dark: #1d242d;
  --title: #1d242d;
  --text: #666;
  --small_text: #999;
  --tips_text: #ccc;
  --grey_bg: #efeef0;
  --grey_bg2: #e9e9e9;
  --text-bg: #ae1b20;
  --scroll-bg: #ae1b20;
  --border_colour: #ebebeb;
  --shadow: rgb(40, 43, 109, 0.1);
}

body {
  margin: 0px;
  padding: 0px;
  padding-top: var(--head_height);
  background: #fff;
  position: relative;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}

body.no-head-bg {
  padding-top: 0;
}

body.modal-open {
  width: 100vw;
  height: 100vh;
  overflow: hidden !important;
}

body.menu-open {
  width: 100vw;
  height: 100vh;
  overflow-y: hidden !important;
}

body,
html {
  font-family: Arial, "微软雅黑", Microsoft YaHei;
  font-size: 1rem;
  letter-spacing: 0.025em;
  color: var(--title);
}

a:link {
  color: inherit;
}

/*未访问样式*/

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover,
a:focus,
input:hover,
input:focus,
button:focus,
button:hover {
  outline: none;
}

a.text-link {
  text-decoration: underline;
}

a.text-link:hover {
  color: var(--colour1);
}

.title {
  font-weight: 400;
  color: var(--title);
}

.white {
  color: #fff;
}

.colour1 {
  color: var(--colour1);
}

.colour2 {
  color: var(--colour2);
}

.colour-bg1 {
  background-color: var(--colour1);
}

.colour-bg2 {
  background-color: var(--colour2);
}

.colour1-btn {
  color: #fff !important;
  background-color: var(--colour1);
}

.colour1-btn:hover {
  background-color: var(--colour2);
}

.colour-grey-btn {
  color: var(--text) !important;
  background-color: var(--grey_bg);
}

.colour-grey-btn:hover {
  background-color: var(--colour1);
}

.colour-white-btn {
  color: var(--text) !important;
  background-color: #fff;
}

.colour-white-btn:hover {
  background-color: var(--colour1);
}

dd,
dl,
dt,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

input {
  margin: 0;
  outline: none;
}

h1,
.h1 {
  font-size: 3rem;
}

h2,
.h2 {
  font-size: 2.25rem;
}

h3,
.h3 {
  font-size: 2rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1.125rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.75rem;
  font-weight: 400;
}

i {
  font-weight: normal;
}

hr {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 1.5rem 0px;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.75em;
}

pre {
  display: block;
  border: none;
  background: none;
  font-size: 1rem;
  line-height: 1.75em;
  color: var(--text);
  padding: 0px;
  white-space: pre-wrap;
  font-family: Arial, "微软雅黑", Microsoft YaHei;
}

section {
  max-width: 100vw;
  overflow: hidden;
}

/*页面滚动条*/

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #ebebeb;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-bg);
  border-radius: 4px;
}

/*滚动条背景*/

/*滚动容器滚动条定制*/

.scroll-box {
  padding-right: 2vw;
  overflow-y: auto;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #1d1d1d;
}

.scroll-box::-webkit-scrollbar {
  /*背景*/
  width: 10px;
  background-color: #eaeaea;
}

.scroll-box::-webkit-scrollbar-thumb {
  /*滚动条*/
  border: solid 2px #eaeaea;
  width: 6px;
  border-radius: 10px;
  background-color: var(--colour1);
}

.scroll-box::-webkit-scrollbar-corner {
  background-color: #eaeaea;
}

.scroll-box::-webkit-scrollbar {
  height: 10px;
}

/*滚动条设置*/

/*页面选中*/

::selection {
  background: var(--text-bg);
  color: #fff;
}

::-moz-selection {
  background: var(--text-bg);
  color: #fff;
}

::-webkit-selection {
  background: var(--text-bg);
  color: #fff;
}

/*表单*/

form > div {
  margin-bottom: 1rem;
}

form > div:last-child {
  margin-bottom: 0;
}

form div.row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

form div.row > div {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

form p {
  margin-bottom: 0.375rem;
  font-size: 85%;
  opacity: 0.8;
}

form input,
form select {
  padding: 0 1rem;
  width: 100%;
  line-height: 2.5em;
  height: 2.5em;
  font-size: 1rem;
  color: var(--text);
  border: 1px solid #e0e0e0;
}

form select {
  color: var(--text);
  padding-right: 2.5rem;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 0.75rem) center;
  background-size: 1rem 1rem;
}

form textarea {
  padding: 0.25rem 1rem;
  width: 100%;
  line-height: 2.5em;
  height: 10em;
  font-size: 1rem;
  color: var(--text);
  border: 1px solid #e0e0e0;
}

form button.btn {
  padding: 0 3rem;
  font-size: 1rem;
  line-height: 2.75rem;
  border: none;
  color: #fff;
  background: var(--colour1);
  cursor: pointer;
  transition: all 0.4s;
}

form button.btn:hover {
  color: #fff;
  background: var(--colour2);
}

/*表格边框样式*/

table,
tbody,
tr,
td {
  border: none;
}

table tr {
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

table td {
  line-height: 1.5em;
  padding: 0.5rem 1.125rem;
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}

table td p {
  margin: 0px;
}

/*boostrap遮罩层导致页面抖动*/

.modal-open {
  overflow: scroll !important;
}

/*页面内容宽度*/

.container {
  max-width: 1320px;
  width: 90%;
}
.container-fulid {
  padding-left: 8.3333vw;
  padding-right: 8.3333vw;
  width: 100%;
}
.sticky {
  position: sticky;
  top: 0;
}

/*图片包含*/

.obj-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

/*图片裁切*/

.obj-cover,
.obj-cover img {
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-cover img {
  width: 100%;
  height: 100%;
}

/*图片放大*/

.zoom-img {
  overflow: hidden;
}

.zoom-img img {
  width: 100%;
  transform: scale(1);
  transition: all ease 0.6s;
}

.zoom-img:hover img {
  transform: scale(1.075);
}

/*响应式图片等比居中*/

.img-center {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.img-center img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.zoom-img:hover .img-center img,
.zoom-img.img-center:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.075);
  transform: translate(-50%, -50%) scale(1.075);
}

/*背景裁切*/

.bg-cover {
  background-position: center;
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

/*视频相关*/

a.video-btn {
  position: relative;
  padding: 0;
}

a.video-btn img.obj-cover {
  width: 100%;
  height: 100%;
}

a.video-btn:before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 5rem;
  height: 5rem;
  background: url(../images/play.png) center no-repeat;
  background-size: 100%;
  transform: translate(-50%, -50%);
}

a.video-btn:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  transition: all 0.4s;
}

a.video-btn:hover:after {
  content: "";
  transform: translate(0, 100%);
}

.video-box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  background: #000;
}

.video-box:before {
  content: "\b20";
  font-family: "iconfont" !important;
  font-weight: normal;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-color: var(--colour1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.4s;
}

.video-box:hover:before {
  content: "\b20";
  background-color: var(--colour2);
}

.video-box.play:before {
  content: "\b20";
  opacity: 0;
}

.video-box video {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
  /*尺寸不匹配加黑边*/
  object-fit: cover;
  /*内容自适应裁切*/
  overflow-clip-margin: content-box;
  overflow: clip;
  /*元素溢出容器的时候隐藏，同时不会有滚动定位等行为。*/
  opacity: 0.8;
  transition: all 0.4s;
}

.video-box.play video {
  opacity: 1;
}

/*视频列表*/

.video-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.video-list li {
  padding: 1.25rem 0.75rem;
  width: 33.33%;
}

.video-list li a .img {
  position: relative;
  display: block;
  padding-bottom: 65%;
  overflow: hidden;
}

.video-list li a .img:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    var(--colour1) 100%
  );
  transition: all 0.6s;
}

.video-list li a:hover .img:before {
  transform: translate(0%, 100%);
}

.video-list li a .img:after {
  content: "\b88";
  position: absolute;
  z-index: 3;
  left: 1rem;
  bottom: 1rem;
  display: inline-block;
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  line-height: 1.125em;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
}

.video-list li a:hover .img:after {
  content: "\b88";
  opacity: 0;
}

.video-list li a .img img {
  width: 100%;
  height: 100%;
}

.video-list li a .info {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.125em;
  font-weight: 500;
  color: var(--title);
  transition: all 0.4s;
}

.video-list li a:hover .info {
  color: var(--colour1);
}

.video-list li a:hover .info:hover {
  color: var(--colour2);
}

/*视频弹出*/

#video-modal .close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  opacity: 1;
  border-radius: 50%;
  overflow: hidden;
}

#video-modal .close span {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1rem;
  font-weight: normal;
  color: #fff;
  background: var(--colour1);
  transition: all 0.4s;
}

#video-modal .close:hover span {
  background: var(--colour2);
}

#video-modal .modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 96%;
  margin: 2rem auto;
  -webkit-transform: translate(0, calc(-40% + 50vh));
  transform: translate(0, calc(-40% + 50vh));
}

#video-modal.show .modal-dialog {
  -webkit-transform: translate(0, calc(-50% + 50vh));
  transform: translate(0, calc(-50% + 50vh));
}

#video-modal .modal-body {
  padding: 0;
  font-size: 0;
}

#video-modal .modal-body video {
  width: 100%;
  height: 100%;
}

/*边距盒子*/

.padding-box {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.padding-top {
  padding-top: 10vh;
}

.padding-bottom {
  padding-bottom: 10vh;
}

.small-padding-box {
  padding-top: 7vh;
  padding-bottom: 7vh;
}

.small-padding-top {
  padding-top: 7vh;
}

.small-padding-bottom {
  padding-bottom: 7vh;
}

.main {
  position: relative;
  z-index: 2;
  background: var(--grey_bg);
}

.grey-box {
  background: var(--grey_bg);
}

.grey-box2 {
  background: var(--grey_bg2);
}

.white-box {
  background: #fff;
}

.clear-box:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
}

/*头部*/

#head {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  color: var(--text);
  border-bottom: hidden;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 1rem var(--shadow);
  transition: all 0.6s;
}

/*头部标志*/

.head-conent {
  display: flex;
  height: var(--head_height);
  width: 100%;
  min-width: 100%;
  padding: 0 2.5%;
  transition: all 0.4s;
}

.navbar-brand {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: normal;
  padding: 0px;
  margin: 0px;
}

.navbar-brand img {
  width: auto;
  height: 42%;
  max-height: 42%;
  margin-right: 2rem;
}

.navbar-brand > div {
  padding-left: 1rem;
  border-top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: normal;
  text-transform: Uppercase;
  font-size: 1.75rem;
  color: var(--text);
}

/*头部按钮*/

.head-wap-btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  transition: all 0.4s;
}
.head-language {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 3rem;
  color: #fff;
  background: var(--dark);
}
.head-language a {
  position: relative;
  display: inline-block;
  width: 7.5rem;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  text-align: center;
}
.head-language a:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 35%;
  left: 0%;
  width: 1px;
  height: 30%;
  background-color: #fff;
  opacity: 0.2;
}
.head-language a:first-child:before {
  content: "";
  display: none;
}
.head-language a svg {
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  display: inline-block;
}

.head-search {
  padding: 0.5rem 1.25rem;
  background: var(--colour1);
  display: flex;
  align-items: center;
}
.head-search form {
  display: flex;
}
.head-search form input {
  padding: 0 1rem;
  height: 2.5em;
  line-height: 2.5em;
  font-size: 12px;
  color: #fff;
  border-radius: 2em 0 0 2em;
  border: none;
  background: var(--colour2);
}
.head-search form input::placeholder {
  color: #ffffff;
  font-size: 12px;
}
.head-search form button {
  padding: 0 1rem;
  height: 2.5em;
  line-height: 2.5em;
  font-size: 12px;
  color: #fff;
  border-radius: 0 2em 2em 0;
  border: none;
  background: var(--colour2);
}
/*手机菜单按钮*/
.navbar-toggler {
  width: var(--head_height);
  height: var(--head_height);
  background: var(--grey_bg);
  color: #fff;
  border-radius: 0;
  border: none;
}

.navbar-toggler span {
  width: 2rem;
  height: 2px;
  background-color: var(--colour1);
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler:hover {
  cursor: pointer;
}

.navbar-toggler span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-toggler.collapsed span {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/*头部导航*/

#head .navbar-collapse {
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

#head .navbar-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;

  margin-right: 5%;
}

#head .navbar-nav > li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0 2.5rem;
  padding: 0.75rem 0;
}
#head .navbar-nav > li.active:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 0.125rem;
  background-color: var(--colour1);
  transition: all 0.4s;
}

#head .navbar-nav > li > a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
  font-size: 1.12rem;
  line-height: 2.5rem;
  color: inherit;
  text-align: center;
  text-transform: Uppercase;
  border-radius: 0.25rem;
  color: var(--title);
  transition: all 0.4s;
}

#head .navbar-nav > li:hover > a {
  color: var(--colour1);
}

#head .navbar-nav > li.active > a {
  color: var(--colour1);
}

#head:hover .navbar-nav > li.active > a {
  color: var(--colour1);
}

#head .navbar-nav .dropdown-menu {
  position: fixed;
  top: var(--head_height);
  left: 0;
  right: 0;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  color: var(--text);
  background: var(--grey_bg);
}
#head .navbar-nav .dropdown-menu > div {
  display: flex;
}
#head .navbar-nav .dropdown-menu .left {
  width: 28%;
  background: var(--grey_bg2);
}
#head .navbar-nav .dropdown-menu .left .info {
  padding: 2rem 2.3333vw 1.5rem 8.3333vw;
}
#head .navbar-nav .dropdown-menu .left .info .title {
  margin-bottom: 0;
}

#head .navbar-nav .dropdown-menu .left .img img {
  width: 100%;
  height: 9vw;
}
#head .navbar-nav .dropdown-menu .right {
  width: 72%;
  padding: 2.5rem 8.3333vw 0rem 5.8125vw;
}
#head .navbar-nav .dropdown-menu .right a {
  display: block;
  font-size:1rem;
  line-height: 2em;
  color: var(--text);
  transform: all 0.4s;
}
#head .navbar-nav .dropdown-menu .right .link {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--title);
  line-height: 2.5em;
  border-bottom: 1px solid var(--dark);
}
#head .navbar-nav .dropdown-menu .right a:hover {
  color: var(--colour1);
}
/*手机菜单*/

#wap-menu {
  position: fixed;
  top: calc(3rem + var(--head_height));
  left: 0;
  right: 0;
  z-index: 1029;
  background: #fff;
  box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
}

#wap-menu .menu-head {
  display: flex;
  justify-content: space-between;
  height: var(--head_height);
  background: #fff;
}

#wap-menu .menu-head .head-language {
  z-index: 1052;
  display: flex;
  justify-content: space-between;
  width: var(--head_height);
  height: var(--head_height);
  background: #fff;
  display: flex;
}

#wap-menu .menu-head .dropdown > a {
  display: flex;
  font-size: 0;
  align-items: center;
  height: 100%;
  margin-left: 0.75rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 2.25rem;
  color: var(--text);
}

#wap-menu .menu-head .dropdown > a > div {
  width: var(--head_height);
  white-space: nowrap;
}

#wap-menu .menu-head .dropdown > a span {
  vertical-align: middle;
}

#wap-menu .menu-head .dropdown > a span.icon {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.5rem;
  color: inherit;
}

#wap-menu .menu-head .dropdown-menu {
  padding: 0.5rem 0;
  margin-top: 0;
  border-radius: 0px;
  border: none;
  box-shadow: 0 0 0.5rem var(--shadow);
}

#wap-menu .menu-head .dropdown .dropdown-menu a {
  display: block;
  padding: 0 1em;
  font-size: 0.875rem;
  color: var(--text);
  height: 3rem;
  line-height: 3rem;
  border-bottom: rgba(0, 0, 0, 0.1);
}

#wap-menu .menu-head .dropdown .dropdown-menu a:hover {
  color: #fff !important;
  background: var(--colour1);
}

#wap-menu .menu-head .dropdown .dropdown-menu a:last-of-type {
  border-bottom: none;
}

#wap-menu .menu-head .dropdown .dropdown-menu svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}

#wap-menu .menu-head .menu-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  flex: 1;
}

#wap-menu .menu-head .menu-logo img {
  width: auto;
  height: 75%;
}

#wap-menu .menu-head .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--head_height);
  height: inherit;
  background: var(--colour1);
  opacity: 1;
}

#wap-menu .menu-head .close span {
  font-size: 1.25rem;
  font-weight: normal;
  color: #fff;
}

#wap-menu .menu-body {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--head_height));
  border-top: 1px solid #ebebeb;
  background: var(--colour1);
  overflow: auto;
}

#wap-menu .menu-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#wap-menu .menu-search form {
  display: flex;
  padding: 0.5rem 0;
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-left: 4vw;
  margin-right: 4vw;
  border-bottom: 2px solid var(--dark);
}

#wap-menu .menu-search input,
#wap-menu .menu-search button {
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  font-size: 1.25rem;
  color: var(--text);
}

#wap-menu .menu-search input {
  line-height: 1.125em;
}

#wap-menu .menu-search button {
  padding: 0 0.5rem;
  font-size: 1.75rem;
}

#wap-menu .menu-search button span {
  font-size: inherit;
  color: inherit;
}

#wap-menu .menu-nav {
  flex-shrink: 1;
  width: 100%;
  padding: 4vw;
}

#wap-menu .navbar-nav li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#wap-menu .navbar-nav li > a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  line-height: 2em;
  color: #fff;
  text-transform: Uppercase;
}
#wap-menu .navbar-nav .dropdown {
  display: flex;
  flex-wrap: wrap;
  border-bottom: none;
}
#wap-menu .navbar-nav .dropdown > a {
  width: calc(100% - 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#wap-menu .navbar-nav .dropdown > a.sub-btn {
  position: relative;
  width: 4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#wap-menu .navbar-nav .dropdown > a.sub-btn:before,
#wap-menu .navbar-nav .dropdown > a.sub-btn:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1px;
  font-size: 0;
  line-height: 0;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: all 0.4s;
}
#wap-menu .navbar-nav .dropdown > a.sub-btn:after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.4s;
}
#wap-menu .navbar-nav .dropdown.show > a.sub-btn:after {
  transform: translate(-50%, -50%) rotate(0deg);
  transition: all 0.4s;
}
#wap-menu .navbar-nav .dropdown > .dropdown-menu {
  width: 100%;
  padding: 0;
  padding-left: 1.5rem;
  margin: 0;
  background: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#wap-menu .navbar-nav .dropdown > .dropdown-menu:last-of-type {
  border-bottom: none;
}
#wap-menu .navbar-nav .dropdown > .dropdown-menu a {
  font-size: 1.25rem;
  line-height: 3em;
  color: #fff;
}
#wap-menu .navbar-nav .dropdown > .dropdown-menu > div {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#wap-menu .navbar-nav .dropdown > .dropdown-menu > .item.dropdown > a,
#wap-menu .navbar-nav .dropdown > .dropdown-menu > div:last-of-type {
  border-bottom: none;
}
/*导航滚到顶部样式*/

.head-bg {
  padding-top: var(--head_height);
}

.no-head-bg.top #head {
  padding-top: 0.5rem;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 0 1rem rgba(29, 37, 48, 0);
}

.no-head-bg.top #head:hover {
  padding-top: 0rem;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
}

.no-head-bg.top #head .navbar-brand {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: all 0.4s;
}

.no-head-bg.top #head .navbar-nav li > a {
  color: #fff;
}

.no-head-bg.top #head:hover .navbar-nav li > a {
  color: var(--text);
}

.no-head-bg.top #head:hover .navbar-nav li.active > a,
.no-head-bg.down #head .navbar-nav li.active > a,
.no-head-bg.top #head:hover .navbar-nav li:hover > a {
  color: var(--colour1);
}

.no-head-bg.top.menu-open #head {
  background: rgba(255, 255, 255, 1);
}

.no-head-bg.top.menu-open #head .navbar-brand,
.no-head-bg.top #head:hover .navbar-brand {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

.no-head-bg.top #head:hover .head-wap-btn .dropdown > a {
  color: var(--text);
}

.no-head-bg.top #head:hover .head-wap-btn .dropdown a:hover {
  color: var(--colour1);
}

.no-head-bg.top #head:hover .head-wap-btn .dropdown > a div,
.no-head-bg.top #head:hover .head-wap-btn .head-btn-search.dropdown > a span {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.no-head-bg.top .head-wap-btn .dropdown > a {
  color: #fff;
}

.no-head-bg.top .head-wap-btn .dropdown > a div,
.no-head-bg.top .head-wap-btn .head-btn-search.dropdown > a span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0);
}

.no-head-bg.top .head-wap-btn .dropdown:hover > a {
  color: #fff;
}

#head .head-wap-btn .dropdown.language > a span {
  display: inline-block;
  margin-right: 0.375rem;
}

/*head end*/
/*banner*/
#banner {
  width: 100%;
  height: calc(100vh - var(--head_height));
  position: relative;
  z-index: 1;
}

#banner li.swiper-slide {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bannerHeading-text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.75;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bannerHeading-text .title {
  font-size: 3rem;
  line-height: 1.44;
  padding-bottom: 1rem;
  text-transform: uppercase;
  color: #fff;
}

.bannerHeading-text .text {
  line-height: 2;
  font-size: 1.25rem;
  margin-bottom: 3.12rem;
  font-weight: 400;
}

.bannerHeading-text a {
  width: 12.5rem;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  line-height: 1em;
  color: #fff;
  background: var(--colour1);
}

#banner .banner_pagination {
  position: absolute;
  left: 8.3333vw;
  right: 8.3333vw;
  bottom: 5px;
  z-index: 10;
}
#banner .banner_pagination .swiper-pagination {
  width: 100%;
  height: 5px;
  background-color: #ffffff;
}
#banner
  .banner_pagination
  .swiper-pagination
  .swiper-pagination-progressbar-fill {
  background-color: #da2228;
}
#banner .swiper-page {
  position: absolute;
  bottom: 38px;
  left: 0;
  width: 100%;
  padding: 0 8.3333vw;
  z-index: 10;
}
#banner .swiper-page li {
  height: 2px;
  width: 3.75rem;
  position: relative;
  margin-left: 10px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.3);
}
#banner .swiper-page li span {
  display: block;
  position: absolute;
  bottom: 0.62rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-style: inherit;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}
#banner .swiper-page li.active {
  background-color: #da2228;
}
#banner .swiper-page li.active span {
  color: #fff;
}

/*返回顶部*/
.webTop {
  background-color: #efeef0;
  padding: 1.38rem 1.88rem 1.88rem;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
.webTop .img {
  width: 8px;
  margin: 0 auto;
}
.webTop .img img {
  transform: rotate(-90deg);
}
.webTop_fff {
  background-color: #ffffff;
}

/*页脚*/
footer {
  background-color: #0f0f0f;
  position: relative;
}

footer .footer_main {
  padding-top: 2.5rem;
  padding-bottom: 1.88rem;
  border-bottom: 1px solid #272727;
}

footer .footer_nav {
  margin-bottom: 2.12rem;
}

footer .footer_nav li {
  margin-right: 2.12rem;
  position: relative;
}

footer .footer_nav li:last-child {
  margin-right: 0;
}

footer .footer_nav li a {
  color: #ffffff;
  font-size: 1rem;
}

footer .footer_nav li a:hover {
  text-decoration: underline;
}

footer .footer_sideNav li {
  position: relative;
  padding-right: 1.25rem;
  margin-right: 1.25rem;
}

footer .footer_sideNav li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: #3f3f3f;
}
footer .footer_sideNav li:last-child {
  margin-right: 0;
  padding-right: 0;
}
footer .footer_sideNav li:last-child:after {
  display: none;
}

footer .footer_sideNav li a {
  color: #ffffff;
  font-size: 0.88rem;
}
footer .footer_sideNav li a:hover {
  text-decoration: underline;
}

footer .footer_wechat .items {
  margin-right: 2.5rem;
}
footer .footer_wechat .items:last-child {
  margin-right: 0;
}
footer .footer_wechat .items .img {
  width: 6.88rem;
}
footer .footer_wechat .items .text {
  font-size: 0.88rem;
  padding-top: 6px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer_copyright {
  padding: 2rem 0;
  background-color: #000000;
}

footer .footer_copyright .fCopyright {
  font-size: 0.88rem;
  position: relative;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer_copyright .fCopyright a {
  color: rgba(255, 255, 255, 0.5);
}

footer .footer_relatedWebsites {
  position: relative;
}

footer .footer_relatedWebsites .selectTitle {
  width: 170px;
  height: 2.88rem;
  line-height: 2.88rem;
  background-color: #1a1a1a;
  cursor: pointer;
  font-size: 14px;
  padding: 0 1rem;
  color: #fff;
  position: relative;
}
footer .footer_relatedWebsites .selectTitle:after {
  content: "";
  position: absolute;
  opacity: 0.4;
  top: 0;
  right: 1.25rem;
  width: 20px;
  height: 100%;
  background-image: url(../images/topIcon_fff.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

footer .footer_relatedWebsites .selectHover {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  font-size: 14px;
  background-color: #1a1a1a;
  transition: all 400ms linear;
  opacity: 0;
  visibility: hidden;
}
footer .footer_relatedWebsites .selectHover div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
footer .footer_relatedWebsites .selectHover a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1rem;
}
footer .footer_relatedWebsites:hover .selectHover {
  opacity: 1;
  visibility: visible;
}

/*copy*/
a,
a:hover,
a:focus {
  text-decoration: none;
  color: #333;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
/**/
.hTitle {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 500;
  position: relative;
  padding-bottom: 1.88rem;
}

.hTitle_fff {
  color: #ffffff;
}

.hText {
  font-size: 1.75rem;
  line-height: 1.73;
  font-weight: 300;
  text-align: center;
}
.hText span {
  position: relative;
  font-weight: 500;
}
.hText span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed #111;
}
.hMore {
  position: relative;
  z-index: 1;
}

.hMore a {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
  background-color: #1d242d;
  position: relative;
  text-align: center;
  width: 12.5rem;
  padding: 0.94rem;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  color: #ffffff !important;
  transition: all 400ms cubic-bezier(0.565, 0.43, 0.24, 0.92);
}

.hMore a:hover {
  background-color: #da2228;
}
.hMore_da2228 a {
  background-color: #da2228;
}

.container-fluid {
  padding-left: 9.375%;
  padding-right: 9.375%;
}

/**/
.hAbout {
  background-color: #efeef0;
}
.hAbout .hAboutBox {
  position: relative;
  z-index: 2;
  padding: 5.38rem 0;
  background-color: #ffffff;
  transition: margin-top 400ms linear;
}
.hAbout .hAboutBox.mrt_is {
  margin-top: -8.75rem;
}
.hAbout .hText {
  max-width: 65%;
  margin: 0 auto;
  padding-bottom: 1.62rem;
}
.hAbout .hMore a {
  margin: 0 auto;
}

.hProduct {
  position: relative;
  padding-top: 8rem;
  background-color: #efeef0;
  overflow: hidden;
}
.hProductBox {
  position: relative;
}
.hProductTab {
  width: 35%;
  padding-top: 3.88rem;
  position: absolute;
  top: 0;
  left: 0;
}
.hProductTabUl {
  position: relative;
  padding-top: 3rem;
}
.hProductTabUl li {
  display: none;
}
.hProductTabUl li.active {
  display: block;
}
.hProductTabUl li .model {
  font-size: 5.25rem;
  font-family: "MontserratRegular";
  color: #ffffff;
  line-height: 1;
  padding-bottom: 1.88rem;
  white-space: nowrap;
}
.hProductTabUl li .title {
  font-size: 1.88rem;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 2.88rem;
}
.hProductTabUl li .text {
  font-size: 1.12rem;
  line-height: 1.66;
  max-width: 76%;
  font-weight: 300;
  padding-bottom: 1.88rem;
  display: none;
}
.hProductSwiper {
  width: calc(65% + 8.3333vw);
  position: relative;
  float: right;
  right: -8.3333vw;
}
.hProductJs {
  padding-bottom: 7.4rem;
}
.hProductJs li.swiper-slide {
  width: 46.25rem;
  height: 36.25rem;
  margin-right: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hProductJs li.swiper-slide .img {
  transform: scale(0.52702);
  opacity: 0.2;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  transition: -webkit-transform 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.6s cubic-bezier(0, 0.55, 0.45, 1),
    -webkit-transform 0.6s cubic-bezier(0, 0.55, 0.45, 1);
}
.hProductJs li.swiper-slide-active .img {
  transform: scale(1);
  opacity: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.hProductJs .swiper_page {
  position: absolute;
  bottom: 3.12rem;
  right: 8.3333vw;
  z-index: 9;
}
.hProductJs .swiper_page .hProduct_prev,
.hProductJs .swiper_page .hProduct_next {
  position: relative;
  height: 2.75rem;
}
.hProductJs .swiper_page .hProduct_prev {
  left: 0;
}
.hProductJs .swiper_page .hProduct_next {
  right: 0;
}
.hProductJs .swiper_page .hProduct_prev:after,
.hProductJs .swiper_page .hProduct_next:after {
  content: "";
  background-image: url(../images/webTopIcon_da2228.svg);
  width: 20px;
  height: 2.75rem;
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.hProductJs .swiper_page .hProduct_prev:after {
  transform: rotate(180deg);
}
.hProductJs .swiper_page .swiper-pagination {
  position: relative;
  font-size: 1.25rem;
  color: #111111;
  font-family: "MontserratRegular";
  padding: 0 1.25rem;
}

.hSolution {
  position: relative;
  background-image: url(../images/solutionBg.png);
  padding: 17.1875vw 0 5.2083vw;
  background-attachment: fixed;
}

.hSolutionText {
  position: relative;
  max-width: 43.12rem;
  background: rgba(148, 148, 148, 0.9);
  padding: 3.12rem 4.38rem 4.38rem;
}

.hSolutionText .text {
  font-size: 1.12rem;
  line-height: 1.66;
  color: #fff;
  margin-bottom: 1.88rem;
}

.hCase {
  position: relative;
  padding-top: 8.8541vw;
}
.hNewsList li {
  height: auto;
}
.hNewsList li .box {
  display: block;
  position: relative;
  height: 100%;
  background-color: #f6f6f6;
}

.hNewsList li .box .img {
  height: 10.9375vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/newsIcon.png);
}

.hNewsList li .box .text {
  padding: 1.88rem 1.88rem 3.25rem;
}

.hNewsList li .box .time {
  font-size: 1rem;
  color: #999999;
  margin-bottom: 0.62rem;
}

.hNewsList li .box .title {
  font-size: 1.12rem;
  line-height: 1.66;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hNewsList ul.row {
  margin-left: -0.94rem;
  margin-right: -0.94rem;
}
.hNewsList li.col-lg-3 {
  padding-left: 0.94rem;
  padding-right: 0.94rem;
  margin-bottom: 1.88rem;
}

.hNewsList .hMore {
  padding-top: 3.12rem;
}

.hNewsList .hMore a {
  margin: 0 auto;
}

.hNewsList_bgfff li .box {
  background-color: #ffffff;
}

.hServices {
  position: relative;
  padding-top: 7.2916vw;
}
.hServicesBg {
  padding: 3.5104vw 6.5104vw 6.5104vw;
  text-align: center;
  background-image: url(../images/serviceBg.png);
  background-attachment: fixed;
}
.hServicesBg .img {
  width: 23.4375vw;
  margin: 0 auto;
}
.hServicesBg .text {
  color: #fff;
  line-height: 1.6;
  font-size: 1.88rem;
  text-align: center;
}

.hContact {
  position: relative;
  padding: 8.8541vw 0;
}
.hContact .img {
}
.hContact .con {
}
.hContact .con .text {
  font-size: 1.12rem;
  line-height: 1.66;
  max-width: 80%;
  padding-bottom: 1.88rem;
}

/*返回顶部*/
.webTop {
  background-color: #efeef0;
  padding: 1.38rem 1.88rem 1.88rem;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
.webTop .img {
  width: 8px;
  margin: 0 auto;
}
.webTop .img img {
  transform: rotate(-90deg);
}
.webTop_fff {
  background-color: #ffffff;
}
/*内页banner*/
#wBanner {
  overflow: hidden;
  position: relative;
}

#wBanner .img {
  position: relative;
  height: 34.375vw;
}
#wBanner.wBannerH .img {
  height: 29.1666vw;
}
#wBanner.wBannerH_512 .img {
  height: 26.6666vw;
}

#wBanner .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  display: flex;
  align-items: center;
}

#wBanner .box .container {
  height: 100%;
}

#wBanner .box .breadcrumb {
  padding-bottom: 1rem;
}
#wBanner .box .breadcrumb .breadcrumb-item {
  color: #fff;
}
#wBanner .box .breadcrumb .breadcrumb-item a {
  color: #fff;
}
#wBanner .box .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}
#wBanner .box .breadcrumb .breadcrumb-item a {
  border-bottom-color: #fff;
}
#wBanner .box .text {
  font-size: 2.62rem;
  line-height: 1.44;
}
#wBanner .box .text_35 {
  font-size: 2.19rem;
}
#wBanner .imgBox {
  position: absolute;
  bottom: 126px;
  left: 0;
  width: 100%;
  z-index: 5;
  text-align: right;
}

/*导航*/
#sideNav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 98;
}

#sideNav.isActive .sideNavBox {
  position: fixed;
}

#sideNav .sideNavBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  transition: top 450ms linear;
}

#sideNav .sideNavBox li {
  position: relative;
  width: 100%;
}

#sideNav .sideNavBox li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #e5e5e5;
}

#sideNav .sideNavBox li:last-child::after {
  display: none;
}

#sideNav .sideNavBox li a {
  display: block;
  position: relative;
  text-align: center;
  padding: 1rem 0;
  color: #000011;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 400ms linear;
}

#sideNav .sideNavBox li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: #da2228;
  transition: all 400ms linear;
}
#sideNav .sideNavBox li a span {
  position: relative;
  z-index: 2;
}

#sideNav .sideNavBox li.active a,
#sideNav .sideNavBox li:hover a {
  color: #ffffff;
}

#sideNav .sideNavBox li.active a:after,
#sideNav .sideNavBox li:hover a:after {
  width: 100%;
}

/*内页开始*/

.w_text {
  font-size: 1.12rem;
  line-height: 1.88;
}

.pb_16 {
  padding-bottom: 1rem !important;
}

.pb_26 {
  padding-bottom: 1.62rem !important;
}

.pb_66 {
  padding-bottom: 4.12rem !important;
}

.mb_20 {
  margin-bottom: 1.25rem !important;
}
.mb_30 {
  margin-bottom: 1.88rem !important;
}

.bg_fff {
  background-color: #ffffff;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.img_scale_relative {
  position: relative;
  overflow: hidden;
}

.img_scale {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: -webkit-transform 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.6s cubic-bezier(0, 0.55, 0.45, 1),
    -webkit-transform 0.6s cubic-bezier(0, 0.55, 0.45, 1);
}

.bodyBg {
  background-color: #efeef0;
}

/*面包屑*/
.breadcrumb {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  color: rgba(17, 17, 17, 0.7);
  font-size: 1rem;
}
.breadcrumb .breadcrumb-item a {
  color: rgba(17, 17, 17, 0.7);
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 2rem;
  position: relative;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.62rem;
  height: 0.5rem;
  width: 0.5rem;
  margin-top: -0.25rem;
  padding-right: 0;
  border-left: 2px solid rgba(17, 17, 17, 0.7);
  border-top: 2px solid rgba(17, 17, 17, 0.7);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.breadcrumb .breadcrumb-item a {
  border-bottom: 1px solid rgba(17, 17, 17, 0.7);
}
/*分页*/
.pagination {
  padding: 0;
  display: flex;
}
.pagination .page-link {
  margin: 0 0.31rem;
  font-size: 1rem;
  color: #111;
  font-weight: 500;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  width: 3.12rem;
  height: 3.12rem;
  line-height: 3.12rem;
  text-align: center;
  border-radius: 100px;
  border: none;
  display: block;
}
.pagination .page-item.active .page-link {
  color: #ffffff;
  background: #1996ec;
}
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  text-indent: -999px;
  border-radius: 100px;
}
.pagination .page-item:first-child .page-link:before,
.pagination .page-item:last-child .page-link:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 0.75rem;
  width: 0.75rem;
  margin-top: -0.375rem;
  border-left: 2px solid #333333;
  border-top: 2px solid #333333;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pagination .page-item:first-child .page-link:before {
  right: 50%;
  margin-right: -0.5rem;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pagination .page-item:last-child .page-link:before {
  left: 50%;
  margin-left: -0.5rem;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

/*关于我们*/
.aboutUsHead {
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
}
.aboutUsHead .w_text {
  margin-bottom: 2.5rem;
}
.aboutUsHead .list .box {
  display: block;
}
.aboutUsHead .list .img {
  height: 19.7916vw;
}
.aboutUsHead .list .text {
  font-size: 1.25rem;
  padding: 1.56rem;
  border-bottom: 1px solid #1d242d;
  position: relative;
}
.aboutUsHead .list .text:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 100%;
  background-image: url(../images/topIcon_h.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  transform: rotate(-90deg);
}

.forkliftBox {
  padding-top: 3.75rem;
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.forkliftBox .list li .box {
  display: block;
  position: relative;
}
.forkliftBox .list li .box .img {
  height: 19.7916vw;
}
.forkliftBox .list li .box .con {
  padding: 3.12rem 4.38rem;
}
.forkliftBox .list li .box .title {
  font-size: 1.5rem;
  padding-bottom: 1rem;
  line-height: 1;
}
.forkliftBox .list li .box .text {
  font-size: 1.12rem;
  line-height: 1.8;
}

.honor {
  padding-top: 7.8125vw;
  position: relative;
}
.honorTabMain {
  background-image: url(../images/evolutionBg.png);
  padding: 11.88rem 0 16.25rem;
}
.honorTab {
  position: relative;
}
.honorTab:after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  height: 1px;
}
.honorTabSwiper {
  position: relative;
}
.honorTabSwiper li {
  position: relative;
  cursor: pointer;
}
.honorTabSwiper li .box {
  font-size: 1.25rem;
  position: relative;
  text-align: center;
  height: 110px;
  padding-bottom: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  color: #ffffff;
}
.honorTabSwiper li .box .icon {
  position: absolute;
  bottom: 24px;
  left: 50%;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #ffffff;
}
.honorTabSwiper li .box .icon:after {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  bottom: -7px;
  right: -7px;
  border-radius: 100%;
  background-color: rgba(233, 242, 245, 0.5);
}
.honorTabSwiper li .box .icon:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border-radius: 100%;
  background-color: rgba(233, 242, 245, 0.3);
  box-shadow: 0 0 0 0 rgba(233, 242, 245, 0.08);
  animation: cirbig 1s 0s infinite backwards;
  opacity: 0;
  transition: opacity 400ms ease;
}
@keyframes cirbig {
  100% {
    box-shadow: 0 0 0 15px rgba(233, 242, 245, 0);
  }
}
.honorTabSwiper li.swiper-slide-active .box {
  font-size: 2.5rem;
}
.honorTabSwiper li.swiper-slide-active .box .icon:before {
  opacity: 1;
}
.honorTabSwiper li.swiper-slide-active .box:after {
  width: 100%;
}

.honorTabSwiper .honor_prev,
.honorTabSwiper .honor_next {
  margin-top: 16px;
  width: 10px;
  height: 20px;
  background-size: 10px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.honorTabSwiper .honor_prev {
  left: 0;
  background-image: url(../images/details_left.svg);
}
.honorTabSwiper .honor_next {
  right: 0;
  background-image: url(../images/details_right.svg);
}
.honorTabSwiper .honor_prev::after,
.honorTabSwiper .honor_next::after {
  display: none;
}
.honorTabSwiper .honor_prev::before,
.honorTabSwiper .honor_next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 5rem;
  height: 1px;
  background-color: #ffffff;
}
.honorTabSwiper .honor_prev::before {
  left: 0;
}
.honorTabSwiper .honor_next::before {
  right: 0;
}

.honorMainBg {
  background-color: #efeef0;
}
.honorMain {
  background-color: #ffffff;
  padding: 6.88rem 7.8125vw;
  position: relative;
  z-index: 2;
  top: -5rem;
  margin-bottom: -5rem;
}
.honorItemBox {
  position: relative;
}
.honorItemBox ul.list {
  height: 302px;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.honorItemBox ul.list::-webkit-scrollbar {
  width: 4px;
}
.honorItemBox ul.list::-webkit-scrollbar-thumb {
  background: #dc363c;
}
.honorItemBox ul.list::-webkit-scrollbar-track {
  background: #efeef0;
}
.honorItemBox ul.list li.items:first-child {
  border-top: 1px solid #e5e5e5;
}
.honorItemBox ul.list li.items {
  width: 43.8461%;
  display: none;
  border-bottom: 1px solid #e5e5e5;
}
.honorItemBox ul.list li.items:hover {
  border-bottom-color: #dc363c;
}
.honorItemBox ul.list li.items .title {
  cursor: pointer;
  padding: 1.38rem 0;
  font-size: 1.25rem;
}
.honorItemBox ul.list li.items.active {
  display: block;
}
.honorItemBox ul.img {
  padding-right: 5.3846%;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.honorItemBox ul.img li.items {
  display: none;
}
.honorItemBox ul.img li.items.active {
  display: block;
}
.honorItemBox ul.img li.items .img_scale_relative {
  height: 302px;
}
.honorItemBox ul.img li.items .img_scale_relative .img_scale {
  background-size: auto;
}

.companyNews {
  position: relative;
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
  background-color: #efeef0;
}
.companyNewsTab {
  padding-bottom: 2.5rem;
}
.companyNewsTab li {
  margin-right: 1.88rem;
}
.companyNewsTab li a {
  font-size: 1.25rem;
  padding-bottom: 6px;
  cursor: pointer;
}
.companyNewsTab li.active a {
  border-bottom: 2px solid #da2228;
}

.companyNewsMain .companyNewsList {
  display: none;
}
.companyNewsMain .companyNewsList.active {
  display: block;
}
.companyNewsSwiper {
  padding-bottom: 6rem;
}
.companyNewsSwiper .hMore {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-top: 0;
}
.companyNewsSwiper .swiper-pagination {
  top: initial;
  bottom: 1.38rem;
  width: 79.875%;
  background-color: #d7d6d8;
  height: 2px;
}
.companyNewsSwiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #1d242d;
}
.companyNewsSwiper .companyNews_prev,
.companyNewsSwiper .companyNews_next {
  position: absolute;
  bottom: 2px;
  top: initial;
  margin-top: 0;
  height: 2.88rem;
}
.companyNewsSwiper .companyNews_prev {
  left: inherit;
  right: 16.25rem;
}
.companyNewsSwiper .companyNews_next {
  right: 13.75rem;
}
.companyNewsSwiper .companyNews_prev:after,
.companyNewsSwiper .companyNews_next:after {
  font-size: 1.25rem;
  color: #111111;
  font-weight: bold;
}
/**/

.automaticLoomHead {
  position: relative;
  background-color: #ffffff;
  margin-top: -5rem;
  padding: 6.25rem 7.8125vw;
}
.automaticLoomHead hr {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}
.groupImg {
  padding: 5rem 0;
}
.groupImg .img {
  width: 32.8125vw;
  margin: 0 auto;
}
.division {
  background-color: #ffffff;
  padding: 6.7708vw 0;
}
.division .list {
  margin-left: -1px;
  margin-right: -1px;
}
.division .list li {
  padding-left: 1px;
  padding-right: 1px;
  position: relative;
}
.division .list li .img {
  height: 16.6666vw;
}
.division .list li .con {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.division .list li .con:after {
  content: "";
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  bottom: 2.5rem;
  left: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.division .list li .con .title {
  font-size: 1.75rem;
  color: #fff;
}
.logisticsSite {
  background-image: url(../images/logisticsServiceBg.jpg);
}
.logisticsSiteImg {
  padding: 4.38rem 0;
  text-align: center;
}
.logisticsTopics {
  background-color: #ffffff;
}
.logisticsTopicsHead {
  padding: 6.25rem 0;
}
.logisticsTopics .list ul.row {
  margin-left: -1px;
  margin-right: -1px;
}
.logisticsTopics .list li {
  padding-left: 1px;
  padding-right: 1px;
}
.logisticsTopics .list li .box:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  transition: all 400ms;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.logisticsTopics .list li .img {
  height: 20.8333vw;
}
.logisticsTopics .list li .con {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.logisticsTopics .list li .con .title {
  font-size: 1.38rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.logisticsTopics .list li .con .text {
  line-height: 1.5;
}
.logisticsTopics .list li .box {
  display: block;
  position: relative;
}
.logisticsTopics .list li .box:hover:after {
  top: 2.5rem;
  right: 2.5rem;
  bottom: 2.5rem;
  left: 2.5rem;
  opacity: 1;
}
.logisticsTopics .list li .box:hover .con {
  background-color: rgba(218, 34, 40, 0.7);
}
/**/
.productionBase {
  padding: 7.5rem 0;
}
.productionBaseMap {
  margin-top: 4.25rem;
  position: relative;
  text-align: center;
}
.productionBaseMap img {
  margin: 0 auto;
}

.contactMap_circle {
  position: absolute;
}
.contactMap_circle._open .circle_up {
  opacity: 1;
  visibility: visible;
  z-index: 6;
}
.contactMap_circle[name="map1"] {
  top: 39%;
  left: 43.5%;
}
.contactMap_circle[name="map2"] {
  top: 39.5%;
  left: 78%;
}
.contactMap_circle[name="map3"] {
  top: 32%;
  left: 4.5%;
}
.contactMap_circle[name="map4"] {
  top: 37%;
  left: 39%;
  margin-left: -1.56rem;
}
.contactMap_circle[name="map5"] {
  top: 39.5%;
  left: 78%;
  margin-left: 1.56rem;
}
.contactMap_circle[name="map6"] {
  top: 39.5%;
  left: 78%;
  margin-left: 3.12rem;
}
.contactMap_circle[name="map7"] {
  top: 20%;
  left: 8%;
}
.contactMap_circle[name="map8"] {
  top: 34%;
  left: 7.5%;
}
.contactMap_circle[name="map9"] {
  top: 74.5%;
  left: 91.5%;
}
.contactMap_circle[name="map10"] {
  top: 37%;
  left: 39%;
}
.contactMap_circle[name="map11"] {
  top: 45%;
  left: 40%;
}
.contactMap_circle[name="map12"] {
  top: 39.5%;
  left: 78%;
  margin-left: 4.69rem;
}
.contactMap_circle[name="map13"] {
  top: 36%;
  left: 3.5%;
}
.contactMap_circle[name="map14"] {
  top: 28%;
  left: 5.5%;
}
.contactMap_circle[name="map15"] {
  top: 39.5%;
  left: 78%;
  margin-top: 1.56rem;
}
.contactMap_circle[name="map16"] {
  top: 39.5%;
  left: 78%;
  margin-left: 1.88rem;
  margin-top: 1.56rem;
}
.contactMap_circle[name="map17"] {
  top: 39.5%;
  left: 78%;
  margin-left: 3.75rem;
  margin-top: 1.56rem;
}

.circle_click {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  z-index: 2;
  font-size: 0.88rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.5rem;
  font-family: "MontserratRegular";
  background-color: #da2228;
}
.circle_click span {
  display: none;
}

.circle_up {
  width: 23.62rem;
  position: absolute;
  top: 2.75rem;
  left: 50%;
  z-index: 6;
  margin-left: -11.81rem;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms;
  color: #fff;
  font-size: 0.88rem;
  background-color: #da2228;
}
.circle_up:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -6px;
  top: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #da2228;
}
.circle_up .circle_up_box {
  position: relative;
  padding: 2rem;
}
.circle_up .circle_up_box ._title {
  font-size: 1.12rem;
  line-height: 1.2;
}
.circle_up .circle_up_box ._text {
  line-height: 1.8;
  display: none;
}
.circle_up ._list {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: none !important;
}
.circle_up ._list ._items {
  flex: 1;
  text-align: center;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle_up ._list ._items + ._items {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.circle_up ._list ._items .sou {
  font-size: 1.25rem;
  margin-bottom: 2px;
  font-family: "MontserratRegular";
}

.productionBaseText {
  padding-bottom: 3.12rem;
  line-height: 1.8;
  font-size: 1.12rem;
  margin-top: -2.25rem;
  position: relative;
  pointer-events: none;
}
.productionBaseTab ul.row {
  margin-left: -0.5px;
  margin-right: -0.5px;
}
.productionBaseTab ul.row li {
  padding-left: 0.5px;
  padding-right: 0.5px;
  margin-bottom: 1px;
}
.productionBaseTab ul.row li .box {
  height: 3.44rem;
  line-height: 3.44rem;
  font-size: 1rem;
  text-align: center;
  background-color: #ffffff;
  cursor: pointer;
}
.productionBaseTab ul.row li.active .box {
  background-color: #1d242d;
  color: #fff;
}
/*211203更正*/
.productionBaseTab .conHub {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 3.12rem;
}
.productionBaseTab .conHub .tableStyle01 {
  flex: 0 0 49.9%;
  max-width: 49.9%;
  display: flex;
  flex-wrap: wrap;
}
.productionBaseTab .conHub dl.tableStyle01 dt {
  text-align: left;
  vertical-align: middle;
  padding: 5px;
  font-weight: bold;
  background: #d8d8dc;
  width: -webkit-calc(30% - 4px);
  width: calc(30% - 4px);
  box-sizing: border-box;
  margin: 0 4px 4px 0;
  display: flex;
  align-items: center;
}
.productionBaseTab .conHub dl.tableStyle01 dd {
  line-height: 1.3;
  vertical-align: middle;
  padding: 5px;
  background: #ffffff;
  width: -webkit-calc(70% - 4px);
  width: calc(70% - 4px);
  box-sizing: border-box;
  margin: 0 4px 4px 0;
  display: flex;
  align-items: center;
}
.productionBaseTab .conHub dl.tableStyle01 dt .num {
  display: inline-block;
  color: #fff;
  letter-spacing: normal;
  line-height: 24px;
  text-align: center;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  background: #e40012;
}
@media only screen and (max-width: 767px) {
  .productionBaseTab .conHub {
    display: block;
  }
  .productionBaseTab .conHub dl.tableStyle01 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .productionBaseTab .conHub dl.tableStyle01 dt {
    white-space: nowrap;
  }
  .productionBaseTab .conHub dl.tableStyle01 dt .num {
    line-height: 12px;
    width: 18px;
    height: 12px;
    margin-right: 5px;
  }
}

/**/
#companyNewsHead {
  position: relative;
  background-color: #da2228;
  padding: 4.38rem 0 2.5rem;
  text-align: center;
  color: #ffffff;
}
#companyNewsHead .title {
  font-size: 3.12rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.88rem;
}
#companyNewsHead .tab li {
  padding: 0 0.94rem;
}
#companyNewsHead .tab li a {
  color: #ffffff;
  font-size: 1.25rem;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}
#companyNewsHead .tab li.active a,
#companyNewsHead .tab li a:hover {
  border-bottom: 2px solid #ffffff;
}
.news {
  position: relative;
  background-color: #f6f6f6;
  padding-top: 0.88rem;
  padding-bottom: 6.25rem;
}
.newsColumn {
  padding: 2rem 0;
  position: relative;
  z-index: 10;
}
.newsColumn .breadcrumb .breadcrumb-item {
  font-size: 1rem;
}
.newsColumn .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  left: 0.75rem;
  border-left: 1px solid rgba(17, 17, 17, 0.7);
  border-top: 1px solid rgba(17, 17, 17, 0.7);
}

.web_screen {
  position: relative;
  width: 7.88rem;
  z-index: 10;
}
.web_screen:hover .web_screen_ul {
  opacity: 1;
  visibility: visible;
}
.web_screen .web_screen_ul_title {
  padding-right: 1.25rem;
  font-size: 1rem;
  line-height: 1;
  padding-bottom: 0.62rem;
  color: #111111;
  border-bottom: 1px solid #da2228;
  cursor: pointer;
}
.web_screen .web_screen_ul_title::after {
  content: "";
  position: absolute;
  bottom: 0.38rem;
  right: 0.5rem;
  height: 1.25rem;
  width: 1.25rem;
  background-image: url(../images/topIcon.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-position: center;
  transform: rotate(180deg);
}
.web_screen .web_screen_ul {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #da2228;
  opacity: 0;
  padding: 0 0.625rem;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.web_screen .web_screen_ul li {
  position: relative;
}
.web_screen .web_screen_ul li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.web_screen .web_screen_ul li a {
  display: block;
  padding: 0.5rem 0.38rem;
  color: #ffffff;
  font-size: 0.88rem;
}
.productHead {
  padding: 7.8125vw 0;
}
.productHead .list {
  padding-top: 3.12rem;
}
.productHead .list li {
  margin-bottom: 1.25rem;
}
.productHead .list li .box {
  display: block;
}
.productHead .list li .box .text {
  font-size: 1.5rem;
  padding: 2rem 0;
  line-height: 1;
}
.productHead .hMore a {
  margin: 0 auto;
}
.coreTechnologyBox {
  border-top: 1px solid #e5e5e5;
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
}
.coreTechnologyBox .list {
  background-color: #1d242d;
  color: #ffffff;
}
.coreTechnologyBox .list li .con {
  padding: 1.88rem 12.5%;
}
.coreTechnologyBox .list li .con .text {
  font-size: 1.25rem;
  line-height: 1.8;
  padding-bottom: 1.88rem;
}
.winningModels {
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
  background-color: #efeef0;
}
.winningModelsSwiper {
  padding-bottom: 6rem;
}
.winningModelsSwiper li.swiper-slide {
  height: auto;
}
.winningModelsSwiper li.swiper-slide .box {
  display: block;
  height: 100%;
  background-color: #ffffff;
}
.winningModelsSwiper li.swiper-slide .box .img {
  height: 20.25rem;

  background-image: linear-gradient(
    to bottom,
    #4d5055 0%,
    #7d8085 65%,
    #787b7f 100%
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 11.5384%;
  color: #ffffff;
}
.winningModelsSwiper li.swiper-slide .box .img .img_title {
  width: 50%;
}
.winningModelsSwiper li.swiper-slide .box .img .img_title .name {
  font-size: 1.88rem;
  line-height: 1.5;
}
.winningModelsSwiper li.swiper-slide .box .img .img_title .label {
  font-size: 3.5rem;
  font-family: "MontserratRegular";
}
.winningModelsSwiper li.swiper-slide .box .img .img_box {
  width: 47%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.winningModelsSwiper li.swiper-slide .box .img .img_box img {
  max-height: 100%;
}
.winningModelsSwiper li.swiper-slide .box .con {
  padding: 3.75rem 11.5384%;
  display: flex;
}
.winningModelsSwiper li.swiper-slide .box .con .icon {
  position: relative;
  padding-right: 3.12rem;
  margin-right: 3.12rem;
}
.winningModelsSwiper li.swiper-slide .box .con .icon:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
.winningModelsSwiper li.swiper-slide .box .con .text {
  font-size: 1.25rem;
  font-weight: 300;
}
.winningModelsSwiper li.swiper-slide .box .con .text a[href] {
  transition: all 400ms;
}
.winningModelsSwiper li.swiper-slide .box .con .text a[href]:hover {
  color: #da2228 !important;
  text-decoration: underline !important;
}

.winningModelsSwiper .hMore {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-top: 0;
}
.winningModelsSwiper .swiper-pagination {
  top: initial;
  bottom: 1.38rem;
  width: 76%;
  background-color: #d7d6d8;
  height: 2px;
}
.winningModelsSwiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #1d242d;
}
.winningModelsSwiper .winningModels_prev,
.winningModelsSwiper .winningModels_next {
  position: absolute;
  bottom: 2px;
  top: initial;
  margin-top: 0;
  height: 2.88rem;
}
.winningModelsSwiper .winningModels_prev {
  left: inherit;
  right: 16.25rem;
}
.winningModelsSwiper .winningModels_next {
  right: 13.75rem;
}
.winningModelsSwiper .winningModels_prev:after,
.winningModelsSwiper .winningModels_next:after {
  font-size: 1.25rem;
  color: #111111;
  font-weight: bold;
}
.awardWinningModels {
  position: relative;
  background-color: #efeef0;
  padding: 5.2083vw 0;
}
.awardWinningModels .list {
  padding-bottom: 1.25rem;
}
.awardWinningModels .list li {
  margin-bottom: 1.88rem;
}
.awardWinningModels .list li .box {
  display: block;
  background-color: #ffffff;
  height: 100%;
  padding-bottom: 1.56rem;
}
.awardWinningModels .list li .box .img {
  height: 15.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
    to bottom,
    #4d5055 0%,
    #7d8085 65%,
    #787b7f 100%
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 15px;
  position: relative;
}
.awardWinningModels .list li .box .img a {
  width: 100%;
  height: 13.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.awardWinningModels .list li .box .img a:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/icon08.svg);
  background-size: 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.awardWinningModels .list li .box .img img {
  max-height: 100%;
  transform: scale(1);
  transition: transform 600ms;
}
.awardWinningModels .list li .box .img a:hover img {
  transform: scale(0.9);
}
.awardWinningModels .list li .box .con {
  padding: 0 2.0833vw;
}
.awardWinningModels .list li .box .con .title {
  font-size: 1.62rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.awardWinningModels .list li .box .con .text {
  padding: 1.75rem 0;
  display: flex;
}
.awardWinningModels .list li .box .con .text .text_icon {
  width: 92px;
}
.awardWinningModels .list li .box .con .text .text_box {
  padding-left: 1.88rem;
  margin-left: 1.88rem;
  font-size: 1.12rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.awardWinningModels .list li .box .con .text .text_box a[href] {
  transition: all 400ms;
  text-decoration: underline !important;
}
.awardWinningModels .list li .box .con .text .text_box a[href]:hover {
  color: #da2228 !important;
}
.awardWinningModels .hMore a {
  margin: 0 auto;
}
/**/
.seriesForklift {
  position: relative;
  background-color: #efeef0;
  padding: 5.2083vw 0;
}
.seriesForkliftMain {
  position: relative;
  padding-left: 25.62rem;
  min-height: 550px;
}
.seriesForklift_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 19.62rem;
  background-color: #efeef0;
}
.seriesForklift_search {
  position: relative;
  background-color: #ffffff;
}
.seriesForklift_search .form-control {
  border-radius: 0;
  border: none;
  box-shadow: none;
  height: 3.75rem;
  font-size: 1.25rem;
  padding: 0 0.75rem 0 3.38rem;
}
.seriesForklift_search:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.38rem;
  height: 100%;
  background: url(../images/search02.svg) no-repeat center;
  background-size: 1.19rem;
}

.seriesForklift_environment {
}
.seriesForklift_environment .title {
  background-color: #ffffff;
  font-size: 1.25rem;
  padding: 0.94rem 3.38rem;
  position: relative;
  cursor: pointer;
}
.seriesForklift_environment .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.38rem;
  height: 100%;
  background: url(../images/icon03.png) no-repeat center;
  background-size: 1.19rem;
}
.seriesForklift_environment .title:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3.38rem;
  background: url(../images/topIcon.svg) no-repeat center;
  background-size: 1.5rem;
  transform: rotate(180deg);
  transition: all 400ms;
}
.seriesForklift_environment .title.active:before {
  transform: rotate(0);
}
.seriesForklift_environment_list {
  display: none;
}
.seriesForklift_choice {
}
.seriesForklift_choice .title {
  background-color: #ffffff;
  font-size: 1.25rem;
  padding: 0.94rem 3.38rem;
  position: relative;
  cursor: pointer;
}
.seriesForklift_choice .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.38rem;
  height: 100%;
  background: url(../images/icon04.png) no-repeat center;
  background-size: 1.19rem auto;
}
.seriesForklift_choice .title:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3.38rem;
  background: url(../images/topIcon.svg) no-repeat center;
  background-size: 1.5rem;
  transform: rotate(180deg);
  transition: all 400ms;
}
.seriesForklift_choice .title.active:before {
  transform: rotate(0);
}
.seriesForklift_choice_list {
  display: none;
}
.formCheckbox {
  padding-top: 1.25rem;
  padding-bottom: 1px;
}
.formCheckbox .form-group {
  margin-bottom: 1.25rem;
}
.formCheckbox .form-check {
  padding-left: 0;
}
.formCheckbox .form-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.formCheckbox .form-check .form-check-label {
  font-size: 1.12rem;
  color: #333333;
  border-radius: 0;
  line-height: 1.75rem;
  display: block;
  cursor: pointer;
  position: relative;
  padding-left: 2.5rem;
}
.formCheckbox .form-check .form-check-label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #ffffff;
  margin-top: -0.88rem;
  transition: all 400ms;
}
.formCheckbox .form-check .form-check-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #da2228;
  background-image: url(../images/icon07.png);
  background-size: 1.06rem auto;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -0.88rem;
  transition: all 400ms;
  z-index: 1;
  opacity: 0;
}
.formCheckbox
  .form-check
  input[type="checkbox"]:checked
  + .form-check-label::before,
.formCheckbox
  .form-check
  input[type="checkbox"]:focus
  + .form-check-label::before {
  opacity: 1;
}

.seriesForklift_weight {
  background-color: #ffffff;
}
.seriesForklift_weight .title {
  background-color: #ffffff;
  font-size: 1.25rem;
  padding: 0.94rem 3.38rem;
  position: relative;
}
.seriesForklift_weight .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.38rem;
  height: 100%;
  background: url(../images/icon05.png) no-repeat center;
  background-size: 1.38rem auto;
}
.seriesForklift_height {
  background-color: #ffffff;
}
.seriesForklift_height .title {
  background-color: #ffffff;
  font-size: 1.25rem;
  padding: 0.94rem 3.38rem;
  position: relative;
}
.seriesForklift_height .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.38rem;
  height: 100%;
  background: url(../images/icon06.png) no-repeat center;
  background-size: 1.31rem auto;
}
.seriesForklift_single {
  position: relative;
  padding: 1.88rem 1.25rem 2rem;
}
.slider-container {
  width: 100% !important;
}
.slider-container .back-bar {
  height: 10px;
  position: relative;
}
.slider-container .back-bar .selected-bar {
  position: absolute;
  height: 100%;
}
.slider-container .back-bar .pointer {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  cursor: col-resize;
  opacity: 1;
  z-index: 2;
}
.slider-container .back-bar .pointer.last-active {
  z-index: 3;
}
.slider-container .back-bar .pointer-label {
  position: absolute;
  font-size: 12px;
  transition: opacity 250ms;
  top: -40px;
  color: #da2228;
  padding: 2px 10px;
  background-color: #fff;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  line-height: 25px;
  height: 25px;
  transform: translateX(-8px);
  width: auto;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
}
.slider-container .back-bar .pointer-label:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
}
.theme-green .back-bar .pointer-label.focused {
  opacity: 1;
}
.slider-container .back-bar .focused {
  z-index: 10;
}
.slider-container .clickable-dummy {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider-container .scale {
  top: 2px;
  position: relative;
}
.slider-container .scale span {
  position: absolute;
  height: 5px;
  font-size: 0;
  bottom: 30px;
}
.slider-container .scale ins {
  font-size: 14px;
  text-decoration: none;
  position: relative;
  left: 0;
  margin-left: 0 !important;
  line-height: 1;
  font-family: "MontserratRegular";
}
.slider-container .scale span:first-child {
}
.slider-container .scale span:last-child {
  left: inherit !important;
  right: 0 !important;
}
.slider-container.slider-readonly .clickable-dummy,
.slider-container.slider-readonly .pointer {
  cursor: auto;
}
.theme-green .back-bar {
  height: 2px;
  background-color: #1d242d;
  z-index: 10;
}
.theme-green .back-bar .selected-bar {
  background-color: #da2228;
}
.theme-green .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -7px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #da2228;
  border-radius: 100%;
}
.theme-green .back-bar .pointer-label {
  color: #da2228;
}
.theme-green .back-bar .focused {
  color: #da2228;
}
.theme-green .scale ins {
  color: #da2228;
}
.theme-blue .back-bar {
  height: 5px;
  border-radius: 2px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
}
.theme-blue .back-bar .selected-bar {
  border-radius: 2px;
  background-color: #92c1f9;
}
.theme-blue .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #aaa;
  background-color: #e7e7e7;
}
.theme-blue .back-bar .pointer-label {
  color: #999;
}
.theme-blue .back-bar .focused {
  color: #333;
}
.theme-blue .scale span {
  border-left: 1px solid #e5e5e5;
}
.theme-blue .scale ins {
  color: #999;
}
.seriesForklift_submit .btn {
  border-radius: 0;
  background-color: #1d242d;
  color: #ffffff;
  text-align: center;
  padding: 0.69rem 0;
  border: none;
  width: 100%;
}
.seriesForklift_right .list {
  padding-bottom: 1.25rem;
}
.seriesForklift_right .list li {
  margin-bottom: 1.88rem;
}
.seriesForklift_right .list li .box {
  display: block;
  background-color: #ffffff;
  height: 100%;
  padding-bottom: 0.75rem;
}
.seriesForklift_right .list li .box .img {
  height: 13.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
    to bottom,
    #4d5055 0%,
    #7d8085 65%,
    #787b7f 100%
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 15px;
}
.seriesForklift_right .list li .box .img img {
  max-height: 100%;
}
.seriesForklift_right .list li .box .con {
  padding: 0 1.6666vw;
}
.seriesForklift_right .list li .box .con .title {
  font-size: 1.5rem;
  padding: 1.25rem 0;
  font-family: "MontserratRegular";
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.seriesForklift_right .list li .box .con .text {
  font-size: 1rem;
}
.seriesForklift_right .list li .box .con .text .text_li {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.06rem 0 1.06rem 2.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-position: left center;
  background-repeat: no-repeat;
}
.seriesForklift_right .list li .box .con .text .text_li:last-child {
  border-bottom: none;
}
.seriesForklift_right .list li .box .con .text .text_li:nth-child(1) {
  background-image: url(../images/icon01.png);
  background-size: 1.31rem auto;
}
.seriesForklift_right .list li .box .con .text .text_li:nth-child(2) {
  background-image: url(../images/icon02.png);
  background-size: 1.19rem auto;
}
.seriesForklift_right .list li .box .con .text .text_li .sou {
  font-family: "MontserratRegular";
  flex: 1;
  text-align: right;
}
.seriesForklift_right .hMore a {
  margin: 0 auto;
}
/**/
#wBanner.seriesForkliftBannerH .img {
  height: 55.38rem;
}
.seriesForkliftDImg {
  position: absolute;
  top: 0;
  right: 17.625vw;
  width: 50%;
  height: 100%;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seriesForkliftDImg .seriesForkliftImg_list {
  display: none;
  height: 60%;
  text-align: center;
}
.seriesForkliftDImg .seriesForkliftImg_list.active {
  display: block;
}
.seriesForkliftDImg .seriesForkliftImg_list img {
  max-height: 100%;
}
.seriesForkliftDTab {
  position: absolute;
  top: 0;
  right: 8.3333vw;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  padding-bottom: 5rem;
}
.seriesForkliftDTab li {
  background-color: #ffffff;
  margin: 0.94rem 0;
  width: 8.31rem;
  height: 5rem;
  border: 2px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.seriesForkliftDTab li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 20px;
  height: 20px;
  background-image: url(../images/topIcon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  transform: rotate(-90deg);
  margin-top: -10px;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms;
}
.seriesForkliftDTab li div {
  width: 60%;
  height: 100%;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seriesForkliftDTab li div img {
  max-height: 100%;
}
.seriesForkliftDTab li.active {
  border-color: #ff0000;
}
.seriesForkliftDTab li.active:after {
  opacity: 1;
  visibility: visible;
}

.seriesForkliftD {
  background-color: #ffffff;
  position: relative;
  margin-top: -5rem;
  z-index: 3;
  padding: 6.25rem 7.8125vw;
  font-size: 1rem;
}
.seriesForkliftD img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
}
.table_style {
  font-size: 1rem;
}
.table_style table {
  width: 100%;
}
.table_style table tr td {
  padding: 0.75rem 1rem;
  border: 1px solid #fff;
}
.table_style table tr:nth-child(2n-1) td {
  background-color: #efeef0;
}
.table_style table tr:nth-child(2n-1) td {
  background-color: #efeef0;
}
.table_style table tr:first-child td {
  background-color: #da2228;
  color: #ffffff;
  padding: 1rem 1rem;
}
/**/
.technology {
  position: relative;
  z-index: 3;
  margin-top: -5rem;
}
.technologyTab {
  background-color: #ffffff;
}
.technologyTab ul li {
  position: relative;
  flex: 1;
  text-align: center;
}
.technologyTab ul li + li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 2.25rem;
  margin-top: -1.12rem;
  background-color: #efeef0;
}
.technologyTab ul li a {
  display: block;
  height: 5rem;
  line-height: 5rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid #efeef0;
  font-family: "MontserratRegular";
  position: relative;
}
.technologyTab ul li.active a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #da2228;
}

.technologyBox {
  background-color: #ffffff;
  padding: 0 7.8125vw;
}
.technologyBoxHead {
  padding: 6.25rem 8.8541vw;
  border-bottom: 2px solid #e8e9ea;
  display: flex;
  align-items: center;
}
.technologyBoxHead .con {
  padding-left: 1.88rem;
}
.technologyBoxHead .con .title {
  font-size: 2.25rem;
  margin-bottom: 0.62rem;
}
.technologyBoxHead .con .text {
  font-size: 1.25rem;
}
.technologyBoxList .technologyBoxList_items + .technologyBoxList_items {
  border-top: 1px solid #efeef0;
}
.technologyBoxList_items {
  padding: 6.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.technologyBoxList_items_text {
  width: 52%;
}
.technologyBoxList_items_img {
  width: 42%;
  text-align: right;
}
.technologyBoxList_items_title {
  font-size: 2.12rem;
  margin-bottom: 0.62rem;
}
.technologyBoxList_items_ul li + li {
  border-top: 1px solid #efeef0;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}
.technologyBoxList_items_ul li .title {
  font-size: 1.75rem;
  color: #da2228;
  margin-bottom: 0.38rem;
}
.technologyBoxList_items_ul li .text {
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 1.88rem;
}
.hVideo {
  width: 12.5rem;
  color: #ffffff;
}
.hVideo a {
  display: block;
  height: 2.88rem;
  line-height: 2.88rem;
  background-color: #da2228;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
}
.hVideo a span {
  padding-left: 2.5rem;
  background-image: url(../images/hVideoIcon.png);
  background-position: left center;
  background-size: 1.19rem auto;
  background-repeat: no-repeat;
}
/**/
.case {
  background-color: #ffffff;
  padding: 7.5rem 0 6.25rem;
}
.case .hTitle {
  line-height: 1.47;
}
.caseColumn {
  padding: 3.75rem 0;
}
.caseColumn ul li {
  width: 12.5rem;
  text-align: center;
}
.caseColumn ul li a {
  display: block;
  padding: 10px 0;
  font-size: 1.25rem;
  border: 1px solid #efeef0;
  margin-left: -1px;
}
.caseColumn ul li:hover a,
.caseColumn ul li.active a {
  color: #ffffff;
  background-color: #da2228;
}
.caseD {
  background-color: #efeef0;
}
.caseDBox {
  background-color: #ffffff;
  padding: 6.25rem 7.8125vw 3.75rem;
}
.caseDBox .title {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 0.75rem;
}

.caseDBox .time {
  font-size: 1.12rem;
  color: #999;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 2.2rem;
  margin-bottom: 2.2rem;
}

.caseDBox .text {
  line-height: 1.8;
  font-size: 1.12rem;
  color: #2f3740;
  text-align: justify;
  padding-bottom: 6.25rem;
}
.caseDBox .text video {
  width: 100%;
  display: block;
}
.caseDBox .text img {
  display: flex;
  margin: 0 auto;
}

.caseDBox .page {
  border-top: 2px solid #7c848d;
  position: relative;
  padding: 2.5rem 0;
}

.caseDBox .page .link {
  display: block;
  color: #585858;
}

.caseDBox .page .page_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.12rem;
  padding-top: 4px;
}

.caseDBox .page .page_text {
  font-size: 1rem;
  color: #999999;
  position: relative;
}

.caseDBox .page .page_perv,
.caseDBox .page .page_next {
  width: 40%;
}

.caseDBox .page .page_perv {
  text-align: left;
}

.caseDBox .page .page_next {
  text-align: right;
}

.caseDBox .page .page_return {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -1.44rem;
  margin-left: -1.44rem;
}

.caseDBox .page .page_return a {
  display: block;
  position: relative;
  width: 2.88rem;
  height: 2.88rem;
  background-color: #1d242d;
}

.caseDBox .page .page_return a span {
  display: block;
  background-image: url(../images/returnIcon01.png);
  background-size: 0.69rem;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.caseDBox .page .link:hover {
  color: #121212;
}
.breadcrumb_tb {
  padding: 2.88rem 0 2.19rem;
}
/**/
.servicesHead {
  position: relative;
  padding: 7.8125vw 0 0;
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
}
.servicesHead .order-first .servicesHeadText {
  padding-right: 20%;
  padding-left: 0;
}
.servicesHead .servicesHeadText {
  padding-left: 20%;
}
.servicesHead .servicesHeadText .w_text {
  margin-bottom: 1.88rem;
}

.policy {
  position: relative;
  padding: 7.8125vw 0 2.6041vw;
}
.policy .hTitle {
  padding-bottom: 3.12rem;
}
.policyList {
  overflow: hidden;
}
.policyList li {
  padding: 3.12rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.policyList li {
}

.policyText {
  padding: 1.25rem 2.5rem;
}
.policyText .title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.policyText .hMore {
  margin-top: 1.25rem;
}
.policyText .text {
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 70%;
}
.policyText .policyText_con .text {
  display: none;
}
.policyText .policyText_con .text.active {
  display: block;
}
.policyTab {
  margin-bottom: 1.25rem;
}
.policyTab .policyTab_list {
  margin-right: 2.6rem;
  font-size: 1.5rem;
  line-height: 1.6;
  cursor: pointer;
  border-bottom: 2px solid #111;
}
.policyTab .policyTab_list.active {
  border-bottom-color: #da2228;
}
.policySwiper {
}
.policySwiper img {
  width: 100%;
  display: block;
}
.policySwiper .swiper-pagination {
  text-align: right;
  bottom: 15px;
  right: 10px;
}
.policySwiper .swiper-pagination .swiper-pagination-bullet {
  width: 3.75rem;
  height: 34px;
  line-height: 34px;
  margin: 0 5px;
  border-radius: 0;
  opacity: 1;
  position: relative;
  font-size: 14px;
  text-align: left;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
}
.policySwiper .swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
.policySwiper .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #da2228;
}

.onlineConsultation {
  padding: 7.8125vw 0;
}
.onlineConsultation .list {
  background-color: #1d242d;
  color: #ffffff;
}
.onlineConsultation .onlineConsultationCon {
  padding: 0.62rem 14.375%;
}
.onlineConsultation .onlineConsultationCon .w_text {
  margin-bottom: 1.88rem;
}
.salesNetworkMap {
  padding: 3.6458vw 0;
}
.salesNetworkMap .salesNetworkMapTitle {
  font-size: 1.88rem;
  font-weight: 600;
  padding-bottom: 1.25rem;
  color: #da2228;
}
.salesNetworkMap ul {
  margin-bottom: 3.75rem;
}
.salesNetworkMap ul li {
  padding-bottom: 1.25rem;
}
.salesNetworkMap ul li .title {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.62rem;
}
.salesNetworkMap ul li .text {
  line-height: 1.8;
  font-size: 1.25rem;
}

.salesNetworkMapBox {
  position: relative;
}
.salesNetworkMapBox ul > li.open {
  background: rgba(0, 0, 0, 0);
}
.salesNetworkMapBox ul > li.open:after {
  opacity: 1;
}
.salesNetworkMapBox ul > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  cursor: pointer;
  background: #da2228;
}
.salesNetworkMapBox ul > li a {
  text-indent: -999px;
  display: block;
  position: relative;
  width: 0.62rem;
  height: 0.62rem;
  overflow: hidden;
  font-size: 12px;
  transition: all 400ms linear;
}
.salesNetworkMapBox ul > li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3.12rem;
  height: 3.75rem;
  margin-left: -1.56rem;
  background: url(../images/salesNetworkMapIcon.png) no-repeat center;
  background-size: 3.12rem auto;
  opacity: 0;
  transition: all 400ms linear;
  pointer-events: none;
}
.salesNetworkMapBox ul > li.name1 {
  top: 65.8%;
  left: 47.4%;
}
.salesNetworkMapBox ul > li.name2 {
  top: 65%;
  left: 46.5%;
}
.salesNetworkMapBox ul > li.name3 {
  top: 67%;
  left: 46.8%;
}
.salesNetworkMapBox ul > li.name4 {
  top: 67%;
  left: 45.8%;
}
.salesNetworkMapBox ul > li.name5 {
  top: 63%;
  left: 43%;
}
.salesNetworkMapBox ul > li.name6 {
  top: 62%;
  left: 44.4%;
}
.salesNetworkMapBox ul > li.name7 {
  top: 69%;
  left: 45.2%;
}
.salesNetworkMapBox ul > li.name8 {
  top: 71.4%;
  left: 44.2%;
}
.salesNetworkMapBox ul > li.name9 {
  top: 69.8%;
  left: 46%;
}
.salesNetworkMapBox ul > li.name10 {
  top: 72.8%;
  left: 45.1%;
}
.salesNetworkMapBox ul > li.name11 {
  top: 72%;
  left: 46%;
}
.salesNetworkMapBox ul > li.name12 {
  top: 75%;
  left: 41%;
}
.salesNetworkMapBox ul > li.name13 {
  top: 84%;
  left: 35.5%;
}
.salesNetworkMapBox ul > li.name14 {
  top: 59%;
  left: 31.5%;
}
.salesNetworkMapBox ul > li.name15 {
  top: 56%;
  left: 37.5%;
}
.salesNetworkMapBox ul > li.name16 {
  top: 43%;
  left: 14%;
}
.salesNetworkMapBox ul > li.name17 {
  top: 84.4%;
  left: 39%;
}
.salesNetworkMapBox ul > li.name18 {
  top: 84%;
  left: 39.8%;
}
.salesNetworkMapBox ul > li.name19 {
  top: 79.3%;
  left: 42.8%;
}
.salesNetworkMapBox ul > li.name20 {
  top: 79.4%;
  left: 43.8%;
}
.salesNetworkMapBox ul > li.name21 {
  top: 75%;
  left: 37.5%;
}
.salesNetworkMapBox ul > li.name22 {
  top: 86.5%;
  left: 42%;
}
.salesNetworkMapBox ul > li.name23 {
  top: 43.9%;
  left: 42.1%;
}
.salesNetworkMapBox ul > li.name24 {
  top: 45.2%;
  left: 42.75%;
}
.salesNetworkMapBox ul > li.name25 {
  top: 47.2%;
  left: 43.1%;
}
.salesNetworkMapBox ul > li.name26 {
  top: 55%;
  left: 43.8%;
}
.salesNetworkMapBox ul > li.name27 {
  top: 71%;
  left: 32%;
}
.salesNetworkMapBox ul > li.name28 {
  top: 69%;
  left: 30%;
}
.salesNetworkMapBox ul > li.name29 {
  top: 63%;
  left: 42%;
}
.salesNetworkMapBox ul > li.name30 {
  top: 78%;
  left: 33.5%;
}
.salesNetworkMapBox ul > li.name31 {
  top: 61%;
  left: 34.5%;
}
.salesNetworkMapBox ul > li.name32 {
  top: 61%;
  left: 39.2%;
}
.salesNetworkMapBox ul > li.name33 {
  top: 67%;
  left: 37.5%;
}
.salesNetworkMapBox ul > li.name34 {
  top: 83%;
  left: 28.5%;
}
.salesNetworkMapBox ul > li.name35 {
  top: 27%;
  left: 52.5%;
}
.salesNetworkMapBox ul > li.name36 {
  top: 37%;
  left: 51%;
}
.salesNetworkMapBox ul > li.name37 {
  top: 39%;
  left: 47%;
}
.salesNetworkMapBox ul > li.name38 {
  top: 39%;
  left: 48%;
}
.salesNetworkMapBox ul > li.name39 {
  top: 42%;
  left: 47%;
}
.salesNetworkMapBox ul > li.name40 {
  top: 94%;
  left: 36%;
}
.salesNetworkMapCon {
  position: absolute;
  top: 50%;
  right: 5.625%;
  z-index: 1;
  width: 28rem;
  color: #ffffff;
  background-color: #da2228;
  transform: translateY(-50%);
}
.salesNetworkMapCon .title {
  font-size: 1.38rem;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.salesNetworkMapCon .text {
  font-size: 1rem;
  height: 60px;
}
.salesNetworkMapCon .text img {
  margin-right: 0.62rem;
  width: 1.31rem;
}
.distributor {
  background-color: #ffffff;
  padding: 6.25rem 7.8125vw;
  margin-top: -5rem;
  position: relative;
  z-index: 2;
}
.distributorBox {
  margin-top: 6.25rem;
  background-color: #efeef0;
}
.distributorBox .con {
  padding: 1.88rem 7.6923%;
}
.distributorBox .con .title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.distributorBox .con .text {
  font-size: 1.12rem;
  line-height: 1.8;
}
/**/
.consultationHead {
  position: relative;
  margin-top: -5rem;
  padding: 6.25rem 7.8125vw;
  background-color: #ffffff;
}
.consultationHeadText {
  padding-right: 5%;
}
.consultationHeadText .title {
  font-size: 1.75rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
.consultationHeadText .text {
  font-size: 1.25rem;
  line-height: 2;
}
.consultationHeadText .text li {
  margin-top: 1.25rem;
}
.consultationHeadText .text li img {
  margin-right: 0.62rem;
  width: 2.25rem;
}
.consultationList {
  padding: 6.25rem 0 8.75rem;
  position: relative;
}
.consultationList li {
  margin-bottom: 1.88rem;
}
.consultationList li .box {
  display: block;
}
.consultationList li .box .img {
  height: 19.7916vw;
}
.consultationList li .box .title {
  position: relative;
  font-size: 1.5rem;
  padding: 2rem 1.56rem;
  border-bottom: 1px solid #111;
}
.consultationList li .box .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 100%;
  background-image: url(../images/topIcon_h.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  transform: rotate(-90deg);
}

.consultationForm {
  padding: 7.5rem 7.8125vw;
  position: relative;
}
.consultationForm .c_title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 3.12rem;
}
.webForm .form-group {
  margin-bottom: 3.12rem;
}
.webForm .label {
  line-height: 1;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 1.25rem;
}
.webForm .label span {
  color: #da2228;
}
.webForm .input {
  position: relative;
}
.webForm .input .form-control {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  padding: 0 1.38rem;
  height: 4rem;
  color: #111;
  font-size: 1.12rem;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: none;
}
.webForm .input .form-control::placeholder {
  color: #cccccc;
  font-weight: 400;
}
.webForm .input .form-control:focus {
  border-color: #da2228;
}
.webForm .input select.form-control {
  background-image: url(../images/selectIcon.png);
  background-position: right 1.25rem center;
  background-size: 12px 8px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.webForm .input textarea.form-control {
  height: 17.5rem;
  padding: 1.25rem 1.38rem;
}
.webForm .formBtn .btn {
  margin: 0 0.94rem;
  background-color: #e4032e;
  width: 12.5rem;
  color: #ffffff;
  height: 2.88rem;
  line-height: 2.88rem;
  padding: 0;
  border-radius: 0;
}
.webForm .formBtn .btn-reset {
  background-color: #1d242d;
}
.improvementPurpose {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.improvementPurpose .form-check {
  padding-left: 0;
  margin-right: 3.75rem;
}
.improvementPurpose .form-check input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.improvementPurpose .form-check .form-check-label {
  font-size: 1.12rem;
  color: #333333;
  border-radius: 0;
  line-height: 28px;
  display: block;
  cursor: pointer;
  position: relative;
  padding-left: 2.5rem;
}
.improvementPurpose .form-check .form-check-label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #ffffff;
  margin-top: -0.88rem;
  border-radius: 4px;
  transition: all 400ms;
}
.improvementPurpose .form-check .form-check-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #ffffff;
  background-image: url(../images/icon07_.png);
  background-size: 1rem auto;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -0.88rem;
  transition: all 400ms;
  border-radius: 4px;
  z-index: 1;
  opacity: 0;
}
.improvementPurpose .form-check input[type="radio"]:checked + .form-check-label,
.improvementPurpose .form-check input[type="radio"]:focus + .form-check-label {
  color: #e4032e;
}
.improvementPurpose
  .form-check
  input[type="radio"]:checked
  + .form-check-label::before,
.improvementPurpose
  .form-check
  input[type="radio"]:focus
  + .form-check-label::before {
  opacity: 1;
}
.improvementPurposeVgv {
  padding-top: 2.5rem;
  display: none;
}
.improvementPurposeVgv ul li {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 1.88rem;
  margin-bottom: 1.88rem;
}
.improvementPurposeVgv ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.improvementPurposeVgv ul li ._label {
  font-size: 1.12rem;
  position: relative;
  line-height: 30px;
  padding-left: 2.5rem;
}
.improvementPurposeVgv ul li ._label span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.88rem;
  height: 1.88rem;
  line-height: 1.88rem;
  text-align: center;
  border-radius: 100%;
  border: 1px solid #e4032e;
  text-align: center;
  color: #e4032e;
  font-size: 1.12rem;
  font-family: "MontserratRegular";
  margin-top: -0.94rem;
}
.improvementPurposeVgv ul li ._radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.improvementPurposeVgv ul li ._radio {
}
.improvementPurposeVgv ul li ._radio .form-check {
  padding-left: 0;
  margin-right: 1.25rem;
  margin-top: 1.25rem;
}
.improvementPurposeVgv ul li ._radio .form-check input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.improvementPurposeVgv ul li ._radio .form-check .form-check-label {
  font-size: 1.12rem;
  color: #333333;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 0.62rem 1.25rem;
  display: block;
  cursor: pointer;
  position: relative;
  min-width: 12.75rem;
}
.improvementPurposeVgv ul li ._radio .form-check .form-check-label span {
  font-size: 1.12rem;
}
.improvementPurposeVgv
  ul
  li
  ._radio
  .form-check
  input[type="radio"]:checked
  + .form-check-label,
.improvementPurposeVgv
  ul
  li
  ._radio
  .form-check
  input[type="radio"]:focus
  + .form-check-label {
  color: #ffffff;
  background-color: #e4032e;
}
/**/
.handlingGroupText {
  padding: 6.25rem 7.8125vw;
  background-color: #ffffff;
  margin-top: 1.88rem;
}
.handlingGroupText hr {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}
.warehousingLogisticsList {
  padding: 1.88rem 1.88rem 2.5rem;
}
.warehousingLogisticsList li {
  margin-bottom: 1.88rem;
}
.warehousingLogisticsList li .box {
  border: 1px solid #e8e9ea;
  position: relative;
  padding-bottom: 90px;
  height: 100%;
}
.warehousingLogisticsList li .box .text {
  padding: 2.25rem;
  line-height: 1.55;
}
.warehousingLogisticsList li .box .tab {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #e8e9ea;
}
.warehousingLogisticsList li .box .tab .tab_list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  text-align: center;
  border-right: 1px solid #e8e9ea;
}
.warehousingLogisticsList li .box .tab .tab_list:last-child {
  border-right: none;
}
.warehousingLogisticsList li .box .tab .tab_list ._sou {
  font-size: 1.25rem;
}
.warehousingLogisticsList li .box .tab .tab_list ._title {
  font-size: 0.94rem;
}
.warehousingLogisticsList .hMore a {
  margin: 0 auto;
}
.warehousingLogisticsTitle {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  line-height: 1.38;
  padding-bottom: 1.62rem;
  margin-bottom: 4.25rem;
}
.warehousingLogisticsTitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  background-color: #da2228;
  width: 30rem;
  margin-left: -15rem;
}

.warehousingLogisticsCon {
  padding: 6.25rem 7.8125vw;
}
.warehousingLogisticsCon hr {
  margin-top: 4.25rem;
  margin-bottom: 4.25rem;
}
.warehousingLogisticsSides .con {
  padding-right: 6.25rem;
  font-size: 1.25rem;
  line-height: 1.8;
}
.warehousingLogisticsUl .con {
  font-size: 1.25rem;
  padding-right: 1.88rem;
}
.warehousingLogisticsUl .con .title {
  font-size: 1.75rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
.warehousingLogisticsUl .con p {
  margin-bottom: 1rem;
}
.warehousingLogisticsUl .con ul > li {
  font-size: 1.12rem;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.warehousingLogisticsUl .con ul > li strong {
  color: #ff0000;
}
.warehousingLogisticsUl .con ul > li:after {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #da2228;
}
.warehousingLogisticsUl .con .hVideo {
  margin-top: 1.75rem;
}
.warehousingLogisticsUlSwiper {
  margin-bottom: 1rem;
}
.warehousingLogisticsUlSwiper .swiper-pagination .swiper-pagination-bullet {
  border: 2px solid #ff0000;
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
  width: 10px;
  height: 10px;
}
.warehousingLogisticsUlSwiper
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #ff0000;
}

.warehousingLogisticsTable .title {
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 1.88rem;
}
.warehousingLogisticsTable .table_style table {
  table-layout: fixed;
}
.warehousingLogisticsUlTextJs p {
  display: none;
}
.warehousingLogisticsUlTextJs p.active {
  display: block;
}
/**/
.fleetManagement {
  margin-top: -5rem;
  position: relative;
}
.fleetManagementText {
  font-size: 1.25rem;
  line-height: 1.8;
}
.fleetManagementText .title {
  font-size: 1.75rem;
  font-weight: 500;
  padding-bottom: 0.62rem;
}
.fleetManagementAreas {
}
.fleetManagementAreas ul {
  margin-right: -0.62rem;
  margin-left: -0.62rem;
}
.fleetManagementAreas ul > li {
  padding-left: 0.62rem;
  padding-right: 0.62rem;
  margin-bottom: 1.25rem;
}
.fleetManagementAreas ul > li .box {
  background-color: #f2f2f3;
  height: 100%;
  min-height: 18.75rem;
  padding: 1.88rem;
  position: relative;
  border-bottom: 6px solid #1d242d;
}
.fleetManagementAreas ul > li .box .title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.62rem;
}
.fleetManagementAreas ul > li .box .title span {
  font-size: 1.12rem;
}
.fleetManagementAreas ul > li .box .text {
  font-size: 1.12rem;
  line-height: 1.8;
}
.fleetManagementAreas ul > li .box .text p {
  position: relative;
  padding-left: 12px;
}
.fleetManagementAreas ul > li .box .text p:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #111;
  border-radius: 100%;
}
.fleetManagementAreas ul > li .box:hover {
  border-bottom-color: #cb171d;
}
.fleetManagementAdvantage ul {
  margin-left: -8px;
  margin-right: -8px;
}
.fleetManagementAdvantage ul li {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}
.fleetManagementAdvantage ul li .box {
  border: 1px solid #f2f2f3;
  border-top: none;
  height: 100%;
}
.fleetManagementAdvantage ul li .box .con {
  padding: 1.62rem 1.88rem;
}
.fleetManagementAdvantage ul li .box .title {
  font-size: 1.38rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.fleetManagementAdvantage ul li .box .text {
  font-size: 1.12rem;
}
.fleetManagementConfigure {
}
.fleetManagementConfigure ul {
  margin-left: -6px;
  margin-right: -6px;
}
.fleetManagementConfigure ul li {
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 12px;
}
.fleetManagementConfigure ul li .box {
  height: 100%;
}
.fleetManagementConfigure ul li .box .title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.fleetManagementConfigure ul li .box .img img {
  display: block;
  width: 100%;
}
.fleetManagementConfigure ul li .box .con {
  padding: 1.62rem 1.88rem;
  border: 1px solid #f2f2f3;
}
/**/
.toyotaSafetyDanger {
  padding-bottom: 12.5rem;
  background: url(../images/toyotaSafetyIcon04.jpg) no-repeat center bottom;
}
.toyotaSafetyDanger .img img {
  max-width: 21.6666vw;
  margin: 0 auto;
}
.toyotaSafetyDanger .con li {
  border-bottom: 1px solid #e8e9ea;
  position: relative;
  padding: 3.75rem 0 3.75rem 5.62rem;
  font-size: 1.12rem;
}
.toyotaSafetyDanger .con li .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 5.62rem;
  bottom: 0;
  display: flex;
  align-items: center;
}
.toyotaSafetyDanger .con li:last-child {
  border-bottom: none;
}
.toyotaSafetyAccident {
  padding-top: 4.38rem;
}
.toyotaSafetyAccident .title {
  font-size: 1.75rem;
  padding-bottom: 3.12rem;
}
.toyotaSafetyAccident .title span {
  color: #da2228;
  font-size: 2.2rem;
  font-family: "MontserratRegular";
}
.toyotaSafetyAccident .img img {
  max-width: 24.1145vw;
  margin: 0 auto;
}
.toyotaSafetyAccident ul {
  padding-right: 7.5rem;
  background: url(../images/toyotaSafetyIcon05.jpg) no-repeat right center;
}
.toyotaSafetyAccident ul > li {
  background-color: #fbe8e9;
  border-left: 4px solid #da2228;
  padding: 2.5rem;
  margin: 1.88rem 0;
}
.toyotaSafetyAccident ul > li .li_title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.toyotaSafetyAccident ul > li .li_text {
  font-size: 1.12rem;
}
.toyotaSafetyAccident ul > li:nth-child(2) {
  background-color: #e8e9ea;
  border-left: 4px solid #1d242d;
}
.toyotaSafetyTitle {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.toyotaSafetySafetyLaw .img p {
  font-size: 1.25rem;
  color: #d00000;
  margin-top: 0.62rem;
}
.toyotaSafetySafetyLaw .con {
}
.toyotaSafetySafetyLaw .con .title {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.toyotaSafetySafetyLaw .con .text {
  font-size: 1.25rem;
  line-height: 1.8;
}
.toyotaSafetySafetyLaw .con .text span {
  color: #da2228;
}
.target {
  background-color: #da2228;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
}
.toyotaSafetyTitle {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.toyotaSafetyText .title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.toyotaSafetyText .text {
  line-height: 1.8;
  font-size: 1.12rem;
  border-bottom: 1px solid #e8e9ea;
  padding-bottom: 1.62rem;
  margin-bottom: 1.62rem;
}
.toyotaSafetyText .list {
  font-size: 1.12rem;
  line-height: 1.8;
}
.toyotaSafetyText .target {
  max-width: 820px;
  margin-top: 3.12rem;
}
.toyotaSafetyFactor .target {
  font-size: 1.5rem;
  margin-bottom: 2.25rem;
  padding: 1.38rem 2.25rem;
}
.toyotaSafetyFactor ul {
  margin-left: -10px;
  margin-right: -10px;
}
.toyotaSafetyFactor ul > li {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.toyotaSafetyFactor ul > li .box {
  height: 100%;
  border: 1px solid #f2f2f3;
  border-top: none;
}
.toyotaSafetyFactor ul > li .box .title {
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem;
  background-color: #1d242d;
}
.toyotaSafetyFactor ul > li .box .con {
  padding: 1.5rem 2rem;
}
.toyotaSafetyFactor ul > li .box .con p {
  font-size: 1.12rem;
  font-weight: 500;
  padding-bottom: 1.5rem;
}
.toyotaSafetyFactor ul > li .box .link {
  font-size: 1.12rem;
  color: #da2228;
  position: relative;
  padding-right: 1.25rem;
  border-bottom: 1px solid #111;
  white-space: nowrap;
}
.toyotaSafetyFactor ul > li .box .link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/topIcon.svg) no-repeat center;
  background-size: 1.25rem;
  transform: rotate(90deg);
  margin-top: -0.62rem;
}
.toyotaSafetyFactor ul > li .box .text_list {
  text-align: center;
}
.toyotaSafetyFactor ul > li .box .text_list .img {
  margin: 0 auto 1rem;
  width: 76%;
}
.toyotaSafetyFactor ul > li .box dl {
  margin-bottom: 1rem;
}
.toyotaSafetyFactor ul > li .box dl dt {
  font-size: 1.12rem;
  position: relative;
  padding-left: 12px;
  width: 62%;
  font-weight: 500;
}
.toyotaSafetyFactor ul > li .box dl dt:after {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #da2228;
}
.toyotaSafetyConsiderTitle {
  font-size: 2rem;
  text-align: center;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.88rem;
}
.toyotaSafetyConsiderTitle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  text-align: center;
  border-radius: 100%;
  border: 3px solid #ffffff;
  background-color: #e23e43;
  color: #fff;
  margin: 0 1rem;
  box-shadow: 0 0 1.88rem rgba(0, 0, 0, 0.3);
  font-family: "MontserratRegular";
}
.toyotaSafetypPreventionTitle {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 3.75rem;
}
/**/
.toyotaSafetyConsider .title {
  color: #d00000;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.toyotaSafetyConsider ul {
  padding-left: 6%;
  padding-right: 6%;
}
.toyotaSafetyConsider ul li {
  text-align: center;
  margin-bottom: 1.88rem;
}
.toyotaSafetyConsider ul li .text {
  font-size: 1.5rem;
  color: #d00000;
  padding: 0.75rem 0;
  font-weight: 500;
}
.toyotaSafetyOthers {
  background-color: #ae1b20;
  background: linear-gradient(to right, #ae1b20, #e64045);
  color: #ffffff;
  padding: 1.88rem 5rem;
  border-radius: 4px;
  box-shadow: 0 0 1.88rem rgba(0, 0, 0, 0.3);
}
.toyotaSafetyOthers .title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.toyotaSafetyOthers ul > li {
  margin-bottom: 0.62rem;
}
.toyotaSafetyOthers ul > li .text {
  font-size: 1.12rem;
  position: relative;
  padding-left: 12px;
}
.toyotaSafetyOthers ul > li .text:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #ffffff;
}
/**/
.toyotaSafetyImproveTitle {
  font-size: 2rem;
  font-weight: 500;
  color: #d00000;
  margin-bottom: 2.2rem;
}
.toyotaSafetyImprove ul li.items {
  margin-bottom: 1.25rem;
  border-radius: 6px;
  border: 3px solid #ffffff;
  position: relative;
  background-color: #efeef0;
  padding-left: 10.62rem;
  padding-right: 6.25rem;
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toyotaSafetyImprove ul li.items .title {
  background-color: #da2228;
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  width: 6.25rem;
  border-radius: 6px 0 0 6px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toyotaSafetyImprove ul li.items ul > li {
  position: relative;
  padding-left: 13px;
  font-size: 1.12rem;
  line-height: 1.8;
}
.toyotaSafetyImprove ul li.items ul > li:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #da2228;
}
.toyotaSafetyImprove ul li.items .text {
  width: 37%;
}
.toyotaSafetyImprove ul li.items .stop {
  width: 27%;
}
.toyotaSafetyIdea .title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.25rem;
}
.toyotaSafetyIdea ul {
  margin-left: -0.62rem;
  margin-right: -0.62rem;
  padding-bottom: 2.5rem;
}
.toyotaSafetyIdea ul > li {
  padding-left: 0.62rem;
  padding-right: 0.62rem;
  margin-bottom: 1.25rem;
}
.toyotaSafetyIdea ul > li .con {
  padding: 1.88rem;
  font-size: 1.25rem;
  border: 1px solid #f2f2f3;
  height: 6.88rem;
}
.toyotaSafetyIdea .target {
  max-width: 58.12rem;
  padding: 1.88rem;
  font-size: 1.25rem;
}
.toyotaSafetyIdea .target .title {
  margin-bottom: 6px;
  font-size: 1.5rem;
}
.toyotaSafetyEntranceHead {
  background-color: #1d242d;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 3.75rem 2.5rem;
}
.toyotaSafetyEntranceHead .title_ {
  padding-bottom: 2rem;
  line-height: 1;
}
.toyotaSafetyEntrance ul {
  margin-left: -0.62rem;
  margin-right: -0.62rem;
}
.toyotaSafetyEntrance ul > li {
  padding-left: 0.62rem;
  padding-right: 0.62rem;
  margin-bottom: 1.25rem;
}
.toyotaSafetyEntrance ul > li .box {
  border-radius: 6px;
  background-color: #1d242d;
  padding: 1.75rem;
  height: 100%;
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toyotaSafetyEntrance ul > li .box .text {
  padding-left: 2.12rem;
  white-space: nowrap;
}

.toyotaSafetyTrain .title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.25rem;
}
.toyotaSafetyTrain ul {
  margin-left: -6px;
  margin-right: -6px;
  padding-bottom: 2.5rem;
}
.toyotaSafetyTrain ul > li {
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 12px;
}
.toyotaSafetyTrain ul > li .box {
  height: 100%;
  border: 1px solid #f2f2f3;
}
.toyotaSafetyTrain ul > li .con {
  padding: 1.5rem;
  font-size: 1.25rem;
}
.toyotaSafetyTrain .target {
  max-width: 58.12rem;
  padding: 1.88rem;
  font-size: 1.5rem;
}
/**/

.image_placeholder {
  position: relative;
}

.image_placeholder img {
  position: relative;
  width: 100%;
  display: block;
  height: auto;
}

.image_placeholder .hotspot {
  position: absolute;
  display: inline-block;
  height: 1.88rem;
  width: 1.88rem;
  cursor: pointer;
  background-color: #ef7b10;
  border-radius: 100%;
}

.image_placeholder .hotspot:after {
  content: "";
  display: inline-block;
  border-radius: 100%;
  background-color: #ef7b10;
  height: 7.5rem;
  width: 7.5rem;
  animation-iteration-count: infinite;
  animation-name: pulse;
  animation-duration: 1.5s;
  position: absolute;
  left: calc(-50% - 1.88rem);
  top: calc(-50% - 1.88rem);
}

.image_placeholder .hotspot .popup {
  transition: all ease-in-out 0.3s;
  background-color: #fff;
  width: 37.5rem;
  position: absolute;
  left: calc(50% - 18.75rem);
  top: -17.19rem;
  height: 15.62rem;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.image_placeholder .hotspot .popup .img_placeholder {
  position: absolute;
  width: 35%;
  float: left;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.image_placeholder .hotspot .popup .text_placeholder {
  margin-left: 35%;
  padding: 2.12rem 2.5rem;
  height: 100%;
  width: 65%;
  font-size: 1.12rem;
  line-height: 1.7;
  display: inline-block;
  background-color: #fff;
}
.image_placeholder .hotspot .popup .text_placeholder h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.image_placeholder .hotspot .popup:after {
  content: "";
  display: inline-block;
  width: 1.88rem;
  height: 1.88rem;
  background-color: #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: -0.94rem;
  left: calc(50% - 0.94rem);
  z-index: 0;
}

.image_placeholder .hotspot:hover {
  cursor: pointer;
}

.image_placeholder .hotspot:hover .popup {
  transition: all ease-in-out 0.3s;
  visibility: visible;
  opacity: 1;
}

.image_placeholder .hotspot.active {
  background-color: #fff;
}

.image_placeholder .hotspot.active:after {
  background-color: #fff;
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(0);
  }

  to {
    opacity: 0;
    transform: scale(1);
  }
}

.video_place {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #ffffff;
}
.video_place .video_con {
  z-index: 2;
  width: 86%;
  height: 76%;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.video_place .video_con video {
  display: block;
  width: 100%;
  height: 100%;
}
.video_place .video_close_btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 4.4791vw;
  height: 4.4791vw;
  background-color: #da2228;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.video_place .video_close_btn img {
  display: block;
  width: 2rem;
  height: 2rem;
}
/**/
.warehousingLogisticsList li {
  display: none;
}
.warehousingLogisticsList li:nth-child(1),
.warehousingLogisticsList li:nth-child(2),
.warehousingLogisticsList li:nth-child(3) {
  display: block;
}
.seriesForkliftD_screen {
  position: fixed;
  top: 9.38rem;
  left: -19.62rem;
  bottom: 9.38rem;
  z-index: 10;
  transition: all 500ms linear;
}
.seriesForkliftD_screen .seriesForklift_left {
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
}
.seriesForkliftD_screen .seriesForklift_left::-webkit-scrollbar {
  width: 2px;
}
.seriesForkliftD_screen .seriesForklift_left::-webkit-scrollbar-thumb {
  background: #dc363c;
}
.seriesForkliftD_screen .seriesForklift_left::-webkit-scrollbar-track {
  background: #efeef0;
}
.seriesForkliftD_screen .seriesForkliftD_screen_btn {
  position: absolute;
  top: 30%;
  right: -40px;
  width: 40px;
  border-radius: 0 14px 14px 0;
  background-color: #da2228;
  padding: 20px 12px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}
.seriesForkliftD_screen.open {
  left: 0;
}
.seriesForkliftD_screen .seriesForklift_left .formCheckbox {
  padding-left: 1rem;
}
/**/
#sideNav.solutionSideNav {
  top: 5rem;
  height: 1px !important;
}
#sideNav.solutionSideNav {
  opacity: 0;
  visibility: hidden;
  transition: all 400ms linear;
}
#sideNav.solutionSideNav.isActive {
  opacity: 1;
  visibility: visible;
}

.sec_hotspots_computer,
.sec_warehouse_computer {
  display: none;
}
.sec_hotspots_mobile,
.sec_warehouse_mobile {
  display: block;
}
.sec_hotspots .image_placeholder .hotspot.active,
.sec_hotspots .image_placeholder .hotspot.active:after {
  background-color: #ffffff;
}
.sec_hotspots .text_placeholder {
  padding: 1rem 0 2rem;
}
.sec_hotspots .text_placeholder .popup {
  display: none;
}
.sec_hotspots .text_placeholder .popup.active {
  display: block;
}
.sec_hotspots .text_placeholder .popup {
  text-align: center;
}
.sec_hotspots .text_placeholder .popup .img {
  display: none;
}
.sec_hotspots .text_placeholder .popup .text {
  font-size: 1.12rem;
  line-height: 1.7;
}
.sec_hotspots .text_placeholder .popup h4 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
/**/
.handlingGroupList {
  position: relative;
}
.handlingGroupList .link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 33.3333%;
  height: 100%;
  z-index: 1;
}
.handlingGroupList .link2 {
  left: 33.3333%;
}
.handlingGroupList .link3 {
  left: 66.6666%;
}
/**/
.seriesForkliftToolbar {
  background-color: #ffffff;
  margin-bottom: 2rem;
  padding: 1.5rem 15px;
}
.seriesForkliftToolbar .title {
  font-size: 2rem;
  font-weight: bold;
}
.seriesForkliftToolbar .btn {
  border: none;
  position: relative;
  font-size: 1.75rem;
  padding: 0 2.5rem 0 0;
  box-shadow: none;
}
.seriesForkliftToolbar .btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2.5rem;
  background: url(../images/topIcon.svg) no-repeat center;
  background-size: 2.5rem;
  transform: rotate(90deg);
}
.filter__header {
  background-color: #ffffff;
  position: relative;
  padding: 1.25rem 0;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 1.25rem;
}
.filter__header .filter__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: url(../images/topIcon.svg) no-repeat center;
  background-size: 3rem;
  transform: rotate(-90deg);
}
.filter__header .filter__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
/*20220315*/
.leanIntelligenceFang .titleEn {
  font-size: 2.25rem;
  font-weight: 500;
  padding-bottom: 1.88rem;
}
.leanIntelligenceText {
  font-size: 1.5rem;
  line-height: 1.7;
}
.webModal .modalClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.12rem;
  height: 3.12rem;
  cursor: pointer;
  z-index: 9;
  background-color: #da2228;
}
.webModal .modalClose img {
  width: 1.38rem;
}
.webModal .modal-content {
  border: none;
  border-radius: 0;
}
.webModal .modal-dialog {
  max-width: 100%;
}
.modalMain .hTitle {
  padding-bottom: 1rem;
}
.modalMain .hTitle .xuan {
  color: #fff;
  position: relative;
  top: -4px;
  font-size: 1.12rem;
  padding: 3px 9px;
  background-color: #da2228;
  border-radius: 4px;
}
.modalMain .diac {
  margin-bottom: 1.25rem;
}
.modalMain .diac li {
  font-size: 1.12rem;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.modalMain .diac li::after {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #da2228;
}
.modalMain .diacDui li {
  font-size: 1.25rem;
}
.modalMain .diac_30 li {
  font-size: 1.88rem;
}
.modalMain .diac_30 li::after {
  top: 50%;
  margin-top: -0.38rem;
}
.modalMain .diac_ li::after {
  background-color: #1577b8;
}
.modalMain .hTitleSamil {
  font-size: 1.38rem;
  padding-bottom: 0.62rem;
}
.hTitle_30 {
  font-size: 1.88rem;
  padding-bottom: 1rem;
}
.modalMain .target {
  max-width: 58.12rem;
  padding: 1.88rem;
  font-size: 1.25rem;
}
.modalMain .target.w-100 {
  max-width: 100%;
}
.modalMain .target .title {
  font-size: 1.5rem;
  padding-bottom: 0.75rem;
}
.modalMain .target .diac {
  text-align: left;
}
.modalMain .target .diac li::after {
  background-color: #fff;
}
.ImprovementProcess {
  margin-bottom: 1.88rem;
}
.ImprovementProcess ul {
  margin-left: -0.62rem;
  margin-right: -0.62rem;
}
.ImprovementProcess li {
  padding-left: 0.62rem;
  padding-right: 0.62rem;
  margin-bottom: 1.25rem;
}
.ImprovementProcess li .box {
  border: 1px solid #e5e5e5;
  height: 100%;
  padding: 1.88rem;
}
.ImprovementProcess li .box .title {
  font-size: 1.88rem;
  font-weight: 500;
  border-bottom: 1px solid #da2228;
  padding-bottom: 0.62rem;
  margin-bottom: 1.5rem;
}
.ImprovementProcess li .box .text {
  font-size: 1.25rem;
  line-height: 1.8;
}
.ImprovementProcess li .box .text span {
  color: #da2228;
}

.HandlingSolutions {
  margin-bottom: 1.88rem;
}
.HandlingSolutions ul.row {
  margin-left: -0.62rem;
  margin-right: -0.62rem;
}
.HandlingSolutions li.col-12 {
  padding-left: 0.62rem;
  padding-right: 0.62rem;
  margin-bottom: 1.25rem;
}
.HandlingSolutions li.col-12 .box {
  border: 1px solid #e5e5e5;
  height: 100%;
  padding: 1.88rem;
}
.HandlingSolutions li.col-12 .box .title {
  font-size: 1.88rem;
  font-weight: 500;
  padding-bottom: 0.62rem;
}

.HandlingEquipment {
  margin-bottom: 1.88rem;
}
.HandlingEquipment ul.row {
  margin-left: -0.62rem;
  margin-right: -0.62rem;
}
.HandlingEquipment li.col-12 {
  padding-left: 0.62rem;
  padding-right: 0.62rem;
  margin-bottom: 1.25rem;
}
.HandlingEquipment li.col-12 .box {
  border: 1px solid #e5e5e5;
  height: 100%;
}
.HandlingEquipment li.col-12 .box .con {
  padding: 1.25rem;
}
.HandlingEquipment li.col-12 .box .title {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.62rem;
}
.HandlingEquipment li.col-12 .box .title span {
  color: #da2228;
}

.joinUsAccordion {
  padding-bottom: 2.5rem;
}
.joinUsAccordion .joinUsAccordion_items {
  margin-bottom: 0.62rem;
  position: relative;
}
.joinUsAccordion_items {
  background-color: #f3f3f3;
  border-left: 3px solid #1d242d;
}
.joinUsAccordionHead {
  display: flex;
  height: 5.38rem;
  align-items: center;
  font-size: 1.25rem;
  padding: 0 4.38rem 0 1.88rem;
  cursor: pointer;
  position: relative;
}
.joinUsAccordionHead .icon {
  position: absolute;
  top: 50%;
  right: 1.88rem;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  border-radius: 100%;
  background-color: #1d242d;
}
.joinUsAccordionHead .icon:after,
.joinUsAccordionHead .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  transition: all 400ms;
}
.joinUsAccordionHead .icon:after {
  width: 12px;
  height: 2px;
}
.joinUsAccordionHead .icon:before {
  width: 2px;
  height: 12px;
}
.joinUsAccordion_items._open {
  border-left-color: #da2228;
}
.joinUsAccordion_items._open .joinUsAccordionHead .icon {
  background-color: #da2228;
}
.joinUsAccordion_items._open .joinUsAccordionHead .icon:before {
  opacity: 0;
}
.joinUsAccordion_items._open .joinUsAccordionCon {
  display: block;
}
.joinUsAccordion_items .joinUsAccordionCon {
  display: none;
  padding: 0 1.88rem 1.88rem;
  line-height: 1.6;
  font-size: 1.12rem;
}

.agvList {
  margin-left: -0.44rem;
  margin-right: -0.44rem;
}
.agvList li {
  padding-left: 0.44rem;
  padding-right: 0.44rem;
  margin-bottom: 0.88rem;
}
.agvList li .img {
  border: 1px solid #e6e6e6;
}
.agvList li .text {
  padding: 1.25rem 0;
  font-size: 1.12rem;
}
#oneModalClick,
#twoModalClick,
#threeModalClick,
#fourModalClick {
  cursor: pointer;
}
.fourKeTi {
}
.fourKeTi .title {
  padding-bottom: 3.44rem;
  text-align: center;
}
.fourKeTi .title span {
  background-color: #da2228;
  display: inline-block;
  font-size: 1.5rem;
  position: relative;
  padding: 0.88rem 2.5rem;
  color: #ffffff;
}
.fourKeTi .title span::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #da2228;
}
.fourKeTi ul {
  margin-left: -0.62rem;
  margin-right: -0.62rem;
}
.fourKeTi ul li {
  padding-left: 0.62rem;
  padding-right: 0.62rem;
  margin-bottom: 1.25rem;
}
.fourKeTi ul li span {
  background-color: #da2228;
  display: flex;
  align-items: center;
  height: 100%;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

/*自定义样式*/
/*关于*/
.about-list {
  margin-bottom: 7.8vw;
}
.about-list li {
  padding-bottom: 1.5rem;
}
.about-list a {
  display: block;
  min-height: 100%;
  background: var(--grey_bg);
}
.about-list a:hover {
  background: var(--colour1);
  color: #fff;
}
.about-list .img {
  overflow: hidden;
}
.about-list .info {
  padding: 2rem;

  transition: all 0.4s;
}

.about-list .info .title {
  color: var(--title);
}
.about-list .info .title {
  color: inherit;
}

/*about-style*/

.about-style {
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.about-styleList li {
  margin-bottom: 1.75rem;
}
.about-styleList li > div {
  min-height: 100%;
  background: #efeef0;
}
.about-styleList .img {
  padding-bottom: 61.8%;
}
.about-styleList .img img {
  width: 100%;
  height: 100%;
}

.about-styleList .info {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/*团队*/
.team-list {
  margin-top: 3rem;
}
.team-list li > div {
  min-height: 100%;
  background: #fff;
}
.team-list .title {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}
.team-list .info {
  padding: 2rem;
}

/*荣誉*/
.honorJs {
  margin-top: 3rem;
  padding-bottom: 6rem;
}
.honorJs li {
  text-align: center;
  background: #fff;
}
.honorJs li .img-center img {
  max-width: 80%;
  max-height: 80%;
}
.honorJs li .title {
  padding: 1.5rem 0;
  font-size: 1rem;
}
.honorJs .swiper-pagination {
  top: initial;
  bottom: 1.38rem;
  width: calc(100% - 8rem);
  background-color: #d7d6d8;
  height: 2px;
}
.honorJs .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #1d242d;
}
.honorJs .companyNews_prev,
.honorJs .companyNews_next {
  position: absolute;
  bottom: 2px;
  top: initial;
  margin-top: 0;
  height: 2.88rem;
}
.honorJs .companyNews_prev {
  left: inherit;
  right: 2.75rem;
}
.honorJs .companyNews_next {
  right: 0rem;
}
.honorJs .companyNews_prev:after,
.honorJs .companyNews_next:after {
  font-size: 1.25rem;
  color: #111111;
  font-weight: bold;
}

/**/
.c-list .title {
  font-size: 1.375rem;
  padding: 1.5rem 0 1rem;
}
/**/
.s-imgList a {
  padding-bottom: 61.8%;
}
.s-imgList li {
  padding: 15px;
}
.s-imgList a img {
  width: 100%;
  height: 100%;
}
/*地图*/
#map-canvas,
#map-canvas2 {
  width: 100%;
  height: 25rem;
}

.content-window-card {
  position: relative;
  box-shadow: none;
  bottom: 0;
  left: 0;
  width: auto;
  padding: 0;
}

.content-window-card p {
  height: 2rem;
}

.amap-icon img,
.amap-marker-content img {
  width: 25px;
  height: 34px;
}

.custom-info {
  border: solid 1px none;
  background: var(--colour1);
  border-radius: 3rem;
  overflow: hidden;
}

div.info-top {
  display: none;
  position: relative;
  background: none repeat scroll 0 0 #f9f9f9;
  border-bottom: 1px solid #ccc;
  border-radius: 5px 5px 0 0;
}

div.info-top div {
  display: inline-block;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  line-height: 31px;
  padding: 0 10px;
}

div.info-top img {
  position: absolute;
  top: 10px;
  right: 10px;
  transition-duration: 0.25s;
}

div.info-top img:hover {
  box-shadow: 0px 0px 5px #000;
}

div.info-middle {
  font-size: 12px;
  padding: 10px 15px;
  line-height: 20px;
  color: #fff;
  background: var(--colour1) !important;
  overflow: hidden;
}

div.info-bottom {
  display: none;
  height: 0px;
  width: 100%;
  clear: both;
  text-align: center;
}

div.info-bottom img {
  position: relative;
  z-index: 104;
}

.custom-info span {
  margin-left: 5px;
  font-size: 11px;
}

.info-middle img {
  float: left;
  margin-right: 6px;
}

/*地图*/

/*network*/
.contact-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.contact-list li {
  width: 33.33%;
  padding: 0.5rem;
}
.contact-list li > div {
  padding: 2rem;
  background: #fff;
  min-height: 100%;
}
.contact-list li > div .title {
  font-weight: 400;
}