@font-face {
  font-family: 'Manrope3';
  src: url('../fonts/BarlowCondensed-Bold.eot');
  src: url('../fonts/BarlowCondensed-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/BarlowCondensed-Bold.woff2') format('woff2'), url('../fonts/BarlowCondensed-Bold.woff') format('woff'), url('../fonts/BarlowCondensed-Bold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
    font-family: 'Manrope3';
    src: url('../fonts/Rubik-Regular.eot');
    src: url('../fonts/Rubik-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Rubik-Regular.woff2') format('woff2'),
        url('../fonts/Rubik-Regular.woff') format('woff'),
        url('../fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: 200; 
    font-display: swap;
}
@font-face {
  font-family: 'Manrope3';
  src: url('../fonts/Manrope3-Bold.eot');
  src: url('../fonts/Manrope3-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Manrope3-Bold.woff2') format('woff2'), url('../fonts/Manrope3-Bold.woff') format('woff'), url('../fonts/Manrope3-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope3';
  src: url('../fonts/Manrope3-Regular.eot');
  src: url('../fonts/Manrope3-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Manrope3-Regular.woff2') format('woff2'), url('../fonts/Manrope3-Regular.woff') format('woff'), url('../fonts/Manrope3-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
#mobile3 .m-search form input[type=submit]{
  background: url(../images/icon-search-white.png) center center no-repeat;
}
body {
  font-family: "Manrope3";
  max-width: 1920px;
  --color: #d01214;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1480px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 25px;
  left: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 20px 0;
}
#header .nav {
  max-width: 1920px;
  margin: auto;
}
#header .nav .ui.menu {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  padding: 0 110px;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .logo img{
  height: 70px;
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header.active .nav .ui.menu .logo img{
  height: 55px;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 23px;
  margin: 0 28px;
  color: white;
  font-weight: 200;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative; 
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 16px;
  background: #fff;
  top: 100%;
  left: 0px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #d90000;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .search {
  width: 250px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 5px;
}
#header .nav .ui.menu .search form {
  width: 100%;
  position: relative;
}
#header .nav .ui.menu .search form input {
  width: 100%;
  font-size: 20px;
  background-color: transparent;
  border: none;
  height: 45px;
}
#header .nav .ui.menu .search form input[type="submit"] {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  background: url(../images/search.png) no-repeat center center;
}
#header .nav .ui.menu .yuy {
  margin-bottom: 5px;
}
#header .nav .ui.menu .yuy span {
  font-size: 18px;
  color: white;
}
#header .nav .ui.menu .yuy span img {
  margin-right: 5px;
}
#header.active {
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 15px 0;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
.fw-800 {
  font-weight: 800;
}
#banner li {
  position: relative;
}
#banner li > img{
  opacity: 0;
}
#banner li video{
  /*position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;*/
  object-fit: cover;
  display: block;
  width: 100%;
}
#banner li::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
}
#banner li .content .left {
  max-width: 1020px;
  margin: auto;
}
#banner li .content h2 {
  color: white;
  text-transform: capitalize;
  line-height: 1.2;
}
#banner li .content p {
  line-height: 28px;
  color: white;
}
#banner li .content .play {
  cursor: pointer;
}
#banner li .content .play img {
  margin: auto;
}
.more {
  font-size: 15px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  position: relative;
  border: 1px solid transparent;
  color: white;
  background-color: var(--color);
}
.more:hover {
  border-color: var(--color);
  background-color: transparent;
  color: var(--color);
}
#index-body .init-1 .ui.container {
  width: 100%;
  padding-right: 0;
  padding-left: 12.5%;
}
#index-body .init-1 .top {
  width: 70%;
}
#index-body .init-1 ul .slick-list {
  padding-right: 5%;
}
#index-body .init-1 ul li .content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  color: white;
  text-transform: uppercase;
}
#index-body .init-1 ul li .content img {
  width: auto;
}
#index-body .init-1 .slickBtn {
  position: absolute;
  right: 10%;
  bottom: -webkit-calc(100% + 58px);
  bottom: -moz-calc(100% + 58px);
  bottom: calc(100% + 58px);
}
#index-body .init-1 .slickBtn div {
  background-color: transparent;
  border: 2px solid #d4d4d4;
  color: #d4d4d4;
  line-height: 1;
}
#index-body .init-1 .slickBtn div:hover {
  border-color: var(--color);
  color: var(--color);
}
#index-body .init-2 ul li {
  padding-left: 90px;
  position: relative;
}
#index-body .init-2 ul li .icon {
  position: absolute;
  left: 0;
  top: 0;
}
#index-body .init-2 ul li .h2 {
  line-height: 1;
  position: relative;
}
#index-body .init-2 ul li .h2 em {
  color: var(--color);
}
#index-body .init-2 ul li .h2 span {
  font-weight: normal;
}
#index-body .init-2 ul li .h2 i {
  position: absolute;
}
#index-body .init-2 ul li p {
  opacity: 0.75;
  margin-top: 5px;
}
#index-body .init-3 {
  background-color: #242424;
}
#index-body .init-3 .box {
  background-color: black;
}
#index-body .init-3 .box .left {
  color: white;
}
#index-body .init-3 .box .left .i-title {
  line-height: 1.2;
}
#index-body .init-3 .box .left .h5 {
  line-height: 1.7;
}
#index-body .init-3 .box .left .h5 em {
  color: var(--color);
}
#index-body .init-3 .box .left .des {
  line-height: 2;
  opacity: 0.75;
}
#index-body .init-3 .box .left .more {
  background-color: transparent;
  border-color: var(--color);
  color: white;
}
#index-body .init-3 .box .left .more:hover {
  background-color: var(--color);
}
#index-body .init-3 .box .right > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .init-3 .box .right .play {
  cursor: pointer;
}
#index-body .init-4 {
  background-color: white;
}
#index-body .init-4 .box {
  background-color: white;
}
#index-body .init-4 .box .left {
  color: black;
}
#index-body .init-4 .box .left .des {
  line-height: 30px;
  opacity: 0.8;
}
#index-body .init-4 .box .left .more {
  border-color: var(--color);
  color: black;
}
#index-body .init-4 .box .left .more:hover {
  color: white;
}
#index-body .init-5 {
  background-color: #1c1c1c;
  color: white;
}
#index-body .init-5 p.txt {
  line-height: 28px;
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  opacity: 0.75;
}
#index-body .init-5 ul li .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#index-body .init-5 ul li .content {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 3;
}
#index-body .init-5 ul li .content .des {
  line-height: 28px;
}
#index-body .init-5 ul li .content .text {
  display: none;
}
#index-body .init-5 ul li .content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8), transparent);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.8), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: -1;
}
#index-body .init-5 ul li:hover .icon img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}
#index-body .init-6 {
  background: url(../images/bg-1.jpg) no-repeat left bottom -75px;
}
#index-body .init-6 .i-title {
  line-height: 1.2;
}
#index-body .init-6 p.txt {
  opacity: 0.75;
  line-height: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#index-body .init-6 ul {
  margin: 0 -15px;
}
#index-body .init-6 ul li {
  text-align: center;
  padding: 0 15px;
}
#index-body .init-6 ul li .icon {
  width: 132px;
  height: 132px;
  background-color: #e6e6e6;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: auto;
}
#index-body .init-6 ul li .icon img {
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
#index-body .init-6 ul li:hover .icon {
  background-color: var(--color);
}
#index-body .init-6 ul li:hover .icon img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#index-body .init-7 {
  background-color: #2b2b2b;
}
#index-body .init-7 .ui.container {
  width: 100%;
  padding: 0;
}
#index-body .init-7 .content {
  width: 42%;
  color: white;
}
#index-body .init-7 .content .i-title {
  line-height: 1.3;
}
#index-body .init-7 .content .des {
  line-height: 2;
  opacity: 0.75;
}
#index-body .init-7 .img {
  width: 58%;
}
#index-body .init-8 p.txt {
  opacity: 0.75;
  line-height: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#index-body .init-8 .left ul li .box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), color-stop(rgba(0, 0, 0, 0.2)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
}
#index-body .init-8 .left ul li .cat_name {
  color: white;
  background-color: var(--color);
  position: absolute;
  left: 0;
  top: 10px;
  padding: 10px 30px;
  z-index: 3;
}
#index-body .init-8 .left ul li .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  color: white;
  z-index: 3;
}
#index-body .init-8 .left ul li .bottom .time {
  font-style: italic;
}
#index-body .init-8 .left ul li .bottom .time img {
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
  opacity: 0.8;
}
#index-body .init-8 .left .slickDots ul li {
  background-color: #c4c4c4;
  border-radius: 6px;
  border: none;
}
#index-body .init-8 .left .slickDots ul li.slick-active {
  background-color: var(--color);
  width: 55px;
}
#index-body .init-8 .right ul li {
  position: relative;
  padding-left: 125px;
  border-bottom: 1px dashed #b2b2b2;
  padding-bottom: 30px;
}
#index-body .init-8 .right ul li .time {
  width: 95px;
  background-color: #dcdcdc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 0%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#index-body .init-8 .right ul li .time span {
  line-height: 1;
}
#index-body .init-8 .right ul li .des {
  line-height: 28px;
  opacity: 0.75;
}
#index-body .init-8 .right ul li:hover {
  color: var(--color);
}
#index-body .init-8 .right ul li:hover .time {
  background-color: var(--color);
  color: white;
}
.init-last {
  background: url(../images/bg-2.jpg) no-repeat;
  background-size: cover;
  color: white;
}
.init-last .i-title {
  line-height: 1.3;
}
#footer {
  background: url(../images/footer-bg.jpg) no-repeat bottom right #000;
  color: white;
}
#footer .line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
#footer .left ul li span {
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
}
#footer .left ul li p {
  line-height: 24px;
  max-width: 320px;
}
#footer .left ul li .share a {
  margin-right: 10px;
}
#footer .left ul li:nth-child(2n-1) {
  width: 65%;
}
#footer .left ul li:nth-child(2n) {
  width: 35%;
}
#footer .right form ul li {
  margin-bottom: 20px;
}
#footer .right form ul li input,
#footer .right form ul li textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  height: 40px;
}
#footer .right form ul li textarea {
  height: 90px;
}
/*#footer .right form ul li button {
  margin-top: 35px;
}*/
#footer .f-copy {
  color: rgba(255, 255, 255, 0.5);
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .f-copy p a {
  color: var(--color);
}
#footer .f-copy svg {
  width: auto;
  height: 26px;
  fill: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1700px) {
  #header .nav .ui.menu{
    padding: 0 50px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 18px;
    margin: 0 19px;
  }
  #header .nav .ui.menu .search form input {
    font-size: 18px;
    height: 40px;
  }
  #header .nav .ui.menu .logo img {
    max-width: 240px;
  }
  #index-body .init-5 p.txt{
    max-width: 730px;
  }
  #index-body .init-6 p.txt{
    max-width: 800px;
  }
}
@media screen and (max-width: 1450px) {
  #header .nav .ui.menu {
    padding: 0 25px;
  }
  #header .nav .ui.menu .logo img{
    max-width: 200px;
  }
  #header .nav .ui.menu .yuy span,
  #header .nav .ui.menu .search form input,
  #header .nav .ui.menu .menu-box ul.menu > li{
    font-size: 16px;
  }
  #index-body .init-1 .ui.container {
    padding-left: 5%;
  }
  #header .nav .ui.menu .search{
    width: 200px;
  }
}
@media screen and (max-width: 1250px) {
  #innerMobileBanner{
    margin-top: 60px;
  }
  #banner li .content p {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
  }
  .font-70 {
    font-size: 38px;
  }
  #index-body .init-2 ul li .icon {
    width: 50px;
  }
  #index-body .init-2 ul li {
    padding-left: 65px;
  }
  #index-body .init-6 ul li .icon {
    width: 100px;
    height: 100px;
  }
  #footer .left ul li:nth-child(2n) {
    width: 42%;
  }
  #footer .left ul li:nth-child(2n-1) {
    width: 56%;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .init-2 ul li {
    width: 50%;
    margin-bottom: 20px;
  }
  #index-body .init-3 .box .left {
    width: 100%;
  }
  #index-body .init-3 .box .right {
    width: 100%;
  }
  #index-body .init-4 .box .right {
    margin-top: 30px;
  }
  #index-body .init-7 .content {
    width: 100%;
  }
  #index-body .init-7 .img {
    width: 100%;
  }
  #index-body .init-8 .left {
    width: 100%;
  }
  #index-body .init-8 .right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #footer .wrap .left {
    width: 100%;
  }
  #footer .wrap .right {
    width: 100%;
  }
  #footer .right form ul li button {
    margin-top: 0;
  }
}
@media screen and (max-width: 700px) {
  #banner li  video {
    min-height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #index-body .init-6 ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #index-body .init-6 ul li {
    width: 33.3%;
  }
}
@media screen and (max-width: 500px) {
  #banner li video,
  #banner li > img {
    min-height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #index-body .init-1 .slickBtn {
    right: 0%;
    bottom: -webkit-calc(100% + 10px);
    bottom: -moz-calc(100% + 10px);
    bottom: calc(100% + 10px);
  }
  #index-body .init-1 .top {
    width: 100%;
    margin-bottom: 40px;
  }
  #index-body .init-2 ul li {
    width: 100%;
  }
  #index-body .init-8 .right ul li {
    padding-left: 80px;
  }
  #index-body .init-8 .right ul li .time {
    width: 70px;
  }
  .init-last .i-title br {
    display: none;
  }
  #footer .left ul li {
    width: 100% !important;
  }
  #footer .right form ul li {
    width: 100%;
  }
}


.inner-banner{
  color: white;
  background-attachment: fixed;
}
.m-page a,
.m-page span{
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  background: #222;
  color: white;
  transition: 0.5s;
  margin-right: 15px;
}
.m-page a:hover,
.m-page span{
  background: var(--color);
}
.about-page {
  position: relative;
}
.about-page .bg {
  position: absolute;
  left: -1px;
  top: 115px;
  width: 90px;
  height: 100%;
  /*background: url(../images/about-page-left-bg.png) no-repeat left top;*/
}
.about-page .about-1 {
  padding: 120px 0;
  background-color: white;
}
.about-page .about-1 .aboutBtn {
  display: inline-block;
  padding: 15px 30px;
  color: white;
  background-color: var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-1 .aboutBtn:hover {
  background-color: black;
}
.about-page .about-1 .left {
  position: relative;
  width: 50%;
  padding-right: 40px;
}
.about-page .about-1 .left .img1 {
  display: inline-block;
}
.about-page .about-1 .left .img2 {
  position: absolute;
  right: 20px;
  bottom: 30px;
}
.about-page .about-1 .right {
  width: 50%;
  position: relative;
}
/*.about-page .about-1 .right .title {
  white-space: nowrap;
  text-align: right;
  position: absolute;
  right: 0;
  top: 50px;
}*/
.about-page .about-1 .right .content {
  margin-top: 40px;
  margin-bottom: 75px;
  color:#666;
  line-height: 1.6;
}
.about-page .about-1 .right .more {
  margin-left: 0;
}
.about-page .about-2 {
  padding: 50px 0 130px;
  background-color: white;
}
.about-page .about-2 ul {
  margin: 0 -90px 0 -45px;
  margin-top: 50px
}
.about-page .about-2 ul li {
  padding: 0 90px 0 45px;
  border-left: 1px solid #dcdcdc;
  position: relative;
}
.about-page .about-2 ul li:first-child{
  border: none
}
.about-page .about-2 ul li .h5 {
  font-size: 30px;
  line-height: 1.8;
  font-weight: 500; 

}
.about-page .about-2 ul li .des {
  line-height: 32px;
  color: #818181;
  margin: 31px 0 30px;
  min-height: 140px;
}
/*.about-page .about-2 ul li:last-child {
  padding-right: 0;
}*/
.about-page .about-2 ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background: black;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.about-page .about-2 ul li:hover::after {
  height: 100%;
}
.about-page .about-3 {
  position: relative;
  padding-top: 25%;
      background-image: url(/template/en/images/cus.jpg);

  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  /*background-size: cover;*/
}

.about-page .about-3 .play {
  width: 190px;
  height: 190px;
  border-radius: 100%;
  color: white;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 190px;
  position: absolute;
  left: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.custom-page .about-page .about-4{
  padding-top: 60px;
  background: none

}
.custom-page .about-page .about-4 .baseTit .Tit{
  padding-bottom: 40px; 
  padding-top: 80px;
}
.about-page .about-4 {
  /*padding: 100px 0;
  background-color: #fefbf7;*/
  /*background-image: url(/template/en/images/culture-bg.png);*/
}
.about-page .about-4 ul {
  margin: 100px 0;
  display: flex;
  flex-wrap: wrap
}
.about-page .about-4 ul{
  margin: 0 -15px
}
.about-page .about-4 ul li {
  padding: 25px;
}
.about-page .about-4 ul li .box {
  height: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.9s;
  text-align: center;
  -webkit-box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
  padding: 55px 25px;
  /*min-height: 460px;*/
  background-color: #fff;
}
.about-page .about-4 ul li .box .h5 {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 500;
  margin: 20px 0 13px; 
}
.about-page .about-4 ul li .box .des {
  color: #818181;
  min-height: 10.8em;
}
.about-page .about-4 ul li .box:hover {
  background: var(--color);
  color: white;
 
}
.about-page .about-4 ul li .box img {
  transition: .5s ease;
}
.about-page .about-4 ul li .box:hover img {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.about-page .about-4 ul li .box:hover .des{
  color: #fff
}
.about-page .about-5 {
  padding-bottom: 110px;
  background-color: white;
}
.about-page .about-5 ul li {
  position: relative;
}
.about-page .about-5 ul li .more {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}
.about-page .about-5 ul li .more::after {
  content: none;
}
.about-page .about-5 ul li:hover .more {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 1400px) {
  .about-page .about-1 .left .img {
    width: 85%;
  }
  .about-page .about-1 .left .img2 {
    width: 45%;
  }
  .about-page .about-2 ul {
    margin: 0 -45px;
  }
  .about-page .about-2 ul li {
    padding: 0 45px;
  }
  .about-page .about-2 ul li .des {
    margin: 25px 0 40px;
  }
  
}
@media screen and (max-width: 1200px) {
  
  .about-page .about-1 .right .content {
    margin-bottom: 30px;
  }
  .about-page .bg {
    display: none;
  }
  .about-page .about-2 ul {
    margin: 0 -20px;
  }
  .about-page .about-2 ul li {
    padding: 0 20px;
  }
  .about-page .about-3 {
    padding-top: 40%;
    /*background-image: url(../images/about-bj.jpg);
    background-size: 100% auto;*/
  }
  .about-page .about-4 ul li {
    width: 50% !important;
  }
  .about-page .about-5 ul li .more {
    white-space: nowrap;
  } 
}
@media screen and (max-width: 1000px){
   .about-page .about-1 {
    padding: 60px 0;
  }
  .about-page .about-1 .left {
    width: 100%;
  }
    .baseTit .Tit {
    font-size: 30px;
    line-height: 1.4;
  }
  .about-page .about-1 .left .img {
    width: 100%;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding-top: 0;
    margin-top: 20px;
  }
  .about-page .about-1 .right .title {
    position: relative;
    top: 0;
    text-align: left;
    margin-bottom: 20px;
  }
  .about-page .about-1 .right .more {
    margin-left: 0;
  }
  .about-page .about-2 {
    padding: 60px 0;
  }
  .about-page .about-3 .play {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }

  .about-page .about-4 {
    padding: 60px 0;
  }
    .about-page .about-4 ul{
    margin: 0
  }
}
@media screen and (max-width: 700px){
   .about-page .about-2 ul li {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .about-page .about-3 {
    padding-top: 70%;
    background-attachment: unset;
  }
  .about-page .about-3 > img {
    height: 230px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 500px){
  .about-page .about-1 .right .title {
    white-space: pre-wrap;
  }
  .about-page .about-2 ul {
    margin: 0;
  }
  .about-page .about-2 ul li {
    padding: 0;
    border-left: none;
  }
  .about-page .about-2 ul li .h5 {
    font-size: 24px;
    line-height: 44px;
  }
  .about-page .about-4 ul li {
    width: 100% !important;
  }
}

.inner-page .sidebox .sideleft {
  width: 77%;
  padding-left: 30px;
}
.inner-page .sidebox .sideright {
  width: 23%;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  padding:0  30px 40px 0px ;
}
.inner-page .sidebox .sideright .wide {
  margin-top: 30px;
}
.inner-page .sidebox .sideright .wide h5 {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500; 
}
.inner-page .sidebox .sideright .wide form {
  width: 100%;
  position: relative;
}
.inner-page .sidebox .sideright .wide form input {
  width: 100%;
  padding: 12px 19px 12px 48px;
  border: 1px solid #d1d0c8;
  background: transparent;
  font-size: 16px;
  color: #83827F;
}
.inner-page .sidebox .sideright .wide form input[type="submit"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 52px;
  background: url(../images/tc-zoom.png) no-repeat center center;
  padding: 0;
  border: 0;
}
.inner-page .sidebox .sideright .wide:nth-child(1) {
  margin-top: 0;
}
.inner-page .sidebox .sideright .wide ul li {
  font-size: 18px;
  line-height: 2;
  color: #666;
}
.inner-page .sidebox .sideright .wide > ul > li{
  font-size: 20px;
  font-weight: bold;
}
.inner-page .sidebox .sideright .wide > ul > li ul li{
  font-weight: normal;
}
.inner-page .sidebox .sideright .wide ul li a {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: black;
}
.inner-page .sidebox .sideright .wide ul li i{
  float: right;
  font-size: 20px;
  transform: rotate(-90deg);
  transition: .5s;
}
.inner-page .sidebox .sideright .wide ul li i.active{
    transform: rotate(0);
}
.inner-page .sidebox .sideright .wide ul li a::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sidebox .sideright .wide ul li a:hover,
.inner-page .sidebox .sideright .wide ul li a.active {
  color: var(--color);
}
.inner-page .sidebox .sideright .wide ul li a:hover::before,
.inner-page .sidebox .sideright .wide ul li a.active::before{
  background: var(--color);
}
.inner-page .sidebox .sideright .wide ul li.active ul{
  display: block;
}
/*.inner-page .sidebox .sideright .wide ul li ul{
  display: none;
}*/
.inner-page .sidebox .sideright .wide ul li ul li a::before{
  display: none;
}
.inner-page .sidebox .sideright .like_pro ul li .img-box{
  width: 45%;
}
.inner-page .sidebox .sideright .like_pro ul li .content{
  width: 55%;
}
.inner-page .sidebox .sideright .wide dd {
  font-size: 14px;
  padding: 8px 18px;
  margin: 0 5px 5px 0;
  border: 1px solid #d1d0c8;
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sidebox .sideright .wide dd:hover {
  color: var(--color);
}
.product-page {
  padding: 120px 0 0;
}
.product-page .sidebox .sideleft .top h1 {
  font-size: 32px;
  line-height: 1.2;
  padding-right: 8px;
  
}
.product-page .sidebox .sideleft .top .desc{
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
  color: #83827F;
  max-height: 260px;
  overflow-y: auto;
}
.product-page .sidebox .sideleft .top .category {
  width: 245px;
  position: relative;
}
.product-page .sidebox .sideleft .top .category span {
  font-size: 16px;
  line-height: 1.3;
  color: #181818;
  padding: 0 25px 0 0;
  display: block;
  width: 100%;
}
.product-page .sidebox .sideleft .top .category span i {
  float: right;
  font-size: 20px;
}
.product-page .sidebox .sideleft .top .category ul {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #fff;
  padding: 15px;
  z-index: 1;
  display: none;
  max-height: 300px;
  overflow: auto;
}
.product-page .sidebox .sideleft .top .category ul li {
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sidebox .sideleft .top .category ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.product-page .sidebox .sideleft .top .category ul li:hover {
  color: var(--color);
}
.product-page .sidebox .sideleft .top .category:hover ul,
.product-page .sidebox .sideleft .top .category.active ul {
  display: block;
}
.product-page .sidebox .sideleft .list {
  margin: 60px 0;
}
.product-page .sidebox .sideleft .list ul {
  margin: -20px -30px -35px -10px;
}
.product-page .sidebox .sideleft .list ul li {
  padding: 0 0px 30px 0px;
  border: 1px solid #e6e6e6;
  margin: 15px;
  width: 30%;
}
.product-page .sidebox .sideleft .list ul li .img {
  position: relative;
}
.product-page .sidebox .sideleft .list ul li .img a.img-box {
  display: block;
  position: relative;
}
.product-page .sidebox .sideleft .list ul li .img a.img-box .i2{
  position: absolute;
  font-size: 14px;
  line-height: 2;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.product-page .sidebox .sideleft .list ul li .img a.img-box:hover .i2{
  opacity: 1;
}
.product-page .sidebox .sideleft .list ul li .img a.img-box img {
  /*width: 100%;*/
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin: 0 auto;
  display: block;
}
.product-page .sidebox .sideleft .list ul li .img .icon {
  position: absolute;
  top: 43%;
  left: 0;
  width: 100%;
  text-align: center;
  /*display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;*/
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sidebox .sideleft .list ul li .img .icon a {
  display: inline-block;
  width: 47px;
  height: 47px;
  margin: 4px;
  background: #fff;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  text-align: center;
  line-height: 47px;
}
.product-page .sidebox .sideleft .list ul li .img .icon a img {
  display: inline-block;
  vertical-align: middle;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.product-page .sidebox .sideleft .list ul li .img .icon a:hover {
  margin-top: -4px;
}
.product-page .sidebox .sideleft .list ul li .img .icon a:hover img {
  -webkit-filter: none;
  filter: none;
}
.product-page .sidebox .sideleft .list ul li .img:hover .img-box img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.product-page .sidebox .sideleft .list ul li .img:hover .icon {
  opacity: 1;
}
.product-page .sidebox .sideleft .list ul li .text {
  padding-top: 25px;
}
.product-page .sidebox .sideleft .list ul li .text h3 {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
 overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;

}
.product-page .sidebox .sideleft .list ul li .text h3:hover{
color:#a88f68;

}
.product-page .sidebox .sideleft .list ul li .text .con {
  font-size: 18px;
  line-height: 32px;
  color: #83827F;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media screen and (max-width:1450px){
  
  .inner-page .sidebox .sideright .wide ul li{
    font-size: 14px !important;
  }
  .inner-page .sidebox .sideright .wide > ul > li{
    font-size: 18px;
  }
  .inner-page .sidebox .sideright{
    padding-right: 0;
  }
}
@media screen and (max-width:1250px){
  .inner-page .sidebox .sideleft {
    width: 100%;
    padding-left: 0;
  }
  .inner-page .sidebox .sideright {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .product-page {
    padding: 60px 0;
  }
  .inner-page .sidebox .sideleft {
    width: 100%;
    padding-left: 0;
  }
  .inner-page .sidebox .sideright {
    display: none;
  }
  .body-overflow-box {
    overflow: hidden !important;
  }
  .product-page .sidebox .sideleft .list ul li{
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 700px) {
  .product-page {
    padding: 30px 0;
  }
  .product-page .sidebox .sideleft .top .desc{
    display: none;
  }
  .product-page .sidebox .sideleft .top h1{
    font-size: 20px;
    line-height: 36px;
    padding-right: 8px;
    
  }
  .product-page .sidebox .sideleft .list {
    margin-top: 0px;
  }
  .product-page .sidebox .sideleft .list ul {
    margin: 0 -25px -25px 0;
  }
   
  .product-page .sidebox .sideleft .list ul li .text {
    padding-top: 15px;
  }
  .product-page .sidebox .sideleft .list ul li .text h3 {
    font-size: 15px;
    line-height: 32px;
  }
  .product-page .sidebox .sideleft .list ul li .text .con {
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (max-width: 500px){
  .product-page .sidebox .sideleft .list ul li{
    width: 100%;
    margin: 15px 0
  }
  .product-page .sidebox .sideleft .list ul{
    margin: 0
  }
}
#productdetail-page .container .cont_1 .right .wwww{
  font-size: 16px;
  line-height: 30px;
  margin-top: 40px;
  color: #666;
}
#productdetail-page .container .cont_1 {
  padding: 0px 0 130px;
  display: flex;
  justify-content: space-between;
}
#productdetail-page .container .cont_1 .left {
  width: 48%;
}
#productdetail-page .container .cont_1 .left .gallery-top ul li{
  background: #fff;
  border: 1px solid #e6e6e6;
  /*width: 600px;*/
  /*height: 600px;*/
  display: flex;
  align-items: center;
  justify-content: center
}
#productdetail-page .container .cont_1 .left .gallery-top ul li img{
  width: auto;
  height: 100%;
  object-fit: cover;
}
#productdetail-page .container .cont_1 .left .gallery-thumbs {
  margin-top: 20px;
}
#productdetail-page .container .cont_1 .left .gallery-thumbs li a{
  /*height: 220px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  cursor: pointer;
 
}
#productdetail-page .container .cont_1 .left .gallery-thumbs li a img {
 width: auto;
 height: 100%;
 object-fit: cover;
}
#productdetail-page .container .cont_1 .right {
  width: 48%;
}
#productdetail-page .container .cont_1 .right .title {
  font-size: 36px;
  line-height: 1.4;

  
}
#productdetail-page .container .cont_1 .right .des {
  margin-top: 30px;
  
  font-size: 18px;
  line-height: 2;
  color: #333;
  position: relative;
  padding-left: 70px;
  font-weight: 500;
}
#productdetail-page .container .cont_1 .right .des::after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 1px;
  background: var(--color);
}
#productdetail-page .container .cont_1 .right .btn {
  display: flex;
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap;
}
#productdetail-page .container .cont_1 .right .btn a {

  margin-bottom: 10px;
}

#productdetail-page .container .cont_1 .right .btn a:last-child {
  margin-left: 30px;
}
#productdetail-page .container .cont_1 .right .content {
  width: 100%;
  margin-top: 40px;
  font-size: 17px;
  line-height: 30px;
  color:#666;
  max-height: 318px;
  overflow-y: scroll;
}
#productdetail-page .container .cont_1 .right .content table.seoPublic .Auxil-news .list ul li .content div.h6{
  width: 100%;
  border: #c1775b solid 1px;
}
#productdetail-page .container .cont_1 .right .content table td{
  padding: 10px
}
#productdetail-page .container .cont_1 .right .content .list {
  display: flex;
  justify-content: center;  
  font-size: 18px;
  color: #666666;
}
#productdetail-page .container .cont_1 .right .content .list div {
  width: 50%;
  padding: 20px 35px;
  border-bottom: #c1775b solid 1px;
}
#productdetail-page .container .cont_1 .right .content .list div:first-child {
  border-right: #c1775b solid 1px;
}
#productdetail-page .container .cont_2 {
  margin-top: 60px;
}
#productdetail-page .container .cont_2 .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#productdetail-page .container .cont_2 .title .img {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#productdetail-page .container .cont_2 .title .img img {
  width: 50%;
}
#productdetail-page .container .cont_2 .title .text {
  line-height: 1.8;
  font-size: 50px;
  margin-left: 25px;
}
#productdetail-page .container .cont_2 .swiper {
  position: relative;
  margin-top: 60px;
}
#productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide:hover .img img {
  transform: scale(1.2);
}
#productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide:hover .text {
  color: #d3974d;
}
#productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide a img {
  display: block;
  max-width: 100%;
  transition: all 0.5s;
}
#productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide .img {
  height: 300px;
  background-color: #fbf6f0;
  overflow: hidden;
}
#productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide .text {
  font-size: 18px;
  line-height: 2;
  text-align: center;
  
  margin: 20px 0;
  transition: all 0.5s;
}
#productdetail-page .container .cont_2 .swiper .prev,
#productdetail-page .container .cont_2 .swiper .next {
  position: absolute;
  right: -50px;
  top: 180px;
  width: 28px;
  height: 30px;
  background-color: var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
#productdetail-page .container .cont_2 .swiper .prev span,
#productdetail-page .container .cont_2 .swiper .next span {
  color: #fff;
  font-size: 14px;
  transform: scale(1, 2);
  margin-top: -3px;
}
#productdetail-page .container .cont_2 .swiper .prev {
  left: -50px;
}
#productdetail-page .container .cont_3 {
  margin-top: 80px;
}
#productdetail-page .container .cont_3 .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#productdetail-page .container .cont_3 .title .img {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#productdetail-page .container .cont_3 .title .img img {
  width: 50%;
}
#productdetail-page .container .cont_3 .title .text {
  font-size: 50px;
  margin-left: 25px;
}
#productdetail-page .container .cont_3 .form_1 {
  width: 100%;
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#productdetail-page .container .cont_3 .form_1 input {
  margin-top: 20px;
  border: var(--color) solid 1px;
  padding: 10px 20px;
  width: 48%;
  
  font-size: 16px;
}
#productdetail-page .container .cont_3 .form_1 input:nth-child(3) {
  width: 100%;
}
#productdetail-page .container .cont_3 .form_1 textarea {
  border:var(--color) solid 1px;
  width: 100%;
  
  font-size: 16px;
  padding: 10px 20px;
  margin-top: 20px;
}
#productdetail-page .container .cont_3 .form_1 .submit_btn {
  padding: 10px 40px;
  
  font-size: 16px;
  color: #fff;
  margin: auto;
  margin-top: 35px;
}
#productdetail-page .container .cont_4 {
  margin: 130px 0;
}
#productdetail-page .container .cont_4 .title {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
#productdetail-page .container .cont_4 .title .img {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#productdetail-page .container .cont_4 .title .text {
  margin-left: 25px;  
  font-size: 50px;
  line-height: 1.5;
}
#productdetail-page .container .cont_5{
  padding-bottom: 130px;
}
#productdetail-page .container .cont_5 .title{
  /*width: 325px;*/
  height: 60px;
  /*background: var(--color);*/
  /*color: #fff;*/
  font-size: 20px; 
  line-height: 60px;
  border-bottom: 1px solid #eee;
  position: relative;
}
#productdetail-page .container .cont_5 .title span{
  position: relative;
  display: inline-block;
}
#productdetail-page .container .cont_5 .title span::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
}
#productdetail-page .container .cont_5 .content{
  width: 100%;
  margin-top: 35px;
  line-height: 32px;
  font-size: 18px;
  overflow-x: auto;
}
#productdetail-page .container .cont_5 .content table{
  width: 100%; 
}
#productdetail-page .container .cont_5 .content table strong{
  font-weight: 400 !important;
}
 
#productdetail-page .container .cont_5 .content table td{
  padding: 5px;
}
#productdetail-page .container .cont_5 .content table tr:nth-child(even){
  background: white;
}
#productdetail-page .container .cont_5 .content table td:nth-child(1){
  background: #f3f4f8;
  width: 20% !important;
}
@media screen and (max-width:1700px){
  .inner-page .sidebox .sideright .wide ul li{
    font-size: 16px;
  }
}
@media (max-width: 1450px) {
  /*#productdetail-page .container {
    width: 100%;
  }*/
  #productdetail-page .container .cont_1 {
    padding: 0px 0 60px;
  }
  #productdetail-page .container .cont_2 .swiper .swiper-container {
    width: 90%;
  }
  #productdetail-page .container .cont_2 .swiper .swiper-container .www{
    width: 100% !important;
  }  
  #productdetail-page .container .cont_2 .swiper .prev {
    top: 13vw;
    left: 0;
  }
  #productdetail-page .container .cont_2 .swiper .next {
    right: 0;
    top: 13vw;
  }
  #productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide .img {
    height: 23vw;
  }
  #productdetail-page .container .cont_1 .right .title{
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px){
  #productdetail-page .container .cont_1 .right .des,
  c {
    font-size: 14px !important;
    line-height: 2 !important;
  }
  #productdetail-page .container .cont_5 .content{
    margin-bottom: -40px;
  }
  #productdetail-page .container .cont_1 .right .content {
    font-size: 14px !important;
    line-height: 28px;
  }
  .prodet-page .about-page .a-1 .top .text,
  .prodet-page .about-page .a-1 .top .img{
    width: 100%;
    padding: 0;
    margin: 20px 0;
  }
}
@media (max-width: 769px) {
   #productdetail-page .container .cont_1 {
    flex-wrap: wrap;
  }
  #productdetail-page .container .cont_1 .left {
    width: 100%;
    margin: auto;
    margin-top: 20px;
  }
  #productdetail-page .container .cont_1 .right {
    width: 100%;
    margin-top: 20px;
  }
  #productdetail-page .container .cont_1 .right .title {
    font-size: 20px; 
  }
  #productdetail-page .container .cont_1 .right .des {
    margin-top: 20px;
    text-align: center;
  }
  #productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide .img {
    height: 30vw;
  }
  #productdetail-page .container .cont_2 .swiper .prev,
  #productdetail-page .container .cont_2 .swiper .next {
    width: 20px;
    height: 20px;
  }
  #productdetail-page .container .cont_2 .swiper .prev span,
  #productdetail-page .container .cont_2 .swiper .next span {
    font-size: 12px;
  }
  #productdetail-page .container .cont_2 {
    margin-top: 20px;
  }
  #productdetail-page .container .cont_2 .title .img {
    width: 30px;
    height: 30px;
  }
  #productdetail-page .container .cont_2 .title .text {
    font-size: 20px;
    margin-left: 15px;
    line-height: 36px;
  }
  #productdetail-page .container .cont_3 {
    margin-top: 30px;
  }
  #productdetail-page .container .cont_3 .title .img {
    width: 30px;
    height: 30px;
  }
  #productdetail-page .container .cont_3 .title .img img {
    width: 50%;
  }
  #productdetail-page .container .cont_3 .title .text {
    font-size: 20px;
    margin-left: 15px;
  }
  #productdetail-page .container .cont_4 {
    margin-top: 60px;
  }
  #productdetail-page .container .cont_4 .title {
    flex-wrap: wrap;
  }
  #productdetail-page .container .cont_4 .title .img {
    width: 30px;
    height: 30px;
  }
  #productdetail-page .container .cont_4 .title .img img {
    width: 50%;
  }
  #productdetail-page .container .cont_4 .title .text {
    font-size: 20px;
    margin-left: 15px;
    line-height: 36px;
  }
  #productdetail-page .container .cont_5 .title{
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    width: 240px;
  }
  #productdetail-page .container .cont_5 .content{
    margin-top: 20px;
  }
  
}
@media (max-width: 414px) {
   #productdetail-page .container .cont_1 {
    padding: 0px 0 20px;
  }
  #productdetail-page .container .cont_1 .right .title {
    font-size: 20px;
    text-align: center;
    line-height: 36px!important;
  }
  #productdetail-page .container .cont_1 .right .des {
    font-size: 12px;
    line-height: 24px;
    margin-top: 10px;
    text-align: center;
  }
  #productdetail-page .container .cont_1 .right .btn {
    margin-top: 10px;
  }
  #productdetail-page .container .cont_1 .right .btn a {
    padding: 5px 15px;
    font-size: 14px;
    line-height: 28px;
  }
  #productdetail-page .container .cont_1 .right .btn a:last-child {
    margin-left: 15px;
  }
  #productdetail-page .container .cont_1 .right .content {
    margin-top: 10px;
    overflow: auto;
    font-size: 14px;
    line-height: 28px;
  }
#productdetail-page .container .cont_1 .right .content table td{
  padding: 5px;
}
  #productdetail-page .container .cont_1 .right .content .list {
    font-size: 14px;
    line-height: 28px;
  }
  #productdetail-page .container .cont_1 .right .content .list div {
    padding: 5px 10px;
  }
  #productdetail-page .container .cont_1 .left {
    width: 100%;
  }
  #productdetail-page .container .cont_1 .left .gallery-thumbs .swiper-slide {
    height: 50vw;
  }
  #productdetail-page .container .cont_2 .swiper .swiper-container {
    width: 85%;
  }
  #productdetail-page .container .cont_2 .swiper {
    margin-top: 20px;
  }
  #productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide .img {
    height: 70vw;
  }
  #productdetail-page .container .cont_2 .swiper .swiper-container .swiper-wrapper .swiper-slide .text {
    padding: 10px 0;
    font-size: 16px;
    line-height: 30px;
  }
  #productdetail-page .container .cont_2 .swiper .next {
    top: 35vw;
  }
  #productdetail-page .container .cont_2 .swiper .prev {
    top: 35vw;
  }
  #productdetail-page .container .cont_3 .form_1 {
    margin-top: 20px;
  }
  #productdetail-page .container .cont_3 .form_1 input {
    margin-top: 10px;
    width: 100%;
    padding: 5px 10px;
    font-size: 12px;
  }
  #productdetail-page .container .cont_3 .form_1 textarea {
    font-size: 12px;
    margin-top: 10px;
    padding: 5px 10px;
  }
  #productdetail-page .container .cont_3 .form_1 .submit_btn {
    margin-top: 20px;
    padding: 3px 10px;
    font-size: 13px;
  }
  #productdetail-page .container .cont_4 {
    margin: 40px 0;
  }
  #productdetail-page .container .cont_4 .title {
    justify-content: center;
    text-align: center;
  }
  #productdetail-page .container .cont_5 .title{
    font-size: 14px;
    line-height: 2;
    width: 180px;
  }
  #productdetail-page .container .cont_5 .content{
    font-size: 14px;
  }
  #productdetail-page .container .cont_5 .content table td{
    padding: 5px;
  }
}

.news-page .tips_title {
  font-weight: bold;
  padding-left: 60px;
  text-transform: uppercase; 
  padding-right: 25px;
  display: inline-block;
  position: relative;
  line-height: 1;
  z-index: 2;
}
.news-page .tips_title::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 16px;
  bottom: 0;
  left: 0;
  background-color: #a50f0f1f;
  z-index: -1;
}
.news-page .content {
  margin-top: 50px;
}
.news-page .content ul li {
  position: relative;
}
.news-page .content ul li .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f2f4f6;
}
.news-page .content ul li .box {
  position: relative;
  z-index: 1;
  border: 1px solid #eceef1;
  /*height: 290px;*/
  padding: 30px 50px;
  background-color: #fff;
}
.t_1 {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}
.news-page .content ul li .box .title {
  display: block;
  font-weight: bold;
  font-size: 24px;
  min-height: 42px;
}
.news-page .content ul li .box .title::before{
  display: none;
}
.news-page .content ul li .box .title:hover {
  color: var(--color);
}
.news-page .content ul li .box .des {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 20px;
  line-height: 2;
}
.news-page .content ul li .box .des:hover {
  color: var(--color);
}
.news-page .content ul li .box .info_c {
  margin-top: 30px;
}
.news-page .content ul li .box .info_c .cat_name {
  width: 170px;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  background-color: var(--color);
  border-radius: 0px;
  padding: 10px 22px;
  margin-bottom: 8px;
}
.news-page .content ul li .box .info_c .time {
  color: rgba(33, 33, 33, 0.7);
  margin-left: 30px;
  width: auto;
  font-size: 16px;
  vertical-align: middle;
}
.news-page .content ul li:hover {
  z-index: 2;
}
.news-page .content ul li:hover .box {
  -webkit-transform: translate(10px, -10px);
  -moz-transform: translate(10px, -10px);
  -ms-transform: translate(10px, -10px);
  -o-transform: translate(10px, -10px);
  transform: translate(10px, -10px);
}
.newdet-page .init-1 .container .title {
  font-size: 30px;
}
.newdet-page .init-1 .container .title::before{
  display: none;
}
.newdet-page .init-1 .container .time {
  color: #9e9e9e;
  margin-top: 30px;
}
.newdet-page .init-1 .container .content {
  margin-top: 20px;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  color: #545454;
  padding: 30px 0;
  line-height: 2;
}
.newdet-page .init-1 .container .bottom_cont {
  margin-top: 40px;
  line-height: 2;
  color: #8f8f8f;
}
.newdet-page .init-1 .container .bottom_cont .left {
  width: calc(100% - 160px);
  padding-right: 20px;
}
.newdet-page .init-1 .container .bottom_cont .right {
  width: 160px;
}
.newdet-page .init-1 .container .bottom_cont .right .share_name {
  color: #767676;
}
.newdet-page .init-1 .container .bottom_cont .right .list_cont a {
  display: inline-block;
  margin-top: 10px;
  width: 28px;
  height: 28px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  background-color: var(--color);
  font-size: 16px;
  border-radius: 50%;
  margin-right: 12px;
}
.newdet-page .init-1 .container .bottom_cont .right .list_cont a i {
  position: relative;
  z-index: 2;
}
.newdet-page .init-1 .container .bottom_cont .right .list_cont a::before {
  background-color: #245e3e;
}
.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list2 {
  background-color: #00aced;
}
.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list3 {
  background-color: #cb2027;
}
.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list4 {
  background-color: #cc2366;
}
.newdet-page .init-1 .container .bottom_cont .right .list_cont a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1500px) {
 
  .news-page .content ul li .box .title{
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .news-page {
    text-align: center;
  }
  .seohide {
    display: none !important;
  }
  .news-page .tips_title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .news-page .content .grid-box li {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  } 
  .news-page .content ul li .box .title{
    min-height: unset;
  } 
   .newdet-page .init-1 .container .bottom_cont {
    margin-top: 20px;
  }
  .newdet-page .init-1 .container .bottom_cont .left {
    width: 100%;
    padding: 0;
  }
  .newdet-page .init-1 .container .bottom_cont .right {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .news-page .content ul li .box {
    padding: 20px 16px;
  }
  .news-page .content ul li .box .info_c .time {
    width: 100%;
    margin: 16px 0 0;
  }
  .news-page .content ul li .box .title {
    font-size: 20px;
  } 
   .newdet-page .init-1 .container .bottom_cont {
    margin-top: 0;
  }
  .newdet-page .init-1 .container .time {
    margin-top: 16px;
  }
}

.contact-page {
  padding-top: 120px;
  background: #f8f8f8;
}
.contact-page .init-1 {
  padding-top: 0px;
  background: #fff;
}
.contact-page .init-1 h1 {
  border-bottom: 1px solid #6e6b70;
  padding: 50px 0 20px;
  text-transform: capitalize;
}
.contact-page .init-1 ul {
  padding: 80px 0;
}
.contact-page .init-1 ul li {
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .init-1 ul li:hover {
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.contact-page .init-1 ul li:hover i {
  color: var(--color);
  border: 2px solid var(--color);
}
.contact-page .init-1 ul li:hover .img {
  border: 2px solid var(--color);
}
.contact-page .init-1 ul li:hover .img img {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
.contact-page .init-1 ul li i,
.contact-page .init-1 ul li .img {
  width: 100px;
  height: 100px;
  border: 2px solid #6e6b70;
  border-radius: 100%;
  line-height: 100px;
  text-align: center;
  font-size: 44px;
  color: #6e6b70;
  margin: 0 auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: block;
}
.contact-page .init-1 ul li .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-page .init-1 ul li .img img {
  max-width: 50%;
  -webkit-filter: grayscale(1) brightness(0.6);
  filter: grayscale(1) brightness(0.6);
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
.contact-page .init-1 ul li h3 {
  font-size: 18px;
  color: #051524;
  padding: 20px 0 10px;
  /*text-transform: capitalize; */
  /*font-weight: bold;*/
}
.contact-page .init-1 ul li p {
  font-size: 18px;
  color: #414951;
  line-height: 2;
  font-weight: bold;
}
.contact-page .init-2 {
  padding-bottom: 110px;
}
.contact-page .init-2 .init-2-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-page .init-2 .init-2-box .left {
  width: 50%;
  /*padding-right: 8.5%;*/
  background: white;
  box-shadow: 13px 15px 60px 0 rgba(9, 36, 60, .1);
}
.contact-page .init-2 .init-2-box .left h1 {
  background: var(--color);
  color: #fff;
  padding: 15px 0;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  line-height: 2; 
  font-weight: bold;
}
.contact-page .init-2 .init-2-box .left .content {
  padding-left: 30px;
}
.contact-page .init-2 .init-2-box .left .content p {
  margin-top: 20px;
  font-size: 16px;
  color: #8995a2;
  line-height: 2;
}
.contact-page .init-2 .init-2-box .left .content ul {
  margin-top: 10px;
}
.contact-page .init-2 .init-2-box .left .content ul li {
  padding: 20px 0;
  border-bottom: 1px solid #e0e8f0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.contact-page .init-2 .init-2-box .left .content ul li span {
  display: inline-block;
  width: 60px;
  text-align: center;
  margin-right: 20px;
}
.contact-page .init-2 .init-2-box .left .content ul li p {
  font-size: 20px;
  color: #242424;
  font-weight: bold;
}
.contact-page .init-2 .init-2-box .right {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 70px;
}
.contact-page .init-2 .init-2-box .right form {
    padding-left: 25px;
    height: 670px;
    width: 720px;
    padding: 60px;
    background-color: #fff;
    -webkit-box-shadow: 13px 15px 60px 0 rgba(9, 36, 60, .1);
    box-shadow: 13px 15px 60px 0 rgba(9, 36, 60, .1);
}
.contact-page .init-2 .init-2-box .right form h4 {
    font-size: 36px;
    margin: 0 0 30px;
    color: #051524;
    text-transform: uppercase;
    line-height: 1.2; 
    font-weight: 700;
}
.contact-page .init-2 .init-2-box .right form span {
    font-weight: 400;
    font-style: normal;
    color: #6b6b6b;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 7px;
    display: block;
}
.contact-page .init-2 .init-2-box .right form input {
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: #848b91;
    font-size: 16px;
    line-height: 24px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 15px;
    outline: none;
    background-color: #ececec;
    border-radius: 0;
    border: none;
    margin-bottom: 20px;
}
.contact-page .init-2 .init-2-box .right form textarea {
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: #848b91;
    font-size: 16px;
    line-height: 24px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 15px;
    outline: none;
    background-color: #ececec;
    border-radius: 0;
    border: none;
    margin-bottom: 20px;
    height: 100px;
}
.contact-page .init-2 .init-2-box .right form .contact-submit {
    margin-top: 30px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contact-page .init-2 .init-2-box .right form .contact-submit input[type=submit] {
    display: inline-block;
    max-width: 200px;
    font-weight: 500;
    font-style: normal;
    line-height: 36px;
    font-size: 20px;
    color: #fff !important;
    background-color: var(--color);
    text-align: center;
    margin-right: 0 !important;
    padding: 9px 30px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .3s 
ease;
    -moz-transition: all .3s ease;
    transition: all .3s 
ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media screen and (max-width:1250px){
  .contact-page .init-2 .init-2-box .left h1{
    padding: 15px 0;
  }
}
@media screen and (max-width: 1000px){
   .contact-page .init-2 .init-2-box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact-page .init-2 .init-2-box .left .content {
    padding-left: 10px;
  }
  .contact-page .init-2 .init-2-box .left {
    width: 100% !important;
  }
  .contact-page .init-2 .init-2-box .right {
    width: 100% !important;
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -moz-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  } 
  .contact-page .init-2 .init-2-box .right {
    padding-right: 0;
  }
  .contact-page .init-2 .init-2-box .left {
    padding-right: 0;
    margin-top: 20px;
  }
  .contact-page .init-1 ul li{
    width: 50%;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 700px){
   .contact-page .init-2 .init-2-box .left {
    display: none;
  }
  .contact-page .init-1 ul li i, .contact-page .init-1 ul li .img{
    zoom: 0.6;
  }
  .contact-page{
    padding-top: 45px;
  }
  .contact-page .init-2{
    padding-bottom: 45px;
  }
  .contact-page .init-2 .init-2-box .right form h4{
    font-size: 23px;
  }
  .contact-page .init-2 .init-2-box .right form{
    height: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  .contact-page .init-2 .init-2-box .left .content ul li p {
    font-size: 18px;
  }
  .contact-page .init-2 .init-2-box .right {
    padding-right: 0;
    margin-top: 30px;
  }
  .contact-page .init-2 .init-2-box .left .content ul li {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact-page .init-2 .init-2-box .left .content p {
    margin-top: 0;
    line-height: 1.4;
  } 
  .contact-page .init-1 ul li{
    width: 100%;
  }
}


@keyframes img_rotate2{
  0%{
    transform: rotate(0deg);
  }
  50%{
    transform: rotate(-360deg);
  }
  100%{
    transform: rotate(0deg);
  }
}

.sustanibility-page .sustanibility-1 .left {
  width: 53%;
}
.sustanibility-page .sustanibility-1 .left img{
  width: 100%;
}
.sustanibility-page .sustanibility-1 .right {
  padding-left: 40px;
  width: 47%;
  
}
.sustanibility-page .sustanibility-1 .right h4 {
  font-weight: bold;
  font-size: 18px;
  color: var(--color);
}
.sustanibility-page .sustanibility-1 .right .con {
  line-height: 2;
}
.sustanibility-page .sustanibility-2 {
  margin: 120px 0;
}
.sustanibility-page .sustanibility-2 .top .con {
  max-width: 870px;
      line-height: 2;
}
.sustanibility-page .sustanibility-2 .content {
  background: url('../images/green-img02.jpg') no-repeat;
  background-size: cover;
  margin-top: 100px;
}
.sustanibility-page .sustanibility-2 .content .container {
  color: white;
}
.sustanibility-page .sustanibility-2 .content .container ul .slick-current li,
.sustanibility-page .sustanibility-2 .content .container ul .slick-current + .slick-slide li,
.sustanibility-page .sustanibility-2 .content .container ul .slick-current + .slick-slide + .slick-slide li,
.sustanibility-page .sustanibility-2 .content .container ul .slick-current + .slick-slide + .slick-slide + .slick-slide li {
  border-right: 1px solid white;
}
.sustanibility-page .sustanibility-2 .content .container .slick-list .slick-track{
  margin: auto;
}
.sustanibility-page .sustanibility-2 .content .container ul li {
  height: 690px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.sustanibility-page .sustanibility-2 .content .container ul li::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  left: 0;
  top: 0;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  opacity: 0;
}
.sustanibility-page .sustanibility-2 .content .container ul li:hover::before {
  opacity: 1;
}
.sustanibility-page .sustanibility-2 .content .container ul li:hover .box {
  top: 20%;
}
.sustanibility-page .sustanibility-2 .content .container ul li .box {
  width: -webkit-calc(100% - 60px);
  width: -moz-calc(100% - 60px);
  width: calc(100% - 60px);
  position: absolute;
  top: 73%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.sustanibility-page .sustanibility-2 .content .container ul li .box .img {
  text-align: center;
}
.sustanibility-page .sustanibility-2 .content .container ul li .box .img img {
  margin: 0 auto;
}
.sustanibility-page .sustanibility-2 .content .container ul li .box .img .line {
  width: 100%;
  height: 2px;
  background-color: white;
  margin: 25px 0 15px;
}
.sustanibility-page .sustanibility-2 .content .container ul li .box .img h4 {
  font-size: 28px;
  font-weight: bold;
}
.sustanibility-page .sustanibility-2 .content .container ul li .box .text {
  font-size: 14px;
  line-height: 1.4;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 50px;
}
.sustanibility-page .sustanibility-3 .i-title {
  margin-bottom: 120px;
  padding: 0 16px;
}
.sustanibility-page .sustanibility-3 .container {
  position: unset;
}
.sustanibility-page .sustanibility-3 .container .left {
  width: 45%;
  padding-right: 70px;
}
.sustanibility-page .sustanibility-3 .container .left h4 {
  font-weight: bold;
}
.sustanibility-page .sustanibility-3 .container .right {
  width: 55%;
}
.sustanibility-page .sustanibility-3 .container .right ul li {
  margin-bottom: 20px;
  padding: 30px 30px 0 30px;
  background-color: #f7f7f7;
  position: relative;
  height: 230px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sustanibility-page .sustanibility-3 .container .right ul li:last-child {
  margin-bottom: 0;
}
.sustanibility-page .sustanibility-3 .container .right ul li:hover {
  background-color: var(--color);
}
.sustanibility-page .sustanibility-3 .container .right ul li:hover .img {
  opacity: 1;
}
.sustanibility-page .sustanibility-3 .container .right ul li:hover .text {
  color: white;
}
.sustanibility-page .sustanibility-3 .container .right ul li .text {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sustanibility-page .sustanibility-3 .container .right ul li .text .con{
  line-height: 1.8;
}
.sustanibility-page .sustanibility-3 .container .right ul li .text h4 {
  font-weight: bold;
  margin-bottom: 10px;
}
.sustanibility-page .sustanibility-3 .container .right ul li .img {
  position: absolute;
  right: 10px;
  top: -120px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sustanibility-page .sustanibility-4 .top .con {
  max-width: 55%;
}

.sustanibility-page .sustanibility-4 .center ul {
  margin: 0 -10px;
}
.sustanibility-page .sustanibility-4 .center ul li {
  padding: 0 10px;
}
.sustanibility-page .sustanibility-4 .center ul li .box {
  position: relative;
}
.sustanibility-page .sustanibility-4 .center ul li .box .imgC{
  position: relative;
}
.sustanibility-page .sustanibility-4 .center ul li .box .imgC::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(89, 157, 52, 0.6)), to(rgba(89, 157, 52, 0)));
  background: -webkit-linear-gradient(bottom, rgba(89, 157, 52, 0.6), rgba(89, 157, 52, 0) 100%);
  background: -moz-linear-gradient(bottom, rgba(89, 157, 52, 0.6), rgba(89, 157, 52, 0) 100%);
  background: linear-gradient(to top, rgba(89, 157, 52, 0.6), rgba(89, 157, 52, 0) 100%);
  top: 0;
  left: 0;
  z-index: 2;
}
.sustanibility-page .sustanibility-4 .center ul li .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sustanibility-page .sustanibility-4 .center ul li .box h4 {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20px;
  left: 0;
  color: white;
  z-index: 5;
}
.sustanibility-page .sustanibility-4 .center ul li .box .con{
  padding: 0 10px;
  margin-top: 10px;
}
.sustanibility-page .sustanibility-4 .bottom .left {
  width: 28%;
}
.sustanibility-page .sustanibility-4 .bottom .right {
  width: 72%;
}
.sustanibility-page .sustanibility-4 .bottom .right ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sustanibility-page .sustanibility-4 .bottom .right ul li {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sustanibility-page .sustanibility-4 .bottom .right ul li:first-child {
  margin-right: 100px;
}
.sustanibility-page .sustanibility-4 .bottom .right ul li .con {
  margin-left: 15px;
}
.sustanibility-page .sustanibility-5 {
  padding: 60px 0;
  background-color: #f5f5f5;
}
.sustanibility-page .sustanibility-5 .content {
  max-width: 58%;
  margin: 30px auto 0;
}
.sustanibility-page .sustanibility-6 .content {
  margin-top: 55px;
}
.sustanibility-page .sustanibility-6 img{
  width: 100%;
}
.sustanibility-page .sustanibility-6 .content .con {
  max-width: 60%;
}
@media (max-width: 500px) {
  .sustanibility-page .sustanibility-2 .content .container ul li .box{
    width: 90%;
  }
  .sustanibility-page .sustanibility-2 .content .container ul li .box .text{
    margin-top: 20px;
  }
}
@media (max-width: 1200px) {
  .sustanibility-page .sustanibility-2 .top .con {
    max-width: 100%;
    margin-top: 60px;
  }
  .sustanibility-page .sustanibility-3 .container .right ul li .text h4 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .sustanibility-page .sustanibility-3 .container .right ul li .text .con {
    line-height: 1.7;
  }
}
@media (max-width: 1000px) {
   .sustanibility-page .sustanibility-1 .right {
    padding-left: 0;
    width: 100%;
    padding-top: 0;
    margin-top: 60px;
  }
  .sustanibility-page .sustanibility-1 .left {
    width: 100%;
  }
  .sustanibility-page .sustanibility-2 {
    margin: 80px 0;
  }
  .sustanibility-page .sustanibility-3 .container .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }
  .sustanibility-page .sustanibility-3 .container .right {
    width: 100%;
  }
  .sustanibility-page .sustanibility-4 .bottom .left {
    width: 100%;
  }
  .sustanibility-page .sustanibility-4 .bottom .right {
    width: 100%;
    margin-top: 60px;
  }
  .sustanibility-page .sustanibility-4 .bottom .right ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sustanibility-page .sustanibility-4 .bottom .right ul li:first-child {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .sustanibility-page .sustanibility-4 .bottom .right ul li {
    width: 100%;
  }
  .sustanibility-page .sustanibility-5 .content {
    max-width: 100%;
    padding: 0 15px;
  }
  .sustanibility-page .sustanibility-6 .content .con {
    max-width: 100%;
    margin-top: 60px;
  }
  .sustanibility-page .sustanibility-3 .i-title {
    margin-bottom: 60px;
  }
  .sustanibility-page .sustanibility-3 .container .right ul li {
    padding: 45px 30px;
    height: auto;
  }
   .sustanibility-page .sustanibility-3 .container .right ul li .img{
    display: none;
  }
}
@media (max-width: 700px) {
   .sustanibility-page .sustanibility-4 .top .con{
    max-width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  .sustanibility-page .sustanibility-2{
    margin: 40px 0;
  }
  .sustanibility-page .sustanibility-2 .top .con{
    margin-top: 20px;
  }
  .sustanibility-page .sustanibility-3 .container .right ul li{
    padding: 20px 16px;
  }
  .sustanibility-page .sustanibility-2 .content{
    margin-top: 40px;
  }
  .sustanibility-page .sustanibility-3 .i-title{
    margin-bottom: 20px;
  }
}

.inspiration-page{
  padding: 60px 0;
} 
.inspiration-page ul{
  margin: -12px;
} 
.inspiration-page ul li{
  padding: 12px;
  text-align: center;
} 
.inspiration-page ul li p{
  font-size: 18px;
  margin-top: 10px;
}
@media screen and (max-width:1000px){
  .inspiration-page ul li{
    width: 33.3%;
  }
}
@media screen and (max-width:700px){
  .inspiration-page ul li{
    width: 50%;
  }
}
@media screen and (max-width:500px){
  .inspiration-page ul li{
    width: 100%;
  }
}

.mana-page .mana-1 {
  padding-top: 4.688%;
}
.mana-page .mana-1 .left {
  vertical-align: middle;
  padding-right: 3.5%;
}
.mana-page .mana-1 .left .title::before {
  display: none;
}
.mana-page .mana-1 .left .con {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 30px;
  color: #484848;
}
.mana-page .mana-1 .right {
  vertical-align: middle;
}
.mana-page .mana-2 {
  padding-top: 3.386%;
}
.mana-page .mana-2 .top .left {
  width: 50%;
  padding-right: 7%;
}
.mana-page .mana-2 .top .left .title::before {
  display: none;
}
.mana-page .mana-2 .top .right {
  width: 48%;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 150px;
}
.mana-page .mana-2 .top .right p {
  margin-top: 25px;
}
.mana-page .mana-2 .top .right p:first-child {
  margin-top: 0;
}
.mana-page .mana-2 .bottom {
  /*background: url(../images/mana2.jpg) no-repeat center top;*/
  background-size: 100% 100%;
  color: #000;
  margin-top: 89px;

}
.mana-page .mana-2 .bottom .title {
  color: #000;
}
.mana-page .mana-2 .bottom .title::before {
  display: none;
}
.mana-page .mana-2 .bottom .ig {
  background: rgba(255, 255, 255, 0.04);
  /*max-width: 1230px;*/
  /*margin: 24px 0 0 8.593%;*/
  /*padding: 40px  6.50vw ;*/
}
.mana-page .mana-2 .bottom .ig ul li {
  position: relative;
   padding: 10px;
   margin-bottom: 10px;
}
.mana-page .mana-2 .bottom .ig ul li i {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  /*height: 160px;*/
  /*border-radius: 50%;*/
  text-align: center;
  line-height: 80px;
  /*background: var(--color);*/
 
}
.mana-page .mana-2 .bottom .ig ul li i img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  object-fit: cover;
}
.mana-page .mana-2 .bottom .ig ul li .text {
  display: inline-block;
  width: 82%;
  padding-left: 38px;
}
.mana-page .mana-2 .bottom .ig ul li .text span {
  font-size: calc(0.315vw + 14px) !important;
  line-height: 1.3; 
  font-weight: bold;
}
.mana-page .mana-2 .bottom .ig ul li .text p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 27px;
}
.mana-page .mana-2 .bottom .ig ul li::after {
  content: '';
  position: absolute;
  top: 0;
  display: none;
  right: 0;
  width: 38px;
  height: 31px;
  background: url(../images/mana-icon.png) no-repeat;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots {
  position: absolute;
  z-index: 2;
  right: -20%;
  top: 45%;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li {
  width: 18px;
  height: 18px;
  background: transparent;
  padding: 0;
  margin-bottom: 4px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--color);
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li button {
  display: none;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li:last-child {
  margin-bottom: 0;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li.slick-active {
  background: rgba(255, 255, 255, 0.77);
}
.mana-page .mana-3 {
  padding-top: var(-px70);
}
.mana-page .mana-3 ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 100px;
}
.mana-page .mana-3 ul li .img {
  /*background: url(../images/about-dots.png) no-repeat -20px top;*/
  width: 51.448%;
  padding-top: 146px;
}
.mana-page .mana-3 ul li .text {
  width: 48.552%;
  padding-left: 41px;
}
.mana-page .mana-3 ul li .text .title::before {
  display: none;
}
.mana-page .mana-3 ul li .text .title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #c2c0c3;
  margin-top: 9px;
}
.mana-page .mana-3 ul li .text .con {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(40, 39, 39, 0.87);
  margin-top: 40px;
}
.mana-page .mana-3 ul li .text dl {
  margin-top: 47px;
}
.mana-page .mana-3 ul li .text dl dd {
     font-size: 17px; 
    /* font-weight: 500; */
    line-height: 1.6;
    padding-left: 65px;
    position: relative;
    margin-bottom: 11px;
}
.mana-page .mana-3 ul li .text dl dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 32px;
  height: 26px;
  background: url(../images/mana-check.png) no-repeat;
}
.mana-page .mana-3 ul li .text dl dd:last-child {
  margin-bottom: 0;
}
.mana-page .mana-3 ul li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.mana-page .mana-3 ul li:nth-child(even) .text {
  padding: 0 100px 0 0;
}
.mana-page .mana-3 ul li:nth-child(even) .img {
  padding: 0 0 79px 22px;
  /*background: url(../images/about-dots1.png) no-repeat 20px 2px;*/
}
.mana-page .mana-3 ul li:last-child {
  margin-bottom: 0;
}
.mana-page .mana-4 {
  padding: 0 0 5.886%;
}
.mana-page .mana-4 .header {
  background: var(--color);
  padding: 30px 0 28px;
}
.mana-page .mana-4 .header .title {
  color: #ffffff;
}
.mana-page .mana-4 .header .title::before {
  background: #ffffff;
  top: 38px;
}
.mana-page .mana-4 .content {
  margin-top: 80px;
}
.mana-page .mana-4 .content ul {
  margin: 0 -36px -60px 0;
}
.mana-page .mana-4 .content ul li {
  padding: 0 36px 60px 0;
}
.mana-page .mana-4 .content ul li .img-box img {
  width: 100%;
}
.mana-page .no_bg_src .cont{
  font-size: 18px;
    line-height: 1.7;
    color: rgba(40, 39, 39, 0.87);
    margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .mana-page .mana-2 .top .left {
    padding-right: 2%;
  }
  .mana-page .mana-2 .bottom .ig {
    margin: 26px auto 0;
  }
  .mana-page .mana-2 .bottom .ig ul.slick-dots {
    right: -11%;
  }
  .mana-page .mana-3 ul li:nth-child(even) .text {
    padding: 0 50px 0 0;
  }
  .mana-page .mana-3 ul li .text dl dd {
    font-size: 17px;
  }
}
@media screen and (max-width: 1280px) {
  .mana-page .mana-1 .left {
    padding-right: 4%;
  }

  .mana-page .mana-3 ul li .text .title {
  
    line-height: 1.4;
  }
  .mana-page .mana-3 ul li:nth-child(even) .text {
    padding: 0 30px 0 0;
  }
  .mana-page .mana-3 ul li .text dl dd {
    font-size: 20px;
    padding-left: 45px;
  }
  .mana-page .mana-3 ul li .text dl dd::before {
    top: 0;
  }
}

  .mana-page .slice-picture{
  position: relative;
  user-select: none;
  padding-bottom: 80px;

}
  .mana-page .slice-picture__box1{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0% 100% 0% 0%);
  
}
  .mana-page .slice-picture__dragger{
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  cursor: col-resize;
  top: 0;
  left: 0;
}
  .mana-page .slice-picture__handle{
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.2) ;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: col-resize;
}
@media screen and (max-width: 1100px) {
  .mana-page .mana-1 .left {
    padding-right: 2%;
  }
  .mana-page .mana-1 .left .con {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .mana-page .mana-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .mana-page .mana-1 .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .mana-page .mana-2 .top .left {
    width: 100%;
    padding-right: 0;
  }
  .mana-page .mana-2 .top .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .mana-page .mana-2 .bottom {
    margin-top: 40px;
  }
  .mana-page .mana-2 .bottom .ig {
    padding: 20px 40px 40px 30px;
  }
  .mana-page .mana-2 .bottom .ig ul li .text {
    padding-left: 20px;
  }
  .mana-page .mana-2 .bottom .ig ul.slick-dots {
    right: -5%;
  }
  .mana-page .mana-3 ul li {
    margin-bottom: 30px;
  }
  .mana-page .mana-3 ul li .img {
    width: 100%;
  }
  .mana-page .mana-3 ul li .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .mana-page .mana-3 ul li .text .con,
  .mana-page .mana-3 ul li .text dl {
    margin-top: 20px;
  }
  .mana-page .mana-3 ul li:nth-child(even) .text {
    padding: 20px 0 0 0;
  }
  .mana-page .mana-3 ul li:nth-child(even) .img {
    padding: 0 0 79px 0;
  }
  .mana-page .mana-4 .content {
    margin-top: 40px;
  }
  .mana-page .mana-4 .content ul {
    margin: 0 -15px -25px 0;
  }
  .mana-page .mana-4 .content ul li {
    padding: 0 15px 25px 0;
  }
}
@media screen and (max-width: 700px) {

  .mana-page .mana-2 .top .right {
    padding: 10px 0 0 0;
    margin-top: 0;
  }
  .mana-page .mana-2 .bottom {
    margin-top: 20px;
  }
  .mana-page .mana-2 .bottom .ig ul li .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .mana-page .mana-2 .bottom .ig ul li .text p {
    margin-top: 10px;
  }
  .mana-page .title {
    font-size: 24px;
  }
  .mana-page .mana-3 ul li:nth-child(even) .img {
    padding: 0;
  }
  .font-48{
    font-size: 22px;
  }
}
@media screen and (max-width: 500px) {

  .mana-page .mana-1 .left .con {
    font-size: 14px;
    line-height: 2;
  }
  .mana-page .mana-2 .top .right {
    font-size: 14px;
    line-height: 2;
  }
  .mana-page .mana-2 .bottom .ig {
    padding: 0;
  }
  .mana-page .mana-2 .bottom .ig ul li .text p {
    font-size: 14px;
    line-height: 2;
  }
  .mana-page .mana-3 ul li .text .con {
    font-size: 14px;
    line-height: 2;
  }
}




.about-page2 .about-1 {
    padding-top: 4.688%;
}
.about-page2 .about-1 .top .title em{
  color: var(--color);
}
.about-page2 .about-1 .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px;
}
.about-page2 .about-1 .content .con {
    width: 100%;
    font-size: 18px; 
    font-weight: 400;
    color: #282727;
    line-height: 1.8;
    /*max-height: 388px;
    overflow-y: scroll;*/
}
.about-page2 .about-1 .content .right {
    width: 38%;
}
.about-page2 .about-1 .content .right .ig {
    max-width: 480px;
    margin: 0 0 0 auto;
    text-align: center;
    font-weight: 700;
    font-weight: bold;
}
.about-page2 .about-1 .content .right span {
    font-size: 200px;
    line-height: 1;
    color: var(--color);
}
.about-page2 .about-1 .content .right p {
    font-size: 30px;
    color: #0d0d0d;
    line-height: 1.3;
    margin-top: 24px;
}
.about-page2 .about-1 #index-body {
    margin-top: 67px;
    background: transparent;
}
.about-page2 .about-2 {
    padding-top: 5.99%;
    margin-bottom: 80px;
}
.about-page2 .about-2 .img {
    background: url(../images/about-dots.png) no-repeat -20px top;
    width: 51.448%;
    padding-top: 65px;
}
.about-page2 .about-2 .img img{
  height: 100%;
  object-fit: cover;
}
.about-page2 .about-2 .text {
    width: 48.552%;
    padding: 65px 0 0 66px;
}
.about-page2 .about-2 .text .title::before {
    display: none;
}
.about-page2 .about-2 .text .title::after {
    content: '';
    width: 40px;
    height: 3px;
    background-color: #c2c0c3;
    display: block;
    margin-top: 17px;
}
.about-page2 .about-2 .text .con {
    font-size: 18px; 
    color: #282727;
    line-height: 2;
    margin-top: 20px;
}
.about-page2 .about-3 {
    padding-top: 5.782%;
}
.about-page2 .about-3 .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about-page2 .about-3 .content {
    margin-top: 70px;
}
.about-page2 .about-3 .content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    height: 1130px;
}
.about-page2 .about-3 .content ul li {
    width: 33.333%;
    height: 380px;
}
.about-page2 .about-3 .content ul li img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.about-page2 .about-3 .content ul li .box {
    background: white;
    padding: 90px 75px 92px 59px;
    height: 380px;
}
.about-page2 .about-3 .content ul li .box .tit {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    font-weight: bold;
    color: var(--color);
}
.about-page2 .about-3 .content ul li .box .con {
    font-size: 18px;
    line-height: 1.8;
    color: #282727;
    margin-top: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.about-page2 .about-3 .content ul li:nth-child(3) {
    height: 750px;
}
.about-page2 .about-3 .content ul li:nth-child(4) {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 750px;
}
.about-page2 .about-3 .content ul li:nth-child(5) {
    position: absolute;
    bottom: 380px;
    left: 33.334%;
}
.about-page2 .about-3 .content ul li:nth-child(6) {
    position: absolute;
    bottom: 0;
    left: 33.334%;
}
.about-page2 .about-3 .content ul li:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
}
.about-page2 .about-4 {
    padding: 3.25% 0 0;
}
.about-page2 .about-4 .box {
    background: var(--color);
}
.about-page2 .about-4 .box .left {
    vertical-align: middle;
    color: white;
    padding-left: 80px;
}
.about-page2 .about-4 .box .left .tit {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    font-weight: bold;
}
.about-page2 .about-4 .box .left .con {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 26px;
    width: 76%;
}
.about-page2 .about-4 .box .left .more {
    background: white;
    color: var(--color);
    margin-top: 72px;
}
.about-page2 .about-4 .box .left .more::after {
    background: black;
}
.about-page2 .about-4 .box .left .more:hover {
    color: black;
}
.about-page2 .about-4 .box .right {
    vertical-align: middle;
}
.about-page2 .about-4 .box .right ul {
    max-width: 602px;
    margin: 0 0 0 auto;
}
.about-page2 .about-4 .box .right ul li {
    line-height: 234px;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-page2 .about-4 .box .right ul li img {
    display: inline-block;
    vertical-align: middle;
}
.about-page2 .about-4 .box .right ul li:first-child,
.about-page2 .about-4 .box .right ul li:last-child {
    background-color: #b50e10;
}
.about-page2 .about-4 .box .right ul li:hover {
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.23);
}
.about-page2 .init-40 {
  -o-background-size: cover;
  background-size: cover;
}
.about-page2 .init-40 .container .tipsTitle {
  text-align: center;
  color: #000;
  font-weight:bold;
}
.about-page2 .init-40 .container .content {
  position: relative;
  width: -webkit-calc(-80%);
  width: -moz-calc(-80%);
  width: calc(100% - 180px);
  margin: 10px auto 0;
}
.about-page2 .init-40 .container .content .btn {
  cursor: pointer;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  right: 0;
  -webkit-box-shadow: 0 0 20px rgba(56, 84, 184, 0.5);
  box-shadow: 0 0 20px rgba(56, 84, 184, 0.5);
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  font-size: 30px;
}
.about-page2 .init-40 .container .content .btn.slick-disabled{
  opacity: 0;
  pointer-events: none;
}
/*.about-page2 .init-40 .container .content .btn i {
  width: 20px;
  height: 20px;
}*/
.about-page2 .init-40 .container .content .btn:hover {
  background-color: var(--color);
  color: white;
}
.about-page2 .init-40 .container .content .btn:hover i {
  -webkit-filter: grayscale(1) brightness(5);
  filter: grayscale(1) brightness(5);
}
.about-page2 .init-40 .container .content .prev {
  left: 0;
}
.about-page2 .init-40 .container .content ul li {
  padding: 0 20px;
}
.about-page2 .init-40 .container .content ul li .box {
  padding: 0 100px;
  text-align: center;
  position: relative;
}
.about-page2 .init-40 .container .content ul li .box .num {
  font-size: 180px;
  font-weight: bold;
  text-align: center;
  color: rgba(229, 73, 73, 0.10);
  line-height: 1;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-page2 .init-40 .container .content ul li .box .desC {
  height: 500px;
  padding-right: 10px;
  overflow-y: hidden;
}
.about-page2 .init-40 .container .content ul li .box .desC .des {
  position: relative;
  z-index: 2;
  font-size: 18px;
  top: 20%;
}
.about-page2 .init-40 .container .content2 {
  width: -webkit-calc(-80%);
  width: -moz-calc(-80%);
  width: calc(100% - 180px);
  margin: 20px auto 0;
  position: relative;
}
.about-page2 .init-40 .container .content2 .line {
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 5px;
  left: 0;
  background-color: #a6a6a6;
}
.about-page2 .init-40 .container .content2 ul .slick-track {
  margin-left: 0;
}
.about-page2 .init-40 .container .content2 ul .slick-current li .box .num {
  color: #ff0000;
}
.about-page2 .init-40 .container .content2 ul .slick-current li .box .cir {
  background-color: #ff0000;
}
.about-page2 .init-40 .container .content2 ul li .box {
  cursor: pointer;
  text-align: center;
}
.about-page2 .init-40 .container .content2 ul li .box .num {
  font-size: 24px;
  line-height: 1;
}
.about-page2 .init-40 .container .content2 ul li .box .cir {
  border-radius: 50%;
  background-color: #888888;
  width: 10px;
  height: 10px;
  margin: 16px auto 0;
}
.about-page2 .init-50 .container .tipsTitleC {
    color: var(--color)
}

.about-page2 .init-50 .container .content {
    margin-top: 80px
}

.about-page2 .init-50 .container .content .left {
    width: 40%;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,.1);
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    padding: 50px 40px;
    text-align: center
}

.about-page2 .init-50 .container .content .left .title {
    max-width: 350px;
    font-weight: 600;
    margin: auto
}

.about-page2 .init-50 .container .content .left .des {
    color: #666;
    margin-top: 20px
}

.about-page2 .init-50 .container .content .left .more {
    margin: 30px auto 0;
}

.about-page2 .init-50 .container .content .right {
    width: 60%;
    padding-left: 30px
}

.about-page2 .init-50 .container .content .right img {
    width: 100%
}

.about-page2 .init-50 .container .content2 {
    position: relative;
    margin-top: 10px
}

.about-page2 .init-50 .container .content2 .btn {
    position: absolute;
    width: 60px;
    height: -webkit-calc(60%);
    height: -moz-calc(60%);
    height: calc(100% - 40px);
    top: 20px;
    right: -80px;
    background-color: #cbcbcb;
    cursor: pointer;
    z-index: 2;
    font-size: 50px;
    font-weight: 700;
    color: #fff
}

.about-page2 .init-50 .container .content2 .btn:hover {
    background-color: var(--color)
}

.about-page2 .init-50 .container .content2 .prev {
    right: unset;
    left: -80px
}

.about-page2 .init-50 .container .content2 .swiper {
    margin: 0 -20px
}

.about-page2 .init-50 .container .content2 ul li {
    height: auto;
    padding: 20px
}

.about-page2 .init-50 .container .content2 ul li .box {
    height: 100%;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,.1);
    box-shadow: 0 0 20px rgba(0,0,0,.1)
}

.about-page2 .init-50 .container .content2 ul li .box .img {
    display: block
}

.about-page2 .init-50 .container .content2 ul li .box .img img {
    width: 100%
}

.about-page2 .init-50 .container .content2 ul li .box .text {
    text-align: center;
    font-weight: 600;
    padding: 16px
}
@media screen and (max-width:1700px){
   .about-page2 .init-40 .container .content ul li .box .num {
    font-size: 400px;
  }
}
@media (max-width: 1500px) {
  .about-page2 .init-40 .container .content ul li .box .num {
    font-size: 300px;
  }
}
@media screen and (max-width: 1250px) {
    .about-page2 .about-3 .content ul {
        height: 1000px;
    }
    .about-page2 .about-3 .content ul li {
        height: 350px;
    }
    .about-page2 .about-3 .content ul li .box {
        height: 350px;
        padding: 60px 50px 30px 40px;
    }
    .about-page2 .about-3 .content ul li .box .tit {
        font-size: 34px;
    }
    .about-page2 .about-3 .content ul li:nth-child(3),
    .about-page2 .about-3 .content ul li:nth-child(4) {
        height: 700px;
    }
    .about-page2 .about-3 .content ul li:nth-child(5) {
        bottom: 350px;
    }
    .about-page2 .about-4 .box .left {
        padding-left: 50px;
    }
    .about-page2 .about-4 .box .left .con {
        width: 92%;
    }
    .about-page2 .about-4 .box .left .more {
        margin-top: 50px;
    }
      .about-page2 .init-40 .container .content ul li .box .num {
    font-size: 200px;
  }
   .about-page2 .init-50 .container .content .left {
        width: 100%
    }
    .about-page2 .init-50 .container .content .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px
    }
    .about-page2 .init-50 .container .content2 .btn {
        display: none !important;
    }
}
@media screen and (max-width: 1100px) {
    .about-page2 .about-2 .text {
        padding: 65px 0 0 40px;
    }
    .about-page2 .about-3 .content ul {
        height: 900px;
    }
    .about-page2 .about-3 .content ul li {
        height: 300px;
    }
    .about-page2 .about-3 .content ul li .box {
        height: 300px;
        padding: 40px 30px 30px 20px;
    }
    .about-page2 .about-3 .content ul li:nth-child(3),
    .about-page2 .about-3 .content ul li:nth-child(4) {
        height: 600px;
    }
    .about-page2 .about-3 .content ul li:nth-child(5) {
        bottom: 300px;
    }
}
@media screen and (max-width: 1000px) {
 
    .about-page2 .about-1 .content {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .about-page2 .about-1 .content .con {
        width: 100%;
    }
    .about-page2 .about-1 .content .right {
        display: none;
    }
    .about-page2 .about-2 .img {
        width: 100%;
    }
    .about-page2 .about-2 .text {
        width: 100%;
        padding: 20px 0 0 0;
    }
    .about-page2 .about-3 .content {
        margin-top: 30px;
    }
    .about-page2 .about-3 .content ul {
        height: 800px;
    }
    .about-page2 .about-3 .content ul li {
        height: 260px;
    }
    .about-page2 .about-3 .content ul li .box {
        height: 260px;
        padding: 20px 15px 0 15px;
    }
    .about-page2 .about-3 .content ul li .box .tit {
        font-size: 25px;
    }
    .about-page2 .about-3 .content ul li:nth-child(3),
    .about-page2 .about-3 .content ul li:nth-child(4) {
        height: 540px;
    }
    .about-page2 .about-3 .content ul li:nth-child(5) {
        bottom: 260px;
    }
    .about-page2 .about-4 .box .left {
        padding-left: 20px;
    }
     .about-page2 .init-40 .container .content ul li .box .num {
    font-size: 160px;
  }
  .about-page2 .init-40 .container .content {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
    
    .about-page2 .about-3 .content ul {
        height: auto;
    }
    .about-page2 .about-3 .content ul li {
        height: auto;
        width: 50%;
    }
    .about-page2 .about-3 .content ul li .box {
        height: auto;
        padding: 20px 15px;
    }
    .about-page2 .about-3 .content ul li:nth-child(3),
    .about-page2 .about-3 .content ul li:nth-child(4) {
        height: auto;
    }
    .about-page2 .about-3 .content ul li:nth-child(4),
    .about-page2 .about-3 .content ul li:nth-child(5),
    .about-page2 .about-3 .content ul li:nth-child(6),
    .about-page2 .about-3 .content ul li:last-child {
        position: initial;
    }
    .about-page2 .about-4 .box .left {
        width: 100%;
        padding: 20px 15px;
    }
    .about-page2 .about-4 .box .right {
        width: 100%;
    }
    .about-page2 .about-4 .box .right ul li {
        line-height: 200px;
    }
     .about-page2 .init-40 .container .content ul li .box .num {
    font-size: 130px;
  }
}
@media screen and (max-width: 500px) {
    .about-page2 .about-1 #index-body {
        margin-top: 20px;
    }
    
    .about-page2 .about-2 .text .con {
        margin-top: 20px;
    }
    .about-page2 .about-3 .header {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .about-page2 .about-3 .header .more {
        margin-top: 15px;
    }
    .about-page2 .about-3 .content ul li {
        width: 100%;
    }
    .about-page2 .about-4 .box .left .tit {
        font-size: 32px;
    }
    .about-page2 .about-4 .box .left .con {
        width: 100%;
        font-size: 14px;
        line-height: 2;
        margin-top: 10px;
    }
    .about-page2 .about-4 .box .left .more {
        margin-top: 20px;
    }
    .about-page2 .about-4 .box .right ul li {
        line-height: 150px;
    }
     .about-page2 .init-40 .container .content {
    padding-top: 80px;
  }
  .about-page2 .init-40 .container .content .btn {
    width: 40px;
    height: 40px;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    left: 50%;
  }
  .about-page2 .init-40 .container .content .prev {
    left: -webkit-calc(0%);
    left: -moz-calc(0%);
    left: calc(50% - 50px);
  }
  .about-page2 .init-40 .container .content .next {
    left: -webkit-calc(60%);
    left: -moz-calc(60%);
    left: calc(50% + 10px);
  }
  .about-page2 .init-40 .container .content ul li {
    padding: 0 10px;
  }
  .about-page2 .init-40 .container .content ul li .box {
    padding: 0;
  }
  .about-page2 .init-40 .container .content ul li .box .num {
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .about-page2 .init-40 .container .content ul li .box .desC {
    height: auto;
  }
  .about-page2 .init-40 .container .content ul li .box .num {
    font-size: 60px;
  }
  .about-page2 .init-40 .container .content ul li .box .desC {
    text-align: left;
    margin-top: 20px;
  }
  .about-page2 .init-40 .container .content ul li .box .desC .des {
    font-size: 16px;
    line-height: 2;
    width: 100%;
  }
  .about-page2 .init-40 .container .content2 {
    width: 100%;
  }
   .about-page2 .init-50 .container .content {
        margin-top: 20px
    }
    .about-page2 .init-50 .container .content .left {
        padding: 20px 10px
    }
    .about-page2 .init-50 .container .content .left .des {
        margin-top: 10px
    }
    .about-page2 .init-50 .container .content .left .more {
        margin-top: 10px
    }
}


.i-global {
  background: url(../images/map-bg.jpg) no-repeat top 75% right 125%;
  padding: 110px 0 130px;
}
.i-global .baseTit {
  max-width: 700px;
}
.i-global .desc {
  width: 45%;
  opacity: .75;
}
.i-global .left {
  width: 70%;
}
.i-global .left > img {
  width: 100%;
}
.i-global .left li {
  z-index: 1;
}
.i-global .left li:nth-of-type(1) {
  left: 79%;
  top: 45%;
}
.i-global .left li:nth-of-type(2) {
  left: 16%;
  top: 41%;
}
.i-global .left li:nth-of-type(3) {
  left: 47%;
  top: 33%;
}
.i-global .left li:nth-of-type(4) {
  left: 52%;
  top: 56%;
}
.i-global .left li:nth-of-type(5) {
  left: 80%;
  top: 22%;
}
.i-global .left li:nth-of-type(6) {
  left: 61%;
  top: 50%;
}
.i-global .left li:nth-of-type(7) {
  left: 52%;
  top: 31%;
}
.i-global .left li:nth-of-type(8) {
  left: 65%;
  top: 32%;
}
.i-global .left li:nth-of-type(9) {
  left: 16%;
  top: 24%;
}
.i-global .left li:nth-of-type(10) {
  left: 46%;
  top: 52%;
}
.i-global .left li:nth-of-type(11) {
  left: 27%;
  top: 65%;
}
.i-global .left li:nth-of-type(12) {
  left: 52%;
  top: 69%;
}
.i-global .left li:nth-of-type(13) {
  left: 85%;
  top: 78%;
}
.i-global .left li:nth-of-type(14) {
  left: 35%;
  top: 6%;
}
.i-global .left li:nth-of-type(15) {
  left: 17%;
  top: 8%;
}
.i-global .left li:nth-of-type(16) {
  left: 20%;
  top: 34%;
}
.i-global .left li:nth-of-type(17) {
  left: 71%;
  top: 38%;
}
.i-global .left li:nth-of-type(18) {
  left: 74%;
  top: 20%;
}
.i-global .left li:nth-of-type(19) {
  left: 58%;
  top: 22%;
}
.i-global .left li:nth-of-type(20) {
  left: 29%;
  top: 78%;
}
.i-global .left li:nth-of-type(21) {
  left: 7%;
  top: 21%;
}
.i-global .left li:nth-of-type(22) {
  left: 59%;
  top: 39%;
}
.i-global .left li:nth-of-type(23) {
  left: 78%;
  top: 32%;
}
.i-global .left li:nth-of-type(24) {
  left: 34%;
  top: 15%;
}

.i-global .left li i {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color);
}
.i-global .left li i::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(153, 1, 1, 0.35);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.i-global .left li .text {
  font-size: 17.16px;
  width: 120px;
}
.i-global .left li .text.tc {
  bottom: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.i-global .left li .text.rb {
  top: 110%;
  left: 200%;
}
.i-global .right {
  width: 25%;
  margin-top: 40px;
}
.i-global .right li + li {
  margin-top: 25px;
}
.i-global .right li a {
  font-size: 30px;
  display: block;
  position: relative;
  padding-left: 50px;
  color: #6e6e6e;
}
.i-global .right li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  border-bottom: 2px solid var(--color);
  width: 40px;
  opacity: 0;
}
.i-global .right li.active a {
  font-weight: bold;
  color: var(--color);
}
.i-global .right li.active a::before {
  opacity: 1;
}
@media (max-width: 1480px) {
    .i-global .right li a {
        font-size: 24px;
    }
}
@media (max-width: 1230px) {
    .i-global .right li a {
        font-size: 18px;
    }
}
@media (max-width: 1000px) {
    .i-global {
        padding: 60px 0;
    }
    .i-global .baseTit {
        max-width: 100%;
        float: none;
    }
    .i-global .desc {
        width: 100%;
        text-align: left;
        float: none;
    }
    .i-global .left {
        width: 100%;
        float: none;
    }
    .i-global .right {
        width: 100%;
        float: none;
    }
    .i-global .right ul {
        font-size: 0;
    }
    .i-global .right li {
        display: inline-block;
        vertical-align: top;
        width: auto;
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .i-global .right li + li {
        margin-top: 0;
    }
    .i-global .right li a {
        padding-left: 0;
    }
    .i-global .right li a::before {
        display: none;
    }
}
@media (max-width: 700px) {
    .i-global .left li .text {
        font-size: 14px;
        width: 100px;
    }
    .i-global .left li .text.rb {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
.pr {
    position: relative;
}
.pa {
    position: absolute;
}

.prodet-page .prodet-3 ul li .img{
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.seoPublic .Auxil-news .list ul li .content div.h6{
  min-height: 92px;
  font-size: 20px;
  font-weight: bold;
}
.about-page .a-1 .text .con{
  line-height: 1.8;
}
.seoPublic .Auxil-news .list ul li .content{
  background: white;
  padding: 20px;
  border: 1px solid #eee;
}
.seoPublic .title{
  margin-bottom: 1em;
}
.pro_public ul{
  margin: 0 -15px;
}
.pro_public ul li{
  padding: 0 15px;
}
.pro_public ul li .img-box{
  display: block;
  background: white;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.08);
  margin-bottom: 12px;
}
.prodet_faq ul li{
  cursor: pointer;
}
.prodet_faq ul li .box{
  background: #f1f0f0;
  padding: 20px;
}
.prodet_faq ul li .h4 {
  padding-right: 30px; 
}
.prodet_faq ul li .h4 i{
  position: absolute;
  right: 0;
  top: 4px;
  width: 15px;
  height: 15px;
}
.prodet_faq ul li .h4 i::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: black;
}
.prodet_faq ul li .h4 i::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: black;
}
.prodet_faq ul li .des{
  margin-top: 20px;
  line-height: 1.7;
}
.prodet_faq ul li.active .h4 i::after{
  opacity: 0;
}


.oem-page .topp .left {
  width: 51.5%;
}
.oem-page .topp .left .tit {
  font-size: 36px;
  font-family: Mulish;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
}
.oem-page .topp .right {
  width: 48.5%;
  vertical-align: bottom;
}
.oem-page .acc1 {
  padding-bottom: 130px;
}
.oem-page .img {
  overflow: hidden;
}
.oem-page .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.oem-page .img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.oem-page .oem-1 {
  padding: 88px 0 72px;
  text-align: center;
}
.oem-page .oem-1 .mbx {
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  color: #000000;
  line-height: 1;
}
.oem-page .oem-1 .tit {
  font-size: 60px;
  font-family: Barlow;
  font-weight: 400;
  color: #1D1D1D;
  line-height: 1.2;
  margin: 35px 0 25px;
}
.oem-page .oem-1 p {
  font-size: 18px;
  font-family: Barlow;
  font-weight: 400;
  color: #1D1D1D;
  line-height: 2;
  max-width: 1130px;
  margin: 0 auto;
}
.oem-page .oem-1 .btn {
  margin-top: 35px;
}
.oem-page .oem-1 .btn a {
  display: inline-block;
  font-size: 18px;
  font-family: Barlow;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 15px 30px;
  background: var(--color);
  border-radius: 5px;
  text-transform: uppercase;
}
.oem-page .oem-1 .btn a:hover {
  background: #e37600;
}
.oem-page .oem-2 .container {
  width: 100% !important;
  padding: 0;
}
.oem-page .oem-2 ul li img{
  width: 100%;
}
.oem-page .oem-3 {
  padding: 115px 0 120px;
}
.oem-page .oem-3 .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.oem-page .oem-3 .title::before{
    display: none;
}
.oem-page .oem-3 .title .acc span {
  display: inline-block;
  font-size: 48px;
  font-family: Barlow;
  font-weight: 500;
  color: var(--color);
  /*line-height: 1.8;*/
  /*letter-spacing: 3.5px;*/
  text-transform: capitalize;
}
.oem-page .oem-3 .title .acc p {
  font-size: 20px;
  font-family: Barlow;
  font-weight: 400;
  color: #1D1D1D;
  line-height: 1.75;
  /*max-width: 738px;*/
  margin-top: 10px;
}
.oem-page .oem-3 .title .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}
.oem-page .oem-3 .title .btn a p {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  text-transform: uppercase;
}
.oem-page .oem-3 .title .btn a i {
  display: inline-block;
  width: 39px;
  height: 6px;
  background: url(../images/bann3.png) no-repeat center;
  margin-left: 40px;
}
.oem-page .oem-3 .options {
  margin-top: 55px;
}
.oem-page .oem-3 .options ul {
  margin: 0 -5px;
}
.oem-page .oem-3 .options ul li {
  padding: 0 5px;
  
}
.oem-page .oem-3 .options ul li .box{
    background: #F0F0F0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 40px 15px;transition: 0.3s;
}
.oem-page .oem-3 .options ul li .box .desc{
    height: 140px;
    overflow-y: auto;
}
.oem-page .oem-3 .options ul li h4 {
    /*height: 44px;*/
  text-align: center;
  font-size: 22px;
  font-family: Barlow;
  font-weight: bold;
  color: #000000;
  line-height: 1.2;

  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.oem-page .oem-3 .options ul li .box:hover{
    background-color: var(--color);color: #fff;
}
.oem-page .oem-3 .options ul li .box:hover h4{
  color: #fff;
}
.oem-page .oem-3 .options ul li .box:hover i img{
    filter: brightness(0) invert(1);
}

.oem-page .oem-4 .topp .left {
  padding-right: 50px;
}
.oem-page .oem-4 .topp .left .acc {
  margin-top: 38px;
}
.oem-page .oem-4 .topp .left .acc ul {
  margin: -10px -15px;
}
.oem-page .oem-4 .topp .left .acc ul li {
  text-align: center;
  padding: 10px 15px;
}
.oem-page .oem-4 .topp .left .acc ul li .tit4 {
  font-size: 14px;

  font-weight: 400;
  color: #000000;
  line-height: 2;
  opacity: 0.8;
  margin-top: 5px;
}
.oem-page .oem-5 .topp .left {
  padding-left: 60px;
  vertical-align: middle;
}
.oem-page .oem-5 .topp .left .acc {
  margin-top: 40px;
}
.oem-page .oem-5 .topp .left .acc ul {
  margin: -20px -14px;
}
.oem-page .oem-5 .topp .left .acc ul li {
  padding: 20px 14px;
  text-align: center;
}
.oem-page .oem-5 .topp .left .acc ul li .tit4 {
  font-size: 14px;
  line-height: 2;
  font-family: Mulish;
  font-weight: 400;
  color: #000000;
  opacity: 0.8;
  margin-top: 15px;
}
.oem-page .oem-5 .topp .right {
  vertical-align: middle;
}
.oem-page .oem-6 .topp .left {
  padding-right: 60px;
  margin-top: 13px;
}
.oem-page .oem-6 .topp .left .acc {
  margin-top: 60px;
}
.oem-page .oem-6 .topp .left .acc ul {
  margin: -20px -27px;
}
.oem-page .oem-6 .topp .left .acc ul li {
  padding: 20px 27px;
  text-align: center;
}
.oem-page .oem-6 .topp .left .acc ul li .tit4 {
  font-size: 14px;
  line-height: 2;
  font-family: Mulish;
  font-weight: 400;
  color: #000000;
  opacity: 0.8;
  margin-top: 15px;
}
.oem-page .oem-6 .topp .left .acc ul li .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: url(../images/oem-61.png) no-repeat center;
}
.oem-page .oem-7 .topp .left {
  vertical-align: middle;
  padding-left: 56px;
}
.oem-page .oem-7 .topp .left p {
  font-size: 16px;
  font-family: Mulish;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  opacity: 0.8;
  margin-top: 18px;
}
.oem-page .oem-7 .topp .left .acc {
  margin-top: 90px;
}
.oem-page .oem-7 .topp .left .acc ul {
  margin: 0 -28px;
}
.oem-page .oem-7 .topp .left .acc ul li {
  padding: 0 28px;
}
.oem-page .oem-7 .topp .right {
  vertical-align: middle;
}
.oem-page .oem-8 .topp .left {
  padding-right: 60px;
}
.oem-page .oem-8 .topp .left p {
  font-size: 16px;
  font-family: Mulish;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  opacity: 0.8;
  margin-top: 20px;
}
.oem-page .oem-8 .topp .left .acc {
  margin-top: 50px;
}
.oem-page .oem-8 .topp .left .acc ul {
  margin: -17.5px -28px;
}
.oem-page .oem-8 .topp .left .acc ul li {
  padding: 17.5px 28px;
}
.oem-page .oem-9{
  background: url(../images/map-img.jpg) no-repeat center;
  background-color: #efefef;

}
.oem-page .oem-9 ul{
  position: relative;
}
.oem-page .oem-9 ul li {
  padding: 30px 15px;
  text-transform: capitalize;
}
.oem-page .oem-9 ul li .num{
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background: #666666;
  color: white;
  margin: auto;
}
.oem-page .oem-9 ul li .item{
  /*box-shadow: 0 0 5px 0 #eee;*/
  border-radius: 10px;
  padding: 11px;
  text-align: center;
}
.oem-page .oem-9 ul li .item img{
  width: 100px;
}
.oem-page .oem-9 ul li .text{
  z-index: 3;
  position: relative;
}
.oem-page .oem-9 ul::after{
  content: "";
  position: absolute;
  left: 0;
  top: 174px;
  width: 100%;
  height: 156px;
  border-radius: 200px;
  border: 10px solid #cfcfcf;
}
.oem-page .oem-9 ul li:nth-child(5){
  order: 8;
}
.oem-page .oem-9 ul li:nth-child(6){
  order: 7;
}
.oem-page .oem-9 ul li:nth-child(7){
  order: 6;
}
.oem-page .oem-9 ul li:nth-child(8){
  order: 5;
}
.oem-page .title::before{
    display: none;
}
.oem-page .oem-10 .form{
    margin-top: 30px;
}
.oem-page .oem-10 .form ul {
    margin: -10px
}

.oem-page .oem-10 .form ul li {
    padding: 10px
}

.oem-page .oem-10 .form ul li.wid-100 {
    width: 100%
}

.oem-page .oem-10 .form ul li input,.oem-page .oem-10 .form ul li textarea {
    width: 100%;
    line-height: 24px;
    padding: 10px;
    border: 1px solid #eee;
    font-size: 14px;
    color: #000;
    background: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.oem-page .oem-10 .form ul li input:focus,.oem-page .oem-10 .form ul li textarea:focus {
    border-color: #000
}

.oem-page .oem-10 .form ul li textarea {
    height: 120px
}

.oem-page .oem-10 .form ul li input[type=submit] {
    width: auto;
    display: inline-block;
    padding: 10px 30px;
    background: #222;
    color: #fff
}

.oem-page .oem-10 .form ul li input[type=submit]:hover {
    opacity: .7
}
.oem-page .oem-case ul li .content{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 20px;
  transition: 0.5s;
  opacity: 0;
}
.oem-page .oem-case ul li:hover .content{
  opacity: 1;
}
@media screen and (max-width: 1320px) {
  .oem-page .oem-3{
    padding: 80px 0;
  }
  .oem-page .oem-1 .tit,
  .oem-page .topp .left .tit{
font-size: 36px;
  }
  .oem-page .oem-1 .tit {
    margin: 15px 0;
  }

  .oem-page .oem-3 .options ul li {
    width: 25%;
    margin: 10px 0;
  }

  .oem-page .oem-4 .topp .left .acc ul li {
    width: 25%;
  }

  .oem-page .oem-4 .topp .left {
    padding-right: 30px;
  }

  .oem-page .acc1 {
    padding-bottom: 50px;
  }

  .oem-page .oem-7 .topp .left .acc {
    margin-top: 40px;
  }

}
  @media screen and (max-width: 1100px) {
       .oem-page .oem-3 .options ul li {
    width: 33.3333%;
  }

  .oem-page .topp .left {
    width: 100% !important;
    padding: 0 !important;
    margin-top: 30px;
  }

  .oem-page .topp .right {
    width: 100% !important;
    padding: 0 !important;
    margin-top: 30px;
  }
  .oem-page .oem-9 ul li{
      padding: 15px;
  }
  .oem-page .oem-9 ul::after{
    top: 153px;
    height: 140px;
  }
}
@media screen and (max-width: 1000px) {
.oem-page .oem-3{
        padding: 60px 0;
}

  .oem-page .oem-3 .title {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .oem-page .oem-3 .title .acc p {
    margin-top: 15px;
  }

  .oem-page .oem-3 .title .btn {
    margin-top: 25px;
  }

  .oem-page .oem-3 .options ul li {
    width: 50%;
  }

  .oem-page .oem-4 .topp .left .acc ul li {
    width: 33.33%;
  }
  .oem-page .oem-9 ul::after{
    display: none;
  }
  .oem-page .oem-9 ul li:nth-child(5){
    order: 5;
  }
  .oem-page .oem-9 ul li:nth-child(6){
    order: 6;
  }
  .oem-page .oem-9 ul li:nth-child(7){
    order: 7;
  }
  .oem-page .oem-9 ul li:nth-child(8){
    order: 8;
  }
  .prodet_faq ul li{
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
      .oem-page .oem-1 .tit,
  .oem-page .topp .left .tit{
    font-size: 32px;
  }
  .oem-page .oem-3 .options ul li {
    width: 100%;
  }

  .oem-page .oem-3 .options ul li h4 {
    padding: 20px 0;
  }

  .oem-page .oem-4 .topp .left .acc ul li,
  .oem-page .oem-5 .topp .left .acc ul li,
  .oem-page .oem-6 .topp .left .acc ul li,
  .oem-page .oem-7 .topp .left .acc ul li,
  .oem-page .oem-8 .topp .left .acc ul li {
    width: 50%;
  }

  .oem-page .oem-7 .topp .left .acc ul li {
    margin: 10px 0;
  }

  .oem-page .topp .left .tit {
    line-height: 1.5;
  }
  .oem-page .oem-9 ul li{
    width: 33.3%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .oem-page .oem-9 ul li .item{
    order: 1;
  }
  .oem-page .oem-9 ul li .text{
    order: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .oem-page .oem-9 ul li .num{
    order: 1;
  }
  .oem-page .oem-9 ul li h5{
    order: 2;
  }
}

@media screen and (max-width: 500px) {
  .oem-page .oem-1 .tit,
  .oem-page .topp .left .tit{
          font-size: 26px;
    line-height: 2;
  }
    .oem-page .oem-3{
            padding: 40px 0;
    }
      .oem-page .oem-3 .title .acc p {
    font-size: 16px;
  }
    .oem-page .oem-4 .topp .left .acc ul li,
  .oem-page .oem-5 .topp .left .acc ul li,
  .oem-page .oem-6 .topp .left .acc ul li,
  .oem-page .oem-7 .topp .left .acc ul li,
  .oem-page .oem-8 .topp .left .acc ul li {
    width: 100%;
  }
  .oem-page .oem-9 ul li{
    width: 50%;
  }
}
