body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
table,
th,
td,
menu {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

ul,
ol,
menu {
  list-style: none;
}

fieldset,
img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}

img,
object,
select,
input,
textarea,
button {
  vertical-align: middle;
}

input,
textarea,
select,
address,
caption,
cite,
code,
dfn,
em,
i,
b,
strong,
small,
th,
var,
abbr {
  font-size: 100%;
  font-style: normal;
}

caption,
th {
  text-align: left;
}

article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
figcaption {
  display: block;
}

code,
kbd,
pre,
samp,
tt {
  font-family: Consolas, "Courier New", Courier, monospace;
}

address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  color: #e50012;
  text-decoration: none;
  cursor: pointer;
}

body {
  font-size: 14px;
  font-family: Arial;
}

.clearMR {
  margin-right: 0px !important;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix:after {
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  clear: both;
  zoom: 1;
}

.h {
  max-width: 1200px;
  margin: 0 auto;
}

*:focus {
  outline: none;
}

.imgHover:hover img {
  margin-left: -10px;
}

.imgHover img {
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.imgHover:hover .title,
.imgHover:hover .m_detail {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.imgHover .m_detail {
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
}

.imgHover .title {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
}

.imgZoom {
  overflow: hidden;
}

.imgZoom:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.imgZoom img {
  -webkit-transition: all 1.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.downanimate {
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 32px;
  height: 32px;
  -webkit-animation: downanimates 1s linear infinite;
  animation: downanimates 1s linear infinite;
}

@-webkit-keyframes downanimates {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes downanimates {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.c-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #e50012;
  border: 1px solid #e50012;
  color: #fff;
  width: 20%;
  height: 45px;
  overflow: hidden;
}

.c-button:before,
.c-button:after {
  position: absolute;
  z-index: 0;
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
}

.c-button::before {
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: transform 0s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: transform 0s cubic-bezier(0.77, 0, 0.175, 1) 0s, -webkit-transform 0s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.c-button::after {
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.c-button .c-button__icon {
  position: absolute;
  top: 0;
  left: 25px;
  bottom: 0;
  margin: auto;
  z-index: 2;
  width: 12px;
  height: 12px;
  display: block;
}

.c-button .c-button__icon>span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  overflow: hidden;
}

.c-button .c-button__icon>span::before,
.c-button .c-button__icon>span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.c-button .c-button__icon>span:first-child {
  width: 100%;
  height: 2px;
}

.c-button .c-button__icon>span:first-child::before {
  content: ' ';
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
}

.c-button .c-button__icon>span:first-child::after {
  content: ' ';
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0.4s;
  transition: -webkit-transform 0.4s ease-in-out 0.4s;
  transition: transform 0.4s ease-in-out 0.4s;
  transition: transform 0.4s ease-in-out 0.4s, -webkit-transform 0.4s ease-in-out 0.4s;
}

.c-button .c-button__icon>span:last-child {
  height: 100%;
  width: 2px;
}

.c-button .c-button__icon>span:last-child::before {
  content: ' ';
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
}

.c-button .c-button__icon>span:last-child::after {
  content: ' ';
  -webkit-transform: translateY(101%);
  transform: translateY(101%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0.4s;
  transition: -webkit-transform 0.4s ease-in-out 0.4s;
  transition: transform 0.4s ease-in-out 0.4s;
  transition: transform 0.4s ease-in-out 0.4s, -webkit-transform 0.4s ease-in-out 0.4s;
}

.c-button:hover {
  color: #e50012;
}

.c-button:hover .c-button__icon>span::before,
.c-button:hover .c-button__icon>span::after {
  background: #e50012;
}

.c-button:hover::before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.8s ease-in-out 0s;
  transition: -webkit-transform 0.8s ease-in-out 0s;
  transition: transform 0.8s ease-in-out 0s;
  transition: transform 0.8s ease-in-out 0s, -webkit-transform 0.8s ease-in-out 0s;
}

.c-button:hover::after {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s ease-in-out 0.8s;
  transition: -webkit-transform 0s ease-in-out 0.8s;
  transition: transform 0s ease-in-out 0.8s;
  transition: transform 0s ease-in-out 0.8s, -webkit-transform 0s ease-in-out 0.8s;
}

.c-button:hover .c-button__icon>span:first-child:before {
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
}

.c-button:hover .c-button__icon>span:first-child:after {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0.4s;
  transition: -webkit-transform 0.4s ease-in-out 0.4s;
  transition: transform 0.4s ease-in-out 0.4s;
  transition: transform 0.4s ease-in-out 0.4s, -webkit-transform 0.4s ease-in-out 0.4s;
}

.c-button:hover .c-button__icon>span:last-child:before {
  -webkit-transform: translateY(-101%);
  transform: translateY(-101%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
}

.c-button:hover .c-button__icon>span:last-child:after {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0.4s;
  transition: -webkit-transform 0.4s ease-in-out 0.4s;
  transition: transform 0.4s ease-in-out 0.4s;
  transition: transform 0.4s ease-in-out 0.4s, -webkit-transform 0.4s ease-in-out 0.4s;
}

.c-button .c-button__text {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 16px;
}

#pageloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 999999999999;
  background: #000;
}

#pageloader::after,
#pageloader::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: #f9f6f1;
  z-index: -1;
  -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

#pageloader::before {
  top: 0;
}

#pageloader::after {
  bottom: 0;
}

#pageloader .loader-icon {
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

#pageloader.hide {
  visibility: hidden;
}

#pageloader.hide::after,
#pageloader.hide::before {
  height: 0;
}

#pageloader.hide .loader-icon {
  opacity: 0;
}

.loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
}

.loader-icon .circular {
  width: 100%;
  height: 100%;
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.loader-icon .circular .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@font-face {
  font-family: PingFang;
  src: url('../font/PingFang\ Bold.ttf');
}

#layout {
  position: relative;
}

.g-typename {
  text-align: center;
}

.g-typename p {
  font-family: 'CenturyGothic';
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 1px;
  margin-top: 5%;
}

.g-typename span {
  display: block;
  width: 24px;
  height: 4px;
  background: #e50012;
  margin: 1% auto 4%;
}

.head .head-top {
  background-color: #dbe4e8;
  line-height: 38px;
}

.head .head-top a {
  color: #515151;
}

.head .head-top .fr {
  background-color: #e50012;
  padding: 0 3%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.head .head-top .fr img {
  display: inline-block;
  padding-right: 12px;
}

.head .head-top .fr span {
  display: inline-block;
  color: #fff;
  letter-spacing: 1px;
}

.head .header-nav {
  position: fixed;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  margin: 0;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  -webkit-transform: translateY(37px);
  transform: translateY(37px);
  padding: 10px 0;
  background-color: #fff;
}

.head .header-nav.clone-nav.is-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.head .header-nav.clone-nav {
  z-index: 1000;
  -webkit-box-shadow: 0 0 21px 9px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 21px 9px rgba(0, 0, 0, 0.05);
}

.head .h {
  position: relative;
}

.head .language {
  position: relative;
  line-height: 92px;
  padding-left: 20px;
  margin-left: 22px;
  cursor: pointer;
  margin-right: 2%;
}

.head .language:hover ul {
  height: auto;
  opacity: 1;
}

.head .language span {
  color: #fff;
  margin-left: 5px;
  letter-spacing: 1px;
}

.head .language ul {
  position: absolute;
  height: 0;
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.head .nav_ul {
  margin-left: 45px;
}

.head .logo {
  line-height: 80px;
}

.head .logo img {
  width: 130px;
  display: inline-block;
}

.head .nav_item {
  position: relative;
  float: left;
}

.head .nav_item:hover>a {
  color: #e50012;
}

.head .nav_item:hover>a::before {
  background: #e50012;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.head .nav_item>a {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 80px;
  margin: 0 43px;
  padding: 0;
  color: #636363;
}

.head .nav_item>a::before {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 16px;
  height: 2px;
  background: transparent;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.head .nav_item>a.hover::before {
  background: #e50012;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.head .uls2 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 90px;
  background: rgba(0, 0, 0, 0.6);
  padding-bottom: 5px;
  display: none;
  z-index: 9000;
}

.head .uls2 a {
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  width: 100%;
  color: #fff;
  margin-right: -1px;
  position: relative;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  border-bottom: 1px solid #ccc;
}

.head .uls2 a.novlink:before {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  content: '';
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  background-color: #e50012;
}

.head .uls2 a:hover:before {
  width: 100%;
}

.search {
  position: absolute;
  top: 24px;
  right: 12px;
  width: 185px;
  height: 30px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  background-repeat: no-repeat;
  z-index: 1000;
}

.search .search-top {
  padding: 14px 0;
  border-bottom: 1px solid #DFDFDF;
}

.search .search-top .h {
  margin-top: 0 !important;
}

.search .search-top .h .fl {
  line-height: 30px;
}

.search .search-top span {
  display: inline-block;
  color: #888888;
}

.search .search-top span:not(:first-child) {
  margin-right: 8px;
}

.search .txt {
  width: 218px;
  padding: 0 10px;
  height: 42px;
  border: none;
  float: left;
  background: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: transparent;
  color: #fff;
}

.search .btn_sear {
  position: absolute;
  right: 4px;
  top: 10px;
  width: 19px;
  height: 17px;
  cursor: pointer;
  float: right;
  outline: none;
  border: none;
  padding: 0;
  background-image: url('../img/search.png');
  background-repeat: no-repeat;
  background-color: transparent;
}

.lng {
  width: 100%;
  background: rgba(255, 255, 255, 0.56);
  padding: 7% 18%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lng li {
  line-height: 28px;
  text-align: center;
  padding-bottom: 12%;
  border-bottom: 1px solid #000;
}

.lng li:last-child {
  margin-top: 10%;
}

.lng li a {
  display: block;
  color: #fff;
  line-height: 24px;
}

.lng li a:hover {
  color: #e50012;
}

.lng li a span {
  margin: 0 8px;
}

.phone {
  margin-right: 30px;
}

.phone i {
  display: inline-block;
  background: url('../img/phone_03.png') no-repeat;
  width: 15px;
  height: 15px;
}

.phone span {
  border-bottom: 1px solid #000;
}

#banner {
  margin-top: 99px;
}

#banner .h {
  position: relative;
}

#banner .h .banner-path {
  position: absolute;
  left: 0;
  /*bottom: 0;*/
  width: 78%;
  top: 50px;
}

#banner .h img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22%;
}

.banner {
  position: relative;
  width: 100%;
  margin-top: 99px;
}

.banner .swiper-pagination {
  bottom: 50px;
}

.banner .swiper-pagination-bullet {
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: inherit;
  opacity: 1;
}

.banner img {
  width: 100%;
}

.banner .swiper-pagination-bullet-active {
  background: #e50012;
}

.footer {
  position: relative;
  background: #333333;
  color: #fff;
}

.footer .nav_ul {
  margin-bottom: 20px;
}

.footer .f-about {
  width: 70%;
}

.footer .f-bottom {
  text-align: center;
  padding: 5px 0 10px;
}

.footer .f-bottom a {
  color: #fff;
}

.footer .wx {
  margin-top: 10px;
  width: 130px;
}

.footer .f-nav {
  padding: 2% 0 1%;
}

.footer .nav_item {
  float: left;
  margin-right: 65px;
}

.footer .nav_item a {
  font-size: 16px;
  color: #fff;
}

.footer .logo {
  width: 200px;
  margin-right: 7%;
  margin-top: 3%;
}

/* 搜索结果样式 */
.bst_page {
  padding-top: 4%;
  padding-bottom: 4%;
}

.bst_page .cc_botton {
  margin-bottom: 0;
}

.bst_page .bst_page_typename {
  font-size: 24px;
  font-weight: bold;
  color: #e50012;
  border-bottom: 1px solid #ccc;
  padding: 10px 5px;
}

.bst_page .bst_strlist {
  line-height: 30px;
  font-size: 16px;
  overflow: hidden;
  border-bottom: 1px dashed #ccc;
  padding: 10px 5px;
}

.bst_page .bst_strlist .tl a {
  color: #000;
}

.bst_page .bst_strlist .dr {
  float: right;
  line-height: 30px;
}

.bst_page .bst_newslist {
  padding-top: 4%;
}

@font-face {
  font-family: 'AVGARDN';
  src: url('../font/AVGARDN.ttf');
}

.i-title {
  position: relative;
  text-align: center;
  margin: 2% 0 3%;
}

.i-title span {
  display: block;
  font-family: 'AVGARDN';
  font-size: 22px;
  font-weight: 400;
  color: #ABABAB;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.i-title h2 {
  position: relative;
  display: table;
  margin: 0 auto 0;
  font-size: 28px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 20px;
  color: #e50012;
  background-color: #ffffff;
  z-index: 1;
}

.i-title::after {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: '';
  width: 22%;
  height: 1%;
  background-color: #ACACAC;
}

.layout .fl {
  position: relative;
  width: 230px;
}

.layout .fr {
  width: 80%;
}

/* 侧栏 */
.aside {
  position: fixed;
  width: 54px;
  height: 175px;
  right: 0;
  bottom: 0px;
  z-index: 100;
}

.aside ul {
  overflow: visible;
}

.aside li {
  width: 54px;
  height: 54px;
  float: left;
  position: relative;
  border-bottom: 1px solid #444;
}

.aside li .sidetop {
  width: 54px;
  height: 54px;
  line-height: 54px;
  display: inline-block;
  background: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.aside li .sidetop:hover {
  background: #e50012;
  opacity: 1;
  filter: alpha(opacity=100);
}

.i-pro {
  padding-bottom: 10%;
}

.i-pro li {
  position: relative;
  float: left;
  width: 32%;
  height: 345px;
  margin-right: 2%;
  border: 1px solid #e50012;
  padding: 2% 0;
}

.i-pro li p {
  position: absolute;
  top: 6%;
  left: 5%;
  color: #fff;
  background: #E50011;
  border-radius: 0px 12px 12px 0px;
  padding: 1% 4% 1% 2%;
}

.i-pro li img {
  margin: 3% auto 0;
  height: 100%;
  object-fit: contain;
}

.i-pro li:last-child {
  margin-right: 0;
}

.i-pro .c-button {
  margin: 2% auto;
  position: absolute;
  left: 0;
  right: 0;
  width: 12%;
}

.i-about {
  background: url('../images/bg_04.jpg') no-repeat;
  background-size: cover;
  height: 700px;
  margin-bottom: 4%;
  padding-top: 3%;
}

.i-about>p {
  text-align: center;
  font-family: 'PingFang';
  font-size: 16px;
  margin-bottom: 20px;
}

.i-about .i-title {
  margin: 1% 0;
}

.i-about .i-title span {
  color: #000;
}

.i-about .i-title h2 {
  color: #e50012;
  background-color: transparent;
}

.i-about .i-title::after {
  display: none;
}

.i-about .fl {
  background-color: #fff;
  width: 28%;
  margin-top: 2%;
  height: 398px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3% 4% 2%;
}

.i-about .fl i {
  margin: 1% auto;
  display: block;
  width: 103px;
  height: 70px;
  background: url('../images/gongsi.png') no-repeat;
}

.i-about .fl h2 {
  margin: 6% 0;
}

.i-about .fl span {
  display: block;
  font-family: PingFang;
  font-weight: 500;
  text-align: left;
  color: #333333;
  line-height: 28px;
}

.i-about .fl p {
  font-size: 16px;
  font-family: PingFang;
  color: #333333;
  margin-bottom: 8%;
}

.i-about .fl a {
  display: block;
  width: 45%;
  background-color: #e50012;
  line-height: 40px;
  color: #fff;
  border-radius: 19px;
  margin: 13% auto 0;
}

.i-about .fr {
  width: 68%;
}

.i-about li {
  float: left;
  width: 48%;
  height: 188px;
  margin-right: 4%;
  background-color: #e50012;
  margin-top: 3%;
  padding: 2%;
  text-align: center;
}

.i-about li i {
  margin: 1% auto;
  display: block;
  width: 45px;
  height: 53px;
  background: url('../images/rongyu.png') no-repeat;
}

.i-about li div {
  border: 1px solid #fff;
  padding: 20px 0;
}

.i-about li p {
  font-size: 22px;
  font-family: PingFang;
  font-weight: 300;
  color: #FFFFFF;
  margin: 1% 0;
}

.i-about li span {
  display: block;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 2%;
}

.i-about li:nth-child(3) {
  background-color: #fff;
}

.i-about li:nth-child(3) i {
  display: block;
  width: 42px;
  height: 44px;
  background: url('../images/qiye.png') no-repeat;
}

.i-about li:nth-child(3) div {
  border-color: #e50012;
}

.i-about li:nth-child(3) p {
  color: #000;
}

.i-about li:nth-child(3) span {
  color: #000;
}

.i-about li:last-child i {
  margin: 1% auto;
  display: block;
  width: 61;
  height: 44px;
  background: url('../images/fazhan.png') no-repeat;
}

.i-about li:nth-child(2) {
  background: url('../images/bg.jpg') no-repeat;
  padding: 0;
}

.i-about li:nth-child(2n+2) {
  margin-right: 0;
}

.i-join {
  background: url('../images/bg2_04.jpg') no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 465px;
  padding-top: 4%;
}

.i-join .i-title {
  margin: 2% 0 4%;
}

.i-join .i-title::after {
  display: none;
}

.i-join .i-title span {
  color: #fff;
}

.i-join .i-title h2 {
  color: #e50012;
  background-color: transparent;
}

.i-join li {
  position: relative;
  float: left;
  width: 20%;
  text-align: center;
  color: #fff;
}

.i-join li a p {
  color: #fff;
  font-size: 22px;
  padding: 28px 0 14px;
  letter-spacing: 1px;
}

.i-join li i {
  display: block;
  margin: 0 auto;
  width: 34px;
  height: 38px;
  background: url('../images/1.png') no-repeat;
}

.i-join li i::after {
  content: '';
  position: absolute;
  top: -16%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.i-join li:nth-child(2) i {
  display: block;
  margin: 0 auto;
  width: 39px;
  height: 37px;
  background: url('../images/2.png') no-repeat;
}

.i-join li:nth-child(3) i {
  display: block;
  margin: 0 auto;
  width: 33px;
  height: 37px;
  background: url('../images/3.png') no-repeat;
}

.i-join li:nth-child(4) i {
  display: block;
  margin: 0 auto;
  width: 35px;
  height: 37px;
  background: url('../images/4.png') no-repeat;
}

.i-join li:nth-child(5) i {
  display: block;
  margin: 0 auto;
  width: 37px;
  height: 36px;
  background: url('../images/5.png') no-repeat;
}

.i-news {
  margin-bottom: 9%;
}

.i-news li {
  float: left;
  width: 32%;
  margin-right: 2%;
}

.i-news .c-button {
  margin: 2% auto;
  position: absolute;
  left: 0;
  right: 0;
  width: 12%;
}

.i-news li:hover p {
  color: #e50012;
}

.i-news li:hover img {
  opacity: 0.2;
}

.i-news li img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.i-news li p {
  font-size: 18px;
  font-family: PingFang;
  font-weight: bold;
  color: #333333;
  text-align: center;
  padding: 20px 0;
}

.i-news li:last-child {
  margin-right: 0;
}

.swiper-container .swiper-button-prev {
  background-image: url(../images/bannerbtn_03.png);
  background-repeat: no-repeat;
  left: 5%;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: #fff;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-size: cover;
  width: 65px;
  height: 65px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  border-radius: 100%;
}

.swiper-container .swiper-button-next {
  background-image: url(../images/bannerbtn_03.png);
  background-repeat: no-repeat;
  right: 5%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-container .swiper-button-next:hover {
  -webkit-transform: scale(1.2) rotate(180deg);
  transform: scale(1.2) rotate(180deg);
}

.typename {
  font-size: 24px;
  font-weight: 400;
  color: #404040;
  line-height: 61px;
  padding-top: 3%;
  text-align: center;
}

.typename:after {
  content: '';
  display: block;
  width: 21px;
  height: 3px;
  background: #e60e13;
  margin: 0 auto 4%;
}

.about p {
  font-family: 'CenturyGothic';
}

.power {
  margin: 5% auto 12%;
}

.power li {
  float: left;
  width: 25%;
  border-right: 1px solid #aaaaaa;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.power li .power-info {
  display: block;
  font-weight: 100;
  margin-top: 6px;
}

.power li b {
  font-size: 38px;
  font-weight: 400;
}

.power li p {
  color: #e60012;
}

.power li:nth-child(2) .time,
.power li:nth-child(4) .time {
  font-size: 18px;
}

.power li:last-child {
  border-right: none;
}

.honor {
  position: relative;
  /* margin-bottom: 9%; */
  margin-top: 6%;
}

.honor .typename {
  text-align: center;
  padding-top: 4%;
}

.honor .typename:after {
  margin: 0 auto 3%;
}

.honor li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  border: 1px solid #e50012;
  padding: 20px;
  width: 30%;
  height: 300px;
  margin-right: 3%;
  margin-bottom: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.honor li img{
  height: 100%;
}

.application {
  margin-top: 5%;
  margin-bottom: 4%;
}

.culture ul {
  position: relative;
  padding-bottom: 505px;
  margin-bottom: 9%;
}

.culture li {
  width: 25%;
  float: left;
  text-align: center;
  background-color: #F3F3F3;
  padding: 15px 0;
}

.culture li>p {
  font-size: 19px;
}

.culture li div {
  position: absolute;
  top: 103px;
  left: 0px;
  width: 100%;
  display: none;
}

.culture li div p {
  font-size: 18px;
  line-height: 3em;
  font-weight: 300;
}

.culture li div p:first-child {
  font-size: 32px;
}

.culture li div div {
  position: absolute;
  top: 12%;
  padding: 4% 30% 0 10%;
  color: #fff;
  text-align: left;
}

.culture li:nth-child(n+3) div p {
  font-size: 18px;
  line-height: 3em;
  font-weight: 300;
}

.culture li.active {
  background-color: #e50012;
  color: #fff;
  z-index: 10;
}

.culture li.active div {
  display: block;
}

.culture li.active:first-child i {
  background-image: url('../images/dengpao.png');
}

.culture li.active:nth-child(2) i {
  background-image: url('../images/thin-_write_pen_.png');
}

.culture li.active:nth-child(3) i {
  background-image: url('../images/icon-.png');
}

.culture li.active:nth-child(4) i {
  background-image: url('../images/fuwu1.png');
}

.culture li i {
  display: block;
  background-image: url('../images/dengpao1.png');
  background-size: contain;
  width: 33px;
  height: 38px;
  margin: 0 auto 10px;
}

.culture li:nth-child(2) i {
  width: 31px;
  height: 31px;
  background-image: url('../images/thin-_write_pen1_.png');
  background-repeat: no-repeat;
  margin: 0 auto 17px;
}

.culture li:nth-child(3) i {
  width: 29px;
  height: 31px;
  background-image: url('../images/icon-1.png');
  background-repeat: no-repeat;
  margin: 0 auto 17px;
}

.culture li:nth-child(4) i {
  width: 33px;
  height: 30px;
  background-image: url('../images/fuwu.png');
  background-repeat: no-repeat;
  margin: 0 auto 17px;
}

.news {
  margin-top: 4%;
}

.news .new-time {
  padding-top: 2%;
  text-align: center;
  margin-right: 4%;
  margin-top: 3%;
}

.news .new-time span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}

.news .new-info {
  padding-top: 2%;
}

.news .new-info p {
  line-height: 25px;
  margin-bottom: 12px;
}

.news .news_list {
  margin-top: 10%;
}

.news .news_list .new-info {
  float: left;
  width: 66%;
}

.news .news_list h4,
.news .news_list p,
.news .news_list span {
  font-family: 'CenturyGothic';
}

.news .news_list h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.news .news_list li {
  position: relative;
  top: 0;
  margin-bottom: 3%;
  overflow: hidden;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 45px;
  cursor: pointer;
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 2%;
}

.news .news_list li:hover {
  top: -6px;
  -webkit-box-shadow: 0px 0px 29px 4px rgba(31, 49, 122, 0.2);
  box-shadow: 0px 0px 29px 4px rgba(31, 49, 122, 0.2);
}

.news .news_list li:hover .news-info h4,
.news .news_list li:hover .news-info p {
  color: #e50012;
}

.news .news_list li .news-img {
  float: left;
  text-align: center;
  background-color: #f1f1f1;
  padding: 2%;
}

.news .news_list li .news-img p {
  font-size: 28px;
  font-family: PingFang;
  font-weight: bold;
  letter-spacing: 1px;
  color: #e50012;
}

.news .news_list li .news-info {
  width: 88%;
  float: right;
}

.news .news_list li .news-info h4 {
  font-size: 18px;
  font-family: PingFang;
  color: #333333;
  margin-top: 1%;
}

.news .news_list li .news-info p {
  line-height: 25px;
  color: #333333;
}

.news_read h1,
.news_read .time {
  text-align: center;
  color: #000;
}

.news_read h1 {
  font-size: 22px;
  font-weight: 400;
}

.news_read .time {
  padding: 25px 0px;
  color: #898a89;
}

.news_read .read_con {
  margin-bottom: 50px;
  color: #000;
}

.news_read .infolist2 {
  display: block;
  color: #000;
  margin-bottom: 5%;
}

.join {
  margin-top: 6%;
}

.join .b-title {
  background: #e8333a;
  color: #fff;
  padding: 8px 0 8px 16px;
}

.join .b-title span {
  font-weight: bold;
  font-size: 19px;
  margin-right: 54px;
}

.join .b-title em {
  letter-spacing: 1px;
  font-family: 'PingFang';
  vertical-align: top;
  margin-top: 4px;
  margin-left: 14px;
  display: inline-block;
}

.join .b-title i {
  background: url('../img/1.png') no-repeat;
  background-size: contain;
  width: 30px;
  height: 34px;
  display: inline-block;
}

.join .b-title .fl {
  position: relative;
  font-weight: 300;
  background-size: contain;
  padding: 10px 0 2px 5px;
  font-size: 19px;
}

.join .b-content {
  display: none;
  padding: 2% 5%;
}

.join li {
  position: relative;
  margin-bottom: 1%;
}

.join li:nth-child(2) i {
  background: url('../img/2.png') no-repeat;
  background-size: contain;
  width: 34px;
  height: 33px;
  display: inline-block;
}

.join li:nth-child(3) i {
  background: url('../img/3.png') no-repeat;
  background-size: contain;
  width: 29px;
  height: 33px;
  display: inline-block;
}

.join li:nth-child(4) i {
  background: url('../img/4.png') no-repeat;
  background-size: contain;
  width: 31px;
  height: 33px;
  display: inline-block;
}

.join li:nth-child(5) i {
  background: url('../img/5.png') no-repeat;
  background-size: contain;
  width: 32px;
  height: 31px;
  display: inline-block;
}

.join li .add::before {
  content: '';
  position: absolute;
  top: 25px;
  right: 3%;
  width: 22px;
  height: 3px;
  background: #fff;
}

.join li .add::after {
  content: '';
  position: absolute;
  top: 25px;
  right: 3%;
  width: 22px;
  height: 3px;
  background: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.join li .add_change::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.join li:first-child .b-content {
  display: block;
}

.join ul {
  margin-bottom: 8%;
}

.base {
  margin-bottom: 5%;
}

.base li {
  margin-top: 40px;
  padding-bottom: 24px;
  width: 600px;
  border-bottom: 2px solid #e6e6e6;
}

.base li a {
  font-size: 16px;
  color: #000000;
}

.base li span {
  color: #666666;
}

.new-silde>a {
  height: 60px;
  width: 60px;
  display: inline-block;
  background: url('../img/css_sprites.png') no-repeat;
  background-color: #999999;
  background-position: 8px 12px;
  margin-right: 10px;
  margin-top: 48px;
  cursor: pointer;
}

.new-silde a:first-child {
  background-position: 8px -30px;
}

.new-silde {
  position: relative;
}

.social-share {
  position: fixed;
  bottom: 0px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
  display: none;
  z-index: 100;
  background: #fff;
  height: 200px;
  width: 300px;
  text-align: center;
}

.social-share>div {
  height: 45px;
  line-height: 45px;
  background: #0d4c76;
  color: #fff;
  padding-left: 20px;
  margin-bottom: 50px;
  padding-right: 10px;
  font-size: 18px;
}

.social-share .close {
  font-size: 30px;
  cursor: pointer;
}

.share-model {
  position: absolute;
  top: 0px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
  display: none;
}

/* 翻页 */
.cc_botton {
  overflow: hidden;
}

#pagination {
  overflow: hidden;
  margin: 2% auto 5%;
  text-align: center;
  display: table;
  font-size: 18px;
}

#pagination div {
  float: left;
}

#page_left_botton a,
#page_left_botton span {
  display: inline-block;
  padding: 0 10px;
  line-height: 30px;
  border: 1px solid #ccc;
  margin: 0 5px;
  cursor: pointer;
  background: #fff;
  font-size: 14px;
}

#page_left_botton a:hover,
#page_left_botton a {
  background-color: #7c322e;
  color: #fff;
}

#page_center_botton {
  display: none;
}

.xt_page_botton {
  text-align: center;
}

.video {
  padding-bottom: 5%;
}

.video .video_list li {
  position: relative;
  float: left;
  width: 383px;
  margin-right: 17px;
  cursor: pointer;
}

.video .video_list li .video-play {
  position: absolute;
  top: 98px;
  right: 0;
  left: 0;
  margin: auto;
  width: 57px;
  height: 57px;
  border: 1px solid rgba(182, 176, 176, 0.33);
  border-radius: 50%;
  background-color: rgba(235, 235, 235, 0.7);
}

.video .video_list li .video-play:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-width: 10px 0px 10px 14px;
  border-style: solid;
  border-color: transparent transparent transparent #e60012;
}

.video .video_list li:nth-child(3+3n) {
  margin-right: 0;
}

.video .video_list li p {
  font-size: 16px;
  font-weight: 400;
  color: #504343;
  padding: 30px 0;
  text-align: center;
}

#video {
  width: 100%;
  height: 600px;
  -o-object-fit: fill;
  object-fit: fill;
  margin: 0 auto 8%;
}

.case li {
  float: left;
  width: 22%;
  margin-right: 4%;
  text-align: center;
  margin-bottom: 25px;
}

.case li:hover h3 {
  color: #e50012;
}

.case li h3 {
  padding: 15px 0;
}

.case li:nth-child(4n+4) {
  margin-right: 0;
}

.showrooms .typename {
  padding-top: 3%;
}

.showrooms .swiper-showrooms {
  position: relative;
  overflow: hidden;
  padding-bottom: 9%;
}

.showrooms .swiper-showrooms .swiper-button-next,
.showrooms .swiper-showrooms .swiper-button-prev {
  background-image: url('../img/组 14.jpg');
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 90%;
}

.showrooms .swiper-showrooms .swiper-button-next {
  right: 44%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.showrooms .swiper-showrooms .swiper-button-prev {
  left: 44%;
}

.showrooms .swiper-showrooms p {
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #E5E5E5;
}

.history {
  margin: 3% 0;
}

.contact {
  position: relative;
  margin-bottom: 8%;
}

.contact ul {
  border: 1px solid #D5D5D5;
  border-right: none;
  margin-bottom: 4%;
}

.contact li {
  float: left;
  width: 25%;
  border-right: 1px solid #D5D5D5;
  overflow: hidden;
  padding: 2% 0 2% 1%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact li:nth-child(n+2) {
  padding: 2% 4%;
}

.contact li:nth-child(n+2) div {
  width: 74%;
}

.contact li img {
  float: left;
}

.contact li div {
  float: right;
  width: 84%;
  height: 65px;
}

.contact li p {
  font-size: 18px;
  font-family: PingFang;
  font-weight: 500;
  color: #000000;
}

.contact li span {
  font-family: PingFang;
  font-weight: 400;
  color: #666666;
}

.contact #map {
  border: 1px solid #b6b3b3;
}

.contact #map .BMapLabel {
  left: -72px !important;
  top: -64px !important;
  width: 162px;
  border: none !important;
  line-height: 50px !important;
  text-align: center;
  font-weight: bold !important;
  display: block !important;
}

.contact #map .BMapLabel:before {
  content: '';
  position: absolute;
  bottom: -31px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-color: #fff transparent transparent;
  border-width: 20px;
  border-style: solid;
  width: 0;
  height: 0;
}

.contact #map img {
  max-width: inherit;
}

#secNav {
  display: none;
}

.message {
  margin-bottom: 4%;
}

.mess_info {
  margin-top: 3%;
}

.mess_info label {
  letter-spacing: 1px;
  color: #666666;
}

.mess_info label b {
  font-size: 16px;
  color: red;
  margin-left: 5px;
}

.mess_info input {
  display: inline-block;
  outline: none;
  width: 100%;
  height: 31px;
  margin-bottom: 25px;
  background-color: #fff;
  text-indent: 20px;
  font-size: 16px;
  vertical-align: baseline;
  border: 1px solid #e5e5e5;
  background: #f1f1f1;
  border-radius: 6px;
}

.mess_info input:focus {
  border-color: #e50012;
}

.mess_info .input {
  display: inline-block;
  width: 48%;
  margin-right: 24px;
}

.mess_info .input:last-child {
  margin-right: 0;
}

.mess_info textarea {
  height: 100px;
  width: 100%;
  outline: none;
  resize: none;
  background-color: #f1f1f1;
  text-indent: 20px;
  padding-top: 14px;
  font-size: 16px;
  font-family: Arial;
  vertical-align: text-top;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.mess_info textarea:focus {
  border-color: #e50012;
}

.mess_info .textarea label {
  display: block;
}

.mess_info .submit {
  overflow: hidden;
  display: table;
  margin: 0 auto;
}

.submit {
  width: 120px;
  height: 45px;
  line-height: 45px;
  background-color: red;
  color: #fff;
  font-size: 14px;
  display: block;
  text-indent: 0;
  margin: auto;
  margin-top: 36px;
  border-radius: 35px;
}

.submit a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.mess_info ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(203, 203, 203, 0.8);
}

.mess_info ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(203, 203, 203, 0.8);
}

.mess_info :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(203, 203, 203, 0.8);
}

.swiper-product {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.swiper-product .swiper-pagination {
  bottom: 14%;
  left: -24%;
}

.swiper-product .swiper-list {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background-color: #5C0109;
  z-index: 1;
}

.swiper-product .swiper-list ul {
  padding: 14% 28% 0 0;
  float: right;
}

.swiper-product .swiper-list li {
  margin-bottom: 31%;
  font-size: 16px;
  font-weight: 300;
}

.swiper-product .swiper-list li a {
  color: #ffffff;
}

.swiper-product .swiper-list li a.selected {
  color: #ABCD03;
}

.swiper-product .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  margin: 0 10px !important;
}

.swiper-product .swiper-pagination-bullet-active {
  background-color: #E60012;
}

.product {
  position: relative;
  margin: 8% 0 0%;
}

.product .cc_botton {
  margin-top: 0;
  margin-bottom: 6%;
}

.product #pagination {
  margin: 2% auto 0;
}

.product .product_list {
  margin-top: 13%;
}

.product .product_list li {
  position: relative;
  top: 0;
  float: left;
  width: 30%;
  margin-right: 5%;
  margin-bottom: 40px;
  cursor: pointer;
  border: 1px solid #b5b6b6;
  /* background: #E5E5E5; */
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.product .product_list li:nth-child(3n+3) {
  margin-right: 0;
}

.product .product_list li:hover {
  top: -5px;
  border-color: #e50012;
  -webkit-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.15);
}

.product .product_list li:hover .product_title {
  color: #e50012;
  font-weight: bold;
}

.product .product_list li p {
  width: 194px;
  line-height: 28px;
  margin: 20px auto;
  text-align: center;
  border-radius: 20px;
}

.product .product_list li:hover i {
  opacity: 1;
}

.product .product_list li:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.product .product_list .product-info {
  position: relative;
  border-bottom: 1px solid #b5b6b6;
}

.product .product_list .product_img {
  overflow: hidden;
  height: 270px;
}

.product .product_list .product_img img {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.product .product_list .product_title {
  line-height: 55px;
  font-size: 16px;
  color: #000;
  text-align: center;
  width: 84%;
  margin: 0 auto;
  border-bottom: 1px solid #d5d5d5;
  overflow: hidden;
  white-space: nowrap;
}

.path {
  background-color: #000;
}

.path li {
  float: left;
  padding: 0 35px;
  line-height: 55px;
}

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

.path li:hover a {
  color: #e50012;
}

.path li.typelink a {
  color: #e50012;
}

.path li a {
  font-family: 'CenturyGothic';
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
}

#product_read {
  margin-bottom: 2%;
}

#product_read .pro_info {
  margin-top: 16px;
}

#product_read .pro_info p {
  font-size: 16px;
  margin-bottom: 10px;
}

#product_read .pro_content p {
  font-size: 16px;
  margin-bottom: 20px;
}

#product_read>.h .fl {
  width: 400px;
  margin-left: 25px;
}

#product_read>.h .fr {
  width: 58%;
}

.parameter h2 {
  font-size: 24px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 45px;
  color: #e60012;
  padding-bottom: 25px;
  border-bottom: 1px dashed #7a7272;
}

.parameter .mess_info {
  padding-bottom: 4%;
}

.parameter .mess_info input {
  height: 38px;
}

.parameter .mess_info textarea {
  height: 150px;
}

.parameter .mess_info .submit input {
  width: 110px;
  height: 40px;
  line-height: 40px;
}

.proread_img {
  position: relative;
}

#gallery {
  border: 1px solid #e50012;
  margin-bottom: 15%;
}

.swiper-containers {
  overflow: hidden;
}

.swiper-containers .swiper-button-prev {
  left: 16px;
}

.swiper-containers .swiper-button-next {
  right: 16px;
}

.swiper-containers .swiper-button-prev,
.swiper-containers .swiper-button-next {
  height: 30px;
  width: 30px;
  background-size: cover;
  margin-top: -58px;
}

#thumbs {
  margin-top: 35px;
}

.location {
  font-size: 16px;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 11px;
  padding-top: 11px;
  margin-bottom: 4%;
}

.location p {
  color: #8b8585;
  padding: 0 22px;
}

.location p a {
  color: #8b8585;
}

/*nav for mobile*/
.nav_m .mask {
  width: 12px;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 100;
  background: url(../img/public/shadow.png) left top repeat-y;
  display: none;
}

.menu-nav {
  display: none;
}

.menu-nav>li>a {
  text-indent: 30px;
}

.nav_button {
  overflow: hidden;
  width: 23px;
  position: relative;
  z-index: 999;
  display: none;
}

.nav_button .nav_bar {
  width: 23px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: #e50012;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.nav_button .mid {
  width: 18px;
}

.nav_button.animate .nav_bar {
  background: #e50012;
}

.nav_button.animate .top {
  -webkit-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}

.nav_button.animate .mid {
  width: 0;
}

.nav_button.animate .bottom {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.nav_m {
  width: 68.75%;
  min-height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 99;
  background: #fbfbfb;
  display: none;
}

.nav_m .head-wap {
  position: fixed;
  height: 60px;
  top: 0;
  /*background: #2e2929;*/
  width: 100%;
  max-width: 768px;
  margin-left: -15px;
  z-index: 999;
}

.nav_m .logo {
  width: 134px;
  display: block;
  float: left;
  margin-top: 10px;
}

.nav_m .logo img {
  width: 100%;
  display: block;
}

.nav_m .menu {
  padding-bottom: 70px;
  overflow: hidden;
}

.choose-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 3.4rem;
  color: #666;
  padding: 12% 0% 6%;
  display: none;
}

.choose-language p {
  padding: 5px;
}

.search-icon {
  height: 17px;
  width: 17px;
  display: block;
  background: url('../img/phone_03_03.png') no-repeat;
  background-position: center;
  padding: 5px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/*.nav_m .main_item {*/
/*    overflow: hidden;*/
/*    border-bottom: 1px solid #5a5a5a;*/
/*    opacity: 0;*/
/*    -webkit-transform: scale(1.1) translateY(-24px);*/
/*    transform: scale(1.1) translateY(-24px);*/
/*    -webkit-transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;*/
/*    transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;*/
/*    transition: opacity 0.35s ease-out, transform 0.35s ease-out;*/
/*    transition: opacity 0.35s ease-out, transform 0.35s ease-out, -webkit-transform 0.35s ease-out;*/
/*}*/
.menu>li>a {
  display: block;
  padding: 0 45px 0 4%;
  height: 45px;
  line-height: 45px;
  font-size: 3.6rem;
  color: #666;
}

.menu>li {
  font-size: 16px;
  border-bottom: 1px solid #cccccc;
  position: relative;
  background: #f1f1f1;
}

.nav_m .main_item:nth-child(2) {
  -webkit-transition-delay: 80ms;
  transition-delay: 80ms;
}

.nav_m .main_item:nth-child(3) {
  -webkit-transition-delay: 160ms;
  transition-delay: 160ms;
}

.nav_m .main_item:nth-child(4) {
  -webkit-transition-delay: 240ms;
  transition-delay: 240ms;
}

.nav_m .main_item:nth-child(5) {
  -webkit-transition-delay: 360ms;
  transition-delay: 360ms;
}

.nav_m .main_item:nth-child(6) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.nav_m .main_item:nth-child(7) {
  -webkit-transition-delay: 480ms;
  transition-delay: 480ms;
}

.nav_m .main_item:nth-child(8) {
  -webkit-transition-delay: 560ms;
  transition-delay: 560ms;
}

.nav_m .main_item:nth-child(9) {
  -webkit-transition-delay: 640ms;
  transition-delay: 640ms;
}

.nav_m .main_item:nth-child(10) {
  -webkit-transition-delay: 720ms;
  transition-delay: 720ms;
}

.nav_m .main_item>a {
  display: block;
  line-height: 48px;
  font-size: 3.4rem;
  color: #666;
  background: url('../img/public/plus.png') 98% center no-repeat;
  background-size: 12px;
}

.nav_m .menu.show .main_item {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.nav_m .on {
  border: none;
  height: auto;
}

.nav_m .on>a {
  background-image: url('../img/public/minus.png');
}

.nav_m .link>a {
  background-image: url('../img/public/arrow.png');
}

.drop_list {
  display: none;
}

.drop_list a {
  display: block;
  font-size: 2.8rem;
  color: #666;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  text-indent: 20px;
  height: 48px;
  line-height: 48px;
  background: #dedede;
}

.branch-list li {
  float: left;
  width: 33.333%;
  height: 290px;
  background: rgba(241, 241, 241, 0.4);
}

.branch-list li.branch-li {
  padding: 5% 5% 0;
}

.branch-list li h3 {
  font-size: 20px;
  font-weight: 400;
  color: #292b36;
  text-align: center;
  margin-bottom: 20px;
}

.branch-list li span {
  color: #3f3f3f;
  line-height: 26px;
}

.fc-form-body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}

label {
  color: #666666;
}

label span {
  color: red;
}

.col-md-10 {
  margin-top: 8px;
}

.form-group {
  width: 48.5%;
}

.form-group:nth-of-type(3) {
  width: 100%;

}

.form-group input {
  width: 100% !important;
  height: 40px !important;
  border: 1px solid #e5e5e5;
  background: #f1f1f1;
  border-radius: 6px;
  padding: 0 10px;
}

.form-group textarea {
  height: 145px !important;
  border: 1px solid #e5e5e5;
  background: #f1f1f1;
  border-radius: 6px;
  padding: 10px;
}

@media screen and (max-width: 750px) {
    .product .product_list .product_img {
    overflow: hidden;
    height: 130px;
}
  .path {
    margin-top: 0;
  }

  .typename {
    padding-top: 20%;
  }

  .honor .typename,
  .showrooms .typename {
    margin-top: 38%;
  }

  #wap {
    width: 100vw;
    position: relative;
  }

  #video {
    height: auto;
  }

  .nav_m .menu-nav a {
    border: none;
  }

  .head {
    padding-left: 3%;
    padding-right: 3%;
    background-color: #fff;
  }

  .head .logo img {
    width: 32vw;
  }

  .head .head-top {
    display: none;
  }

  .head .header-nav {
    position: relative;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .header-nav {
    position: relative;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .header-nav>.h>.nav_bar {
    margin-top: 28px;
  }

  .swiper-container img {
    height: 165px;
  }

  .swiper-container .swiper-pagination {
    bottom: 10%;
  }

  .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 6vw;
  }

  .swiper-container .swiper-button-next,
  .swiper-container .swiper-button-prev {
    display: none;
  }

  .footer {
    padding: 0 4.333%;
  }

  .footer .f-about {
    width: auto;
  }

  .footer .f-about p {
    font-size: 3.4rem;
  }

  .footer .logo {
    display: none;
  }

  .footer .nav_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer .f-bottom {
    line-height: 2em;
  }

  .footer .f-bottom p {
    font-size: 3.4rem;
  }

  .footer .nav_item {
    margin-right: 5vw;
    margin-top: 3vw;
  }

  .footer .nav_item a {
    font-size: 3.4rem;
  }

  .footer .fr {
    display: none;
  }

  .path {
    margin-bottom: 12vw;
    display: block;
  }

  .path .three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .path li a {
    padding: 0 14px;
    line-height: 10vw;
  }

  #map {
    height: 200px !important;
  }

  #banner {
    width: 100%;
    height: 185px;
    background-size: cover;
    background-position: -95px 0px;
    background-repeat: no-repeat;
    margin-top: 0;
  }

  #banner img {
    /*visibility: hidden;*/
  }

  .contact {
    padding: 0 3.444%;
  }

  .contact li {
    width: 100%;
    padding: 2% 4%;
    border-right: none;
    margin-bottom: 3%;
  }

  .contact li div {
    width: 80% !important;
  }

  .contact ul {
    border: none;
  }

  .contact .fl,
  .contact .fr {
    width: auto;
    float: none;
  }

  .contact .fr {
    padding: 0 7%;
  }

  .contact .fl {
    padding: 0 7% 4% 7%;
  }

  .contact .fl .typename {
    padding-top: 5%;
  }

  .contact .fl p {
    font-size: 3.4rem;
  }

  .mess_info .input {
    width: 100%;
    margin-right: 0;
  }

  .mess_info .submit input {
    font-size: 3.4rem;
  }

  .mess_info input {
    background-color: #f1f1f1;
  }

  .mess_info label {
    font-size: 3.4rem;
  }

  .proread_banner .banner-path {
    display: none;
  }

  .product {
    margin-top: 36vw;
    padding: 0 4.333%;
  }

  .product .fl,
  .product .fr {
    width: auto;
    float: none;
  }

  .product .product_list li {
    width: 47%;
    margin-bottom: 6%;
  }

  .product .product_list li.clearMR {
    margin-right: 5% !important;
  }

  .product .product_list li:nth-child(2n + 2) {
    margin-right: 0 !important;
  }

  .product .product_list li p {
    display: none;
  }

  .product .fl {
    padding: 0 4.333%;
  }

  .product .fl .typename {
    padding-top: 0;
    margin-bottom: 0;
  }

  .product .fl li {
    width: 100%;
    border-bottom: 1px solid #6d6666;
  }

  .product .fr {
    padding: 0 4.333%;
  }

  .product .fr ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .product .fr li {
    width: 47%;
  }

  .product .fr li:last-child {
    margin-left: auto;
  }

  .about {
    padding: 0 4.333%;
    margin-top: 20vw;
  }

  .about p {
    font-size: 3.4rem;
    line-height: 2em !important;
  }

  .power li {
    width: 50%;
    margin-top: 4%;
  }

  .power li b {
    font-size: 6.5rem;
  }

  .power li:last-child {
    border-right: 1px solid #aaaaaa;
  }

  .honor {
    margin-top: 20vw;
    padding: 0 4.333%;
    margin-right: 6%;
  }

  .honor li {
    width: 47%;
    height: 180px;
    margin-right: 6%;
    margin-top: 4%;
  }

  .honor li.clearMR {
    margin-right: 6% !important;
  }

  .honor li:nth-child(2n + 2) {
    margin-right: 0 !important;
  }

  .history {
    margin-top: 24vw;
  }

  .showrooms {
    margin-top: 24vw;
    padding: 0 4.333%;
  }

  .showrooms .swiper-showrooms {
    padding-bottom: 30%;
  }

  .showrooms .swiper-showrooms .swiper-button-prev,
  .showrooms .swiper-showrooms .swiper-button-next {
    top: 81%;
  }

  .showrooms .swiper-showrooms .swiper-button-prev {
    left: 32%;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  .showrooms .swiper-showrooms .swiper-button-next {
    right: 32%;
    -webkit-transform: rotate(180deg) scale(0.8);
    transform: rotate(180deg) scale(0.8);
  }

  .case {
    margin-top: 24vw;
    padding: 0 4.333%;
  }

  .case li {
    width: 47%;
    margin-right: 6%;
    margin-top: 4%;
    margin-bottom: 0;
  }

  .case li.clearMR {
    margin-right: 6% !important;
  }

  .case li:nth-child(2n + 2) {
    margin-right: 0 !important;
  }

  .case li h3 {
    font-size: 3.6rem;
  }

  .culture {
    margin-top: 24vw;
    padding: 0 4.333%;
  }

  .culture ul {
    padding-bottom: 0;
  }

  .culture li {
    position: relative;
    width: 100%;
    float: none;
    margin-bottom: 12%;
  }

  .culture li>p {
    padding: 0 0 4%;
  }

  .culture li.active {
    background-color: #f3f3f3;
  }

  .culture li.active i {
    background-image: url(../img/culture/dengpao1.png) !important;
  }

  .culture li.active p {
    color: #212529;
  }

  .culture li div {
    position: static;
    display: block;
  }

  .culture li div p {
    font-size: 3.4rem;
    padding: 0 4%;
  }

  .culture li div p:first-child {
    font-size: 5rem;
    line-height: 9vw !important;
    margin-top: 4vw;
    margin-bottom: 2vw;
  }

  .culture li div div {
    position: static;
    color: #000;
    padding: 0;
  }

  .culture li:nth-child(n+3) div p {
    font-size: 3.4rem;
  }

  #banner .h .path {
    background-color: transparent;
  }

  #banner .h .path li {
    background: #e5e2e5;
    border-right: 1px solid #cecbce;
    padding: 7px 12px;
    line-height: normal;
  }

  #banner .h .path li a {
    line-height: normal;
    color: #000;
  }

  #banner .h .path li.typelink {
    background-color: #e50012;
  }

  #banner .h .path li.typelink a {
    color: #fff;
  }

  #banner .h .banner-path {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -51vw;
    width: 90vw;
  }

  .product_banner .path {
    margin-bottom: 0;
  }

  .product_banner .h .banner-path {
    width: 100vw !important;
    bottom: -53vw;
  }

  .product_banner .h .banner-path li {
    float: none;
    width: 100%;
    padding: 3% 2% !important;
  }

  .product_banner .h .banner-path a {
    font-size: 3.4rem;
    padding: 0;
    display: block;
  }

  .about-banner .banner-path {
    bottom: -54vw;
    width: 100% !important;
  }

  .about-banner .banner-path li {
    width: 33.3333%;
    border-bottom: 1px solid #cecbce;
  }

  .about-banner .banner-path a {
    font-size: 3rem;
  }

  .news {
    margin-top: 24vw;
  }

  .news .news_list {
    padding: 0 4.333%;
  }

  .news .news_list li {
    padding: 0;
    padding-bottom: 5%;
    margin-bottom: 6%;
  }

  .news .news_list li:hover {
    top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .news .news_list li .news-img {
    padding: 0 2% 2%;
  }

  .news .news_list li .news-info {
    width: 74%;
  }

  .news .news_list li .news-info h4 {
    font-size: 4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .news .news_list li .news-info p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 3.4rem;
  }

  .base {
    padding: 0 4.333%;
  }

  .base .pager {
    width: 100%;
  }

  .base li {
    width: 100%;
  }

  #product_read .gobal-top {
    margin-bottom: 8%;
  }

  #product_read .parameter h2 {
    font-size: 4.6rem;
    margin-bottom: 4%;
    padding-bottom: 5%;
  }

  #product_read>.h .fl {
    width: 100%;
    float: none;
    margin-left: 0;
    padding: 0 4.333%;
  }

  #product_read>.h .fr {
    float: none;
    width: 100%;
    padding: 0 4.333%;
  }

  #product_read>.h .fr .pro_info {
    margin-top: 7%;
  }

  .parameter {
    padding: 0 4.333%;
  }

  .newread-banner .banner-path {
    display: none;
  }

  .news_read .title {
    font-size: 4.3rem;
    padding: 0 4.333%;
  }

  .news_read .time {
    font-size: 3.4rem;
  }

  .news_read .read_con {
    padding: 0 4.333%;
    margin-bottom: 0;
  }

  .news_read .read_con p {
    font-size: 3.4rem;
  }

  .join {
    padding: 0 3.4444%;
  }

  .join li .add::after,
  .join li .add::before {
    top: 32px;
  }

  .join li p {
    font-size: 3.4rem;
  }

  .i-join {
    height: auto;
    padding-bottom: 4%;
  }

  .i-join .h {
    padding: 0 4.333%;
  }

  .i-join .h ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .i-join .h li {
    width: 33.333%;
    margin-top: 5%;
  }

  .i-join .h li p {
    font-size: 3.8rem;
  }

  .i-news {
    padding: 0 4.333%;
  }

  .i-news li {
    width: 47%;
    margin-right: 6%;
  }

  .i-news .c-button {
    position: static;
    display: block;
    width: 30vw;
    height: auto;
    padding: 2% 0;
    text-align: center;
    margin: 4% auto 8%;
  }

  .i-news .c-button .c-button__icon {
    display: none;
  }

  .i-news li p {
    font-size: 3.4rem;
  }

  .i-news li:nth-child(3) {
    display: none;
  }

  .i-news li:nth-child(2) {
    margin-right: 0;
  }

  .i-pro {
    padding: 0 4.333%;
  }

  .i-pro li {
    width: 47%;
    height: 100%;
    margin-right: 6%;
    border: none;
    padding: 0;
  }

  .i-pro li:nth-child(2) {
    margin-right: 0;
  }

  .i-pro li:last-child {
    display: none;
  }

  .i-pro li p {
    position: static;
    background-color: transparent;
    text-align: center;
    color: #000;
    font-size: 3.4rem;
    padding: 4% 0;
  }

  .i-pro li img {
    border: 1px solid #e50012;
    height: 200px;
  }

  .i-pro .c-button {
    position: static;
    display: block;
    width: 30vw;
    height: auto;
    padding: 2% 0;
    text-align: center;
    margin: 4% auto 8%;
  }

  .i-pro .c-button .c-button__icon {
    display: none;
  }

  .i-about {
    position: relative;
    height: auto;
    padding: 4% 4.333% 24%;
  }

  .i-about>p {
    font-size: 3.6rem;
    line-height: 8vw;
  }

  .i-about .fl,
  .i-about .fr {
    width: auto;
    float: none;
  }

  .i-about .fl {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4%;
    margin: 0 auto;
    background-color: transparent;
    height: auto;
  }

  .i-about .fl i,
  .i-about .fl h2,
  .i-about .fl p,
  .i-about .fl span {
    display: none;
  }

  .i-about .fl a {
    margin: 3% auto 0;
    font-size: 3.4rem;
  }

  .i-about li {
    display: none;
  }

  .i-about li:nth-child(2) {
    width: 100%;
    display: block;
  }

  .i-title span {
    font-size: 4.5rem;
  }

  .i-title h2 {
    font-size: 5.5rem;
    padding: 1% 2% 4%;
  }
}