#pups_shadow2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}

#pups_from2 {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}

#pups_from2 h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#pups_from2 form {
  margin-top: 40px;
}

#pups_from2 i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#pups_from2 i.close::after,
#pups_from2 i.close::before {
  content: "";
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#pups_from2 i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#pups_from2 i.close:hover {
  background: var(--color);
}

#pups_from2 i.close:hover::before,
#pups_from2 i.close:hover::after {
  background: white;
}

#pups_from2 ul li {
  margin-bottom: 10px;
  position: relative;
}

#pups_from2 ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

#pups_from2 ul li label em {
  color: red;
  margin-right: 2px;
}

#pups_from2 ul li input,
#pups_from2 ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}

#pups_from2 ul li input:focus,
#pups_from2 ul li textarea:focus {
  border-color: var(--color);
}

#pups_from2 ul li textarea {
  height: 80px;
}

#pups_from2 ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#pups_from2 ul li input[type="submit"]:hover {
  opacity: 0.7;
}

#pups_from2 ul li:last-child {
  margin-bottom: 0;
}

.right_nav_list {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 10;
}

.right_nav_list ul li {
  margin-top: 5px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: #fff;
  background: var(--color);
  border: 1px solid #fff;
  border-radius: 50%;
  border:0;
  box-shadow: 0 0 12px rgba(0,0,0,.3);
  -webkit-box-shadow: 0 0 12px rgba(0,0,0,.3);
}

.right_nav_list ul li .iImg {
  width: 24px;
  height: 32px;
}

.right_nav_list ul li .text {
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
}

.right_nav_list ul li .cont {
  position: absolute;
  left: -160px;
  top: 0;
  width: 160px;
  min-height: 100%;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  overflow: hidden;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}

.right_nav_list ul li .cont #ewm {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
  border: 1px solid #ccc;
}

.right_nav_list ul li .cont span{
  background: #fff;
  color: #000;
  padding:10px 15px;
  border-radius: 5px;
  font-size: 16px;
  white-space: nowrap;
}

.right_nav_list ul li.chat-btn {
    background-color: #4dc247; 
}
.right_nav_list ul li.pop_btn{
    background-color:var(color);
}
.right_nav_list ul li.go_top{
  background-color: #000;
}
.right_nav_list ul li.yuyan-btn{
  background: #4379ff;
}
.right_nav_list ul li.yuyan-btn .text img{
  filter:brightness(0) invert(1);
}
.right_nav_list ul li.yuyan-btn .cont{
  overflow: visible;
}
.right_nav_list ul li.yuyan-btn .cont .ul{
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: auto;
  left: 0px;
  width: 150px;
  -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);
}
.right_nav_list ul li.yuyan-btn .cont .ul .li{
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 35px;
  color: black;
  font-size: 15px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.right_nav_list ul li.yuyan-btn .cont .ul .li a {
  display: block;
}

.right_nav_list ul li.yuyan-btn .cont .ul .li a img {
  width: 24px;
  vertical-align: middle;
  padding-right: 6px;
}


.right_nav_list ul li.yuyan-btn .cont .ul .li:hover {
  background: #222;
  color: white;
}



.right_nav_list ul li:hover .cont {
  transform: rotate3d(0, 0, 0, -90deg);
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  -ms-transform: rotate3d(0, 0, 0, -90deg);
  -o-transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}

.right_nav_list ul li:hover .text {
  opacity: 0.6;
}

@media (max-width: 500px) {
  .right_nav_list {
    right: 5px;
    bottom: 150px;
  }

  .right_nav_list ul li {
    width: 38px;
    height: 38px;
    margin-top: 5px;
  }

  .right_nav_list ul li .more_cont {
    font-size: 16px;
  }

  .right_nav_list ul li .iImg {
    width: 16px;
    height: 24px;
  }
  .right_nav_list ul li .text img{
    height: 22px;
  }
}

iframe {
  display: block;
  width: 100%;
}

#Pop_UpsBtn {
  z-index: 20;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: var(--color);
  color: white;
  right: 2%;
  bottom: 40%;
  font-size: 24px;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: none;
}

#Pop_UpsBtn:hover {
  background: #889aff;
}

b,
strong {
  font-weight: bold;
}

html,
body {
  position: relative;
  max-width: 1920px;
  margin: auto;
}

#ewm img,
#ewm canvas {
  display: block;
  width: 100%;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100%;
  height: auto;
  display: block;
  overflow: auto;
}

table tbody {
  display: table;
  width: 100% !important;
}

table tbody td,
table tbody th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}

table tbody tr {
  width: auto !important;
  height: auto !important;
}

table tbody tr:nth-child(even) {
  background: #eee;
}

html.mobile {
  overflow: hidden;
}

html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}

#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: none;
  z-index: 20;
  height: 100%;
}

#mobile:before {
  content: "";
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#mobile .mobile-logo img {
  max-height: 50px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  -o-object-fit: contain;
  object-fit: contain;
  width: 220px;
}

#mobile #menu-on {
  width: 50px;
  height: 60px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}

#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#mobile #menu-on i.line1 {
  top: 35px;
}

#mobile #menu-on i.line2 {
  top: 19px;
}

#mobile #menu-on i.line3 {
  top: 26px;
}

#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}

#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}

#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}

#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}

#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}

#mobile .menu-content .h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}

#mobile .menu-content .h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}

#mobile .menu-content .menu-logo {
  display: block;
}

#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}

#mobile .menu-content .menu-list {
  margin: 40px 0;
}

#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}

#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
   line-height: 28px;
}

#mobile .menu-content .menu-list ul li a:hover {
  color: #ff9800;
  text-decoration: underline;
}

#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 28px;
}

#mobile .menu-content .menu-list ul li li a:after {
  content: "";
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}

#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}

#mobile .menu-content .mob-search form {
  position: relative;
}

#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}

#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  border: 1px solid #fff;
}

#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}

#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}

#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#mobile .menu-content .mob-share ul li:hover {
  background: #ff9800;
}

#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}

#mobile.active {
  left: 0;
}

#mobile.active:before {
  right: 0;
}

#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}

#mobile.active #menu-on i.line2 {
  opacity: 0;
}

#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}

#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}

#mobile.white .menu-content {
  background: white;
  color: black;
}

#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}

#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}

#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media screen and (max-width: 1000px) {

  #banner,
  .inner-banner {
    margin-top: 60px;
  }
}

.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}

.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}

.search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}

.search-box form input {
  background: none;
  outline: none;
  border: none;
}

.search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}

.search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}

@keyframes ks2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 700px) {
  .font-25 {
    font-size: 18px;
  }

  .font-26 {
    font-size: 18px;
  }

  .font-27 {
    font-size: 18px;
  }

  .font-28 {
    font-size: 18px;
  }

  .font-29 {
    font-size: 18px;
  }

  .font-30 {
    font-size: 18px;
  }

  .font-31 {
    font-size: 20px;
  }

  .font-32 {
    font-size: 20px;
  }

  .font-33 {
    font-size: 20px;
  }

  .font-40 {
    font-size: 22px;
  }

  .font-41 {
    font-size: 22px;
  }

  .font-42 {
    font-size: 22px;
  }

  .font-43 {
    font-size: 22px;
  }

  .font-44 {
    font-size: 22px;
  }

  .font-45 {
    font-size: 22px;
  }

  .font-46 {
    font-size: 22px;
  }

  .font-47 {
    font-size: 22px;
  }

  .font-48 {
    font-size: 22px;
  }

  .font-49 {
    font-size: 22px;
  }

  .font-50 {
    font-size: 22px;
  }

  .font-51 {
    font-size: 22px;
  }

  .font-52 {
    font-size: 24px;
  }

  .font-53 {
    font-size: 24px;
  }

  .font-54 {
    font-size: 24px;
  }

  .font-55 {
    font-size: 24px;
  }

  .font-56 {
    font-size: 24px;
  }
}

/*----- genneral end-----*/

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.eot');
  src: url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Regular.woff2') format('woff2'),
    url('../fonts/Gilroy-Regular.woff') format('woff'),
    url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Black.eot');
  src: url('../fonts/Gilroy-Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Black.woff2') format('woff2'),
    url('../fonts/Gilroy-Black.woff') format('woff'),
    url('../fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.eot');
  src: url('../fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Bold.woff2') format('woff2'),
    url('../fonts/Gilroy-Bold.woff') format('woff'),
    url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.eot');
  src: url('../fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-ExtraBold.woff2') format('woff2'),
    url('../fonts/Gilroy-ExtraBold.woff') format('woff'),
    url('../fonts/Gilroy-ExtraBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Heavy.eot');
  src: url('../fonts/Gilroy-Heavy.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Heavy.woff2') format('woff2'),
    url('../fonts/Gilroy-Heavy.woff') format('woff'),
    url('../fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.eot');
  src: url('../fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Medium.woff2') format('woff2'),
    url('../fonts/Gilroy-Medium.woff') format('woff'),
    url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}



body {
  font-family: 'Gilroy';
  font-weight: normal;
  --color: #2476ad;
  margin: 0 auto;
  padding: 0 42px !important;
  background-color: #eff3f6;
}

.container {
  width: 100% !important;
  padding: 0 !important;
}

.ui.container.wraper {
  max-width: 1430px;
}

.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.more {
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  font-size: 16px;
  color: white;
  background: var(--color);
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  padding-left: 25px;
  padding-right: 6px;
  cursor: pointer;
}

.more .arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: white;
  vertical-align: middle;
  text-align: center;
  line-height: 50px;
  margin-left: 17px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-top: -1px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.more .arrow span {
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 14px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.more .arrow span img {
  vertical-align: middle;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.more .arrow span .img2 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transform: translate(-17px, 17px);
  -moz-transform: translate(-17px, 17px);
  -ms-transform: translate(-17px, 17px);
  transform: translate(-17px, 17px);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.more:hover {
  background-color: #222;
}

.more:hover .arrow {
  background: var(--color);
}

.more:hover .arrow .img1 {
  -webkit-transform: translate(17px, -17px);
  -moz-transform: translate(17px, -17px);
  -ms-transform: translate(17px, -17px);
  transform: translate(17px, -17px);
  opacity: 0;
}

.more:hover .arrow .img2 {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#header {
  z-index: 10;
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: #eff3f6;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
}

#header .nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 98px;
}

#header .nav .ui.menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}

#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 100px;
  margin-right: 0;
}

#header .nav .ui.menu .right {
  display: flex;
  align-items: center;
}

#header .nav .ui.menu .menu-box ul.menu>li {
  margin: 0 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #333333;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}

#header .nav .ui.menu .menu-box ul.menu>li.active>a {
  -webkit-transition: .5s .5s border;
  -moz-transition: .5s .5s border;
  transition: .5s .5s border;
  font-weight: 800;
}

#header .nav .ui.menu .menu-box ul.menu>li:hover>a {
  -webkit-transition: .5s .5s border;
  -moz-transition: .5s .5s border;
  transition: .5s .5s border;
}

#header .nav .ui.menu .menu-box ul.menu>li>a {
  display: block;
  position: relative;
  padding: 0px 0;
}

#header .nav .ui.menu .menu-box ul.menu>li>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #4a4a4b;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#header .nav .ui.menu .menu-box ul.menu>li.active>a::after,
#header .nav .ui.menu .menu-box ul.menu>li:hover>a::after {
  width: 100%;
}

#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: 15px;
  background: #fff;
  top: 100%;
  left: 0px;
  min-width: 180px;
  white-space: nowrap;
  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 ul {
  left: 100%;
  top: 0;
}

#header .nav .ui.menu .menu-box ul.menu>li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -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:hover {
  background: #222;
  color: white;
}

#header .nav .ui.menu .menu-box ul.menu>li ul.sub-menu li:hover ul,
#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 .menu-box ul.menu>li:nth-child(1) {
  margin-left: 0;
}

#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
  padding-right: 12px;
  border-right: 1px solid #3e3e3e;
}


#header .nav .ui.menu .language {
  position: relative;
  font-size: 16px;
  color: #333333;
  margin-left: 12px;
}

#header .nav .ui.menu .language ul {
  -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: 15px;
  background: #fff;
  top: 100%;
  left: 0px;
  width: 150px;
  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 .language ul li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 35px;
  color: black;
  font-size: 15px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}

#header .nav .ui.menu .language ul li a {
  display: block;
}

#header .nav .ui.menu .language ul li a img {
  width: 24px;
  vertical-align: middle;
  padding-right: 6px;
}

#header .nav .ui.menu .language ul li:hover {
  background: #222;
  color: white;
}

#header .nav .ui.menu .language:hover ul {
  -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 .phone {
  font-size: 18px;
  font-weight: 500;
  margin-right: 40px;
  margin-left: 20px;
}

#header .nav .ui.menu .phone img {
  vertical-align: middle;
  margin-right: 10px;
}

#header.active {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(17, 17, 17, 0.5);
  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 15px;
  background-color: #fff;
  border-radius: 25px;
}

#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 22px;
    top: 15px;
}

#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;
}


.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: #eb623a;
}

#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: #eb623a !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;
}

#banner {
  margin-top: 110px;
  border-radius: 24px;
  overflow: hidden;
}

#banner ul li {
  position: relative;
}

#banner ul li>img {
  border-radius: 24px;
}

#banner ul li .content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  color: white;
  text-align: center;
}

#banner ul li .content .box {
  width: 100%;
  margin: auto;
}

#banner ul li .content .tag {
  font-size: 14px;
  display: inline-block;
  border-radius: 12.5px;
  border: 1px solid white;
  padding: 1px 25px;
}

#banner ul li .content .h2 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin: 21px 0 44px;
}

#banner ul li .content .more {
  background: white;
  color: black;
}

#banner ul li .content .more .arrow {
  background-color: var(--color);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#banner ul li .content .more:hover {
  background-color: var(--color);
  color: white;
}

#banner ul li .content .more:hover .arrow {
  background-color: white;
}

#banner ul li .content .more:hover .arrow .img2 {
  -webkit-filter: invert(1);
  filter: invert(1);
}

#banner .slick-dots {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #eff3f6;
  z-index: 4;
  padding: 30px 18px;
  border-radius: 24px 0 0 24px;
}

#banner .slick-dots li {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #cccccc;
  margin: 8px 0;
}

#banner .slick-dots li button {
  display: none;
}

#banner .slick-dots li.slick-active {
  background-color: #333333;
}

.fw-600 {
  font-weight: 600;
}

.i-tag {
  font-size: 18px;
  color: var(--color);
  font-weight: 500;
}



#index-body .i-init1 {
  padding: 40px 0 40px;
}

#index-body .i-init1 ul {
  margin: -17px;
}

#index-body .i-init1 ul li {
  padding: 17px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

#index-body .i-init1 ul li .box {
  display: block;
  background-color: white;
  border-radius: 24px;
  padding: 45px 25px 60px;
  position: relative;
}

#index-body .i-init1 ul li .box .line {
  width: 100%;
  height: 1px;
  background-color: #cdd5dd;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  margin: 20px 0;
}

#index-body .i-init1 ul li .box .line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #c1cbd5;
  border-radius: 100%;
  width: 12px;
  height: 12px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#index-body .i-init1 ul li .box .line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background-color: var(--color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

#index-body .i-init1 ul li .box .h4 {
  font-size: 24px;
  font-weight: bold;
}

#index-body .i-init1 ul li .box .content {
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-top: 8px;
  font-weight: 500;
  min-height: 96px;
  position: relative;
  z-index: 2;
}

#index-body .i-init1 ul li .box .arrow-box {
  position: absolute;
  right: 0;
  bottom: 0;
}

#index-body .i-init1 ul li .box .arrow-box .arrow {
  background-color: #eff3f6;
  border-top-left-radius: 50%;
  padding-top: 12px;
  padding-left: 12px;
  position: relative;
  bottom: 0;
  right: 0;
}

#index-body .i-init1 ul li .box .arrow-box .arrow .right-top {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
  right: 0;
  background-image: -webkit-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #eff3f6 100%, #eff3f6);
  background-image: -moz-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #eff3f6 100%, #eff3f6);
  background-image: radial-gradient(circle farthest-side at 0% 0%, transparent 0 100%, #eff3f6 100%, #eff3f6);
}

#index-body .i-init1 ul li .box .arrow-box .arrow .left-bottom {
  background-image: -webkit-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #eff3f6);
  background-image: -moz-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #eff3f6);
  background-image: radial-gradient(circle farthest-side at 0% 0%, transparent 0 100%, #eff3f6);
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
  left: -20px;
}

#index-body .i-init1 ul li .box .arrow-box .arrow .circle {
  background-color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

#index-body .i-init1 ul li .box .arrow-box .arrow .circle span {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 14px;
  height: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

#index-body .i-init1 ul li .box .arrow-box .arrow .circle span img {
  vertical-align: middle;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

#index-body .i-init1 ul li .box .arrow-box .arrow .circle span .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(-17px, 17px);
  -moz-transform: translate(-17px, 17px);
  -ms-transform: translate(-17px, 17px);
  transform: translate(-17px, 17px);
}

#index-body .i-init1 ul li:hover {
  -webkit-transform: translateY(-7px);
  -moz-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  transform: translateY(-7px);
}

#index-body .i-init1 ul li:hover .line::before {
  width: 100%;
}

#index-body .i-init1 ul li:hover .line::after {
  background-color: var(--color);
}

#index-body .i-init1 ul li:hover .arrow-box .arrow .circle {
  background-color: var(--color);
}

#index-body .i-init1 ul li:hover .arrow-box .arrow .circle span .img1 {
  -webkit-transform: translate(17px, -17px);
  -moz-transform: translate(17px, -17px);
  -ms-transform: translate(17px, -17px);
  transform: translate(17px, -17px);
}

#index-body .i-init1 ul li:hover .arrow-box .arrow .circle span .img2 {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

#index-body .i-init2 {
  text-align: center;
  border-radius: 24px;
  padding-top: 76px;
  padding-bottom: 110px;
  background: url(../images/capacity-bg.png) no-repeat right top white;
}

#index-body .i-init2 .i-title {
  margin: 6px 0 44px;
}

#index-body .i-init2 ul {
  padding: 0 100px;
}

#index-body .i-init2 ul li {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

#index-body .i-init2 ul li .box {
  position: absolute;
  right: 120px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 515px;
  border-radius: 24px;
  padding: 40px 40px 60px;
  text-align: left;
  background: url(../images/capa-bg.png) no-repeat;
  overflow: hidden;
  background-position: 100% 100%;
  background-size: auto;
}

#index-body .i-init2 ul li .box .h4 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 10px;
  margin-bottom: 18px;
}

#index-body .i-init2 ul li .box .content {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

#index-body .i-init2 ul li .box .arrow-box {
  position: absolute;
  bottom: 0;
  right: 64px;
  background-color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#index-body .i-init2 ul li .box .arrow-box .arrow {
  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;
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 14px;
}

#index-body .i-init2 ul li .box .arrow-box .arrow img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#index-body .i-init2 ul li .box .arrow-box .arrow .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(-17px, 17px);
  -moz-transform: translate(-17px, 17px);
  -ms-transform: translate(-17px, 17px);
  transform: translate(-17px, 17px);
}

#index-body .i-init2 ul li .box:hover .arrow-box {
  background-color: white;
}

#index-body .i-init2 ul li .box:hover .arrow-box .arrow .img1 {
  -webkit-transform: translate(17px, -17px);
  -moz-transform: translate(17px, -17px);
  -ms-transform: translate(17px, -17px);
  transform: translate(17px, -17px);
}

#index-body .i-init2 ul li .box:hover .arrow-box .arrow .img2 {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

#index-body .i-about .scroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 55px 0 80px;
}

#index-body .i-about .scroll .scroll-wrap {
  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-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-animation: move 30s linear infinite;
  -moz-animation: move 30s linear infinite;
  animation: move 30s linear infinite;
}

#index-body .i-about .scroll .scroll-wrap div {
  margin: 0 20px;
}

#index-body .i-about .left {
  padding-right: 35px;
  vertical-align: middle;
}

#index-body .i-about .left .i-title {
  line-height: 1.2;
  margin: 18px 0;
  color: #333333;
}

#index-body .i-about .left .i-title em {
  color: var(--color);
}

#index-body .i-about .left .h5 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}

#index-body .i-about .left .content {
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  font-weight: 500;
  margin: 16px 0 34px;
}

#index-body .i-about .right {
  padding-left: 25px;
  vertical-align: middle;
}

#index-body .i-about .right .img {
  border-radius: 24px;
  overflow: hidden;
}

#index-body .i-about .right .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  border-radius: 100% !important;
  display: none;
}

#index-body .i-about .right .play:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
}

#index-body .i-about .right .play:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 64px;
  height: 64px;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}

#index-body .i-about .right .play .xzxq {
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #005bac;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
  animation: rotateAround 4s linear infinite;
}

@keyframes rotateAround {
  0% {
    transform: rotate(0deg) translateX(32px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(32px) rotate(-360deg);
  }
}


#index-body .i-about .right .img .slick-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #eff3f6;
  border-radius: 24px 0px 0 0;
  display: flex !important;
  align-items: center;
  padding: 10px 28px;
}

#index-body .i-about .right .img .slick-dots li {
  margin: 3px;
}

#index-body .i-about .right .img .slick-dots li button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #cccccc;
  font-size: 0;
  border: 0;
}

#index-body .i-about .right .img .slick-dots li.slick-active button {
  background-color: #333333;
}


#index-body .i-about ul.num {
  margin-top: 100px;
  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;
}

#index-body .i-about ul.num li {
  text-align: center;
  position: relative;
}

#index-body .i-about ul.num li .h2 {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  font-size: 62px;
  font-weight: 800;
  color: #333333;
  line-height: 1;
}

#index-body .i-about ul.num li .h2 span {
  font-size: 24px;
}

#index-body .i-about ul.num li .h2 span.pf {
  font-size: 20px;
}

#index-body .i-about ul.num li p {
  font-size: 22px;
  color: #333333;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

#index-body .i-about ul.num li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 77px;
  background: #1c1d1d;
}

#index-body .i-about ul.num li:nth-child(1),
#index-body .i-about ul.num li:nth-child(4) {
  width: 22%;
}

#index-body .i-about ul.num li:nth-child(2) {
  width: 26%;
}

#index-body .i-about ul.num li:nth-child(3) {
  width: 30%;
}

#index-body .i-about ul.num li:last-child::after {
  content: none;
}



#index-body .i-about ul.num li:hover .h2,
#index-body .i-about ul.num li:hover p {
  color: var(--color);
}

#index-body .i-init4 {
  text-align: center;
  padding-bottom: 80px;
}

#index-body .i-init4 .i-title {
  margin: 13px 0 52px;
  color: #333333;
}

#index-body .i-init4 ul {
  margin: -13px;
}

#index-body .i-init4 ul li {
  padding: 13px;
}

#index-body .i-init4 ul li .box {
  background-color: white;
  border-radius: 24px;
  padding: 8px;
  padding-bottom: 35px;
}

#index-body .i-init4 ul li .box .img-box {
  border-radius: 24px;
  overflow: hidden;
}

#index-body .i-init4 ul li .box .title {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  display: block;
  margin: 25px 0 15px;
}

#index-body .i-init4 ul li .box .content {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  font-weight: 500;
  min-height: 50px;
}

#index-body .i-category {
  background: url(../images/category-bg.png) no-repeat center bottom white;
  border-radius: 24px;
  padding: 75px 0 90px;
}

#index-body .i-category .ui.container.wraper {
  padding: 0 15px !important;
}

#index-body .i-category .i-title {
  margin: 5px 0 18px;
}

#index-body .i-category ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #d5d5d5;
  padding: 26px 0;
}

#index-body .i-category ul li .num {
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #999999;
  border-radius: 16px;
  padding: 5px 20px;
}

#index-body .i-category ul li .h3 {
  font-size: 40px;
  font-weight: 600;
  color: #333333;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  padding-left: 40px;
}

#index-body .i-category ul li span {
  font-size: 16px;
  color: #333333;
  margin-top: 17px;
  margin-left: 15px;
}

#index-body .i-category ul li .img {
  position: absolute;
  right: 200px;
  top: 50%;
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 26%;
  opacity: 0;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
}

#index-body .i-category ul li .mores {
  margin-left: auto;
  position: relative;
  font-size: 18px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding-left: 20px;
}

#index-body .i-category ul li .mores img {
  vertical-align: middle;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#index-body .i-category ul li .mores .img1 {
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

#index-body .i-category ul li:hover .h3 {
  color: var(--color);
}

#index-body .i-category ul li:hover .img {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#index-body .i-category ul li:hover .mores {
  color: var(--color);
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

#index-body .i-category ul li:hover .mores .img1 {
  opacity: 1;
  left: 0;
}

#index-body .i-category ul li:hover .mores .img2 {
  opacity: 0;
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

#index-body .i-news {
  padding-top: 75px;
  padding-bottom: 80px;
}

#index-body .i-news .top {
  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;
  margin-bottom: 50px;
}

#index-body .i-news ul {
  margin: -17px;
}

#index-body .i-news ul li {
  padding: 17px;
}

#index-body .i-news ul li .box {
  background: white;
  border-radius: 24px;
  overflow: hidden;
}

#index-body .i-news ul li .box .img {
  border-radius: 24px;
  display: block;
  position: relative;
  overflow: hidden;
}

#index-body .i-news ul li .box .img .cat-name {
  font-size: 14px;
  position: absolute;
  bottom: 0;
  right: 50px;
  background-color: white;
  padding: 10px 35px;
  border-radius: 18px 18px 0 0;
}

#index-body .i-news ul li .box .img .cat-name .right-bottom {
  background-image: -webkit-radial-gradient(100% 0%, circle farthest-side, transparent 0 100%, white);
  background-image: -moz-radial-gradient(100% 0%, circle farthest-side, transparent 0 100%, white);
  background-image: radial-gradient(circle farthest-side at 100% 0%, transparent 0 100%, white);
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -1px;
  right: -25px;
}

#index-body .i-news ul li .box .img .cat-name .left-bottom {
  background-image: -webkit-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, white);
  background-image: -moz-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, white);
  background-image: radial-gradient(circle farthest-side at 0% 0%, transparent 0 100%, white);
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -1px;
  left: -25px;
}

#index-body .i-news ul li .box .content {
  padding: 30px 20px 40px;
}

#index-body .i-news ul li .box .title {
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  color: #333333;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 25px;
  overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 3;
 -webkit-box-orient: vertical;  
}

#index-body .i-news ul li .box .time {
  font-size: 18px;
  color: #333333;
}

#index-body .i-news ul li .box .time img {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
  width: auto;
}

#index-body .i-news ul li:hover .title {
  color: var(--color);
}

#footer {
  background-image: url(../images/h-gooterbg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding-top: 70px;
}

#footer .ui.container.wraper {
  padding: 0 15px !important;
}

#footer .wrap {
  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;
}

#footer .wrap .h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}

#footer .wrap .one {
  max-width: 315px;
}

#footer .wrap .one p {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin: 22px 0 28px;
}

#footer .wrap .one .share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  text-align: center;
  line-height: 37px;
  color: #bcbcbc;
  margin-right: 15px;
  border: solid 1px #bcbcbc;
}

#footer .wrap .one .share a:hover {
  border-color: var(--color);
  color: var(--color);
}

#footer .wrap .one .share a i {
  font: 20px;
}

#footer .wrap .one .share li {
  background-color: transparent;
}

#footer .wrap .two ul li,
#footer .wrap .three ul li {
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  color: #bcbcbc;
}

#footer .wrap .two ul li:hover,
#footer .wrap .three ul li:hover {
  color: var(--color);
}

#footer .wrap .four {
  max-width: 370px;
}

#footer .wrap .four ul li {
  padding-left: 40px;
  position: relative;
  font-size: 18px;
  line-height: 2;
  color: #bcbcbc;
}

#footer .wrap .four ul li img {
  position: absolute;
  left: 0;
  top: 5px;
}

#footer .bottom {
  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;
  padding: 85px 0 65px;
}

#footer .bottom .h3 {
  font-size: 40px;
  font-weight: 600;
  width: 33%;
  color: #fff;
}

#footer .bottom .Auxil-form {
  width: 52%;
}

#footer .bottom .Auxil-form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 60px;
  background-color: #eff3f6;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
}

#footer .bottom .Auxil-form form input {
  width: 22%;
  height: 20px;
  border: none;
  border-right: 1px solid #cccccc;
  background-color: transparent;
  padding: 0 15px;
  font-size: 16px;
}

#footer .bottom .Auxil-form form input::placeholder {
  text-align: center;
  font-style: italic;
}

#footer .bottom .Auxil-form form input[name="content"] {
  border: none;
}

#footer .bottom .Auxil-form form input[type="submit"] {
  padding: 0;
  background-color: var(--color);
  color: white;
  position: absolute;
  right: -1px;
  top: 0;
  height: 100%;
  border-radius: 30px;
  width: 30%;
}

#footer .bottom #ewm {
  width: 88px;
  height: 88px;
  border: 7px solid white;
  border-radius: 10px;
}

#footer .f-copy {
  font-size: 15px;
  color: #bcbcbc;
  padding-bottom: 20px;
  text-align: center;
}

#footer .f-copy svg {
  width: auto;
  height: 27px;
  fill: #bcbcbc;
  vertical-align: middle;
}

@media screen and (max-width: 1700px) {
  #header .nav .ui.menu .menu-box {
    margin-left: 85px;
  }
}



@media screen and (max-width: 1500px) {
  #header .nav .ui.menu .menu-box ul.menu>li {
    margin: 0 12px;
  }

  #banner ul li .content .h2 {
    font-size: 50px;
  }

  #index-body .i-init2 ul {
    padding: 0 60px;
  }

  .font-52 {
    font-size: 44px;
  }

  #index-body .i-category {
    padding: 40px 0;
  }

  #index-body .i-category ul li .h3 {
    font-size: 34px;
  }

  #footer .bottom .h3 {
    font-size: 35px;

  }
}

@media screen and (max-width: 1450px) {
  #header .nav .ui.menu .logo {
    position: unset;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .more {
    white-space: nowrap;
  }

  #header .nav .ui.menu .phone {
    margin: 0 10px;
  }

  #header .nav .ui.menu .phone img {
    width: 34px;
    margin-right: 0;
  }

  #header .nav .ui.menu .menu-box ul.menu>li {
    font-size: 16px;
    margin: 0 8px;
  }

  #banner ul li .content .h2 {
    font-size: 40px;
  }

  #banner .slick-dots li {
    width: 9px;
    height: 9px;
  }

  #banner .slick-dots {
    padding: 20px 10px;
    border-radius: 15px 0 0 15px;
  }

  #index-body .i-init1 ul li .box {
    padding: 45px 15px 68px;
  }

  #index-body .i-init1 ul li .box .h4 {
    font-size: 20px;
  }

  #index-body .i-about ul.num li p {
    font-size: 18px;
  }

  #index-body .i-about .ui.container.wraper {
    padding: 0 !important;
  }

  #index-body .i-about ul.num li .h2 {
    font-size: 52px;
  }

  #index-body .i-about .scroll {
    padding: 50px 0;
  }

  #index-body .i-about ul.num li:nth-child(1) {
    padding-right: 75px;
  }

  #index-body .i-about ul.num li:nth-child(4) {
    padding-left: 85px;
  }

  #index-body .i-category ul li .img {
    right: 130px;
  }

  #index-body .i-category ul li .h3 {
    font-size: 30px;
    padding-left: 18px;
  }

  #index-body .i-news .ui.container.wraper {
    padding: 0 !important;
  }

  #index-body .i-news ul li .box .title {
    font-size: 20px;
    line-height: 26px;
  }

  #footer .bottom .h3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1250px) {
  body {
    padding: 0 25px !important;
  }

  #header {
    display: none;
  }

  #mobile {
    display: block;
  }

  #banner {
    margin-top: 65px;
  }

  #banner ul li .content .h2 {
    font-size: 35px;
  }

  #index-body .i-init1 ul li {
    padding: 10px;
  }

  #index-body .i-init1 ul {
    margin: -10px;
  }

  #index-body .i-init1 ul li {
    width: 50%;
  }

  #index-body .i-init2 {
    padding: 35px 0;
  }

  #index-body .i-init2 ul li>img {
    height: 360px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #index-body .i-init2 ul li .box {
    right: 50px;
  }

  .font-52 {
    font-size: 36px;
  }

  #index-body .i-about ul.num li:nth-child(1) {
    padding-right: 30px;
  }

  #index-body .i-about ul.num li:nth-child(4) {
    padding-left: 30px;
  }

  #index-body .i-about .scroll {
    padding: 35px 0;
  }

  #index-body .i-news {
    padding-top: 40px;
    padding-bottom: 45px;
  }

  #footer .wrap .two,
  #footer .wrap .three {
    display: none;
  }

  #footer .wrap .four {
    max-width: 510px;
  }

  #footer .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #footer .bottom .h3 {
    width: 100%;
    margin-bottom: 30px;
  }

  #footer .bottom .Auxil-form {
    width: 87%;
  }
}

@media screen and (max-width: 1000px) {
  #banner ul li .content .h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
  }

  #index-body .i-init1 ul li .box {
    padding: 30px 15px 68px;
  }

  #index-body .i-init1 {
    padding: 25px 0;
  }

  #index-body .i-init2 ul {
    padding: 0 25px;
  }

  #index-body .i-init2 {
    padding: 20px 0;
  }

  .font-52 {
    font-size: 32px;
  }

  #index-body .i-init2 ul li .box {
    right: 35px;
  }

  #index-body .i-init2 ul li .box .content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }

  #index-body .i-init2 ul li .box {
    padding: 25px 25px 60px;
  }

  #index-body .i-about .left {
    width: 100%;
    padding-right: 0;
  }

  #index-body .i-about .right {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }

  #index-body .i-about ul.num li .h2 {
    font-size: 38px;
    font-weight: bold;
    justify-content: center;
  }

  #index-body .i-about ul.num li p {
    text-align: center;
  }

  #index-body .i-about ul.num li .h2 span {
    font-size: 20px;
  }

  #index-body .i-about ul.num {
    margin-top: 55px;
  }

  #index-body .i-about .scroll {
    padding: 25px 0;
  }

  #index-body .i-about .right .img ul li img {
    width: 100%;
    object-fit: cover;
  }

  #index-body .i-category ul li .img {
    display: none;
  }

  #index-body .i-category {
    padding: 30px 0;
  }

  #index-body .i-category ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #index-body .i-category ul li .mores {
    margin-left: 0;
  }

  #footer .bottom .ewm {
    display: none;
  }

  #footer .bottom .Auxil-form {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  body {
    padding: 0 15px !important;
  }

  #banner ul li .content .box {
    width: 100%;
  }

  #banner ul li .content .h2 {
    font-size: 20px;
  }

  #banner ul li>img {
    min-height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #index-body .i-init1 ul li {
    width: 100%;
  }

  #index-body .i-init1 ul li .box .content {
    min-height: unset;
  }

  #index-body .i-init2 ul li .box {
    max-width: 375px;
  }

  #index-body .i-init2 ul li .box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background-color: white;
    z-index: -1;
  }

  #index-body .i-about ul.num {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #index-body .i-about ul.num li {
    width: 50% !important;
    padding: 0 !important;
    margin-bottom: 20px;
  }

  #index-body .i-about ul.num li:nth-child(2)::after {
    content: none;
  }

.seoIndustry.Auxil-industry {
    display: none !important;
}

  #index-body .i-category ul li .mores {
    margin-left: auto;
  }

  #index-body .i-category ul li span {
    margin-top: 0;
  }

  #footer .wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #footer .wrap .one {
    max-width: 100%;
    display: none;
  }

  #footer .wrap .four {
    max-width: 100%;
    margin-top: 30px;
  }

  #footer .wrap .four .h4 {
    margin-bottom: 15px;
  }

  #footer .bottom {
    padding: 25px 0 30px;
  }

  #footer .bottom .Auxil-form form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    background: transparent;
    border-radius: 0;
  }

  #footer .bottom .Auxil-form form input {
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    background-color: #eff3f6;
    border: none;
  }

  #footer .bottom .Auxil-form form input[type="submit"] {
    position: relative;
    height: 40px;
    width: 130px;
  }
}

@media screen and (max-width: 500px) {
  .font-52 {
    font-size: 26px;
  }

  #index-body .i-init2 ul li .box {
    padding: 25px 15px 60px;
    right: auto;
    max-width: 95%;
    left: 2.5%;
  }

  #index-body .i-init2 ul li .box .h4 {
    font-size: 20px;
  }

  #index-body .i-about {
    padding-bottom: 30px;
  }

  #index-body .i-about ul.num {
    margin-top: 25px;
  }

  #index-body .i-about ul.num li {
    width: 100% !important;
  }

  #index-body .i-about ul.num li::after {
    display: none;
  }

  #index-body .i-category ul li .h3 {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }

  #index-body .i-news .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #index-body .i-news .top .left {
    width: 100%;
    margin-bottom: 20px;
  }

  #index-body .i-news {
    padding: 40px 0;
  }
}


.grid-box {
  font-size: 0;
  [;
  letter-spacing: -4px;
  font-size: 12px;
  ]
}

.grid-box .column {
  display: inline-block;
  font-size: 12px;
  vertical-align: top;
  [;
  letter-spacing: 0;
  ]
}

.grid-box .column {
  width: 100%
}

.grid-box.two>.column {
  width: 50%
}

.grid-box.three>.column {
  width: 33.33333%
}

.grid-box.four>.column {
  width: 25%
}

.grid-box.five>.column {
  width: 20%
}

.grid-box.six>.column {
  width: 16.6666667%
}

.grid-box.seven>.column {
  width: 14.285714%
}

.grid-box.eight>.column {
  width: 12.5%
}

.grid-box.nine>.column {
  width: 11.11111111%
}

.grid-box.ten>.column {
  width: 10%
}

@media screen and (max-width: 1000px) {
  .grid-box.two>.column {
    width: 50%
  }

  .grid-box.three>.column {
    width: 33.33333%
  }

  .grid-box.four>.column {
    width: 33.33333%
  }

  .grid-box.five>.column {
    width: 33.33333%
  }
}

@media screen and (max-width: 700px) {
  .grid-box.two>.column {
    width: 50%
  }

  .grid-box.three>.column {
    width: 50%
  }

  .grid-box.four>.column {
    width: 50%
  }

  .grid-box.five>.column {
    width: 50%
  }
}

@media screen and (max-width: 500px) {
  .grid-box.two>.column {
    width: 100%
  }

  .grid-box.three>.column {
    width: 100%
  }

  .grid-box.four>.column {
    width: 100%
  }

  .grid-box.five>.column {
    width: 100%
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

@-moz-keyframes move {
  0% {
    -moz-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -moz-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}


.inner-banner {
  /*height: 500px;*/
  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;
  background: transparent!important;
  background-size: cover;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 110px;
  text-align: center;
  color: white;
}
.inner-banner img{
  width: 100%;
  object-fit: cover;
}
.inner-banner h2 {
  font-size: 40px;
  font-weight: bold;
}

.inner-banner .mbx {
  font-size: 18px;
}

.contact-page .contact-1 {
  padding: 60px 0;
}

.contact-page .contact-1 .left {
  padding-right: 60px;
}

.contact-page .contact-1 .left .i-title {
  line-height: 1.2;
  margin: 10px 0 20px;
}

.contact-page .contact-1 .left p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.contact-page .contact-1 .right {
  background-color: white;
  border-radius: 24px;
  padding: 40px 60px 60px;
}

.contact-page .contact-1 .right .h3 {
  font-size: 36px;
  font-weight: bold;
}

.contact-page .contact-1 .right p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 12px 0 30px;
}

.contact-page .contact-1 .right form ul {
  margin: -10px;
}

.contact-page .contact-1 .right form ul li {
  padding: 10px;
}

.contact-page .contact-1 .right form ul li.wid-100 {
  width: 100%;
}

.contact-page .contact-1 .right form input,
.contact-page .contact-1 .right form textarea {
  background-color: white;
  border: 1px solid rgba(7, 24, 15, 0.1);
  border-radius: 30px;
  height: 60px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 22px;
  width: 100%;
  font-size: 16px;
}

.contact-page .contact-1 .right form textarea {
  height: 150px;
  padding: 20px 22px;
}

.contact-page .contact-1 .right form input[type="submit"] {
  width: auto;
  padding: 0 30px;
  background-color: #005bab;
  color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.contact-page .contact-1 .right form input[type="submit"]:hover {
  background-color: #222;
}

.contact-page .map {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 50px;
  background-color: #eee;
  height: 480px;
}

.news-page {
  padding-top: 80px;
}

.newdet-page {
  padding-top: 80px;
  padding-bottom: 80px;
}

.newdet-page .left {
  width: 75% !important;
  padding-right: 70px;
}

.newdet-page .left .img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.newdet-page .left .img>img {
  width: 100%;
  border-radius: 24px;
}

.newdet-page .left .img .cat-name {
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 70px;
  background-color: #eff3f6;
  padding: 10px 35px;
  border-radius: 18px 18px 0 0;
}

.newdet-page .left .img .cat-name .right-bottom {
  background-image: -webkit-radial-gradient(100% 0%, circle farthest-side, transparent 0 100%, #eff3f6);
  background-image: -moz-radial-gradient(100% 0%, circle farthest-side, transparent 0 100%, #eff3f6);
  background-image: radial-gradient(circle farthest-side at 100% 0%, transparent 0 100%, #eff3f6);
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -1px;
  right: -25px;
}

.newdet-page .left .img .cat-name .left-bottom {
  background-image: -webkit-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #eff3f6);
  background-image: -moz-radial-gradient(0% 0%, circle farthest-side, transparent 0 100%, #eff3f6);
  background-image: radial-gradient(circle farthest-side at 0% 0%, transparent 0 100%, #eff3f6);
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -1px;
  left: -25px;
}

.newdet-page .left .time {
  font-size: 16px;
  margin: 50px 0 15px;
}

.newdet-page .left .time img {
  vertical-align: middle;
  margin-right: 10px;
}

.newdet-page .left .content {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}
.newdet-page .left .content h2 {
    font-size: 24px;
}

.newdet-page .right {
  width: 25% !important;
}

.newdet-page .right .box {
  background-color: white;
  border-radius: 24px;
  padding: 40px 30px 25px;
  margin-bottom: 40px;
}

.newdet-page .right .box .h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.newdet-page .right .box .h4 img {
  vertical-align: middle;
  margin-right: 10px;
}

.newdet-page .right .box1 ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(7, 24, 15, 0.1);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.newdet-page .right .box1 ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: #005bac;
}

.newdet-page .right .box1 ul li:hover,
.newdet-page .right .box1 ul li.active {
  color: #005bac;
}

.newdet-page .right .box1 ul li.active::after,
.newdet-page .right .box1 ul li:hover::after {
  width: 100%;
}

.newdet-page .right .box2 ul li {
  margin-bottom: 20px;
}

.newdet-page .right .box2 ul li .img {
  width: 30%;
  vertical-align: middle;
  border-radius: 15px;
  overflow: hidden;
}

.newdet-page .right .box2 ul li .content {
  width: 70%;
  padding-left: 20px;
  vertical-align: middle;
}

.newdet-page .right .box2 ul li .content .time {
  font-size: 16px;
  font-weight: 500;
}

.newdet-page .right .box2 ul li .content .time img {
  vertical-align: middle;
  margin-right: 7px;
}

.newdet-page .right .box2 ul li .content .title {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-top: 20px;
   overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 3;
 -webkit-box-orient: vertical;  
}

.newdet-page .right .box3 {
  text-align: center;
  padding-top: 160px;
  position: relative;
  overflow: hidden;
}

.newdet-page .right .box3 .icon {
  width: 66px;
  height: 66px;
  border-radius: 100%;
  text-align: center;
  line-height: 66px;
  background-color: white;
  margin: auto;
  z-index: 3;
  position: relative;
}

.newdet-page .right .box3 .icon img {
  vertical-align: middle;
  max-width: 35px;
}

.newdet-page .right .box3 p {
  font-size: 18px;
  color: white;
  z-index: 3;
  position: relative;
  margin: 20px 0 7px;
}

.newdet-page .right .box3 .phone {
  font-size: 24px;
  font-weight: bold;
  color: #005bac;
  z-index: 3;
  position: relative;
}

.newdet-page .right .box3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 56%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#15141c), color-stop(64%, #15141c), color-stop(79%, #15141c), to(transparent));
  background-image: -webkit-linear-gradient(bottom, #15141c, #15141c 64%, #15141c 79%, transparent);
  background-image: -moz-linear-gradient(bottom, #15141c, #15141c 64%, #15141c 79%, transparent);
  background-image: linear-gradient(0deg, #15141c, #15141c 64%, #15141c 79%, transparent);
}



.project-page .i-title {
  margin-bottom: 50px;
  line-height: 1.2;
}

.project-page ul {
  margin: -20px;
}

.project-page ul li {
  padding: 20px;
}

.project-page ul li .box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.project-page ul li .box .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 20px 20px;
}

.project-page ul li .box .content .des {
  background: white;
  border-radius: 12px;
  padding: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(0%, 100%) scale(0.3) skew(25deg);
  -moz-transform: translate(0%, 100%) scale(0.3) skew(25deg);
  -ms-transform: translate(0%, 100%) scale(0.3) skew(25deg);
  transform: translate(0%, 100%) scale(0.3) skew(25deg);
}

.project-page ul li .box .content span {
  font-size: 16px;
  color: #005bac;
  letter-spacing: 2px;
  font-weight: bold;
}

.project-page ul li .box .content .title {
  font-size: 26px;
  font-weight: bold;
  margin-top: 8px;
}

.project-page ul li:hover .box .content .des {
  -webkit-transform: translate(0, 0) scale(1) skew(0);
  -moz-transform: translate(0, 0) scale(1) skew(0);
  -ms-transform: translate(0, 0) scale(1) skew(0);
  transform: translate(0, 0) scale(1) skew(0);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.project-det-page {
  padding: 80px 0;
}

.project-det-page .img {
  border-radius: 24px;
  overflow: hidden;
}

.project-det-page .img img {
  width: 100%;
  border-radius: inherit;
}

.project-det-page .content {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  margin-top: 20px;
}

.project-det-page .content strong {
  display: block;
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width: 1450px) {
  .inner-banner {
    margin-top: 127px;

  }
}

@media screen and (max-width: 1250px) {
  .inner-banner {
    margin-top: 60px;
  }

  .contact-page .contact-1 .left {
    width: 100%;
    padding-right: 0;
  }

  .contact-page .contact-1 .right {
    width: 100%;
    margin-top: 30px;
  }

  .news-page {
    padding-top: 40px;
  }
  .newdet-page {
    padding-top: 40px;
    padding-bottom: 40px;
}
  #index-body .i-news ul {
    margin: -8px;
  }

  #index-body .i-news ul li {
    padding: 8px;
  }

  .newdet-page .left {
    width: 100% !important;
    padding-right: 0;
  }

  .newdet-page .right {
    display: none;
  }
  .project-page ul {
    margin: -10px;
  }
  .project-page ul li {
    padding: 10px;
  }
  .project-page ul li .box .content span {
    letter-spacing: 0;
  }

  .project-page ul li .box .content .title {
    font-size: 20px;
  }
}

@media screen and (max-width: 1000px) {

  /*.inner-banner {
    height: 340px;
  }*/
  .inner-banner h2 {
    font-size: 30px;
  }

  .project-page ul li {
    width: 50% !important;
  }
  .contact-page .contact-1 {
    padding: 30px 0;
  }
}

@media screen and (max-width: 700px) {

  /*.inner-banner {
    height: 270px;
  }*/
  .contact-page .contact-1 .right .h3 {
    font-size: 28px;
  }

  .contact-page .contact-1 .right {
    padding: 40px 20px;
  }

  .news-page {
    padding-top: 20px;
  }
  .newdet-page .left .content h2 {
    font-size: 18px;
}
.newdet-page {
    padding-top: 20px;
    padding-bottom: 20px;
}
  .project-page ul li {
    width: 100% !important;
  }
}



.inner-page .sideBox .sideLeft {
  width: 18%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.inner-page .sideBox .sideLeft .widget {
  padding: 30px;
  margin-bottom: 30px;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.inner-page .sideBox .sideLeft .widget .tit {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 6px;
}

.inner-page .sideBox .sideLeft .widget ul {
  margin-bottom: 0;
  padding: 0;
}

.inner-page .sideBox .sideLeft .widget ul>li {
  margin-bottom: 13px;
  color: #555;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  font-weight: 400;
}

.inner-page .sideBox .sideLeft .widget ul>li a {
  padding-left: 20px;
}

.inner-page .sideBox .sideLeft .widget ul>li i {
  font-size: 22px;
  line-height: 2;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: -7px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.inner-page .sideBox .sideLeft .widget ul>li i.active {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.inner-page .sideBox .sideLeft .widget ul>li:last-child {
  margin-bottom: 0;
}

.inner-page .sideBox .sideLeft .widget ul>li:hover,
.inner-page .sideBox .sideLeft .widget ul>li.active {
  color: #005bac;
}

.inner-page .sideBox .sideLeft .widget ul>li ul {
  display: none;
  margin-top: 15px;
}

.inner-page .sideBox .sideLeft .widget ul>li ul li a {
  padding-left: 0;
  color: #999;
}

.inner-page .sideBox .sideLeft .widget ul>li ul li:hover a,
.inner-page .sideBox .sideLeft .widget ul>li ul li.active a {
  color: #000;
}

.inner-page .sideBox .sideLeft .widget ul>li.active ul {
  display: block;
}

.inner-page .sideBox .sideLeft .widget .form form input[type="text"],
.inner-page .sideBox .sideLeft .widget .form form textarea {
  width: 100%;
  height: 40px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 15px;
  font-size: 16px;
  padding: 10px;
}

.inner-page .sideBox .sideLeft .widget .form form textarea {
  height: 70px;
}

.inner-page .sideBox .sideLeft .widget .form form input[type="submit"] {
  width: 100%;
  height: 40px;
  background: #005bac;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  padding: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border: 0;
}

.inner-page .sideBox .sideLeft .widget .form form input[type="submit"]:hover {
  background: #333;
}

.inner-page .sideBox .sideRight {
  width: 82%;
  padding-left: 50px;
}

.inner-page .sideBox .sideRight .top .img {
  padding-right: 60px;
  vertical-align: middle;
}

.inner-page .sideBox .sideRight .top .text {
  vertical-align: middle;
}

.inner-page .sideBox .sideRight .top .text h1 {
  font-size: 30px;
  line-height: 1.6;
  font-weight: bold;
}

.inner-page .sideBox .sideRight .top .text .con {
  margin-top: 30px;
  max-height: 173px;
  overflow-y: auto;
  font-weight: 400;
}

.inner-page .sideBox .sideRight .bottom {
  margin-top: 75px;
}

.inner-page .sideBox .sideRight .bottom ul {
  margin: 0 -50px -75px 0;
}

.inner-page .sideBox .sideRight .bottom ul li {
  padding: 0 50px 75px 0;
}

.inner-page .sideBox .sideRight .bottom ul li .img-box {
  background: #fff;
}

.inner-page .sideBox .sideRight .bottom ul li .desc {
  margin-top: 20px;
}

.inner-page .sideBox .sideRight .bottom ul li .desc .tit {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;  

}

.inner-page .sideBox .sideRight .bottom ul li .desc .tit:hover {
  color: #005bac;
}

.inner-page .sideBox .sideRight .bottom ul li .desc p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 9px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.inner-page .m-page {
  text-align: center;
  padding-top: 20px;
}

.inner-page .m-page a,
.inner-page .m-page span {
  display: inline-block;
  margin: 2px 4px;
  min-width: 30px;
  line-height: 33px;
  height: 30px;
  color: #555;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.inner-page .m-page a:hover {
  color: #005bac;
}

.inner-page .m-page span {
  background: #005bac;
  color: #fff;
}

.prodet-page {
  padding: 105px 0 78px;
}

.prodet-page .prodet-1 .left {
  width: 37.813%;
}

.prodet-page .prodet-1 .left .big {
  background: #fff;
  text-align: center;
}

.prodet-page .prodet-1 .left .big img {
  display: inline-block;
  width: 100%;
}

.prodet-page .prodet-1 .left .gallery {
  margin-top: 23px;
}

.prodet-page .prodet-1 .left .gallery ul {
  margin-right: -23px;
}

.prodet-page .prodet-1 .left .gallery ul li {
  padding-right: 23px;
}

.prodet-page .prodet-1 .right {
  width: 62.187%;
  padding: 12px 0 0 58px;
}

.prodet-page .prodet-1 .right h1 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: bold;
}

.prodet-page .prodet-1 .right .con {
  font-weight: 400;
  margin-top: 30px;
  max-height: 290px;
  overflow-y: auto;
  line-height: 28px;
}

.prodet-page .prodet-1 .right .link {

  margin-top: 27px;
}

.prodet-page .prodet-1 .right .share {
  padding: 19px 0;
}

.prodet-page .prodet-1 .right .share span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 2;
}

.prodet-page .prodet-1 .right .share ul {
  display: inline-block;
  vertical-align: middle;
}

.prodet-page .prodet-1 .right .share ul li {
  width: auto;
  margin: 5px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 14px;
}

.prodet-page .prodet-1 .right .share ul li:hover {
  color: #005bac;
}

.prodet-page .prodet-2 {
  margin-top: 66px;
}

.prodet-page .prodet-2 .options ul li {
  width: auto;
  line-height: 40px;
  height: 40px;
  padding: 0 20px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.prodet-page .prodet-2 .options ul li i {
  margin-right: 5px;
}

.prodet-page .prodet-2 .options ul li:hover,
.prodet-page .prodet-2 .options ul li.active {
  background: #005bac;
  color: #fff;
}

.prodet-page .prodet-2 .ret {
  padding-top: 20px;
  font-size: 18px;
  line-height: 1.6;
}

.prodet-page .prodet-2 .ret p {
  padding: 5px 0;
}

.prodet-page .prodet-2 .ret table {
  margin: 5px 0;
}

.prodet-page .prodet-2 .ret table td {
  border: 1px solid #eee;
  font-size: 16px;
  line-height: 2;
}

.prodet-page .prodet-2 .ret table td p {
  padding: 0;
}

.prodet-page .prodet-2 .ret table tr:nth-child(1) {
  background: #005bac;
  color: #fff;
}

.prodet-page .prodet-2 .ret table tr:nth-child(even) {
  background: #f9f9f9;
}

.prodet-page .prodet-2 .ret dl dd {
  display: none;
}

.prodet-page .prodet-2 .ret form {
  margin-top: 20px;
  padding: 20px;
  -webkit-box-shadow: #ccc 0 0 10px 0;
  box-shadow: #ccc 0 0 10px 0;
}

.prodet-page .prodet-2 .ret form ul {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.prodet-page .prodet-2 .ret form ul li {
  margin-top: 10px;
  width: 49%;
  display: inline-block;
}

.prodet-page .prodet-2 .ret form ul li input {
  padding: 5px;
  border: #ccc solid 1px;
  width: 100%;
  font-size: 16px;
  background: transparent;
}

.prodet-page .prodet-2 .ret form ul li:nth-child(5) {
  width: 100%;
}

.prodet-page .prodet-2 .ret form ul li:nth-child(5) textarea {
  width: 100%;
  border: #ccc solid 1px;
  padding: 5px;
  font-size: 16px;
  background: transparent;
}

.prodet-page .prodet-2 .ret form ul li:nth-child(6) {
  width: 100%;
}

.prodet-page .prodet-2 .ret form ul li:nth-child(6) input {
  background: #005bac;
  color: #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.prodet-page .prodet-2 .ret form ul li:nth-child(6) input:hover {
  background: #333;
}

.prodet-page .prodet-3 {
  margin-top: 32px;
}

.prodet-page .prodet-3 .tit {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 42px;
  font-weight: 800;
}

.prodet-page .prodet-3 .content ul {
  margin: -11px;
}

.prodet-page .prodet-3 .content ul li {
  padding: 11px;
}

.prodet-page .prodet-3 .content ul li .box {
  display: block;
  -webkit-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
}

.prodet-page .prodet-3 .content ul li .box .content {
  padding: 20px 10px;
  text-align: center;
  margin-top: 20px;
}

.prodet-page .prodet-3 .content ul li .box .content .tit {
  font-size: 16px;
  line-height: 30px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.prodet-page .prodet-3 .content ul li .box .content .tit:hover {
  color: #005bac;
}

.prodet-page .prodet-3 .content ul li .box .content .category {
  font-size: 14px;
  line-height: 2;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: bold;
}

.prodet-page .prodet-3 .content ul li .box .content p {
  font-size: 14px;
  color: #888;
  line-height: 2;
  margin: 5px 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.prodet-page .prodet-3 .content ul li .box .content .mores {
  display: inline-block;
  vertical-align: middle;
  line-height: 28px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid #005bac;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: #005bac;
}

.prodet-page .prodet-3 .content ul li .box .content .mores i {
  margin-left: 5px;
}

.prodet-page .prodet-3 .content ul li .box .content .mores:hover {
  color: #fff;
  background: #005bac;
}

.faq-page .i-title {
  line-height: 1.2;
  margin-bottom: 50px;
}

.faq-page ul li {
  margin-bottom: 20px;
  cursor: pointer;
}

.faq-page ul li .title {
  background: white;
  padding: 20px 40px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}

.faq-page ul li .title i {
  position: absolute;
  right: 17px;
  top: 25px;
  width: 20px;
  height: 20px;
}

.faq-page ul li .title i::after {
  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: 1px;
  background-color: black;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.faq-page ul li .title i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: black;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.faq-page ul li .content {
  padding: 20px 40px;
  font-size: 18px;
  color: #333333;
}

.faq-page ul li.active .title i::before {
  opacity: 0;
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
}


.m-page a,
.m-page span {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0 3px;
  text-align: center;
  line-height: 35px;
  font-size: 18px;
  background: #fff;
  color: white;
}

.m-page a:hover,
.m-page span {
  background-color: #005bac;
}

.about-page .about-1 {
  padding-top: 115px;
}

.about-page .about-1 .left {
  padding-right: 60px;
  vertical-align: middle;
}

.about-page .about-1 .left .img {
  border-radius: 24px;
  overflow: hidden;
  display: inline-block;
}

.about-page .about-1 .left .img>img {
  border-radius: 24px;
}

.about-page .about-1 .left .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.about-page .about-1 .left .play:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
}

.about-page .about-1 .left .play:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}

.about-page .about-1 .right {
  padding-left: 0px;
  vertical-align: middle;
}

.about-page .about-1 .right .h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}

.about-page .about-1 .right .content {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  font-weight: 500;
  margin: 16px 0 46px;
}

.about-page .about-1 .right .wrap .column {
  position: relative;
  padding-left: 85px;
}

.about-page .about-1 .right .wrap .column .icon {
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 20px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about-page .about-1 .right .wrap .column .icon img {
  vertical-align: middle;
}

.about-page .about-1 .right .wrap .column .h4 {
  font-size: 19px;
  font-weight: bold;
}

.about-page .about-1 .right .wrap .column .text {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  margin-top: 5px;
}

.about-page .about-1 .right .wrap .column:first-child {
  padding-right: 20px;
}

.about-page .about-1 .scroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;

}

.about-page .about-1 .scroll .scroll-wrap {
  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-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-animation: move 30s linear infinite;
  -moz-animation: move 30s linear infinite;
  animation: move 30s linear infinite;
}

.about-page .about-1 .scroll .scroll-wrap div {
  margin: 0 20px;
}

.about-page .about-2 {
  background-color: #fbfbfb;
  position: relative;
  background-image: url(../images/history-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 105px 0 125px;
  margin:0 -42px;
}


.about-page .about-2 .list {
  position: relative;
}

.about-page .about-2 ul {
  padding: 0 55px;
}

.about-page .about-2 ul li {
  position: relative;
  padding-left: 35px;
  padding-bottom: 80px;
  vertical-align: bottom;
}

.about-page .about-2 ul li i {
  position: absolute;
  left: 8px;
  bottom: 0;
  width: 1px;
  height: 100%;
  border-left: 1px dashed #2559aa;
}

.about-page .about-2 ul li i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 100%;
  border: 3px solid white;
}

.about-page .about-2 ul li .year {
  font-size: 46px;
  font-weight: 600;
}

.about-page .about-2 ul li .des {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  min-height: 180px;
  max-height: 180px;
  overflow: auto;
}

.about-page .about-2 ul .slick-slide:nth-child(odd) li {
  -webkit-transform: translateY(120px);
  -moz-transform: translateY(120px);
  -ms-transform: translateY(120px);
  transform: translateY(120px);
  padding-bottom: 30px;
}

.about-page .about-2 ul .slick-slide:nth-child(odd) li .des {
  min-height: 110px;
  max-height: 110px;
  overflow: auto;
}

.about-page .about-2 .line {
  background: url(../images/history-arrow.png) no-repeat right;
  width: 100%;
  height: 45px;
  margin-top: -30px;
}

.about-page .about-3 {
  padding: 80px 0 120px;
}

.about-page .about-3 .i-title {
  margin: 10px 0 40px;
  color: #333;
}

.about-page .about-3 ul {
  margin: -13px;
}

.about-page .about-3 ul li {
  padding: 13px;
}

.about-page .about-3 ul li .img-box {
  border-radius: 24px;
}

.about-page .about-4 {
  padding: 120px 0 150px;
}

.about-page .about-4 .left .i-title {
  color: #333;
  margin: 5px 0 30px;
}

.about-page .about-4 .left .text {
  font-size: 18px;
  line-height: 24px;
}

.about-page .about-4 .right {
  padding-left: 65px;
}

.about-page .about-4 .right ul {
  margin: -15px;
}

.about-page .about-4 .right ul li {
  padding: 15px;
}

.about-page .about-5 {
  padding-top: 80px;
}



.about-page .about-5 .box {
  margin: -15px;
}

.about-page .about-5 .box .column {
  padding: 15px;
}

.about-page .about-5 .box .img {
  vertical-align: middle;
}

.about-page .about-5 .box .img img {
  border-radius: 20px;
}

.about-page .about-5 .box .content {
  vertical-align: middle;
}

.about-page .about-5 h4 {
  font-size: 24px;
  font-weight: bold;
}

.about-page .about-5 .des {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  margin-top: 20px;

}

.about-page .about-5 .des em {
  font-weight: bold;
}

.about-page .about-5 .line {
  width: 100%;
  height: 1px;
  background: #2559aa;
  position: relative;
  margin: 55px 0;
}

.about-page .about-5 .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2559aa;
}

.about-page .about-5 .line.line2::after {
  left: auto;
  right: 0;
}

.about-page .about-6 {
  padding: 100px 0;
}

.about-page .about-6 .i-title {
  margin-bottom: 65px;
}

.about-page .about-6 .box {
  background: url(../images/fh-11.jpg) no-repeat left white;
  background-size: auto 100%;
  border-radius: 20px;
}

.about-page .about-6 .box .content {
  width: 50%;
  margin-left: auto;
  padding: 80px 60px 80px 0;
}

.about-page .about-6 .box .content h4 {
  font-size: 24px;
  font-weight: bold;
}

.about-page .about-6 .box .content .des {
  font-size: 18px;
  line-height: 24px;
  margin: 20px 0 31px;
}

.about-page .about-6 .box .content .txt p {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  margin-bottom: 6px;
}

.about-page .about-6 .box .content .txt p:last-child {
  margin-bottom: 0;
}

.about-page .about-6 .box .content .txt p::after {
  content: "\e766";
  font-family: "iconfont";
  font-size: 16px;
  position: absolute;
  left: -30px;
  top: 4px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 100%;
  background: #2559aa;
  color: #fff;
  text-align: center;
}



.about-page .about-7 .left {
  width: 45%;
  padding-right: 90px;
  padding-top: 85px;
}

.about-page .about-7 .right {
  width: 55%;
}

.about-page .about-7 .left .i-title {
  line-height: 1.2;
}

.about-page .about-7 .left .text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #333;
  margin-top: 20px;
}

.about-page .about-7 .right .box {
  background: white;
  border-radius: 20px;
  padding: 40px 60px;
}

.about-page .about-7 .right .box h3 {
  font-size: 30px;
  font-weight: 700;
}

.about-page .about-7 .right .box p {
  font-size: 18px;
  margin: 15px 0 20px;
}

.about-page .about-7 .right .box form ul {
  margin: -9px;
}

.about-page .about-7 .right .box form ul li {
  padding: 9px;
}

.about-page .about-7 .right .box form ul li input,
.about-page .about-7 .right .box form ul li textarea {
  width: 100%;
  height: 55px;
  font-size: 18px;
  padding: 0 20px;
  border-radius: 30px;
  border: 1px solid #e7e7e8;
}

.about-page .about-7 .right .box form ul li textarea {
  height: 150px;
  padding: 20px;
}

.about-page .about-7 .right .box form ul li.wid-100 {
  width: 100%;
}

.about-page .about-7 .right .box form ul li input[type="submit"] {
  width: auto;
  background: #15141c;
  color: white;
  padding: 0 40px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.about-page .about-7 .right .box form ul li input[type="submit"]:hover {
  background: #005bac;
}

.profess-design-page .init-1 {
  padding: 120px 0;
}

.profess-design-page .init-1 .left {
  vertical-align: middle;
}

.profess-design-page .init-1 .left .i-title {
  color: #333;
}

.profess-design-page .init-1 .left .content {
  font-size: 21px;
  line-height: 32px;
  color: #333333;
  font-weight: 500;
  margin: 17px 0 50px;
}

.profess-design-page .init-1 .left ul li {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-left: 35px;
  color: #333;
  margin-bottom: 15px;
}

.profess-design-page .init-1 .left ul li .icon {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background-color: #2559aa;
  text-align: center;
  line-height: 22px;
  position: absolute;
  left: 0;
  top: 5px;
  color: white;
}

.profess-design-page .init-1 .right {
  padding-left: 60px;
  vertical-align: middle;
}

.profess-design-page .init-1 .right img {
  border-radius: 24px;
  margin: auto;
}

.profess-design-page .init-1 .right .font-18 {
  text-align: center;
}

.profess-design-page .init-1 .right .slick-dots {
  text-align: center;
  margin-top: 8px;
}

.profess-design-page .init-1 .right .slick-dots li {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 91, 172, 0.5);
  margin: 0 5px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.profess-design-page .init-1 .right .slick-dots li button {
  display: none;
}

.profess-design-page .init-1 .right .slick-dots li.slick-active {
  background: rgba(0, 91, 172, 1);
}



.profess-design-page .init-2 .i-title {
  color: #333333;

}

.profess-design-page .init-2 ul {
  margin: -25px;
}

.profess-design-page .init-2 ul li {
  padding: 25px;
}

.profess-design-page .init-2 ul li .box {
  background: white;
  border-radius: 24px;
}

.profess-design-page .init-2 ul li .box .img-box {
  border-radius: 24px;
}

.profess-design-page .init-2 ul li .box .content {
  padding: 35px 40px;
}

.profess-design-page .init-2 ul li .box .content .top {
  position: relative;
  padding-right: 160px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}

.profess-design-page .init-2 ul li .box .content .top .h4 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}

.profess-design-page .init-2 ul li .box .content .top p {
  font-size: 21px;
  line-height: 32px;
  font-weight: 500;
  color: #333333;
}

.profess-design-page .init-2 ul li .box .content .top img {
  position: absolute;
  right: 0;
  top: -30px;
  max-width: 154px;
}

.profess-design-page .init-2 ul li .box .content .des {
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  color: #333333;
  margin-top: 22px;
}

.quality-page .init-1 {
  padding: 90px 0 110px;
}

.quality-page .init-1 .left {
  vertical-align: middle;
}

.quality-page .init-1 .left .i-title {
  color: #333333;
}

.quality-page .init-1 .left .content {
  font-size: 21px;
  line-height: 32px;
  color: #333333;
  margin-top: 20px;
}

.quality-page .init-1 .left .content em {
  font-weight: bold;
}

.quality-page .init-1 .right {
  padding-left: 110px;
  vertical-align: middle;
}

.quality-page .init-1 .right ul {
  margin: -20px;
}

.quality-page .init-1 .right ul li {
  padding: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.quality-page .init-1 .right ul .slick-current li {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.quality-page .init-2 .i-title {
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}

.quality-page .init-2 ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  background-color: white;
  margin-bottom: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quality-page .init-2 ul li .content {
  padding: 60px;
  vertical-align: middle;
}

.quality-page .init-2 ul li .content .h5 {
  font-size: 30px;
  font-weight: bold;
  color: #333333;
}

.quality-page .init-2 ul li .content .line {
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  margin: 25px 0 20px;
}

.quality-page .init-2 ul li .content .des {
  font-size: 22px;
  line-height: 39px;
  color: #333333;
}

.quality-page .init-2 ul li .img {
  vertical-align: middle;
}

.quality-page .init-2 ul li .img img {
  width: 100%;
}

.quality-page .init-2 ul li:nth-child(2n-1) {
  -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;
}



.quality-page .init-3 .i-title {
  margin-bottom: 50px;
  color: #333333;
}

.quality-page .init-3 ul {
  margin: -14px;
}

.quality-page .init-3 ul li {
  padding: 14px;
}

.quality-page .init-3 ul li .img-box {
  border-radius: 24px;
}

.quality-page .init-3 ul li p {
  font-size: 22px;
  font-weight: 500;
  color: #333333;
  margin-top: 20px;
}



.process-page .item .i-title {
  color: #333;
  margin-bottom: 50px;
}

.process-page .item 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;
  margin: -25px;
}

.process-page .item ul li {
  padding: 25px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.process-page .item ul li .txt {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: #005bac;
  font-size: 20px;
  border-radius: 30px;
  color: white;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 120px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  text-align: center;
  font-weight: bold;
  padding: 5px;
}

.process-page .item ul li .txt:hover {
  background-color: white;
  color: black;
  border-color: #de3b3a;
}

.process-page .item ul li .txt::after {
  content: "";
  position: absolute;
  left: -webkit-calc(100% + 25px);
  left: -moz-calc(100% + 25px);
  left: calc(100% + 25px);
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background: url(../images/arrow-black.png) no-repeat center;
  width: 14px;
  height: 14px;
}

.process-page .item ul li:nth-child(6) {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -moz-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.process-page .item ul li:nth-child(7) {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -moz-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.process-page .item ul li:nth-child(8) {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -moz-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.process-page .item ul li:nth-child(9) {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -moz-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.process-page .item ul li:nth-child(10) {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.process-page .item ul li:nth-child(5) .txt::after {
  left: 50%;
  top: -webkit-calc(100% + 25px);
  top: -moz-calc(100% + 25px);
  top: calc(100% + 25px);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -moz-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.process-page .item ul li:nth-child(6) .txt::after,
.process-page .item ul li:nth-child(7) .txt::after,
.process-page .item ul li:nth-child(8) .txt::after,
.process-page .item ul li:nth-child(9) .txt::after,
.process-page .item ul li:nth-child(10) .txt::after {
  left: auto;
  right: -webkit-calc(100% + 25px);
  right: -moz-calc(100% + 25px);
  right: calc(100% + 25px);
  -webkit-transform: translate(50%, -50%) rotate(225deg);
  -moz-transform: translate(50%, -50%) rotate(225deg);
  -ms-transform: translate(50%, -50%) rotate(225deg);
  transform: translate(50%, -50%) rotate(225deg);
}

.process-page .item:nth-child(1) ul li:last-child {
  margin-left: auto;
}

.process-page .item ul li:last-child .txt::after {
  content: none;
}

.process-page .item:not(:first-child) {
  padding-top: 0;
}

.process-page .item:nth-child(2) ul li:last-child {
  margin-left: auto;
}





.capability-page .content {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  color: #333333;
}

.capability-page .content p {
  margin-bottom: 25px;
  position: relative;
  padding-left: 30px;
}

.capability-page .content p::after {
  content: "\e766";
  font-family: "iconfont";
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 100%;
  background: #2559aa;
  color: white;
  text-align: center;
}

.capability-page .list {
  margin-top: 60px;
}

.capability-page .list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.capability-page .list ul li {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.capability-page .list ul li>img {
  border-radius: inherit;
}

.capability-page .list ul li .title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px;
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.capability-page .list ul li.two_rows {
  grid-row: span 2;
}


.value-page ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: -25px -10px;
}

.value-page ul li:nth-child(2n) .img {
  order: 2;
}

.value-page ul li:nth-child(2n) .content {
  order: 1;
}

.value-page ul li .column {
  width: 50%;
  overflow: hidden;
  padding: 25px 10px;
}

.value-page ul li .img img {
  border-radius: 20px;
  width: 100%;
}

.value-page ul li .content .box {
  background: white;
  border-radius: 20px;
  padding: 20px 50px;
  height: 100%;
  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;
  -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;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.value-page ul li:nth-child(2n-1) .content .box {
  background-position: right;
}

.value-page ul li .content .box h4 {
  font-size: 24px;
  font-weight: bold;
}

.value-page ul li .content .box .des {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #333;
  margin-top: 15px;
}
@media screen and (max-width: 1500px) {
  .about-page .about-2 {
    margin:0;
  }
  .about-page .about-2 .ui.container.wraper{
    padding: 0 15px !important;
  }
}

@media screen and (max-width: 1450px) {
  .inner-page .sideBox .sideLeft {
    width: 22%;
  }

  .inner-page .sideBox .sideRight {
    width: 78%;
  }

  .inner-page .sideBox .sideLeft .widget {
    padding: 20px;
  }

  .inner-page .sideBox .sideRight .top .img {
    padding-right: 30px;
  }

  .inner-page .sideBox .sideRight .bottom ul {
    margin: 0 -30px -40px 0;
  }

  .inner-page .sideBox .sideRight .bottom ul li {
    padding: 0 30px 40px 0;
  }

  .prodet-page .prodet-1 .right {
    padding: 12px 0 0 30px;
  }

  .profess-design-page .init-2 ul li .box .content .top p {
    font-size: 18px;
  }

  .about-page .about-7 .left {
    padding-right: 45px;
  }
}

@media screen and (max-width: 1250px) {
  .about-page .about-1 {
    padding-top: 70px;
  }
  .about-page .about-1 .left {
    width: 100%;
    padding-right: 0;
  }

  .about-page .about-1 .right {
    width: 100%;
    margin-top: 20px;
  }

  .about-page .about-2 ul li .year {
    font-size: 32px;
  }

  .about-page .about-2 ul {
    padding: 0 15px;
  }

  .about-page .about-7 .left {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
  }

  .about-page .about-7 .right {
    width: 100%;
    margin-top: 30px;
  }
  .about-page .about-5 {
      padding-top: 40px;
  }
  .profess-design-page .init-1 .left .content {
    font-size: 18px;
    line-height: 28px;
    margin: 5px 0 25px;
  }

  .profess-design-page .init-1 .left ul li {
    font-size: 18px;
  }

  .profess-design-page .init-2 ul li .box .content .top .h4 {
    font-size: 20px;
  }

  .profess-design-page .init-2 ul li {
    padding: 15px;
  }

  .profess-design-page .init-2 ul {
    margin: -15px;
  }

  .quality-page .init-1 .right {
    padding-left: 45px;
  }

  .quality-page .init-2 ul li .content .h5 {
    font-size: 22px;
  }

  .quality-page .init-2 ul li .content .des {
    font-size: 18px;
    line-height: 28px;
  }

  .quality-page .init-2 ul li .content {
    padding: 30px;
  }

  .process-page .item ul li {
    width: 25% !important;
  }

  .process-page .item:nth-child(2) ul li:last-child,
  .process-page .item:nth-child(1) ul li:last-child {
    margin-left: 0;
  }

  .process-page .item ul li:nth-child(5) {
    order: 5;
  }

  .process-page .item ul li:nth-child(6) {
    order: 4;
  }

  .process-page .item ul li:nth-child(7) {
    order: 3;
  }

  .process-page .item ul li:nth-child(8) {
    order: 2;
  }

  .process-page .item ul li:nth-child(9) {
    order: 6;
  }

  .process-page .item ul li:nth-child(10) {
    order: 7;
  }

  .process-page .item ul li:nth-child(8) .txt::after,
  .process-page .item ul li:nth-child(4) .txt::after {
    left: 50%;
    top: -webkit-calc(100% + 25px);
    top: -moz-calc(100% + 25px);
    top: calc(100% + 25px);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -moz-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .process-page .item ul li:nth-child(5) .txt::after {
    left: auto;
    right: -webkit-calc(100% + 25px);
    right: -moz-calc(100% + 25px);
    right: calc(100% + 25px);
    top: 50%;
    -webkit-transform: translate(50%, -50%) rotate(225deg);
    -moz-transform: translate(50%, -50%) rotate(225deg);
    -ms-transform: translate(50%, -50%) rotate(225deg);
    transform: translate(50%, -50%) rotate(225deg);
  }

  .process-page .item ul li:nth-child(9) .txt::after {
    content: "";
    position: absolute;
    left: -webkit-calc(100% + 25px);
    left: -moz-calc(100% + 25px);
    left: calc(100% + 25px);
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    background: url(/template/en/images/arrow-black.png) no-repeat center;
    width: 14px;
    height: 14px;
  }

  .process-page .item:nth-child(2) ul li:nth-child(9) .txt::after {
    content: none;
  }

  .process-page .item ul li .txt {
    font-size: 17px;
  }

  .capability-page .list ul li .title {
    padding: 10px;
    font-size: 22px;
  }
}

@media screen and (max-width: 1100px) {
  .inner-page .sideBox .sideRight .bottom ul li .desc .tit {
    font-size: 21px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 1000px) {
  .inner-page .sideBox .sideLeft {
    display: none;
  }

  .inner-page .sideBox .sideRight {
    width: 100%;
    padding: 0;
    margin-top: 4%;
  }

  .inner-page .sideBox .sideRight .top .text .con {
    margin-top: 20px;
  }

  .inner-page .sideBox .sideRight .bottom {
    margin-top: 30px;
  }

  .inner-page .sideBox .sideRight .bottom ul {
    margin: 0 -15px -20px 0;
  }

  .inner-page .sideBox .sideRight .bottom ul li {
    padding: 0 15px 20px 0;
  }

  .prodet-page {
    padding: 60px 0;
  }

  .prodet-page .prodet-1 .right .con {
    margin-top: 12px;
  }

  .prodet-page .prodet-1 .right .link {
    font-size: 18px;
    /*padding: 10px 10px 10px 20px;*/
  }

  .prodet-page .prodet-1 .right .link i {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .about-page .about-1 {
    padding-top: 50px;
  }
  .about-page .about-4 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }

  .about-page .about-4 .left {
    width: 100%;
  }

  .about-page .about-2 {
    padding: 35px 0;
  }

  .about-page .about-3 {
    padding: 35px 0;
  }

  .about-page .about-4 {
    padding: 35px 0;
  }

  .about-page .about-5 .box .column {
    width: 100%;
  }

  .about-page .about-6 .box .content {
    width: 100%;
    padding: 40px 25px 40px 0;

  }

  .about-page .about-6 .box {
    background: white;
    padding-left: 45px;
  }

  .profess-design-page .init-1 .left {
    width: 100%;
  }

  .profess-design-page .init-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }

  .profess-design-page .init-1 {
    padding: 35px 0;
  }

  .profess-design-page .init-2 ul li .box .content {
    padding: 35px 15px;
  }

  .profess-design-page .init-2 ul li .box .content .top img {
    max-width: 90px;
    top: -10px;
  }

  .profess-design-page .init-2 ul li .box .content .top {
    padding-right: 100px;
  }

  .quality-page .init-1 .left {
    width: 100%;
  }

  .quality-page .init-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }

  .quality-page .init-1 {
    padding: 35px 0;
  }

  .quality-page .init-2 ul li .content .line {
    margin: 12px 0 10px;
  }
  .quality-page .init-1 .right ul li{
    transform:scale(1)!important;
  }

  .process-page .item ul li {
    width: 33% !important;
  }

  .process-page .item:nth-child(1) ul li:last-child {
    margin-left: auto;
  }

  .process-page .item ul li:nth-child(4) {
    order: 6;
  }

  .process-page .item ul li:nth-child(5) {
    order: 5;
  }

  .process-page .item ul li:nth-child(6) {
    order: 4;
  }

  .process-page .item ul li:nth-child(7) {
    order: 7;
  }

  .process-page .item ul li:nth-child(8) {
    order: 8;
  }

  .process-page .item ul li:nth-child(9) {
    order: 9;
  }

  .process-page .item ul li:nth-child(10) {
    order: 10;
    margin-left: auto;
  }

  .process-page .item ul li:nth-child(9) .txt::after,
  .process-page .item ul li:nth-child(6) .txt:after,
  .process-page .item ul li:nth-child(3) .txt::after {
    left: 50%;
    top: -webkit-calc(100% + 25px);
    top: -moz-calc(100% + 25px);
    top: calc(100% + 25px);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -moz-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .process-page .item ul li:nth-child(4) .txt:after {
    left: auto;
    right: -webkit-calc(100% + 25px);
    right: -moz-calc(100% + 25px);
    right: calc(100% + 25px);
    top: 50%;
    -webkit-transform: translate(50%, -50%) rotate(225deg);
    -moz-transform: translate(50%, -50%) rotate(225deg);
    -ms-transform: translate(50%, -50%) rotate(225deg);
    transform: translate(50%, -50%) rotate(225deg);
  }

  .process-page .item ul li:nth-child(8) .txt:after,
  .process-page .item ul li:nth-child(7) .txt:after {
    left: -webkit-calc(100% + 25px);
    left: -moz-calc(100% + 25px);
    left: calc(100% + 25px);
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .capability-page .list ul {
    gap: 15px;
  }

  .capability-page .list ul li {
    border-radius: 10px;
  }

  .value-page ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 5%;
  }

  .value-page ul li:nth-child(1) {
    margin-top: 0;
  }
  .value-page ul li .column {
    width: 100%;
    padding: 10px;
  }

  .value-page ul li:nth-child(2n) .img {
    order: 1;
  }

  .value-page ul li:nth-child(2n) .content {
    order: 2;
  }
}

@media screen and (max-width: 800px) {
  .quality-page .init-2 ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .quality-page .init-2 ul li .content {
    width: 100%;
  }

  .quality-page .init-2 ul li .img {
    width: 100%;
  }

  .capability-page .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .about-5 {
      padding-top: 20px;
  }
}

@media screen and (max-width: 700px) {
  .inner-page .sideBox .sideRight .top .img {
    display: none;
  }

  .inner-page .sideBox .sideRight .top .text {
    width: 100%;
  }

  .prodet-page {
    padding: 30px 0;
  }

  .prodet-page .prodet-1 .left {
    width: 100%;
  }

.font-18.mt-20.mb-20.Auxil-catdes {
    line-height: 28px;
}
  .prodet-page .prodet-1 .right {
    width: 100%;
    padding: 20px 0 0 0;
  }

  .prodet-page .prodet-2 {
    margin-top: 30px;
  }

  .about-page .about-1 {
    padding-top: 30px;
  }

  .about-page .about-1 .right .wrap .column {
    width: 100%;
    margin: 15px 0;
  }


  .about-page .about-2 ul li .des {
    min-height: 110px;
    max-height: 110px;
  }

  .about-page .about-2 ul .slick-slide:nth-child(odd) li {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    padding-bottom: 80px;
  }

  .about-page .about-6 .i-title {
    margin-bottom: 30px;
  }

  .about-page .about-6 {
    padding: 40px 0;
  }

  .about-page .about-7 .right .box {
    padding: 40px 20px;
  }

  .about-page .about-7 .right .box form ul li {
    width: 100%;
  }
  .about-page .about-5 .line{
    margin: 20px 0;
  }

  .process-page .item ul li {
    width: 50% !important;
  }

  .process-page .item ul li:nth-child(1) {
    order: 1;
  }

  .process-page .item ul li:nth-child(2) {
    order: 2;
  }

  .process-page .item ul li:nth-child(3) {
    order: 4;
  }

  .process-page .item ul li:nth-child(4) {
    order: 3;
  }

  .process-page .item ul li:nth-child(5) {
    order: 5;
  }

  .process-page .item ul li:nth-child(6) {
    order: 6;
  }

  .process-page .item ul li:nth-child(7) {
    order: 8;
  }

  .process-page .item ul li:nth-child(8) {
    order: 7;
  }

  .process-page .item ul li:nth-child(9) {
    order: 9;
  }

  .process-page .item ul li:nth-child(10) {
    order: 10;
  }

  .process-page .item ul li:nth-child(8) .txt:after,
  .process-page .item ul li:nth-child(6) .txt:after,
  .process-page .item ul li:nth-child(4) .txt:after,
  .process-page .item ul li:nth-child(2) .txt:after {
    left: 50%;
    top: -webkit-calc(100% + 25px);
    top: -moz-calc(100% + 25px);
    top: calc(100% + 25px);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -moz-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .process-page .item ul li:nth-child(7) .txt:after,
  .process-page .item ul li:nth-child(3) .txt:after {
    left: auto;
    right: -webkit-calc(100% + 25px);
    right: -moz-calc(100% + 25px);
    right: calc(100% + 25px);
    top: 50%;
    -webkit-transform: translate(50%, -50%) rotate(225deg);
    -moz-transform: translate(50%, -50%) rotate(225deg);
    -ms-transform: translate(50%, -50%) rotate(225deg);
    transform: translate(50%, -50%) rotate(225deg);
  }

  .process-page .item ul li:nth-child(9) .txt:after,
  .process-page .item ul li:nth-child(5) .txt:after {
    left: -webkit-calc(100% + 25px);
    left: -moz-calc(100% + 25px);
    left: calc(100% + 25px);
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .value-page ul li .content .box {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 500px) {
  .inner-page .sideBox .sideRight .top .text h1 {
    font-size: 25px;
  }

  .prodet-page .prodet-1 .right h1 {
    font-size: 25px;
  }

  .prodet-page .prodet-2 .ret form ul li {
    width: 100%;
  }

  .quality-page .init-1 .left .content {
    font-size: 18px;
    line-height: 28px;
  }

  .quality-page .init-3 .i-title,
  .quality-page .init-2 .i-title {
    margin-bottom: 25px;
  }

  .quality-page .init-2 ul li .content {
    padding: 30px 15px;
  }

  .process-page .item ul li {
    width: 100% !important;
  }

  .process-page .item ul li:nth-child(1) {
    order: 1;
  }

  .process-page .item ul li:nth-child(2) {
    order: 2;
  }

  .process-page .item ul li:nth-child(3) {
    order: 3;
  }

  .process-page .item ul li:nth-child(4) {
    order: 4;
  }

  .process-page .item ul li:nth-child(5) {
    order: 5;
  }

  .process-page .item ul li:nth-child(6) {
    order: 6;
  }

  .process-page .item ul li:nth-child(7) {
    order: 7;
  }

  .process-page .item ul li:nth-child(8) {
    order: 8;
  }

  .process-page .item ul li:nth-child(9) {
    order: 9;
  }

  .process-page .item ul li:nth-child(10) {
    order: 10;
  }

  .process-page .item ul li .txt::after {
    left: 50% !important;
    top: -webkit-calc(100% + 25px) !important;
    top: -moz-calc(100% + 25px) !important;
    top: calc(100% + 25px) !important;
    -webkit-transform: translate(-50%, -50%) rotate(135deg) !important;
    -moz-transform: translate(-50%, -50%) rotate(135deg) !important;
    -ms-transform: translate(-50%, -50%) rotate(135deg) !important;
    transform: translate(-50%, -50%) rotate(135deg) !important;
  }

  .capability-page .list ul {
    grid-template-columns: repeat(1, 1fr);
  }



  .capability-page .content {
    font-size: 17px;
    line-height: 22px;
    font-weight: normal;
    color: #333;
  }

  .capability-page .content p {
    margin-bottom: 14px;
  }

  .about-page .about-6 .box .content {
    padding: 35px 20px 30px 0;
  }
}



.gallery-page ul {
  margin: -15px;
}

.gallery-page ul li {
  padding: 15px;
  text-align: center;
}

.gallery-page ul li p {
  font-size: 18px;
  margin-top: 15px;
}

.seoPublic .Auxil-news .list ul li .content p {
    line-height: 28px;
}


#Pop_UpsBtn {
  display: none !important;
}
.mbx.Auxil-crumbs {
    font-size: 16px;
    line-height: 30px;
}
.seoPublic>div:nth-child(odd) {
  background: transparent;
}
.seoPublic .Auxil-related .list ul li .box .content a.more{
  background: transparent;
  
}