@font-face {
  font-family: 'DMSans';
  src: url(../fonts/DMSans-Light.ttf) format('truetype'), url(../fonts/DMSans-Light.eot) format('eot'), url(../fonts/DMSans-Light.woff) format('woff'), url(../fonts/DMSans-Light.woff2) format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'DMSans';
  src: url(../fonts/DMSans-Regular.ttf) format('truetype'), url(../fonts/DMSans-Regular.eot) format('eot'), url(../fonts/DMSans-Regular.woff) format('woff'), url(../fonts/DMSans-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'DMSans';
  src: url(../fonts/DMSans-Medium.ttf) format('truetype'), url(../fonts/DMSans-Medium.eot) format('eot'), url(../fonts/DMSans-Medium.woff) format('woff'), url(../fonts/DMSans-Medium.woff2) format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'DMSans';
  src: url(../fonts/DMSans-Bold.ttf) format('truetype'), url(../fonts/DMSans-Bold.eot) format('eot'), url(../fonts/DMSans-Bold.woff) format('woff'), url(../fonts/DMSans-Bold.woff2) format('woff2');
  font-weight: bold;
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #0067bd;
  --color: #0067bd;
}

body {
  font-family: "DMSans";
  font-weight: 400;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1600px;
}

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

#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 30px;
  left: 0;
  transition: top .5s;
}
#header.active,
#header.inner {
  top: 0;
}
#header.active .nav .ui.menu .menu-box ul.menu > li,
#header.inner .nav .ui.menu .menu-box ul.menu > li {
  color: black;
}
#header .nav .ui.menu .h-search img {
  transition: .5s;
}
#header.active .nav .ui.menu .h-search img,
#header.inner .nav .ui.menu .h-search img{
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
}
#header .nav .ui.menu .msgBtn img {
  transition: .5s;
}
#header.active .nav .ui.menu .msgBtn img,
#header.inner .nav .ui.menu .msgBtn img{
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
}
#header .nav {
  display: inline-block;
  width: 100%;
  transition: background-color .5s,box-shadow .5s;
}
#header.active .nav {
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#header .nav .ui.menu {
  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;
  margin: 0 auto;
}
#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: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 20px;
  font-size: 16px;
  color: white;
  -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: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
}
#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: -10px;
  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);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#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 ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-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 ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-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:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
  margin-right: 30px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #fd2318;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #fd2318;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #fd2318;
  background-color: white;
}
/*#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}*/

.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#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: #fd2318 !important;
}

#mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    display: none;
    z-index: 200;
}
#mobile:before {
    content: '';
    width: 100%;
    height: 200%;
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    background: rgba(0, 0, 0, 0.13);
    z-index: -1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
#mobile .m-search {
    padding: 10px 15px;
    background: #0d95e8;
    z-index: 2;
    position: relative;
}
#mobile .m-search form {
    width: 100%;
    padding-right: 50px;
    position: relative;
}
#mobile .m-search form input {
    width: 100%;
    line-height: 40px;
    height: 40px;
    border-radius: 5px;
    border: none;
    padding: 0 15px;
    background: url("../images/icon-search-black.png") center left 5px no-repeat white;
    background-size: 14px;
    padding-left: 25px;
    font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
    text-align: center;
    background: #333;
    z-index: 1;
    position: relative;
    line-height: 60px;
    height: 60px;
}
#mobile .m-logo img {
    max-height: 40px;
    display: inline-block;
    vertical-align: middle;
    max-width: 200px;
}
#mobile .m-btn {
    position: absolute;
    bottom: 16px;
    left: 15px;
    width: 30px;
    z-index: 2;
    height: 24px;
}
#mobile .m-btn i {
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background: white;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
#mobile .m-btn i.ie1 {
    margin-top: -10px;
}
#mobile .m-btn i.ie3 {
    margin-top: 10px;
}
#mobile .box {
    position: fixed;
    background: white;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 0;
    height: 100%;
    overflow: auto;
    top: 0;
    padding: 25px;
    padding-top: 145px;
}
#mobile .m-nav ul li {
    display: block;
	position: relative;
}
#mobile .m-nav ul li a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    text-transform: capitalize;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
    background: #eee;
    padding-left: 15px;
}
#mobile .m-nav ul li i{
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
    display: none;
}
#mobile .m-nav ul li li a {
    padding-left: 30px;
    position: relative;
    font-size: 14px;
}
#mobile .m-nav ul li li a:after {
    content: '-';
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
    padding-left: 30px;
}
#mobile .yuy {
    padding: 20px 0;
}
#mobile .yuy h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
#mobile .yuy ul li {
    width: auto;
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    padding-right: 5px;
    border-right: 1px solid #eee;
    margin-bottom: 5px;
}
#mobile .yuy ul li img {
    max-width: 30px;
}
#mobile h6 {
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #eee;
}
#mobile #gotop {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #eee;
    background: white;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    position: fixed;
    right: 10px;
    bottom: 20px;
    display: none;
}
#mobile.active .m-btn i {
    margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
    opacity: 0;
}
#mobile.active .m-btn i.ie3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#mobile.active:before {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
#mobile.active .box {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
@media screen and (max-width: 1250px) {
  #banner,
  .mbx {
    margin-top: 120px;
  }
  .nav-height {
    display: none;
  }
  .inner-page {
    padding-top: 40px;
  }
}
.hover-language ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  right: 0;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  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.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.hover-language ul.sub-menu li a {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.hover-language ul.sub-menu li:hover a {
  background: #ffb11b;
  color: white;
}
.hover-language:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner li {
  position: relative;
}
#banner li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/mask.png) center;
  background-size: auto 100%;
}
#banner .content {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  bottom: 10%;
}
#banner .container {
  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: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#banner .page {
  margin-bottom: 50px;
  color: white;
  line-height: 1;
}
#banner .page span {
  display: inline-block;
  vertical-align: text-top;
}
#banner h2 {
  line-height: 1.1;
  font-weight: bold;
  color: white;
}
.btn1 {
  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-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.btn1 span {
  border-bottom: 1px solid currentColor;
}
.btn1.on {
  color: white;
}
@keyframes mx {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.btn1:hover i {
  animation: mx 1s ease-in-out infinite;
}
.i-category {
  padding: 90px 0;
}
.i-category ul {
  margin: -10px;
}
.i-category ul li {
  padding: 10px;
}
.i-category .mml-text .text {
  padding: 60px;
  background-color: #f0f0f0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-category .mml-text:hover .text {
  background-color: black;
}
.i-category .mml-text:hover .text a {
  color: white;
}
.tit1 {
  font-size: 60px;
  line-height: 1;
  font-weight: 500;
}
.our-product {
  padding: 50px 0;
}
.our-product .arrow {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.our-product .arrow img {
  vertical-align: middle;
}
.our-product .all {
  margin-left: 35px;
  vertical-align: middle;
  display: inline-block;
  line-height: 50px;
  padding: 0 25px;
  border-radius: 5px;
  border: 1px solid #999999;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .all:hover {
  color: white;
  background-color: black;
}
.our-product .list ul {
  margin: -15px;
}
.our-product .list ul li {
  padding: 15px;
}
.our-product .list .mml-text {
  background-color: #f5f5f5;
  padding: 20px 15px;
}
.our-product .list .mml-text img {
  display: block;
  margin: auto;
}
.our-product .list .mml-text a.join {
  background-color: white;
  border-radius: 5px;
  line-height: 38px;
  height: 38px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .list .mml-text a.join:hover {
  color: white;
  background-color: black;
}
.our-about {
  padding: 90px 0;
}
.our-about h1 {
  display: inline-block;
}
.our-about .left {
  vertical-align: middle;
}
.our-about .left a {
  border: 1px solid #999999;
  padding: 10px 40px;
  border-radius: 5px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-about .left a:hover {
  color: white;
  background-color: black;
}
.our-about .right {
  vertical-align: middle;
}
.i-advantage {
  padding: 100px 0;
  background-color: #f5f5f5;
}
.i-advantage ul {
  margin: -40px;
}
.i-advantage ul li {
  padding: 40px;
}
.i-advantage ul li i {
  height: 60px;
}
.i-advantage ul li i img {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-advantage ul li .name {
  font-weight: 500;
}
.i-advantage ul li p {
  font-weight: 300;
}
.i-advantage ul li a {
  border-bottom: 1px solid currentColor;
}
.i-advantage ul li:hover i img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.i-other {
  padding-top: 150px;
}
.i-other .box {
  /*background: url(../images/other-bg.jpg) no-repeat center fixed;
  padding: 230px 0 200px;*/
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.i-other .content {
  max-width: 510px;
  margin: auto;
  background-color: white;
  padding: 40px 60px 20px;
}
.i-other .name {
  font-size: 27px;
  font-weight: 500;
}
.i-other a {
  border: 1px solid #b6b6b6;
  border-radius: 5px;
  padding: 10px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-other a:hover {
  color: white;
  background-color: black;
}
.our-news {
  padding: 120px 0;
}
.our-news p {
  font-weight: 300;
}
.our-news .left {
  width: 30%;
  padding-right: 100px;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}
.our-news .right {
  width: 70%;
}
.our-news .right ul li:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}
.our-news .right .img {
  vertical-align: middle;
}
.our-news .right .text {
  vertical-align: middle;
  padding-left: 50px;
}
.our-news .right .text time {
  font-weight: 300;
}
.our-news .right .text .name {
  font-size: 24px;
  line-height: 1.3;
}
.our-news .right .text a.join {
  max-width: 240px;
  text-align: center;
  border: 1px solid #b6b6b6;
  border-radius: 5px;
  padding: 10px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .right .text a.join:hover {
  color: white;
  background-color: black;
}
.contact-box {
  background: url(/ewinumbrella/2026/03/26/444.jpg) no-repeat center;
  background-size: cover;
  padding: 90px 0;
}
.contact-box .tit2 {
  font-size: 30px;
  line-height: 1;
  color: white;
}
.contact-box p {
  color: white;
  font-weight: 300;
}
.contact-box .left {
  width: 25%;
}
.contact-box .right {
  width: 75%;
}
.contact-box .right form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-box .right form input {
  padding: 0 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 60px;
  border: none;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-right: 5px;
}
.contact-box .right form input[name='subject'] {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  -moz-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
}
.contact-box .right form input[name='content'] {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  -moz-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
}
.contact-box .right form input[type='submit'] {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: white;
  background-color: #0067bd;
  text-transform: uppercase;
  transition: .5s ease;
}
.contact-box .right form input[type='submit']:hover {
  background-color: #000000;
}
#footer {
  background-color: black;
  color: #FFFFFF;
}
#footer .foot-top {
  padding: 90px 0 50px;
}

#footer .foot-top h2 {
  font-size: 42.68px;
  line-height: 1.2;
  color: white;
  font-weight: bold;
}
#footer .foot-top .foot-block .box:not(:last-child) {
  margin-bottom: 55px;
}
#footer .foot-top .foot-block h4 {
  color: white;
}
#footer .foot-top .foot-block ul li {
  color: white;
  line-height: 2;
}
#footer .foot-top .foot-block ol {
  max-width: 210px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#footer .foot-top .foot-block .social-links {
  color: white;
}
#footer .foot-top .foot-block .social-links i {
  width: 35px;
}


#footer .foot-top .foot-block .tel {
  font-size: 30px;
  color: white;
  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;
}
#footer .foot-top .foot-block .tel img {
  margin-right: 15px;
}
#footer .foot-top .foot-block .add {
  color: white;
}
#footer .foot-top .foot-block .mail {
  color: white;
}
#footer .foot-top .foot-block .mail span {
  border-bottom: 1px solid white;
}
#footer hr {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#footer .foot-bottom {
  padding: 15px 0;
}
#footer .foot-bottom p,
#footer .foot-bottom a {
  color: white;
  display: inline-block;
  vertical-align: middle;
}
#footer .foot-bottom img {
  max-height: 16px;
  vertical-align: middle;
}

#footer .foot-bottom a.login {
  display: inline;
  border-bottom: 1px solid currentColor;
}

@media screen and (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #header {
    top: 0;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
    font-size: 16px;
  }
  #header .nav .ui.menu .h-search {
    margin: 0;
  }
  #banner h2 {
    font-size: 60px;
  }
  .tit1 {
    font-size: 40px;
  }
  .i-advantage ul {
    margin: -20px;
  }
  .i-advantage ul li {
    padding: 20px;
  }

  #footer .foot-top .left {
    width: 100%;
  }

  #footer .foot-top .right {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }

  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 14px;
  }

  #header .nav .ui.menu .logo {
    width: 150px;
  }
  .i-category .mml-text .text a span {
    font-size: 18px;
  }
  .i-category .mml-text .text {
    padding: 40px;
  }
  .our-about .right {
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .logo {
    width: 100px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 10px;
    font-size: 14px;
  }

  #banner h2 {
    font-size: 40px;
  }
  .font-18 {
    font-size: 16px;
  }
  .our-news .left {
    padding-right: 40px;
  }
  .contact-box .left {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .contact-box .right {
    width: 100%;
  }

  #footer .foot-top h2 {
    font-size: 30px;
  }
  #footer .foot-top .foot-block .tel {
    font-size: 24px;
  }

}
@media screen and (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #mobile {
    display: block;
  }
  #header {
    display: none;
  }
  #banner .page {
    margin-bottom: 30px;
  }
  #banner .page span {
    font-size: 22px;
  }
  .font-18 {
    font-size: 14px;
  }
  #banner h2 {
    font-size: 30px;
  }
  .i-category .mml-text .text {
    padding: 20px;
  }
  .i-category .mml-text .text a span {
    font-size: 16px;
  }
  .tit1 {
    font-size: 30px;
  }
  .our-product .top {
    text-align: center;
  }
  .our-product .top .fl,
  .our-product .top .fr {
    float: none;
  }
  .our-product .top .fr {
    display: none;
  }
  .i-category {
    padding: 60px 0;
  }
  .our-about {
    padding: 60px 0;
    text-align: center;
  }
  .our-about .left {
    width: 100%!important;
    padding: 0;
    margin-bottom: 60px;
  }
  .our-about .right {
    width: 100%!important;
  }
  .i-advantage {
    padding: 60px 0;
  }
  .i-advantage ul li {
    width: 50%!important;
  }
  .i-other {
    padding-top: 60px;
  }

  .our-news {
    padding: 60px 0;
  }
  .our-news .left {
    width: 100%;
    position: relative;
    top: auto;
    padding: 0;
    margin-bottom: 40px;
  }
  .our-news .right {
    width: 100%;
  }
  .our-news .right .img {
    width: 100%;
    margin-bottom: 30px;
  }
  .our-news .right .text {
    width: 100%;
    padding: 0;
  }
  .contact-box .right form {
    display: block;
    font-size: 0;
    margin-right: -5px;
  }
  .contact-box .right form input {
    width: -webkit-calc(33.33% - 5px);
    width: -moz-calc(33.33% - 5px);
    width: calc(33.33% - 5px);
    margin-bottom: 5px;
  }
  .contact-box .right form input[name='content'] {
    width: -webkit-calc(50% - 5px);
    width: -moz-calc(50% - 5px);
    width: calc(50% - 5px);
  }
  .contact-box .right form input[type='submit'] {
    width: -webkit-calc(50% - 5px);
    width: -moz-calc(50% - 5px);
    width: calc(50% - 5px);
  }

  #footer .foot-top .foot-block.three {
    display: none;
  }
  #footer .foot-top {
    padding: 40px 0;
  }

  #footer .foot-bottom .fl,
  #footer .foot-bottom .fr {
    float: none;
    text-align: center;
  }

  .hide-1000 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  #banner .container {
    display: block;
  }
  #banner .slick-active .content {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
  }
  #banner .page {
    margin-bottom: 15px;
  }
  #banner .left {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .i-advantage {
    display: none;
  }
  .i-other {
    display: none;
  }
  .our-news .right .text .name {
    font-size: 18px;
  }
  .font-16 {
    font-size: 14px;
  }
  .contact-box {
    padding: 60px 0;
  }
  .contact-box .right form input {
    width: 100%!important;
    height: 40px;
  }
  .contact-box .right form input[type='submit'] {
    font-size: 16px;
  }
  .contact-box .tit2 {
    font-size: 24px;
  }
  #footer .foot-top h2 {
    font-size: 24px;
  }
  #footer .foot-top .foot-block .tel {
    font-size: 20px;
  }
  #footer .foot-bottom img {
    max-height: 14px;
  }
  #banner .page {
    display: none;
  }
  .tit1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  #banner h2 {
    font-size: 20px;
  }
}



.more {
    display: inline-block;
    position: relative;
    z-index: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.more img {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.more em {
    display: inline-block;
    vertical-align: middle;
    margin-left: 11px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.more:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -moz-transition: transform .5s ease,-moz-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease,-webkit-transform .5s ease,-moz-transform .5s ease;
    -moz-transition: transform .5s ease;
    -ms-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    background: var(--black)
}

.more:hover img {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px)
}

.more:hover em {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px)
}



.mbx {
  position: relative;
  border-top: 1px solid #e4e4e4;
  padding-top: 32px;
  color: #0e0e0e;
  line-height: 30px;
  text-transform: uppercase;
  font-size: 0;
}
.mbx a {
  color: #626262;
  position: relative;
  margin-right: 16px;
  font-size: 14px;
}
.mbx span::before{
  content: '';
  width: 1px;
  height: 12px;
  background: #000;
  position: absolute;
  top: 3px;
  left: 0;
}
.mbx span{
  font-weight: bold;
  font-size: 14px;
  padding-left: 16px;
  position: relative;
}
/*.mbx span {
  margin-left: 16px;
}*/
.inner-banner {
  margin-top: 37px;
}
.inner-banner .box {
  background-position: center center;
  background-repeat: no-repeat;
  height: 787px;
  position: relative;
}
.inner-banner .box h2 {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 110px;
  font-weight: bold;
  color: #fefefe;
  font-style: normal;
}
.inner-banner .box .info {
  position: absolute;
  bottom: 28px;
  left: 54px;
  right: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
.inner-banner .box .info ul {
  text-align: center;
  display: -webkit-box;
  display: flex;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -webkit-justify-content: center;
  padding-top: 20px;
  margin-right: -80px;
}
.inner-banner .box .info ul li {
  color: var(--white);
  font-size: 16px;
  padding-right: 80px;
}
.inner-banner .box .info ul li a {
  display: block;
  position: relative;
  z-index: 1;
}
.inner-banner .box .info ul li a::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -moz-transition: transform .5s ease, -moz-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;
  -moz-transition: transform .5s ease;
  -ms-transition: transform .5s ease;
  -o-transition: transform .5s ease;
  -webkit-transition: transform .5s ease;
  background: var(--white);
}
.inner-banner .box .info ul li a:hover::before,
.inner-banner .box .info ul li a.active::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
}
.service-page {
  padding: 135px 0 147px;
}
.service-page h2 {
  font-size: 63px;
  letter-spacing: 2px;
  color: #0f0f0f;
  font-style: normal;
  line-height: 1;
}
.service-page ul {
  padding-top: 89px;
}
.service-page ul li {
  display: -webkit-box;
  display: flex;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 122px;
}

.service-page ul li .text {
  width: 50%;
  padding: 0 171px 0 83px;
}
.service-page ul li .text h3 {
  font-size: 30px;
  color: #0f0f0f;
  font-style: normal;
  font-weight: bold;
}
.service-page ul li .text .desc {
  font-size: 16px;
  color: #353535;
  margin-top: 36px;
}
.service-page ul li .text .list {
  padding: 67px 43px 0 0;
}
.service-page ul li .text .list dl {
  margin-bottom: -42px;
}
.service-page ul li .text .list dd {
  text-align: center;
  margin-bottom: 35px;
}
.service-page ul li .img-box {
  width: 50%;
  position: relative;
}
.service-page ul li .img-box .video{
  position: absolute;
    overflow: hidden;
    width: 52%;
    height: 46%;
    left: 26%;
    top: 0;
    opacity: 0;
    -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
}
.service-page ul li .img-box .video i{
  position: absolute;
  font-size: 30px;
  color: #fff;
  right: 20px;
  top: 30px;
  display: none;
}
.service-page .big-video{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 999;
  display: none;
}
.service-page .big-video i{
  display: block;
  position: absolute;
  right: 20px;
  top: 30px;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  z-index: 100;
}
.service-page .big-video video{
  width: 80%;
  height: 90%;
  margin: auto;
}
.service-page ul li .img-box .video.active{
  opacity: 1;
  top: 24%;
}
.service-page ul li .img-box .video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-page ul li .img-box .more{
  border: 1px solid #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 20px;
  position: absolute;
  top: 60%;
  left: 40%;
  -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
}
.service-page ul li .img-box:hover .more{
  top: 45%;
}
.service-page ul li .img-box .more:hover{
  background: #fff;
  color: #000;
}
.service-page ul li .img-box img {
  width: 100%;
}
.service-page ul li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.service-page ul li:nth-child(even) .text {
  padding: 0 66px 0 108px;
}
.service-page ul li:nth-child(3) .text {
  padding: 0 106px 0 82px;
}
.service-page ul li:nth-child(4) .text {
  padding: 0 129px 0 108px;
}
.service-page ul li:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1440px) {
  .service-page ul li .text {
    padding: 0 83px;
  }
  .service-page ul li:nth-child(even) .text {
    padding: 0 66px;
  }
  .service-page ul li:nth-child(3) .text {
    padding: 0 82px;
  }
}
@media screen and (max-width: 1280px) {
  .service-page ul li .text {
    padding: 0 25px;
  }
  .service-page ul li:nth-child(even) .text {
    padding: 0 25px;
  }
  .service-page ul li:nth-child(3) .text {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1100px) {
  .inner-banner .box {
    height: 500px;
  }
  .inner-banner .box h2 {
    font-size: 80px;
  }
  .service-page {
    padding: 100px 0;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner .box {
    height: 400px;
  }
  .inner-banner .box h2 {
    font-size: 60px;
  }
  .inner-banner .box .info ul {
    margin-right: -20px;
  }
  .inner-banner .box .info {
    left: 20px;
    right: 20px;
  }
  .inner-banner .box .info ul li {
    padding-right: 20px;
    font-size: 15px;
  }
  .service-page {
    padding: 60px 0;
  }
  .service-page h2 {
    font-size: 50px;
  }
  .service-page ul {
    padding-top: 60px;
  }
  .service-page ul li {
    display: block;
    margin-top: 60px;
  }
  .service-page ul li .text,
  .service-page ul li .img-box {
    width: 100%;
  }
  .service-page ul li .text {
    padding: 0;
  }
  .service-page ul li .img-box {
    margin-top: 20px;
  }
  .service-page ul li:nth-child(even) .text {
    padding: 0;
  }
  .service-page ul li:nth-child(3) .text {
    padding: 0;
  }
  .service-page ul li .list {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner .box {
    height: 300px;
  }
  .inner-banner .box .info {
    display: none;
  }
  .inner-banner .box h2 {
    font-size: 50px;
    top: 40%;
  }
  .service-page {
    padding: 30px 0;
  }
  .service-page h2 {
    font-size: 40px;
  }
  .service-page ul {
    padding-top: 30px;
  }
  .service-page ul li {
    margin-top: 30px;
  }
  .service-page ul li .text h3 {
    font-size: 25px;
  }
  .service-page ul li .text .desc {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner .box {
    height: 200px;
  }
  .inner-banner .box h2 {
    font-size: 30px;
  }
  .service-page h2 {
    font-size: 36px;
  }
  .service-page ul li .text h3 {
    font-size: 22px;
  }
}
.product-banner {
  padding: 50px 0 17px;
}
.product-banner h1.WGCAT,
.product-banner h2 {
  font-size: 34px;
  line-height: 1;
  color: #181818;
  font-style: normal;
  text-transform: uppercase;
}
.product-banner p {
  font-size: 16px;
  color: #0f0f0f;
  line-height: 1.7;
  margin-top: 34px;
}
.product-banner1 h2 {
  text-transform: capitalize;
}
.product-tab {
  border-top: 1px solid #e4e4e4;
  padding: 38px 0;
}
.product-tab ul {
  margin-right: -33px;
}
.product-tab ul li {
  display: inline-block;
  font-size: 14px;
  color: #404040;
  margin-right: 33px;
  text-transform: uppercase;
}
.product-tab ul li.active,
.product-tab ul li:hover {
  color: var(--color);
}
.product-page {
  padding-bottom: 1px;
}
.product-page .list ul {
  margin: 0 -28px -68px 0;
}
.product-page .list ul li {
  padding: 0 28px 68px 0;
}
.product-page .list ul li .img-box {
  display: block;
  border: 1px solid #ccc;
}
.product-page .list ul li h3 {
  font-style: normal;
  margin-top: 13px;
  font-size: 16px;
  text-align: center;
}
.m-page {
  margin-top: 60px;
  text-align: center;
}
.m-page a,
.m-page span {
  font-size: 16px;
  color: #757575;
  margin-right: 30px;
}
.m-page a:hover,
.m-page span.current {
  color: #151515;
  border-bottom: 2px solid #151515;
}
@media screen and (max-width: 1000px) {
  .product-banner h2 {
    font-size: 50px;
  }
  .product-page .list ul {
    margin: 0 -28px -40px 0;
  }
  .product-page .list ul li {
    padding: 0 28px 40px 0;
  }
  .m-page {
    margin-top: 80px;
  }
  .product-page {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 700px) {
  .product-banner h2 {
    font-size: 40px;
  }
  .product-tab {
    padding: 20px 0;
  }
  .product-tab ul li {
    margin-right: 22px;
  }
  .m-page {
    margin-top: 30px;
  }
  .product-page {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .product-banner h1.WGCAT,
  .product-banner h2 {
    font-size: 30px;
  }
  .product-page .list ul {
    margin: 0 0 -20px 0;
  }
  .product-page .list ul li {
    padding: 0 0 20px 0;
  }
}

.prodet-page .prodet-1 {
  padding-top: 77px;
}

@media (min-width:1001px) {
  .prodet-page .prodet-1 .img {
    position: sticky;
    top: 100px;
  }
}

.prodet-page .prodet-1 .img .small {
  display: inline-block;
  width: 20%;
  padding-right: 21px;
}
.prodet-page .prodet-1 .img .small ul {
  margin-bottom: -15px;
}
.prodet-page .prodet-1 .img .small ul li {
  padding-bottom: 15px;
}
.prodet-page .prodet-1 .img .small ul li img {
  border: 1px solid #cccccc;
}
.prodet-page .prodet-1 .img .big {
  width: 79%;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #cccccc;
}
.prodet-page .prodet-1 .img .big a.img-box {
  display: block;
}
.prodet-page .prodet-1 .img .big img {
  width: 100%;
}
.prodet-page .prodet-1 .text {
  padding-left: 74px;
}
.prodet-page .prodet-1 .text h1 {
  font-size: 36px;
  color: #151515;
  line-height: 1.1;
  font-style: normal;
}
.prodet-page .prodet-1 .text .options {
  padding-top: 58px;
}
.prodet-page .prodet-1 .text .options ul {
  border-bottom: 1px solid #d9dbe2;
}
.prodet-page .prodet-1 .text .options ul li {
  display: inline-block;
  font-size: 22px;
  color: #848484;
  font-style: italic;
  margin-right: 71px;
  padding-bottom: 23px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.prodet-page .prodet-1 .text .options ul li::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -moz-transition: transform .5s ease, -moz-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;
  -moz-transition: transform .5s ease;
  -ms-transition: transform .5s ease;
  -o-transition: transform .5s ease;
  -webkit-transition: transform .5s ease;
  background: #151515;
}
.prodet-page .prodet-1 .text .options ul li:hover,
.prodet-page .prodet-1 .text .options ul li.active {
  color: #151515;
}
.prodet-page .prodet-1 .text .options ul li:hover::before,
.prodet-page .prodet-1 .text .options ul li.active::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
}
.prodet-page .prodet-1 .text .ret {
  padding-top: 44px;
}
.prodet-page .prodet-1 .text .ret .con {
  font-size: 17px;
  line-height: 30px;
  color: #1c1c1c;
}
.prodet-page .prodet-1 .text .more {
  background-color: #191919;
  color: var(--white);
  padding: 14px 60px 14px 61px;
  margin-top: 45px;
}
.prodet-page .prodet-1 .text .more::before {
  background: var(--primary);
}
.prodet-page .prodet-1 .text .more:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
}
.prodet-page .prodet-2 {
  margin-top: 143px;
  border-top: 1px solid #e4e4e4;
  padding: 73px 0 114px;
}
.prodet-page .prodet-2 h2 {
  font-size: 48px;
  line-height: 1;
  color: #181818;
  font-style: normal;
}
.prodet-page .prodet-2 .content {
  margin-top: 106px;
}
.prodet-page .prodet-2 .content ul {
  margin-right: -63px;
}
.prodet-page .prodet-2 .content ul .slick-track {
  margin: 0;
}
.prodet-page .prodet-2 .content ul li {
  padding-right: 63px;
}
.prodet-page .prodet-2 .content ul li a.img-box {
  display: block;
  border: 1px solid #cccccc;
}
.prodet-page .prodet-2 .content ul li a.img-box img {
  width: 100%;
}
.prodet-page .prodet-2 .content ul li h3 {
  font-size: 16px;
  font-style: normal;
  color: #404040;
  margin-top: 26px;
  line-height: 1.7;
}
@media screen and (max-width: 1280px) {
  .prodet-page .prodet-1 .text {
    padding-left: 30px;
  }
  .prodet-page .prodet-1 .text .options {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page .prodet-1 {
    padding-top: 30px;
  }
  .prodet-page .prodet-1 .img {
    width: 100%;
  }
  .prodet-page .prodet-1 .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .prodet-page .prodet-2 {
    margin-top: 60px;
    padding: 60px 0;
  }
  .prodet-page .prodet-2 .content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page .prodet-1 .text h1 {
    font-size: 32px;
  }
  .prodet-page .prodet-1 .text .options {
    padding-top: 20px;
  }
  .prodet-page .prodet-1 .text .options ul li {
    font-size: 20px;
    padding-bottom: 10px;
    margin-right: 40px;
  }
  .prodet-page .prodet-1 .text .ret {
    padding-top: 20px;
  }
  .prodet-page .prodet-1 .text .more {
    margin-top: 20px;
    padding: 10px 25px;
  }
  .prodet-page .prodet-2 {
    margin-top: 30px;
    padding: 30px 0;
  }
  .prodet-page .prodet-2 h2 {
    font-size: 36px;
  }
  .prodet-page .prodet-2 .content {
    margin-top: 30px;
  }
  .prodet-page .prodet-2 .content ul {
    margin-right: -20px;
  }
  .prodet-page .prodet-2 .content ul li {
    padding-right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-1 .img .small {
    width: 22%;
    padding-right: 8px;
  }
  .prodet-page .prodet-1 .img .big {
    width: 76%;
  }
  .prodet-page .prodet-1 .text h1 {
    font-size: 28px;
        padding: 20px 0;
  }
  .prodet-page .prodet-1 .text .options ul li {
    font-size: 18px;
    margin-right: 27px;
  }
  .prodet-page .prodet-2 h2 {
    font-size: 26px;
  }
}
.inner-page .sidebox .sideleft {
  width: 67%;
}
.inner-page .sidebox .sideright {
  width: 33%;
  padding: 26px 0 0 109px;
}
.inner-page .sidebox .sideright h2 {
  font-style: normal;
  font-size: 30px;
  letter-spacing: 1px;
  color: #0f0f0f;
  line-height: 1;
}
.inner-page .sidebox .sideright .list {
  margin-top: 42px;
}
.inner-page .sidebox .sideright .list ul {
  margin-bottom: 30px;
}
.inner-page .sidebox .sideright .list ul li {
  padding-bottom: 30px;
}
.inner-page .sidebox .sideright .list ul li .img {
  padding-right: 25px;
  width: 43%;
}
.inner-page .sidebox .sideright .list ul li .img a.img-box {
  display: block;
  border: 1px solid #cccccc;
}
.inner-page .sidebox .sideright .list ul li .img a.img-box img {
  width: 100%;
}
.inner-page .sidebox .sideright .list ul li .text {
  width: 57%;
}
.inner-page .sidebox .sideright .list ul li .text time {
  font-size: 14px;
  color: #686868;
  line-height: 1;
}
.inner-page .sidebox .sideright .list ul li .text h3 {
  font-size: 18px;
  color: #2d2d2d;
  font-style: normal;
  margin-top: 10px;
}
.news-page {
  padding-bottom: 113px;
}
.news-page .ui.container {
  max-width: 1682px;
  width: 100%;
}
.news-page .sidebox {
  padding-left: 26px;
  margin-top: 69px;
}
.news-page .sidebox .sideleft ul {
  margin: 0 -55px -75px 0;
}
.news-page .sidebox .sideleft ul li {
  padding: 0 55px 75px 0;
}
.news-page .sidebox .sideleft ul li a.img-box {
  display: block;
}
.news-page .sidebox .sideleft ul li a.img-box img{
  width: 100%;
}
.news-list ul li .text {
  padding: 35px 28px 0;
}
.news-list ul li .text time {
  font-size: 14px;
  color: #686868;
  line-height: 1;
}
.news-list ul li .text h3 {
  font-size: 18px;
  letter-spacing: 1px;
  color: #2d2d2d;
  line-height: 1.5;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 11px;
}
.news-list ul li .text p {
  font-size: 14px;
  color: #595959;
  margin-top: 14px;
  text-align: left;
}
.news-list ul li .text .more {
  color: #2e2e2e;
  border: 1px solid #4a4a4a;
  text-transform: capitalize;
  padding: 5px 22px 4px 23px;
  margin-top: 23px;
}
.news-list ul li .text .more::before {
  background: var(--primary);
}
.news-list ul li .text .more:hover {
  color: var(--white);
  border-color: var(--primary);
}
.news-list ul li .text .more:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
}
@media screen and (max-width: 1280px) {
  .inner-page .sidebox .sideright {
    padding: 26px 0 0 30px;
  }
}
@media screen and (max-width: 1100px) {
  .news-page .sidebox {
    padding-left: 0;
  }
  .news-page .sidebox .sideleft ul {
    margin: 0 -30px -50px 0;
  }
  .news-page .sidebox .sideleft ul li {
    padding: 0 30px 50px 0;
  }
  .news-list ul li .text {
    padding: 20px 18px 0;
  }
  .inner-page .sidebox .sideright .list ul li .text {
    padding-top: 10px;
  }
  .inner-page .sidebox .sideright .list ul li .text h3 {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page .sidebox .sideleft {
    width: 100%;
  }
  .inner-page .sidebox .sideright {
    display: none;
  }
  .news-page {
    padding-bottom: 60px;
  }
  .news-page .sidebox {
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .product-banner p {
    margin-top: 20px;
  }
  .news-page .sidebox .sideleft ul {
    margin: 0 -20px -40px 0;
  }
  .news-page .sidebox .sideleft ul li {
    padding: 0 20px 40px 0;
  }
  .news-list ul li .text {
    padding: 15px 10px 0;
  }
  .news-list ul li .text h3 {
    font-size: 16px;
  }
  .news-page {
    padding-bottom: 30px;
  }
}
.newdet-page {
  padding: 48px 0 13px;
}
.newdet-page .ui.container {
  max-width: 1682px;
  width: 100%;
}
.newdet-page .sidebox {
  padding-left: 83px;
}
.newdet-page .sidebox .sideleft .content img {
  width: 100%;
}
.newdet-page .sidebox .sideleft .content .info {
  padding: 55px 36px 0 48px;
}
.newdet-page .sidebox .sideleft .content .info time {
  font-size: 16px;
  color: #686868;
  line-height: 1;
}
.newdet-page .sidebox .sideleft .content .info h1 {
  font-style: normal;
  letter-spacing: 1px;
  color: #2d2d2d;
  font-size: 36px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 37px;
}
.newdet-page .sidebox .sideleft .content .info .desc {
  font-size: 16px;
  line-height: 1.7;
  color: #2d2d2d;
  text-align: left;
  margin-top: 41px;
}
.newdet-page .sidebox .sideleft .content .m-link {
  margin-top: 100px;
  border-top: 1px solid #f1f1f1;
  padding-top: 32px;
}
.newdet-page .sidebox .sideleft .content .m-link .left span i {
  margin-left: 12px;
}
.newdet-page .sidebox .sideleft .content .m-link .right {
  text-align: right;
}
.newdet-page .sidebox .sideleft .content .m-link .right span i {
  margin-right: 12px;
}
.newdet-page .sidebox .sideleft .content .m-link img {
  width: auto;
}
.newdet-page .sidebox .sideleft .content .m-link span {
  display: block;
}
.newdet-page .sidebox .sideleft .content .m-link span i {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #303030;
  line-height: 1;
}
.newdet-page .sidebox .sideleft .content .m-link span img {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .sidebox .sideleft .content .m-link em {
  font-size: 16px;
  color: #161616;
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 1440px) {
  .newdet-page .sidebox {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .newdet-page .sidebox {
    padding-left: 0;
  }
}
@media screen and (max-width: 1100px) {
  .newdet-page .sidebox .sideleft .content .info {
    padding: 30px 30px 0 30px;
  }
  .newdet-page .sidebox .sideleft .content .info h1 {
    margin-top: 20px;
    font-size: 30px;
  }
  .newdet-page .sidebox .sideleft .content .info .desc {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .newdet-page {
    padding: 20px 0 60px;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page .sidebox .sideleft .content .info {
    padding: 20px 15px 0;
  }
  .newdet-page .sidebox .sideleft .content .m-link {
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .sidebox .sideleft .content .m-link .right {
    text-align: left;
  }
  .newdet-page .sidebox .sideleft .content .info {
    padding: 20px 0 0 0;
  }
  .newdet-page .sidebox .sideleft .content .info h1 {
    font-size: 23px;
  }
  .newdet-page .sidebox .sideleft .content .m-link em {
    font-size: 14px;
  }
  .newdet-page .sidebox .sideleft .content .info .desc {
    font-size: 15px;
  }
}
.contact-page {
  padding: 83px 0 130px;
}

.contact-page .contact-1 .infos p {
  line-height: 2;
}

.contact-page .contact-1 .infos ol {
  max-width: 220px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page .contact-2 .box ul {
  margin: -7px;
}

.contact-page .contact-2 .box li {
  padding: 7px;
}

.contact-page .contact-2 .box form .filename {
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

.contact-page .contact-2 .box form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-page .contact-2 .box form .filename span,
.contact-page .contact-2 .box form select,
.contact-page .contact-2 .box form input,
.contact-page .contact-2 .box form textarea {
  padding: 20px;
  font-size: 16px;
  line-height: 19px;
  border: 1px solid #757575;
  width: 100%;
  color: #707070;
}
.contact-page .contact-2 .box form input[type="file"] {
  font-size: 0;
  opacity: 0;
}
.contact-page .contact-2 .box form textarea {
  height: 213px;
  margin-bottom: 10px;
}
.contact-page .contact-2 .box form input[type="submit"] {
  width: 229px;
  background: #040202;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0 15px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 .box form input[type="submit"]:hover {
  background: var(--primary);
}

@media (max-width:1000px) {
  .contact-page .contact-2 .box form .filename span,
  .contact-page .contact-2 .box form input,
  .contact-page .contact-2 .box form textarea {
    padding: 10px;
    font-size: 14px;
  }
  .contact-page .contact-2 .box li:not(.wid-100) {
    width: 50%;
  }
}

@media (max-width:500px) {
  .contact-page .contact-2 .box li {
    width: 100%!important;
  }
}

.su-page .box {
  max-width: 995px;
  margin: 0 auto;
  text-align: center;
}
.su-page .box h2 {
  font-size: 48px;
  color: #191919;
  line-height: 1.4;
  width: 80%;
  margin: 0 auto;
}
.su-page .box p {
  font-size: 16px;
  color: #4d4d4d;
  line-height: 1.5;
  margin-top: 54px;
}
.su-page ul {
  padding-top: 150px;
}
.su-page ul li:nth-child(even) .text {
  padding: 0 144px 0 108px;
}
@media screen and (max-width: 1680px) {
  .su-page ul li:nth-child(even) .text {
    padding: 0 108px;
  }
}
@media screen and (max-width: 1440px) {
  .su-page ul li:nth-child(even) .text {
    padding: 0 70px;
  }
}
@media screen and (max-width: 1280px) {
  .inner-banner .box .info ul {
    margin-right: -56px;
  }
  .inner-banner .box .info ul li {
    padding-right: 56px;
  }
  .su-page ul li:nth-child(even) .text {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1100px) {
  .inner-banner .box .info ul {
    margin-right: -40px;
  }
  .inner-banner .box .info ul li {
    padding-right: 40px;
    font-size: 14px;
  }
  .service-page {
    padding: 80px 0;
  }
  .su-page .box p {
    margin-top: 30px;
  }
  .su-page ul {
    padding-top: 100px;
  }
  .su-page ul li:nth-child(even) .text {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner .box .info ul {
    margin-right: -20px;
  }
  .inner-banner .box .info ul li {
    padding-right: 20px;
  }
  .service-page {
    padding: 60px 0;
  }
  .su-page .box h2 {
    font-size: 40px;
  }
  .su-page ul {
    padding-top: 60px;
  }
  .su-page ul li:nth-child(even) .text {
    padding: 0;
  }
}
@media screen and (max-width: 700px) {
  .service-page {
    padding: 30px 0;
  }
  .su-page .box h2 {
    font-size: 34px;
    width: 100%;
  }
  .su-page .box p {
    margin-top: 10px;
  }
  .su-page ul {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .su-page .box h2 {
    font-size: 26px;
  }
}
.wear-page .ui.container {
  max-width: 1600px;
  width: 100%;
}
.wear-page ul {
  padding-left: 24px;
}
.wear-page ul li .slick {
  margin-top: 40px;
}
.wear-page ul li .slick dd {
  font-size: 18px;
  line-height: 1.3;
  color: #191919;
  padding-left: 16px;
  position: relative;
}
.wear-page ul li .slick dd::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 1px;
  background-color: #151515;
  left: 0;
  top: 50%;
}
.wear-page ul li .text {
  margin-top: -63px;
}
.wear-page ul li .img-box {
  position: relative;
  padding-bottom: 63px;
}
.wear-page ul li .img-box img {
  width: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.wear-page ul li .img-box .i2 {
  position: absolute;
  z-index: -1;
}
.wear-page ul li:nth-child(1) .img-box .i2 {
  top: 82px;
  right: 0;
}
.wear-page ul li:nth-child(2) .img-box .i2 {
  top: 32%;
  right: 0;
}
.wear-page ul li:nth-child(3) .img-box .i2 {
  bottom: 0;
  right: 0;
}
.wear-page ul li:nth-child(4) .text {
  margin-top: -97px;
}
.wear-page ul li:nth-child(4) .img-box {
  padding-bottom: 97px;
}
.wear-page ul li:nth-child(4) .img-box .i2 {
  top: 131px;
  right: 0;
}

#faq h2 {
  font-size: 28px;
  font-weight: bold;
}
#faq ul li h4 {
  position: relative;
  padding: 10px 50px 10px 25px;
  color: #333;
  background: #f7f8fa;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
#faq ul li h4::after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  top: 10px;
  right: 20px;
}
#faq ul li p {
  padding: 0 25px;
  display: none;
}
#faq ul li.active h4 {
  color: #FFFFFF;
  background: #0067bd;
}
#faq ul li.active h4::after {
  content: "\f106";
}

@media screen and (max-width: 1280px) {
  .wear-page ul li .img-box .i1 {
    width: 80%;
  }
}
@media screen and (max-width: 1000px) {
  .wear-page ul li {
    margin-top: 120px;
  }
  .wear-page ul {
    padding-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .wear-page ul li:first-child {
    margin-top: 50px;
  }
  .wear-page ul li .slick {
    display: none;
  }
  .wear-page ul li .img-box {
    padding-bottom: 28px;
  }
  .wear-page ul li .img-box .i2 {
    width: 60%;
  }
}
.honor-page {
  padding-top: 70px;
}
.honor-page .grid-box {
  margin: 0 -30px 0 0;
}
.honor-page .column {
  /*width:33.3% !important;*/
  padding: 0 30px 0 0px;
  margin-bottom: 40px;
  cursor: pointer;
  transition: 0.6s ease;
  -webkit-transition: 0.6s ease;
  -moz-transition: 0.6s ease;
  -ms-transition: 0.6s ease;
  -o-transition: 0.6s ease;
}
.honor-page .column img {
  width: 100%;
}
.honor-page .column h3 {
  margin: 15px 0;
  font-size: 18px;
}
.honor-page .column p {
  color: #666;
  line-height: 28px;
  font-size: 16px;
  margin-top: 20px;
  padding: 10px;
  background: #eee;
}
.honor-page .column:hover {
  -webkit-transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -moz-transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
}
@media screen and (max-width: 768px) {
  .honor-page .grid-box.five > .column {
    width: 33.3%;
  }
}
@media screen and (max-width: 700px) {
  .honor-page .grid-box.five > .column {
    width: 50%;
    padding: 0 5px;
  }
  .honor-page .column h3 {
    margin: 8px 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .honor-page .grid-box .column {
    width: 100% !important;
  }
  .honor-page .column p {
    line-height: 26px;
    font-size: 14px;
    margin-top: 0;
  }
}




.seo_title{
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

#seo_about ._box{
  margin: -15px;
}

#seo_about ._left,
#seo_about ._right{
  padding: 15px;
}

#honor_list ul{
  margin: -15px;
}

#honor_list ul li{
  padding: 15px;
}

#news_list ul{
  margin: -15px;
}

#news_list ul li{
  padding: 15px;
}

#news_list ._time span{
  display: inline-block;
  padding: 5px;
}

#news_list ._time span._cate{
  color: #FFFFFF;
  background-color: #000000;
}

#news_list ._time span._date{
  background-color: #CCCCCC;
}

#news_list ._table{
  padding: 20px;
  border: 2px solid #CCCCCC;
}

#seo_public_from{padding:80px 0;background:#f9f9f9;}#seo_public_from h4{font-size:24px;font-weight:bold;color:#333;}#seo_public_from .seo_public_from{margin-top:30px;}#seo_public_from .seo_public_from ul{margin:-10px;}#seo_public_from .seo_public_from ul li{padding:10px;}#seo_public_from .seo_public_from ul li.wid-100{width:100%;}#seo_public_from .seo_public_from ul li input,#seo_public_from .seo_public_from ul li textarea{width:100%;line-height:24px;padding:10px;border:1px solid #eee;font-size:14px;color:black;background:white;-webkit-transition:.5s;-moz-transition:.5s;-ms-transition:.5s;-o-transition:.5s;transition:.5s;}#seo_public_from .seo_public_from ul li input:focus,#seo_public_from .seo_public_from ul li textarea:focus{border-color:black;}#seo_public_from .seo_public_from ul li textarea{height:120px;}#seo_public_from .seo_public_from ul li input[type="submit"]{width:auto;display:inline-block;padding:10px 30px;background:#222;color:white;}#seo_public_from .seo_public_from ul li input[type="submit"]:hover{opacity:.7;}



.slick-vertical .slick-slide {
  border: 0;
}



.i-tag {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--color);
  line-height: 2;
  display: block;
  text-transform: uppercase;
}
.inner-page .i-tag {
  letter-spacing: 0;
}
.inner-page .ny-title {
  font-size: 40px;
  margin-top: 18px;
  font-weight: bold;
}


.about-page .about-1 {
  z-index: 1;
}
.about-page .about-1 .con {
  line-height: 2;
}
.about-page .about-2 {
  background-color: #f4f4f4;
  padding: 13.7% 0 5.261%;
  margin-top: -117px;
}
.about-page .about-2 ul li {
  border-right: 1px solid #ccc;
}
.about-page .about-2 ul li i {
  width: 109px;
  height: 109px;
  border: solid 1px #cccccc;
  border-radius: 50%;
  text-align: center;
  line-height: 109px;
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 ul li i img {
  display: inline-block;
  vertical-align: middle;
}
.about-page .about-2 ul li .text {
  margin-top: 15px;
}
.about-page .about-2 ul li .text span {
  font-size: 16px;
  line-height: 1.8;
}
.about-page .about-2 ul li .text .num {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 1px;
}
.about-page .about-2 ul li:hover i {
  background: var(--color);
  border-color: var(--color);
}
.about-page .about-2 ul li:hover i img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.about-page .about-2 ul li:nth-child(even):hover img {
  -webkit-filter: grayscale(100%) brightness(300);
  filter: grayscale(100%) brightness(300);
}
.about-page .about-2 ul li:last-child {
  border-right: 0;
}
.about-page .about-3 .con {
  line-height: 2;
  max-height: 10em;
  overflow-y: auto;
}
.about-page .about-3 .left {
  width: 62%;
}
.about-page .about-3 .right {
  width: 100vw;
  margin-right: -39vw;
}
.about-page .about-4 {
  padding: 9.323% 0 7.6042%;
  background-color: #f4f4f4;
  background-size: 100% 100%;
}
.about-page .about-4 ul {
  margin: -40px -28px;
}
.about-page .about-4 ul li {
  padding: 40px 28px;
}
.about-page .about-4 ul li .ig {
  background-color: #ffffff;
  height: 100%;
}
.about-page .about-4 ul li .ig i {
  width: 99px;
  text-align: center;
  line-height: 99px;
}
.about-page .about-4 ul li .ig i img {
  display: inline-block;
  vertical-align: middle;
}
.about-page .about-4 ul li .ig span {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
}
.about-page .about-4 ul li .ig .con {
  line-height: 1.8;
}
.about-page .about-5 {
  padding: 6.46% 0 8.073%;
}
.about-page .about-5 .header {
  max-width: 1214px;
  margin: 0 auto;
}
.about-page .about-5 .header .con {
  line-height: 2;
}
.about-page .about-5 .content .ui.container {
  width: 1696px;
}
.about-page .about-5 .content .icon {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  text-align: center;
  line-height: 175px;
  background: rgba(9, 113, 53, 0.3);
  z-index: 1;
  top: 17.8%;
  right: 20.2%;
}
.about-page .about-5 .content .icon img {
  display: inline-block;
  vertical-align: middle;
}
.about-page .about-5 .content .icon::before,
.about-page .about-5 .content .icon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
  z-index: -1;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.about-page .about-5 .content .icon::before {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}

@media screen and (max-width: 1680px) {
  .about-page .about-3 .right {
    margin-right: -3vw;
  }
}

@media screen and (max-width: 1450px) {
  .about-page .about-5 .content .icon {
    top: 14.8%;
    right: 18.2%;
  }
}

@media screen and (max-width: 1250px) {
  .about-page .about-3 .right {
    padding-left: 30px;
    margin-right: -12vw;
  }
  .about-page .about-4 ul {
    margin: -20px -14px;
  }
  .about-page .about-4 ul li {
    padding: 20px 14px;
  }
  .about-page .about-5 .content .img {
    margin-left: 0;
  }
  .about-page .about-5 .content .icon {
    right: 16.2%;
  }
}

@media screen and (max-width: 1000px) {
  .about-page .about-1 .right {
    padding-left: 30px;
  }
  .about-page .about-2 {
    margin-top: -30px;
  }
  .about-page .about-2 ul {
    margin: -30px 0;
  }
  .about-page .about-2 ul li {
    width: 50%;
    margin: 30px 0;
  }
  .about-page .about-2 ul li:nth-child(even) {
    border-right: 0;
  }
  .about-page .about-3 {
    padding: 30px 0;
  }
  .about-page .about-3 .right {
    margin-right: 0;
    margin-top: 30px;
  }
  .about-page .about-4 ul li {
    width: 50%;
  }
  .about-page .about-5 .content .icon {
    zoom: .7;
    top: 12.8%;
  }
}

@media screen and (max-width: 700px) {
  .inner-page .ny-title {
    font-size: 36px;
  }

  .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .left .img {
    display: none;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding-left: 0;
  }
  .about-page .about-5 .content .icon {
    zoom: .5;
  }
}

@media screen and (max-width: 500px) {
  .inner-page .ny-title {
    font-size: 30px;
    margin-top: 9px;
  }
  
  .about-page .about-2 ul li .text span {
    font-size: 14px;
    line-height: 2;
  }
  .about-page .about-2 ul li .text .num {
    font-size: 30px;
  }
  .about-page .about-4 ul li {
    width: 100%;
  }
  .about-page .about-5 {
    display: none;
  }
}



.sus-page {
  padding: 3.59735% 0 5.834%;
}
.sus-page .sus-1 {
  z-index: 1;
}
.sus-page .sus-1 .ny-title {
  margin-top: 3px;
}
.sus-page .sus-1 .content {
  margin-top: -59px;
  -webkit-transform: translateY(126px);
  -moz-transform: translateY(126px);
  -ms-transform: translateY(126px);
  transform: translateY(126px);
}
.sus-page .sus-1 .left {
  width: 38.591%;
  margin-top: 59px;
}
.sus-page .sus-1 .left .ny-title {
  margin-top: 0;
}
.sus-page .sus-1 .left .tit {
  line-height: 1.4;
}
.sus-page .sus-1 .right {
  width: 61.409%;
}
.sus-page .sus-1 .right ul li {
  color: #fff;
  z-index: 1;
}
.sus-page .sus-1 .right ul li span {
  font-weight: 200;
  max-width: 170px;
  margin-left: 17px;
}
.sus-page .sus-1 .right ul li:nth-child(1) {
  top: 10%;
  left: 30%;
}
.sus-page .sus-1 .right ul li:nth-child(2) {
  top: 50%;
  left: 3%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sus-page .sus-1 .right ul li:nth-child(2) i {
  display: block;
  text-align: center;
}
.sus-page .sus-1 .right ul li:nth-child(2) span {
  margin-left: 0;
  max-width: 146px;
  display: inline-block;
  margin-top: 19px;
}
.sus-page .sus-1 .right ul li:last-child {
  bottom: 9%;
  left: 25%;
}
.sus-page .sus-1 .right ul li:last-child span {
  max-width: 260px;
}
/*.sus-page .sus-1::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 72.865%;
  height: 51.357%;
  background-color: #f5f5f5;
}*/
.sus-page .sus-2 {
  background-image: url(/ewinumbrella/2026/03/26/sus2-bg33.jpg);
  padding: 10.26042% 0 10%;
  background-size: 100% 100%;
}
.sus-page .sus-2 .box {
  max-width: 663px;
  margin: 0 0 0 auto;
}
.sus-page .sus-3 .ny-title {
  margin-top: 0;
}
.sus-page .sus-3 ul {
  margin: -33px -28px -18px -37px;
}
.sus-page .sus-3 ul li {
  padding: 33px 28px 18px 37px;
}
.sus-page .sus-3 ul li .ig {
  padding: 146px 18px 80px 48px;
  height: 100%;
  background-size: 100% 100%;
}
.sus-page .sus-3 ul li .ig i {
  width: 152px;
  height: 151px;
  border-radius: 50%;
  background-color: var(--color);
  text-align: center;
  line-height: 151px;
  top: 0;
  left: 0;
}
.sus-page .sus-3 ul li .ig i img {
  display: inline-block;
  vertical-align: middle;
}
.sus-page .sus-3 ul li .ig .text .title {
  font-weight: 200;
  min-height: 49px;
}
.sus-page .sus-3 ul li .ig .text .con {
  line-height: 1.5;
  margin-top: 25px;
}
.sus-page .sus-4 .ny-title {
  margin-top: 0;
}
.sus-page .sus-4 ul li > div {
  height: 100%;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.09);
}
.sus-page .sus-4 ul li .text {
  background: #fff;
  position: relative;
  z-index: 1;
  
}
.sus-page .sus-4 ul li .text > div {
  line-height: 1.5;
  min-height: 6em;
}
.sus-page .sus-4 ul li .text::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -23px;
  width: 54px;
  height: 24px;
  background: #fff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.sus-page .sus-4 ul li:nth-child(even) > div {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.sus-page .sus-4 ul li:nth-child(even) .text {
  z-index: 0;
}
.sus-page .sus-4 ul li:nth-child(even) .text::after {
  top: initial;
  bottom: -23px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.sus-page .sus-5 .ny-title {
  margin-top: 0;
}
.sus-page .sus-5 ul li i {
  line-height: 69px;
}
.sus-page .sus-5 ul li i img {
  display: inline-block;
  vertical-align: middle;
}
.sus-page .sus-5 ul li p {
  font-weight: 200;
  line-height: 1.9;
}

@media screen and (max-width: 1250px) {
  .sus-page .sus-1 .right {
    zoom: .7;
  }
  .sus-page .sus-1 .content {
    margin-top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .sus-page .sus-3 ul li .ig i {
    width: 110px;
    height: 110px;
    line-height: 110px;
  }
  .sus-page .sus-3 ul li .ig {
    padding: 100px 18px 40px 24px;
  }

}

@media screen and (max-width: 1000px) {
  .sus-page .sus-1 .content {
    margin-top: 30px;
  }
  .sus-page .sus-1 .left {
    margin-top: 0;
    width: 100%;
  }
  .sus-page .sus-1 .right {
    zoom: .8;
    width: 100%;
  }
  .sus-page .sus-3 .header .left {
    width: 100%;
  }
  .sus-page .sus-3 .content ul {
    margin-right: 0;
  }
  .sus-page .sus-3 .content ul li {
    padding-right: 0;
    width: 50%;
  }
  .sus-page .sus-3 .content ul li i {
    left: 37px;
  }
  .sus-page .sus-4 ul li .text {
    margin-top: -35px;
  }

  .sus-page .sus-4 ul li:nth-child(even) > div {
    -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;
  }
  .sus-page .sus-4 ul li:nth-child(even) .text::after {
    top: -23px;
    bottom: initial;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }

}

@media screen and (max-width: 700px) {
  .sus-page .sus-1 .right {
    display: none;
  }
  .sus-page .sus-3 .content ul li {
    width: 100%;
  }

}

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

  
  .sus-page .sus-5 .content ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sus-page .sus-5 .content ul li {
    width: 100%;
  }
}


.support-page .more {
  display: block;
  max-width: 240px;
  text-align: center;
  border: 1px solid #b6b6b6;
  border-radius: 5px;
  padding: 10px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.support-page .more:hover {
  color: white;
  background-color: black;
}


.support-page .support-1 .text {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.support-page .support-1 .list li {
  padding: 4% 7%;
  border: 1px solid #e7e7e7;
  background-color: #f5f5f7;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  top: 0;
}
.support-page .support-1 .list li i {
  width: 1em;
  height: 1em;
  background-color: #f6f8fa;
}
.support-page .support-1 .list li:hover {
  top: -10px;
}
.support-page .support-2 .left {
  direction: rtl;
}
.support-page .support-2 .left .img {
  width: 130%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  height: 100%;
}
.support-page .support-2 .left .img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.support-page .support-2 .right .content {
  padding-left: 10%;
  background-color: #f5f5f7;
  height: 94%;
  position: relative;
}
.support-page .support-2 .right .content:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: inherit;
}
.support-page .support-2 .right .content .list {
  font-weight: 500;
}
.support-page .support-2 .right .content .list span.num {
  width: 2.66666667em;
  height: 2.66666667em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
}
.support-page .support-2 .right .content .list .text {
  color: #333;
}
.support-page .support-4 .content {
  margin-left: auto;
  padding-left: 5%;
  background-color: var(--color);
  color: white;
  position: relative;
}
.support-page .support-4 .content:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: inherit;
}
.support-page .support-4 .content .check {
  font-weight: normal;
}
.support-page .support-4 .content .check p:before {
  background-color: white;
  color: var(--color);
}
.support-page .support-5 .right {
  -webkit-transform: translateX(8%);
  -moz-transform: translateX(8%);
  -ms-transform: translateX(8%);
  transform: translateX(8%);
}
.support-page .support-5 .right .list span.h6 {
  cursor: pointer;
  cursor: hand;
  color: #333;
}
.support-page .support-5 .right .list span.h6 em {
  width: 1.7em;
}
.support-page .support-5 .right .list span.h6 i {
  margin-left: auto;
  font-weight: normal;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.support-page .support-5 .right .list li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.support-page .support-5 .right .list li.active {
  background-color: #f3f3f3;
}
.support-page .support-5 .right .list li.active span.h6 i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (max-width: 1450px) {
  .support-page .support-5 .right {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (max-width: 1000px) {
  .support-page .support-2 .right .content {
    padding: 5% !important;
    padding-right: 0 !important;
    height: auto;
  }
  .support-page .support-4 .content {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .support-page .support-2 .right .content .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}



.about2-2 .list li > div {
  height: 100%;
  transition: .5s;
}

.about2-2 .list li > div:hover {
  background-color: var(--color);
  color: #FFFFFF;
}



.custom-1 .list li > div {
  height: 100%;
  background-color: #f8f8f8;
  transition: .5s;
}

.custom-1 .list li > div .icon img {
  transition: .5s;
}

.custom-1 .list li > div:hover {
  background-color: var(--color);
  color: #FFFFFF;
}

.custom-1 .list li > div:hover .icon img {
  filter: brightness(0) invert(1);
}

.custom-2 .list ul {
  margin: -30px -35px;
}

.custom-2 .list li {
  padding: 30px 35px;
  position: relative;
}

.custom-2 .list li .content {
  height: 100%;
  background-color: #f8f8f8;
  transition: .5s;
}

.custom-2 .list li .content:hover {
  background-color: var(--color);
  color: #FFFFFF;
}


.custom-2 .list li .arrow {
  width: 16px;
  left: 100%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.custom-2 .list li .arrow.down {
  left: 50%;
  top: 100%;
  transform: translate(-50%,-50%) rotate(90deg);
}

.custom-2 .list li .arrow.left {
  left: 0;
  top: 50%;
  transform: translate(-50%,-50%) rotate(180deg);
}

@media (min-width:1001px) {
  [order='1'] {
    order: 1;
  }

  [order='2'] {
    order: 2;
  }

  [order='3'] {
    order: 3;
  }

  [order='4'] {
    order: 4;
  }

  [order='5'] {
    order: 5;
  }

  [order='6'] {
    order: 6;
  }

  [order='7'] {
    order: 7;
  }
}

@media (max-width:1000px) {
  .custom-2 .list ul {
    margin: -7px;
  }
  .custom-2 .list li {
    padding: 7px;
  }
}

@media (max-width:700px) {
  .custom-2 .list ul {
    margin: -4px;
  }
  .custom-2 .list li {
    padding: 4px;
  }
}



.slickBtn div {
  display: block;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  opacity: .6;
}

.slickBtn div:hover {
  background-color: transparent;
  opacity: 1;
}


table {
  border: 0;
}

table tbody {
  table-layout: fixed;
}

table tr:nth-child(even) {
  background: transparent;
}

table td,
table th {
  white-space: normal;
}



/* 加密 */
.inner-page.login-page {
    position: relative;
	background-color: #474747;
}
.inner-page.login-page .int-1 {
	padding-bottom: 20rem;
}

.inner-page.login-page .login-1 {
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 500px;
    /* max-height: 480px; */
    border-radius: 10px;
    background-color: #fff;
    padding: 30px;
}

.inner-page.login-page .login-1 .top p {
    font-size: 16px;
    text-align: left;
    margin: 10px 0;
}

.inner-page.login-page .login-1 .bottom p {
    font-size: 16px;
    text-align: right;
    margin: 10px 0;
}

.inner-page.login-page .login-1 .login-form ul li {
    position: relative;
}

.inner-page.login-page .login-1 .login-form ul li i {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #999;
}

.inner-page.login-page .login-1 .login-form input {
    font-size: 20px;
    width: 100%;
    border-radius: 50px;
    border: none;
    color: #212121;
    background-color: #f8f8f8;
    padding: 20px 30px 20px 80px;
    margin: 10px 0;
}

.inner-page.login-page .login-1 .login-form input[type="submit"] {
    text-align: center;
    color: #fff;
    background-color: #e60012;
    margin: 20px 0;
}



#seo_from form ul li .filename {
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

#seo_from form ul li input[type="file"] {
  font-size: 0;
  opacity: 0;
}

#seo_from form ul li .filename span,
#seo_from form ul li select,
#seo_from form ul li input,
#seo_from form ul li textarea {
    width: 100%;
    line-height: 19px!important;
    padding: 6px 15px;
    border: 1px solid #eee;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-size: 16px;
}


.play-btn {
  width: 4.4em;
  height: 4.4em;
}