/* 
    Editor: zhao
    Time: 2019.08.12

    Less compilation
    > npm install -g less
    > lessc style.less style.css
*/
@media (min-width: 1600px) {
  .container {
    width: 73.57%;
    padding: 0;
  }
}
@media (min-width: 1600px) {
  .z-container {
    width: 88.282%;
    padding: 0;
    margin: 0 auto;
  }
}
.resetStyle {
  font-family: PingFangSC-Regular, "寰蒋闆呴粦", sans-serif;
  color: #27282a;
}
.resetStyle a {
  text-decoration: none;
  color: #27282a;
}
.resetStyle ul,
.resetStyle li {
  list-style: none;
}
.resetStyle p {
  margin: 0;
}
.resetStyle input {
  -webkit-appearance: none;
}
.resetStyle.blackbg {
  background: #1a1a1a;
}
#backtop {
  position: fixed;
  right: 49px;
  bottom: 20px;
  z-index: 100;
  opacity: 0;
  transition: 0.3s;
}
#backtop ul li {
  width: 54px;
  height: 54px;
  float: left;
  position: relative;
  line-height: 54px;
  text-align: center;
  margin-bottom: 3px;
  list-style: none;
}
#backtop ul li .inner {
  position: absolute;
  right: 70px;
  top: 0;
  background: #fff;
  border: 1px solid #ddd;
  line-height: normal;
  padding: 15px;
  transform: scale(0);
  transform-origin: top right;
  transition: 0.3s;
}
#backtop ul li .inner p {
  font-size: 12px;
}
#backtop ul li:hover .inner {
  transform: scale(1);
}
#backtop ul li .sidebox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transition: all 0.3s;
  background: #fff;
  border: 1px solid #ddd;
  color: #fff;
  font: 14px/54px PingFangSC-Regular, "寰蒋闆呴粦", sans-serif;
  overflow: hidden;
  background-position: center;
  background-size: inherit;
  background-repeat: no-repeat;
}
#backtop.on {
  opacity: 1;
}
#backtop ul li .sidetop {
  width: 100%;
  height: 100%;
  line-height: 54px;
  display: inline-block;
  opacity: 0.6;
  filter: alpha(opacity=80);
  transition: all 0.3s;
  border: 1px solid #eef4f7;
  background: #eee url(../images/side_icon.png) center / cover no-repeat;
}
@media (min-width: 768px) {
  #backtop ul li .sidetop:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    background: #de1f26 url(../images/side_icon-w.png) center / cover no-repeat;
  }
}
@media (max-width: 767px) {
  #backtop {
    right: 10px;
    bottom: 10px;
  }
  #backtop ul li {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.ie-warning {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  padding: 50px 0;
}
.ie-warning h1 {
  margin: 0 0 30px;
}
.ie-warning p {
  font-size: 16px;
}
.ie-warning .ie-container {
  min-width: 1024px;
  width: 100%;
  height: 200px;
  background: #fff;
  margin: 60px 0;
}
.ie-warning .ie-download {
  list-style: none;
  padding: 30px 0;
  margin: 0 auto;
  width: 720px;
}
.ie-warning .ie-download > li > a {
  display: block;
  color: #000;
  width: 140px;
  font-size: 15px;
  padding: 15px 0;
  margin: 0 auto;
}
.ie-warning .ie-download > li > a > div {
  margin-top: 10px;
}
.ie-warning .ie-download > li > a:hover {
  background-color: #eee;
}
.markdown-text p {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}
.markdown-text img {
  max-width: 100%;
  height: auto;
}
/* 
  Universal "More" Button

  Hover Default effect: black -> main
*/
.section-more {
  display: inline-block;
  overflow: hidden;
}
.section-more a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 16px;
  font-size: 16px;
  color: #27282a;
}
.section-more a img {
  margin: 0 0 0 18px;
}
.section-more a:before,
.section-more a:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #27282a;
  height: 3px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.section-more a:before {
  left: 0;
  right: 0;
  background: #de1f26;
}
.section-more a:hover:after {
  left: 100%;
  right: 0;
}
@media (max-width: 767px) {
  .section-more a {
    font-size: 14px;
    padding: 0 0 12px;
  }
  .section-more a img {
    margin: 0 0 0 15px;
    width: 25px;
  }
  .section-more a:before,
  .section-more a:after {
    height: 2px;
  }
}
.section-more.text-white a {
  color: #fff;
}
.section-more.text-black a {
  color: #27282a;
}
.section-more.main-to-white a:after {
  background: #de1f26;
}
.section-more.main-to-white a:before {
  background: #fff;
}
.section-more.white-to-main a:after {
  background: #fff;
}
.section-more.white-to-main a:before {
  background: #de1f26;
}
/* 
	section padding
*/
.sec-pd-top-bottom {
  padding: 100px 0;
  background-color: #fff;
}
@media (max-width: 1599px) {
  .sec-pd-top-bottom {
    padding: 100px 0;
  }
}
@media (max-width: 1199px) {
  .sec-pd-top-bottom {
    padding: 140px 0;
  }
}
@media (max-width: 991px) {
  .sec-pd-top-bottom {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .sec-pd-top-bottom {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .sec-pd-top-bottom {
    padding: 40px 0;
  }
}
.sec-pd-top {
  padding: 200px 0 0;
}
@media (max-width: 1599px) {
  .sec-pd-top {
    padding: 160px 0 0;
  }
}
@media (max-width: 1199px) {
  .sec-pd-top {
    padding: 140px 0 0;
  }
}
@media (max-width: 991px) {
  .sec-pd-top {
    padding: 120px 0 0;
  }
}
@media (max-width: 767px) {
  .sec-pd-top {
    padding: 80px 0 0;
  }
}
@media (max-width: 575px) {
  .sec-pd-top {
    padding: 40px 0 0;
  }
}
.sec-pd-bottom {
  padding: 0 0 200px;
  background-color: #fff;
}
@media (max-width: 1599px) {
  .sec-pd-bottom {
    padding: 0 0 160px;
  }
}
@media (max-width: 1199px) {
  .sec-pd-bottom {
    padding: 0 0 140px;
  }
}
@media (max-width: 991px) {
  .sec-pd-bottom {
    padding: 0 0 120px;
  }
}
@media (max-width: 767px) {
  .sec-pd-bottom {
    padding: 0 0 80px;
  }
}
@media (max-width: 575px) {
  .sec-pd-bottom {
    padding: 0 0 40px;
  }
}
@-webkit-keyframes rise {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@keyframes rise {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@-webkit-keyframes fadeInRightSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightSm {
  -webkit-animation-name: fadeInRightSm;
  animation-name: fadeInRightSm;
}
.breadnav {
  display: flex;
  align-items: center;
  padding: 3.5% 0;
  margin: 0;
}
@media (max-width: 575px) {
  .breadnav {
    padding: 20px 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.breadnav > li {
  position: relative;
  font-size: 16px;
  color: #999;
  margin: 0 16px 0 0;
}
@media (max-width: 991px) {
  .breadnav > li {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .breadnav > li {
    white-space: nowrap;
  }
}
.breadnav > li:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background: #999;
}
.breadnav > li > a {
  font-size: 16px;
  color: #999;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .breadnav > li > a {
    font-size: 14px;
  }
}
.breadnav > li > a:hover {
  color: #de1f26;
}
.breadnav > li:first-child {
  margin: 0;
}
.breadnav > li:last-child {
  color: #de1f26;
  margin: 0;
}
.breadnav > li:last-child:after {
  display: none;
}
/* 
  Universal "tabs" Button

  e.g  case.html, blog.html
*/
.nav-tabs-bar-container {
  position: relative;
  overflow: hidden;
  margin: 0 0 70px;
}
@media (max-width: 1599px) {
  .nav-tabs-bar-container {
    margin: 0 0 60px;
  }
}
@media (max-width: 991px) {
  .nav-tabs-bar-container {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .nav-tabs-bar-container {
    margin: 0 0 20px;
  }
}
.nav-tabs-bar-container > .container {
  position: relative;
}
.nav-tabs-bar-container > .container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10000px;
  height: 2px;
  background: #f3f3f3;
}
@media (max-width: 1599px) {
  .nav-tabs-bar-container > .container:after {
    left: 15px;
  }
}
@media (max-width: 991px) {
  .nav-tabs-bar-container > .container:after {
    left: 15px;
    right: 15px;
    margin: auto;
    width: 100%;
    height: 1px;
  }
}
@media (max-width: 767px) {
  .nav-tabs-bar-container > .container:after {
    bottom: 20px;
    background: #eee;
  }
}
.nav-tabs-bar-container .nav-tabs-bar {
  position: relative;
  z-index: 1;
  display: flex;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
  overflow-x: auto;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .nav-tabs-bar-container .nav-tabs-bar {
    padding: 0 0 20px;
  }
}
.nav-tabs-bar-container .nav-tabs-bar > li {
  margin: 0 85px 0 0;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 1599px) {
  .nav-tabs-bar-container .nav-tabs-bar > li {
    margin: 0 60px 0 0;
  }
}
@media (max-width: 767px) {
  .nav-tabs-bar-container .nav-tabs-bar > li {
    flex: 0 0 28%;
    max-width: 28%;
    margin: 0;
  }
}
.nav-tabs-bar-container .nav-tabs-bar > li > a {
  position: relative;
  display: block;
  font-size: 18px;
  color: #27282a;
  padding: 0 0 30px;
}
@media (max-width: 1599px) {
  .nav-tabs-bar-container .nav-tabs-bar > li > a {
    font-size: 16px;
    padding: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .nav-tabs-bar-container .nav-tabs-bar > li > a {
    padding: 0 0 15px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .nav-tabs-bar-container .nav-tabs-bar > li > a {
    font-size: 14px;
    padding: 0 0 15px;
  }
}
.nav-tabs-bar-container .nav-tabs-bar > li > a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background: transparent;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .nav-tabs-bar-container .nav-tabs-bar > li > a:after {
    height: 2px;
  }
}
.nav-tabs-bar-container .nav-tabs-bar > li.active > a:after {
  background: #de1f26;
}
.case-card .case-card__img {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 59.43%;
  overflow: hidden;
  margin: 0 0 34px;
}
@media (max-width: 1599px) {
  .case-card .case-card__img {
    margin: 0 0 20px;
  }
}
.case-card .case-card__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.case-card h4 {
  font-size: 24px;
  margin: 0 0 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 1599px) {
  .case-card h4 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
@media (max-width: 1199px) {
  .case-card h4 {
    font-size: 18px;
    margin: 0 0 10px;
  }
}
.case-card p {
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s 0.1s;
}
@media (min-width: 768px) {
  .case-card:hover .case-card__img img {
    transform: scale(1.05);
  }
  .case-card:hover h4 {
    color: #de1f26;
    padding: 0 0 0 10px;
  }
  .case-card:hover p {
    padding: 0 0 0 10px;
  }
}
.currency-pagination {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.currency-pagination a {
  border: 1px solid #ddd;
  background: #f7f7f7;
  padding: 8px 14px;
  font-size: 14px;
  color: #666;
  transition: 0.3s;
}
.currency-pagination a.prev,
.currency-pagination a.next {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 10px 0 0;
  border-right: 1px solid #ddd;
}
.currency-pagination a.prev:after,
.currency-pagination a.next:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 10000px;
  height: 2px;
  margin: auto;
  background: #e4e4e4;
}
@media (max-width: 575px) {
  .currency-pagination a.prev:after,
  .currency-pagination a.next:after {
    height: 1px;
  }
}
.currency-pagination a.prev.pageItemDisable,
.currency-pagination a.next.pageItemDisable {
  pointer-events: none;
  opacity: 0.5;
}
.currency-pagination a.prev i,
.currency-pagination a.next i {
  font-size: 14px;
  font-style: normal;
  margin: 0 5px 0 0;
  transform: translateY(-1px);
}
@media (max-width: 575px) {
  .currency-pagination a.prev i,
  .currency-pagination a.next i {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .currency-pagination a.prev span,
  .currency-pagination a.next span {
    display: none;
  }
}
.currency-pagination a.next {
  margin: 0 0 0 10px;
}
.currency-pagination a.next:after {
  left: 100%;
}
.currency-pagination a.next i {
  margin: 0 0 0 5px;
}
@media (max-width: 575px) {
  .currency-pagination a.next i {
    margin: 0;
  }
}
.currency-pagination a.other {
  border: 0;
}
.currency-pagination a.on {
  border-color: transparent;
  background: transparent;
  color: #de1f26;
  pointer-events: none;
}
.currency-pagination .page-num {
  display: flex;
  align-items: center;
}
.currency-pagination .page-num a {
  margin: 0 4px 0 0;
}
.currency-pagination .page-num a:last-child {
  margin: 0;
  border-right: 1px solid #ddd;
}
.home-header-fixed {
  position: relative;
  z-index: 98;
  height: 90px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .home-header-fixed {
    height: 60px;
  }
}
.home-header-fixed .home-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 5px -2px #757575;
  transition: 0.3s;
}
.home-header-fixed.text-white {
  background: #000;
}
.home-header-fixed.text-white .home-header {
  background: #000;
  box-shadow: none;
}
.home-header-fixed.text-white .flexbox .logo .black-logo {
  display: none;
}
.home-header-fixed.text-white .flexbox .logo .white-logo {
  display: block;
}
.home-header-fixed.text-white .flexbox .app-navmenu-btn img {
  filter: brightness(1);
}
.home-header-fixed.text-white .flexbox .navmenu > li.dropdown button {
  color: #fff;
}
.home-header-fixed.text-white .flexbox .navmenu > li.dropdown button i {
  color: #fff;
}
@media (min-width: 768px) {
  .home-header-fixed.text-white .flexbox .navmenu > li.dropdown .dropdown-menu {
    background: #000;
    border-top: 1px solid #333;
  }
  .home-header-fixed.text-white .flexbox .navmenu > li.dropdown .dropdown-menu > li > a {
    color: #fff;
  }
  .home-header-fixed.text-white .flexbox .navmenu > li.dropdown .dropdown-menu > li > a:hover {
    color: #fff;
    background: transparent;
  }
  .home-header-fixed.text-white .flexbox .navmenu > li.dropdown .dropdown-menu > li.active > a {
    color: #fff;
    background: transparent;
  }
}
.home-header-fixed.text-white .flexbox .navmenu > li > a {
  color: #fff;
}
.home-header-fixed.text-white .flexbox .navmenu > li:last-child > a {
  color: #fff;
  border: 1px solid #fff;
}
.home-header-fixed.text-white .flexbox .navmenu > li:last-child > a:hover {
  background: #de1f26;
  color: #fff;
  border: 1px solid #de1f26;
}
.home-header-fixed.immersive-header {
  height: auto;
}
.home-header-fixed.immersive-header .home-header {
  background: transparent;
  box-shadow: 0 0 0 1px rgba(144, 144, 144, 0.1);
}
.home-header-fixed.immersive-header .flexbox .logo .black-logo {
  display: none;
}
.home-header-fixed.immersive-header .flexbox .logo .white-logo {
  display: block;
}
.home-header-fixed.immersive-header .flexbox .app-navmenu-btn img {
  filter: brightness(1);
}
.home-header-fixed.immersive-header .flexbox .navmenu > li.dropdown button {
  color: #ccc;
}
.home-header-fixed.immersive-header .flexbox .navmenu > li.dropdown button i {
  color: #ccc;
}
@media (min-width: 768px) {
  .home-header-fixed.immersive-header .flexbox .navmenu > li.dropdown .dropdown-menu {
    background: transparent;
    border-top: 1px solid transparent;
  }
  .home-header-fixed.immersive-header .flexbox .navmenu > li.dropdown .dropdown-menu > li > a {
    color: #ccc;
  }
  .home-header-fixed.immersive-header .flexbox .navmenu > li.dropdown .dropdown-menu > li > a:hover {
    color: #ccc;
    background: transparent;
  }
  .home-header-fixed.immersive-header .flexbox .navmenu > li.dropdown .dropdown-menu > li.active > a {
    color: #fff;
    background: transparent;
  }
}
.home-header-fixed.immersive-header .flexbox .navmenu > li > a {
  color: #ccc;
}
.home-header-fixed.immersive-header .flexbox .navmenu > li.active a {
  color: #fff;
}
.home-header-fixed.immersive-header .flexbox .navmenu > li:last-child > a {
  color: #fff;
  border: 1px solid #fff;
}
.home-header-fixed.immersive-header .flexbox .navmenu > li:last-child > a:hover {
  background: #de1f26;
  color: #fff;
  border: 1px solid #de1f26;
}
.home-header-fixed.text-black {
  background: #fff;
  height: 60px;
}
.home-header-fixed.text-black .home-header {
  background: #fff;
  box-shadow: 0 0 5px -2px #757575;
}
.home-header-fixed.text-black .flexbox {
  height: 60px;
}
.home-header-fixed.text-black .flexbox .logo .black-logo {
  display: block;
}
.home-header-fixed.text-black .flexbox .logo .white-logo {
  display: none;
}
.home-header-fixed.text-black .flexbox .app-navmenu-btn img {
  filter: brightness(0);
}
.home-header-fixed.text-black .flexbox .navmenu > li.dropdown button {
  color: #333;
}
@media (max-width: 767px) {
  .home-header-fixed.text-black .flexbox .navmenu > li.dropdown button {
    color: #fff;
  }
}
.home-header-fixed.text-black .flexbox .navmenu > li.dropdown button i {
  color: #333;
}
@media (max-width: 767px) {
  .home-header-fixed.text-black .flexbox .navmenu > li.dropdown button i {
    color: #fff;
  }
}
.home-header-fixed.text-black .flexbox .navmenu > li.dropdown .dropdown-menu {
  background: #fff;
  border-top: 1px solid #ccc;
  margin: 20px 0 0;
}
.home-header-fixed.text-black .flexbox .navmenu > li.dropdown .dropdown-menu > li > a {
  color: #333;
}
.home-header-fixed.text-black .flexbox .navmenu > li.dropdown .dropdown-menu > li > a:hover {
  color: #333;
  background: transparent;
}
.home-header-fixed.text-black .flexbox .navmenu > li.dropdown .dropdown-menu > li.active > a {
  color: #333;
  background: transparent;
}
.home-header-fixed.text-black .flexbox .navmenu > li > a {
  color: #333;
}
@media (max-width: 767px) {
  .home-header-fixed.text-black .flexbox .navmenu > li > a {
    color: #fff;
  }
}
.home-header-fixed.text-black .flexbox .navmenu > li.active a {
  color: #de1f26;
}
.home-header-fixed.text-black .flexbox .navmenu > li:last-child > a {
  color: #333;
  border: 1px solid #333;
}
@media (max-width: 767px) {
  .home-header-fixed.text-black .flexbox .navmenu > li:last-child > a {
    color: #fff;
    border: 1px solid #fff;
  }
}
.home-header-fixed.text-black .flexbox .navmenu > li:last-child > a:hover {
  background: #de1f26;
  color: #fff;
  border: 1px solid #de1f26;
}
.home-header-fixed.immersive-header.text-black {
  height: auto;
}
.home-header {
  transition: 0.3s;
}
.home-header .flexbox {
  height: 90px;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .home-header .flexbox {
    height: 60px;
  }
}
.home-header .flexbox .logo {
  width: 120px;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .home-header .flexbox .logo {
    width: 100px;
  }
}
.home-header .flexbox .logo .black-logo {
  display: block;
}
.home-header .flexbox .logo .white-logo {
  display: none;
}
.home-header .flexbox .logo img {
  width: 100%;
  transition: 0.3s;
}
.home-header .flexbox .app-navmenu-btn {
  width: 25px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .home-header .flexbox .app-navmenu-btn {
    display: none;
  }
}
.home-header .flexbox .app-navmenu-btn img {
  width: 100%;
  filter: brightness(0);
}
.home-header .flexbox .navmenu {
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .home-header .flexbox .navmenu {
    display: flex !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu {
    display: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    width: 100%;
    background: #27282a;
    max-height: 300px;
    overflow: auto;
    padding: 5px 0 10px;
    -webkit-overflow-scrolling: touch;
  }
}
.home-header .flexbox .navmenu > li {
  position: relative;
  margin: 0 60px 0 0;
}
@media (max-width: 991px) {
  .home-header .flexbox .navmenu > li {
    margin: 0 25px 0 0;
  }
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li {
    margin: 0;
    padding: 0 15px;
  }
}
.home-header .flexbox .navmenu > li:first-child {
  margin: 0 40px 0 0;
}
@media (max-width: 991px) {
  .home-header .flexbox .navmenu > li:first-child {
    margin: 0 25px 0 0;
  }
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li:first-child {
    margin: 0;
    padding: 0 15px;
  }
}
.home-header .flexbox .navmenu > li:last-child {
  margin: 0;
}
.home-header .flexbox .navmenu > li:last-child a {
  color: #333;
  padding: 7px 20px;
  border: 1px solid #333;
  transition: 0.3s;
}
.home-header .flexbox .navmenu > li:last-child a:hover {
  color: #fff;
  background: #de1f26;
  border: 1px solid #de1f26;
}
@media (max-width: 991px) {
  .home-header .flexbox .navmenu > li:last-child a {
    padding: 6px 12px;
  }
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li:last-child a {
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
  }
}
.home-header .flexbox .navmenu > li.active > a {
  color: #de1f26;
}
.home-header .flexbox .navmenu > li.dropdown button {
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li.dropdown button {
    display: block;
    padding: 15px 0;
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #484848;
  }
}
@media (max-width: 575px) {
  .home-header .flexbox .navmenu > li.dropdown button {
    padding: 10px 0;
  }
}
.home-header .flexbox .navmenu > li.dropdown button i {
  font-size: 13px;
  color: #333;
  margin: 0 0 0 8px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li.dropdown button i {
    color: #fff;
  }
}
@media (max-width: 575px) {
  .home-header .flexbox .navmenu > li.dropdown button i {
    font-size: 12px;
  }
}
.home-header .flexbox .navmenu > li.dropdown button.active {
  color: #de1f26;
}
.home-header .flexbox .navmenu > li.dropdown button.active i {
  color: #de1f26;
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li.dropdown .dropdown-backdrop {
    display: none;
  }
}
.home-header .flexbox .navmenu > li.dropdown .dropdown-menu {
  min-width: inherit;
  margin: 36px 0 0;
  left: -20px;
  right: -20px;
  padding: 15px 0 0;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  border-top: 1px solid #ccc;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li.dropdown .dropdown-menu {
    left: 0;
    right: 0;
    padding: 5px 0;
  }
}
@media (min-width: 768px) {
  .home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li {
    margin: 0 0 10px;
  }
}
.home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li > a {
  transition: 0.3s;
}
.home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li > a > span {
  position: relative;
}
.home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li > a > span:after {
  background-color: #de1f26;
  bottom: -14px;
  content: '';
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}
.home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li > a:hover {
  color: #333;
  background: transparent;
}
.home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li > a:hover > span:after {
  bottom: -7px;
  opacity: 1;
  transition-delay: 300ms;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li.active > a {
  color: #333;
  background: transparent;
}
.home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li.active > a > span:after {
  bottom: -7px;
  opacity: 1;
  transition-delay: 300ms;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li.dropdown .dropdown-menu {
    position: relative;
    width: 100%;
    margin: 0 0 10px;
  }
  .home-header .flexbox .navmenu > li.dropdown .dropdown-menu > li > a {
    padding: 5px 15px;
  }
}
.home-header .flexbox .navmenu > li.dropdown.open button i {
  transform: rotate(-180deg);
}
.home-header .flexbox .navmenu > li > a {
  font-size: 14px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .home-header .flexbox .navmenu > li > a {
    display: block;
    padding: 15px 0;
    color: #fff;
    border-bottom: 1px solid #484848;
  }
}
@media (max-width: 575px) {
  .home-header .flexbox .navmenu > li > a {
    padding: 10px 0;
  }
}
.home-footer .footer-top {
  padding: 130px 0;
  background: #27282a;
}
@media (max-width: 991px) {
  .home-footer .footer-top {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .home-footer .footer-top {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top {
    padding: 40px 0;
  }
}
.home-footer .footer-top .flexbox {
  display: flex;
}
@media (max-width: 991px) {
  .home-footer .footer-top .flexbox {
    flex-wrap: wrap;
  }
}
.home-footer .footer-top .leftbox {
  margin: 0 10% 0 0;
}
@media (max-width: 1599px) {
  .home-footer .footer-top .leftbox {
    margin: 0 50px 0 0;
  }
}
@media (max-width: 991px) {
  .home-footer .footer-top .leftbox {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .home-footer .footer-top .leftbox {
    margin: 0 0 30px;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top .leftbox {
    margin: 0 0 20px;
  }
}
.home-footer .footer-top .leftbox .flogo {
  width: 200px;
  margin: 0 0 25px;
}
@media (max-width: 575px) {
  .home-footer .footer-top .leftbox .flogo {
    width: 160px;
    margin: 0 0 20px;
  }
}
.home-footer .footer-top .leftbox .flogo img {
  width: 100%;
}
.home-footer .footer-top .leftbox .des {
  position: relative;
  margin: 0 0 86px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .home-footer .footer-top .leftbox .des {
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .home-footer .footer-top .leftbox .des {
    margin: 0 0 20px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top .leftbox .des {
    font-size: 14px;
    margin: 0 0 15px;
  }
}
.home-footer .footer-top .leftbox .des:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -43px;
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .home-footer .footer-top .leftbox .des:after {
    display: none;
  }
}
.home-footer .footer-top .leftbox ul {
  padding: 0;
  margin: 0;
}
.home-footer .footer-top .leftbox ul li {
  font-size: 16px;
  color: #fff;
  margin: 0 0 12px;
}
.home-footer .footer-top .leftbox ul li a {
  color: #fff;
}
@media (max-width: 767px) {
  .home-footer .footer-top .leftbox ul li {
    font-size: 14px;
  }
}
.home-footer .footer-top .leftbox ul li:after {
  margin: 0;
}
.home-footer .footer-top .rightbox {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home-footer .footer-top .rightbox {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top .rightbox {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top .rightbox .item {
    display: none;
  }
}
.home-footer .footer-top .rightbox .item:last-child {
  margin: 0 0 0 50px;
}
@media (max-width: 1599px) {
  .home-footer .footer-top .rightbox .item:last-child {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top .rightbox .item:last-child {
    width: 80%;
    display: block;
  }
}
.home-footer .footer-top .rightbox .item .tit {
  margin: 0 0 36px;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1599px) {
  .home-footer .footer-top .rightbox .item .tit {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .home-footer .footer-top .rightbox .item .tit {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .home-footer .footer-top .rightbox .item .tit {
    margin: 0 0 30px;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top .rightbox .item .tit {
    margin: 0 0 20px;
  }
}
.home-footer .footer-top .rightbox .item .fmenu {
  padding: 0;
  margin: 0;
}
.home-footer .footer-top .rightbox .item .fmenu li {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .home-footer .footer-top .rightbox .item .fmenu li {
    margin: 0 0 15px;
  }
}
.home-footer .footer-top .rightbox .item .fmenu li:last-child {
  margin: 0;
}
.home-footer .footer-top .rightbox .item .fmenu li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: 0.3s;
}
.home-footer .footer-top .rightbox .item .fmenu li a:hover {
  color: #ffffff;
}
.home-footer .footer-top .rightbox .item form {
  margin: 0 0 22px;
  width: 300px;
}
@media (max-width: 1599px) {
  .home-footer .footer-top .rightbox .item form {
    width: 250px;
  }
}
@media (max-width: 1199px) {
  .home-footer .footer-top .rightbox .item form {
    width: 200px;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top .rightbox .item form {
    width: 100%;
  }
}
.home-footer .footer-top .rightbox .item form input {
  display: block;
  width: 100%;
  height: 47px;
  background: #3c3d3f;
  border: 0;
  outline: none;
  padding: 0 20px;
  font-size: 14px;
  color: #fff;
  margin: 0 0 15px;
}
@media (max-width: 767px) {
  .home-footer .footer-top .rightbox .item form input {
    height: 40px;
  }
}
@media (max-width: 575px) {
  .home-footer .footer-top .rightbox .item form input {
    text-align: center;
  }
}
.home-footer .footer-top .rightbox .item form button {
  display: block;
  width: 100%;
  height: 47px;
  background: #de1f26;
  border: 0;
  outline: none;
  padding: 0 20px;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 1199px) {
  .home-footer .footer-top .rightbox .item form button {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .home-footer .footer-top .rightbox .item form button {
    height: 40px;
  }
}
.home-footer .footer-top .rightbox .item .other-link {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .home-footer .footer-top .rightbox .item .other-link {
    justify-content: center;
  }
}
.home-footer .footer-top .rightbox .item .other-link li {
  position: relative;
  width: 23px;
  margin: 0 23px 0 0;
}
.home-footer .footer-top .rightbox .item .other-link li:last-child {
  margin: 0;
}
.home-footer .footer-top .rightbox .item .other-link li .foo-erweima {
  width: 100px;
  left: 50%;
  top: 100%;
  min-width: inherit;
  padding: 0;
  margin: 10px 0 0 -50px;
}
@media (max-width: 575px) {
  .home-footer .footer-top .rightbox .item .other-link li .foo-erweima {
    top: inherit;
    bottom: 100%;
    margin: 0 0 10px -50px;
  }
}
.home-footer .footer-top .rightbox .item .other-link li .foo-erweima > img {
  width: 100%;
}
.home-footer .footer-top .rightbox .item .other-link li > a > img {
  width: 100%;
  opacity: 0.5;
  transition: 0.3s;
}
.home-footer .footer-top .rightbox .item .other-link li > a:hover > img {
  opacity: 1;
}
.home-footer .footer-bottom {
  background: #1b1c1f;
}
.home-footer .footer-bottom .flexbox {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-footer .footer-bottom .flexbox {
    justify-content: center;
  }
}
.home-footer .footer-bottom .flexbox p {
  color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .home-footer .footer-bottom .flexbox p {
    text-align: center;
    line-height: 1.8;
  }
}
.home-footer .footer-bottom .flexbox p a {
  margin: 0 0 0 10px;
  color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .home-footer .footer-bottom .flexbox p a {
    display: block;
  }
}
.home-footer .footer-bottom .flexbox p a:hover {
  color: #ffffff;
}
.home-footer .footer-bottom .flexbox .friend-link {
  position: relative;
}
@media (max-width: 767px) {
  .home-footer .footer-bottom .flexbox .friend-link {
    display: none;
  }
}
.home-footer .footer-bottom .flexbox .friend-link.open .linkbtn i {
  transform: rotate(180deg);
}
.home-footer .footer-bottom .flexbox .friend-link .linkbtn {
  width: 170px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home-footer .footer-bottom .flexbox .friend-link .linkbtn i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0 20px;
  transition: 0.3s;
}
.home-footer .footer-bottom .flexbox .friend-link .friend-link-panel {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  min-width: 100%;
  max-height: 250px;
  overflow: auto;
  z-index: 1000;
  padding: 5px 0;
  margin: 2px 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.home-footer .footer-bottom .flexbox .friend-link .friend-link-panel::-webkit-scrollbar-thumb {
  background-color: rgba(123, 121, 121, 0.7);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.home-footer .footer-bottom .flexbox .friend-link .friend-link-panel::-webkit-scrollbar {
  width: 4px;
  background-color: #f6f8f9;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.home-footer .footer-bottom .flexbox .friend-link .friend-link-panel > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.home-footer .footer-bottom .flexbox .friend-link .friend-link-panel > li > a:hover {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.home-fixed-badge {
  position: fixed;
  display: inline-block;
  top: 20%;
  max-width: 75px;
  width: 100%;
  right: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (min-width: 1600px) {
  .home-fixed-badge {
    width: 4%;
    min-width: 75px;
  }
}
@media (max-width: 1199px) {
  .home-fixed-badge {
    max-width: 60px;
    top: 100px;
  }
}
@media (max-width: 767px) {
  .home-fixed-badge {
    max-width: 52px;
    top: 75px;
  }
}
@media (max-width: 575px) {
  .home-fixed-badge {
    display: none;
  }
}
.home-fixed-badge.on {
  opacity: 1;
  visibility: visible;
}
.home-fixed-badge img {
  width: 100%;
  height: auto;
}
.home-section1 {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #000;
}
.home-section1-swiper {
  height: 100%;
}
.home-section1-swiper .swiper-wrapper,
.home-section1-swiper .swiper-slide {
  height: 100%;
}
.home-section1-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-section1-swiper h4 {
  position: relative;
  z-index: 1;
  font-size: 72px;
  margin: 0 0 45px;
  color: #fff;
  letter-spacing: 3px;
  text-align: center;
}
@media (max-width: 1599px) {
  .home-section1-swiper h4 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .home-section1-swiper h4 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .home-section1-swiper h4 {
    font-size: 40px;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .home-section1-swiper h4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .home-section1-swiper h4 {
    font-size: 22px;
    margin: 0 0 35px;
  }
}
.home-section1-swiper .text1 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 100;
  letter-spacing: 1px;
}
@media (max-width: 1199px) {
  .home-section1-swiper .text1 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .home-section1-swiper .text1 {
    font-size: 16px;
    margin: 0 0 5px;
  }
}
@media (max-width: 575px) {
  .home-section1-swiper .text1 {
    font-size: 14px;
    padding: 0 13%;
    font-weight: normal;
  }
}
.home-section1-swiper .text2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 100;
  margin: 0 0 90px;
  letter-spacing: 1px;
}
@media (max-width: 1199px) {
  .home-section1-swiper .text2 {
    font-size: 18px;
    margin: 0 0 60px;
  }
}
@media (max-width: 991px) {
  .home-section1-swiper .text2 {
    font-size: 16px;
    margin: 0 0 50px;
  }
}
@media (max-width: 575px) {
  .home-section1-swiper .text2 {
    font-size: 14px;
    padding: 0 15%;
    margin: 0 0 40px;
    font-weight: normal;
  }
}
.home-section1-swiper .text2 span {
  position: relative;
}
.home-section1-swiper .text2 span:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #de1f26;
}
@media (max-width: 575px) {
  .home-section1-swiper .text2 span:after {
    bottom: -5px;
    height: 3px;
  }
}
.home-section1-swiper .text2 span strong {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: bold;
  font-family: "AVANTGA2";
}
@media (max-width: 1199px) {
  .home-section1-swiper .text2 span strong {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .home-section1-swiper .text2 span strong {
    font-size: 24px;
  }
}
.home-section1-swiper .more {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #fff;
  background: #de1f26;
  display: inline-block;
  margin: 0 auto;
  padding: 14px 58px;
  letter-spacing: 1px;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .home-section1-swiper .more {
    padding: 12px 50px;
  }
}
@media (max-width: 575px) {
  .home-section1-swiper .more {
    padding: 10px 38px;
    font-size: 14px;
  }
}
.home-section1-swiper .more:hover {
  background: #dc3d43;
  transform: translateY(-5px);
}
.home-section1-swiper canvas {
  position: absolute;
  left: 0;
  top: 0;
}
.home-section1-swiper .swiper-pagination {
  position: absolute;
  top: 0;
  left: auto;
  bottom: 0;
  right: 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .home-section1-swiper .swiper-pagination {
    top: auto;
    bottom: 20px;
    right: 15px;
  }
}
.home-section1-swiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  border-radius: 0;
  opacity: 1;
  display: block;
  margin: 0 0 30px;
  width: auto;
  height: auto;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-family: "AVANTGA2";
}
@media (max-width: 767px) {
  .home-section1-swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0 15px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .home-section1-swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0 15px;
    font-size: 16px;
  }
}
.home-section1-swiper .swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .home-section1-swiper .swiper-pagination .swiper-pagination-bullet:before {
    width: 20px;
  }
}
.home-section1-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin: 0;
}
.home-section1-swiper .swiper-pagination .swiper-pagination-bullet-active:before {
  background: #fff;
  right: calc(100% + 10px);
}
.home-section1 .mouse {
  width: 20px;
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  animation: rise 0.6s linear infinite alternate;
  cursor: pointer;
}
@media (max-width: 575px) {
  .home-section1 .mouse {
    width: 15px;
  }
}
.home-section1 .mouse img {
  width: 100%;
}
.home-section2 {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.home-section2 .head-tit {
  font-size: 60px;
  color: #27282a;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1599px) {
  .home-section2 .head-tit {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .home-section2 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-section2 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home-section2 .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .home-section2 .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.home-section2 .head-tit span {
  color: #de1f26;
}
.home-section2 .head-des {
  font-size: 20px;
  color: #333;
  text-align: center;
  margin: 0 0 70px;
}
@media (max-width: 767px) {
  .home-section2 .head-des {
    font-size: 18px;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .home-section2 .head-des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}
.home-section2 .flexbox .box-row {
  margin: 0 -3.35%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .home-section2 .flexbox .box-row {
    margin: 0 -25px;
  }
}
@media (max-width: 991px) {
  .home-section2 .flexbox .box-row {
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  .home-section2 .flexbox .box-row {
    margin: 0 -8px;
  }
}
@media (max-width: 575px) {
  .home-section2 .flexbox .box-row {
    margin: 0 -10px;
  }
}
.home-section2 .flexbox .box-col {
  position: relative;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 3.35%;
}
@media (max-width: 1199px) {
  .home-section2 .flexbox .box-col {
    padding: 0 25px;
  }
}
@media (max-width: 991px) {
  .home-section2 .flexbox .box-col {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .home-section2 .flexbox .box-col {
    padding: 0 8px;
  }
}
@media (max-width: 575px) {
  .home-section2 .flexbox .box-col {
    padding: 0 5px;
  }
}
.home-section2 .flexbox .box-col:after {
  content: "";
  position: absolute;
  right: -1.8%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3.5%;
  height: 50px;
  background: url(../images/home/next.png) center / contain no-repeat;
}
@media (max-width: 991px) {
  .home-section2 .flexbox .box-col:after {
    display: none;
  }
}
.home-section2 .flexbox .box-col:last-child:after {
  display: none;
}
.home-section2 .flexbox .item {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 30px 0 rgba(36, 9, 10, 0.05);
}
.home-section2 .flexbox .item .info-top {
  padding: 13% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .home-section2 .flexbox .item .info-top {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .home-section2 .flexbox .item .info-top {
    padding: 30px 0;
  }
}
.home-section2 .flexbox .item .info-top h4 {
  font-size: 50px;
  color: #de1f26;
  margin: 0 0 10px;
  text-align: center;
  font-family: "AVANTGA2";
}
@media (max-width: 991px) {
  .home-section2 .flexbox .item .info-top h4 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .home-section2 .flexbox .item .info-top h4 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .home-section2 .flexbox .item .info-top h4 {
    font-size: 26px;
  }
}
.home-section2 .flexbox .item .info-top p {
  font-size: 18px;
  color: #333;
  text-align: center;
}
@media (max-width: 575px) {
  .home-section2 .flexbox .item .info-top p {
    font-size: 14px;
  }
}
.home-section2 .flexbox .item .logo-bottom {
  padding: 35px 0;
  height: 120px;
  overflow: hidden;
  box-shadow: 0 -3px 30px 0 rgba(36, 9, 10, 0.05);
}
@media (max-width: 767px) {
  .home-section2 .flexbox .item .logo-bottom {
    padding: 20px 15px;
    height: 90px;
  }
}
@media (max-width: 575px) {
  .home-section2 .flexbox .item .logo-bottom {
    padding: 12px 0;
    height: 50px;
  }
}
.home-section2 .flexbox .item .logo-bottom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-section3 {
  background: #fff;
}
@media (min-width: 1600px) {
  .home-section3 > .container {
    width: 100%;
  }
}
.home-section3 .flexbox {
  margin: 0 5.83% 0 13.2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1599px) {
  .home-section3 .flexbox {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .home-section3 .flexbox {
    display: block;
  }
}
.home-section3 .flexbox .leftbox {
  width: 40.4%;
}
@media (max-width: 1599px) {
  .home-section3 .flexbox .leftbox {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .home-section3 .flexbox .leftbox {
    width: 100%;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .home-section3 .flexbox .leftbox {
    width: 100%;
    margin: 0 0 30px;
  }
}
.home-section3 .flexbox .leftbox .head-tit {
  font-size: 65px;
  color: #27282a;
  margin: 0 0 100px;
  line-height: 1.2;
}
@media (max-width: 1710px) {
  .home-section3 .flexbox .leftbox .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .home-section3 .flexbox .leftbox .head-tit {
    font-size: 45px;
    margin: 0 0 70px;
  }
}
@media (max-width: 1199px) {
  .home-section3 .flexbox .leftbox .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-section3 .flexbox .leftbox .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home-section3 .flexbox .leftbox .head-tit {
    font-size: 30px;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .home-section3 .flexbox .leftbox .head-tit {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
.home-section3 .flexbox .leftbox .head-tit span {
  color: #de1f26;
}
.home-section3 .flexbox .rightbox {
  position: relative;
  width: 41%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .home-section3 .flexbox .rightbox {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .home-section3 .flexbox .rightbox {
    width: 100%;
    height: 830px;
  }
}
@media (max-width: 767px) {
  .home-section3 .flexbox .rightbox {
    height: auto;
  }
}
.home-section3 .flexbox .rightbox .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #fff;
}
.home-section3 .flexbox .rightbox img {
  width: 100%;
}
.home-section3 .inner-flexbox {
  overflow: hidden;
  margin: 0 0 80px;
}
@media (max-width: 1599px) {
  .home-section3 .inner-flexbox {
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .home-section3 .inner-flexbox {
    margin: 0;
  }
}
.home-section3 .inner-flexbox .box-row {
  margin: 0 -6.3%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1599px) {
  .home-section3 .inner-flexbox .box-row {
    margin: 0 -25px;
  }
}
@media (max-width: 1199px) {
  .home-section3 .inner-flexbox .box-row {
    margin: 0 -15px;
  }
}
.home-section3 .inner-flexbox .box-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 6.3%;
  margin: 0 0 50px;
}
@media (max-width: 1599px) {
  .home-section3 .inner-flexbox .box-col {
    padding: 0 25px;
  }
}
@media (max-width: 1199px) {
  .home-section3 .inner-flexbox .box-col {
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  .home-section3 .inner-flexbox .box-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
}
.home-section3 .inner-flexbox .item .ico {
  height: 35px;
  margin: 0 0 14px;
}
@media (max-width: 575px) {
  .home-section3 .inner-flexbox .item .ico {
    height: 25px;
  }
}
.home-section3 .inner-flexbox .item .ico img {
  height: 100%;
}
.home-section3 .inner-flexbox .item h4 {
  font-size: 20px;
  color: #666;
  margin: 0 0 18px;
}
@media (max-width: 1199px) {
  .home-section3 .inner-flexbox .item h4 {
    font-size: 18px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .home-section3 .inner-flexbox .item h4 {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.home-section3 .inner-flexbox .item p {
  line-height: 1.8;
  font-size: 14px;
  color: #666;
}
@media (max-width: 575px) {
  .home-section3 .inner-flexbox .item p {
    line-height: 1.6;
  }
}
.home-section4 {
  background: #27282a;
}
.home-section4 .topinfo {
  position: absolute;
  z-index: 10;
}
@media (max-width: 767px) {
  .home-section4 .topinfo {
    position: relative;
  }
}
.home-section4 .topinfo .head-tit {
  font-size: 48px;
  color: #fff;
  margin: 0 0 20px;
}
@media (max-width: 1599px) {
  .home-section4 .topinfo .head-tit {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .home-section4 .topinfo .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-section4 .topinfo .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home-section4 .topinfo .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .home-section4 .topinfo .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.home-section4 .topinfo .head-des {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 100px;
}
@media (max-width: 1599px) {
  .home-section4 .topinfo .head-des {
    margin: 0 0 80px;
  }
}
@media (max-width: 991px) {
  .home-section4 .topinfo .head-des {
    font-size: 18px;
    margin: 0 0 60px;
  }
}
@media (max-width: 767px) {
  .home-section4 .topinfo .head-des {
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .home-section4 .topinfo .head-des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .home-section4 .app-scroll-box {
    overflow: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 80px;
  }
}
@media (max-width: 575px) {
  .home-section4 .app-scroll-box {
    padding: 0 0 40px;
  }
}
.home-section4 .linechart {
  margin: 80px 0 0;
}
@media (max-width: 991px) {
  .home-section4 .linechart {
    margin: 100px 0 0;
  }
}
@media (max-width: 767px) {
  .home-section4 .linechart {
    margin: 0;
    width: 768px;
  }
}
@media (min-width: 1600px) {
  .home-section4 .linechart .min-bg {
    width: 88.3%;
  }
}
@media (max-width: 1599px) {
  .home-section4 .linechart .min-bg {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .home-section4 .linechart .min-bg {
    width: 100%;
  }
}
.home-section4 .linechart .line-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-section4 .linechart .line-box .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #27282a;
}
.home-section4 .linechart .line-box img {
  width: 100%;
}
.home-section4 .linechart .section-line {
  position: relative;
  width: 88.3%;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  .home-section4 .linechart .section-line {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .home-section4 .linechart .section-line {
    width: 100%;
  }
}
.home-section4 .linechart .section-line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #de1f26;
}
@media (max-width: 575px) {
  .home-section4 .linechart .section-line:before {
    height: 2px;
  }
}
.home-section4 .linechart .item-group {
  display: flex;
  position: relative;
  z-index: 10;
}
.home-section4 .linechart .item-group .item {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 36px 0 0;
}
@media (max-width: 1599px) {
  .home-section4 .linechart .item-group .item {
    padding: 30px 0 0;
  }
}
.home-section4 .linechart .item-group .item:before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #de1f26;
  left: -18px;
  top: -18px;
}
@media (max-width: 1599px) {
  .home-section4 .linechart .item-group .item:before {
    width: 26px;
    height: 26px;
    left: -13px;
    top: -13px;
  }
}
@media (max-width: 1199px) {
  .home-section4 .linechart .item-group .item:before {
    width: 20px;
    height: 20px;
    left: -10px;
    top: -10px;
  }
}
@media (max-width: 575px) {
  .home-section4 .linechart .item-group .item:before {
    width: 12px;
    height: 12px;
    left: -6px;
    top: -6px;
  }
}
.home-section4 .linechart .item-group .item h4 {
  font-size: 18px;
  color: #fff;
  margin: 0 28% 0 0;
  line-height: 1.5;
}
@media (max-width: 1710px) {
  .home-section4 .linechart .item-group .item h4 {
    margin: 0 15% 0 0;
  }
}
@media (max-width: 1599px) {
  .home-section4 .linechart .item-group .item h4 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .home-section4 .linechart .item-group .item h4 {
    font-size: 14px;
    margin: 0 20px 0 0;
  }
}
.home-section4 .linechart .item-group .item img {
  transform: translateY(10px);
}
@media (max-width: 1599px) {
  .home-section4 .linechart .item-group .item img {
    width: 30px;
  }
}
@media (max-width: 991px) {
  .home-section4 .linechart .item-group .item img {
    width: 25px;
  }
}
.home-section5 {
  background: #fff;
}
@media (min-width: 1600px) {
  .home-section5 > .container {
    width: 100%;
  }
}
.home-section5 .flexbox {
  margin: 0 13.2% 0 5.83%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1599px) {
  .home-section5 .flexbox {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .home-section5 .flexbox {
    display: flex;
    flex-direction: column-reverse;
  }
}
.home-section5 .flexbox .leftbox {
  position: relative;
  width: 41%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .home-section5 .flexbox .leftbox {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .home-section5 .flexbox .leftbox {
    width: 100%;
    height: 700px;
  }
}
@media (max-width: 767px) {
  .home-section5 .flexbox .leftbox {
    height: auto;
  }
}
.home-section5 .flexbox .leftbox .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #fff;
}
.home-section5 .flexbox .leftbox img {
  width: 100%;
}
.home-section5 .flexbox .rightbox {
  width: 40.4%;
}
@media (max-width: 1599px) {
  .home-section5 .flexbox .rightbox {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .home-section5 .flexbox .rightbox {
    width: 100%;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .home-section5 .flexbox .rightbox {
    width: 100%;
    margin: 0 0 30px;
  }
}
.home-section5 .flexbox .rightbox .head-tit {
  font-size: 65px;
  color: #27282a;
  margin: 0 0 80px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 1710px) {
  .home-section5 .flexbox .rightbox .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .home-section5 .flexbox .rightbox .head-tit {
    font-size: 45px;
    margin: 0 0 70px;
  }
}
@media (max-width: 1199px) {
  .home-section5 .flexbox .rightbox .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-section5 .flexbox .rightbox .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home-section5 .flexbox .rightbox .head-tit {
    font-size: 30px;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .home-section5 .flexbox .rightbox .head-tit {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
.home-section5 .flexbox .rightbox .head-tit span {
  color: #de1f26;
}
.home-section5 .flexbox .rightbox .des {
  color: #666;
  font-size: 16px;
  line-height: 2.3;
  margin: 0 0 180px;
}
@media (max-width: 1199px) {
  .home-section5 .flexbox .rightbox .des {
    line-height: 2;
  }
}
@media (max-width: 991px) {
  .home-section5 .flexbox .rightbox .des {
    margin: 0 0 80px;
  }
}
@media (max-width: 767px) {
  .home-section5 .flexbox .rightbox .des {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .home-section5 .flexbox .rightbox .des {
    margin: 0 0 30px;
  }
}
.home-section6 {
  background: #f7f7f7;
}
.home-section6 .topinfo {
  text-align: center;
  margin: 0 0 85px;
}
@media (max-width: 575px) {
  .home-section6 .topinfo {
    margin: 0 0 40px;
  }
}
.home-section6 .head-tit {
  font-size: 60px;
  color: #27282a;
  margin: 0 0 30px;
  white-space: nowrap;
}
@media (max-width: 1710px) {
  .home-section6 .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .home-section6 .head-tit {
    font-size: 45px;
    margin: 0 0 40px;
  }
}
@media (max-width: 1199px) {
  .home-section6 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-section6 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home-section6 .head-tit {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .home-section6 .head-tit {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
.home-section6 .head-tit span {
  color: #de1f26;
}
.home-section6 .des {
  color: #666;
  font-size: 18px;
  margin: 0 0 95px;
}
@media (max-width: 1599px) {
  .home-section6 .des {
    margin: 0 0 60px;
  }
}
@media (max-width: 1199px) {
  .home-section6 .des {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .home-section6 .des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}
@media (min-width: 1470px) {
  .home-section6-container {
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }
}
.home-section6-swiper .swiper-slide .item-group {
  display: flex;
  opacity: 0;
  transform: translateY(10%);
  transition: 0.5s;
}
.home-section6-swiper .swiper-slide .item {
  flex: 0 0 25%;
  max-width: 25%;
  height: 360px;
  overflow: hidden;
}
@media (max-width: 1710px) {
  .home-section6-swiper .swiper-slide .item {
    height: 310px;
  }
}
@media (max-width: 1199px) {
  .home-section6-swiper .swiper-slide .item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 991px) {
  .home-section6-swiper .swiper-slide .item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .home-section6-swiper .swiper-slide .item {
    height: 180px;
  }
}
.home-section6-swiper .swiper-slide .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-section6-swiper .swiper-slide-active .item-group {
  opacity: 1;
  transform: translateY(0);
}
.home-section7 {
  background: #fff url(../images/home/sec7-bg.png) bottom right / 30% auto no-repeat;
}
.home-section7-swiper {
  width: 63%;
  margin: 0 0 80px;
}
.home-section7 .swiper-bottom-operate .swiper-button-next::after, .home-section7 .swiper-bottom-operate .swiper-button-prev::after {
  display: none;
}
@media (max-width: 1199px) {
  .home-section7-swiper {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .home-section7-swiper {
    width: 95%;
    margin: 0 auto 60px;
  }
}
@media (max-width: 575px) {
  .home-section7-swiper {
    width: 100%;
    margin: 0 0 40px;
  }
}
.home-section7-swiper .swiper-slide {
  cursor: -webkit-grab;
  cursor: grab;
}
.home-section7-swiper .item .markdown-text {
  margin: 0 0 55px;
}
@media (max-width: 575px) {
  .home-section7-swiper .item .markdown-text {
    margin: 0 0 40px;
  }
}
.home-section7-swiper .item .markdown-text p {
  font-size: 24px;
  color: #333;
  line-height: 2.2;
}
@media (max-width: 1199px) {
  .home-section7-swiper .item .markdown-text p {
    font-size: 20px;
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .home-section7-swiper .item .markdown-text p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .home-section7-swiper .item .markdown-text p {
    font-size: 16px;
    line-height: 1.8;
  }
}
.home-section7-swiper .item .info {
  display: flex;
  align-items: center;
}
.home-section7-swiper .item .info .user {
  flex: 0 0 50px;
  max-width: 50px;
  margin: 0 18px 0 0;
  overflow: hidden;
}
.home-section7-swiper .item .info .user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-section7-swiper .item .info .rightinfo h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0 0 5px;
}
@media (max-width: 575px) {
  .home-section7-swiper .item .info .rightinfo h4 {
    font-size: 16px;
  }
}
.home-section7-swiper .item .info .rightinfo p {
  font-size: 14px;
  color: #666;
}
.home-section7 .swiper-bottom-operate {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .home-section7 .swiper-bottom-operate {
    width: 95%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .home-section7 .swiper-bottom-operate {
    width: 100%;
  }
}
.home-section7 .swiper-bottom-operate .swiper-button-next,
.home-section7 .swiper-bottom-operate .swiper-button-prev {
  position: static;
  background: transparent;
  margin: 0;
  height: auto;
  width: auto;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}
.home-section7 .swiper-bottom-operate .swiper-button-next i,
.home-section7 .swiper-bottom-operate .swiper-button-prev i {
  color: #ccc;
  font-size: 24px;
}
.home-section7 .swiper-bottom-operate .swiper-pagination {
  position: static;
  width: auto;
  color: #666;
  font-size: 14px;
  margin: 0 20px;
}
.home-section7 .swiper-bottom-operate .swiper-pagination-current {
  color: #de1f26;
  font-size: 24px;
}
.home-section8 {
  background: #27282a;
}
@media (max-width: 575px) {
  .home-section8 {
    padding: 40px 0 10px;
  }
}
.home-section8 .sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 45px;
  position: relative;
}
@media (max-width: 575px) {
  .home-section8 .sec-head {
    margin: 0 0 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .home-section8 .sec-head .leftinfo {
    margin: 0 0 30px;
  }
}
.home-section8 .sec-head .leftinfo h2 {
  font-size: 48px;
  color: #fff;
  margin: 0 0 12px;
}
@media (max-width: 1599px) {
  .home-section8 .sec-head .leftinfo h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .home-section8 .sec-head .leftinfo h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-section8 .sec-head .leftinfo h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home-section8 .sec-head .leftinfo h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .home-section8 .sec-head .leftinfo h2 {
    font-size: 20px;
  }
}
.home-section8 .sec-head .leftinfo p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  .home-section8 .sec-head .leftinfo p {
    font-size: 14px;
  }
}
.home-section8 .flexbox {
  overflow: hidden;
}
.home-section8 .flexbox .box-row {
  margin: 0 -1%;
  display: flex;
  flex-wrap: wrap;
}
.home-section8 .flexbox .box-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 1%;
}
@media (max-width: 575px) {
  .home-section8 .flexbox .box-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 40px;
  }
}
.home-section8 .flexbox .item {
  margin: 0 0 50px;
}
@media (max-width: 1599px) {
  .home-section8 .flexbox .item {
    margin: 0 0 30px;
  }
}
@media (max-width: 1199px) {
  .home-section8 .flexbox .item {
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .home-section8 .flexbox .item {
    margin: 0 0 10px;
  }
}
.home-section8 .flexbox .item .img-box {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 58.5%;
  overflow: hidden;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .home-section8 .flexbox .item .img-box {
    margin: 0 0 20px;
  }
}
@media (max-width: 575px) {
  .home-section8 .flexbox .item .img-box {
    margin: 0 0 15px;
  }
}
.home-section8 .flexbox .item .img-box .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #ddd;
}
.home-section8 .flexbox .item .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.home-section8 .flexbox .item .info .time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}
.home-section8 .flexbox .item .info h4 {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 0 10px;
  letter-spacing: 1px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 1199px) {
  .home-section8 .flexbox .item .info h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .home-section8 .flexbox .item .info h4 {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .home-section8 .flexbox .item:hover .img-box img {
    transform: scale(1.1);
  }
  .home-section8 .flexbox .item:hover .info .time,
  .home-section8 .flexbox .item:hover .info h4 {
    transform: translateX(10px);
  }
}
.home-section8 .flexbox .sec8-newslist {
  padding: 0;
  margin: 0;
}
.home-section8 .flexbox .sec8-newslist > li > a {
  padding: 20px 0;
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1599px) {
  .home-section8 .flexbox .sec8-newslist > li > a {
    padding: 15px 0;
  }
}
.home-section8 .flexbox .sec8-newslist > li > a h4 {
  position: relative;
  margin: 0;
  padding: 0 15px 0 25px;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 1599px) {
  .home-section8 .flexbox .sec8-newslist > li > a h4 {
    font-size: 14px;
    padding: 0 15px;
  }
}
.home-section8 .flexbox .sec8-newslist > li > a h4:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #de1f26;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1599px) {
  .home-section8 .flexbox .sec8-newslist > li > a h4:after {
    width: 5px;
    height: 5px;
  }
}
.home-section8 .flexbox .sec8-newslist > li > a span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}
.home-section8 .flexbox .sec8-newslist > li:hover h4 {
  padding: 0 15px 0 30px;
}
@media (max-width: 1599px) {
  .home-section8 .flexbox .sec8-newslist > li:hover h4 {
    padding: 0 15px 0 20px;
  }
}
.home-section9 {
  background: #fff;
}
.home-section9 .head-tit {
  font-size: 60px;
  color: #27282a;
  margin: 0 0 30px;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 1710px) {
  .home-section9 .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .home-section9 .head-tit {
    font-size: 45px;
    margin: 0 0 40px;
  }
}
@media (max-width: 1199px) {
  .home-section9 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-section9 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home-section9 .head-tit {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .home-section9 .head-tit {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
.home-section9 .head-tit span {
  color: #de1f26;
}
.home-section9 .des {
  color: #666;
  font-size: 16px;
  margin: 0 0 110px;
  text-align: center;
}
@media (max-width: 1599px) {
  .home-section9 .des {
    margin: 0 0 70px;
  }
}
@media (max-width: 575px) {
  .home-section9 .des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}
.home-section9 .flexbox {
  overflow: hidden;
}
.home-section9 .flexbox .box-row {
  margin: 0 -2.85%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1599px) {
  .home-section9 .flexbox .box-row {
    margin: 0 -1.2%;
  }
}
@media (max-width: 575px) {
  .home-section9 .flexbox .box-row {
    margin: 0 -8px;
  }
}
.home-section9 .flexbox .box-col {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 2.85%;
  display: flex;
}
@media (max-width: 1599px) {
  .home-section9 .flexbox .box-col {
    padding: 0 1.2%;
  }
}
@media (max-width: 991px) {
  .home-section9 .flexbox .box-col {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .home-section9 .flexbox .box-col {
    padding: 0 8px;
    margin: 0 0 40px;
  }
}
.home-section9 .flexbox .item {
  position: relative;
  padding: 0 0 140px;
  width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .home-section9 .flexbox .item {
    padding: 0 0 100px;
  }
}
@media (max-width: 991px) {
  .home-section9 .flexbox .item {
    padding: 0 0 70px;
  }
}
@media (max-width: 575px) {
  .home-section9 .flexbox .item {
    padding: 0 0 50px;
  }
}
.home-section9 .flexbox .item .ico {
  height: 32px;
  overflow: hidden;
  margin: 0 0 18px;
}
@media (max-width: 575px) {
  .home-section9 .flexbox .item .ico {
    height: 25px;
  }
}
.home-section9 .flexbox .item .ico img {
  height: 100%;
}
.home-section9 .flexbox .item h4 {
  color: #333;
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .home-section9 .flexbox .item h4 {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
@media (max-width: 575px) {
  .home-section9 .flexbox .item h4 {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.home-section9 .flexbox .item p {
  color: #666;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .home-section9 .flexbox .item p {
    line-height: 1.6;
    letter-spacing: 0;
  }
}
.home-section9 .flexbox .item .section-more {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
}
.home-section10 {
  overflow: hidden;
  background: #f6f6f6;
}
.home-section10 .flexbox .box-row {
  margin: 0 -3.6%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .home-section10 .flexbox .box-row {
    margin: 0 -15px;
  }
}
@media (max-width: 575px) {
  .home-section10 .flexbox .box-row {
    flex-direction: column-reverse;
  }
}
.home-section10 .flexbox .box-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 3.6%;
}
@media (max-width: 767px) {
  .home-section10 .flexbox .box-col {
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  .home-section10 .flexbox .box-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.home-section10 .img-box {
  width: 100%;
  box-shadow: 0 3px 30px 0 rgba(42, 41, 38, 0.15);
}
@media (max-width: 575px) {
  .home-section10 .img-box {
    margin: 30px 0 0;
  }
}
.home-section10 .img-box img {
  width: 100%;
}
.home-section10 .head-tit {
  font-size: 60px;
  color: #27282a;
  margin: 0 0 40px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 1710px) {
  .home-section10 .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .home-section10 .head-tit {
    font-size: 45px;
    margin: 0 0 30px;
  }
}
@media (max-width: 1199px) {
  .home-section10 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-section10 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home-section10 .head-tit {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .home-section10 .head-tit {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
.home-section10 .head-tit span {
  color: #de1f26;
}
.home-section10 .des {
  color: #666;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 120px;
  letter-spacing: 1px;
}
@media (max-width: 1599px) {
  .home-section10 .des {
    margin: 0 0 80px;
  }
}
@media (max-width: 1199px) {
  .home-section10 .des {
    margin: 0 0 60px;
    line-height: 1.8;
  }
}
@media (max-width: 575px) {
  .home-section10 .des {
    font-size: 14px;
    margin: 0 0 20px;
  }
}
.website-section1{
  background-color: #fff;
}
.website-section2 {
  padding: 0 9% 165px 13.2%;
  background-color: #fff;
}
@media (min-width: 1920px) {
  .website-section2 {
    padding: 3% 9% 165px 13.2%;
  }
}
@media (max-width: 1599px) {
  .website-section2 {
    padding: 0 0 160px;
  }
}
@media (max-width: 1199px) {
  .website-section2 {
    padding: 0 0 140px;
  }
}
@media (max-width: 991px) {
  .website-section2 {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .website-section2 {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .website-section2 {
    padding: 40px 0;
  }
}
@media (min-width: 1600px) {
  .website-section2 > .container {
    width: 100%;
  }
}
.website-section2 .flexbox {
  display: flex;
  justify-content: space-between;
}
.website-section2 .info {
  padding: 125px 0 0;
}
@media (max-width: 1599px) {
  .website-section2 .info {
    padding: 90px 0 0;
  }
}
@media (max-width: 991px) {
  .website-section2 .info {
    padding: 0;
  }
}
.website-section2 .info h2 {
  font-weight: bold;
  font-size: 55px;
  color: #27282a;
  margin: 0 0 55px;
}
@media (max-width: 1599px) {
  .website-section2 .info h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .website-section2 .info h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .website-section2 .info h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .website-section2 .info h2 {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .website-section2 .info h2 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.website-section2 .info h2 span {
  color: #de1f26;
}
.website-section2 .info p {
  font-size: 18px;
  color: #666;
  line-height: 2.5;
  margin: 0 0 190px;
}
@media (max-width: 1599px) {
  .website-section2 .info p {
    margin: 0 0 90px;
  }
}
@media (max-width: 1199px) {
  .website-section2 .info p {
    font-size: 16px;
    line-height: 2;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .website-section2 .info p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 40px;
  }
}
.website-section2 .img-box {
  flex: 0 0 37.2%;
  max-width: 37.2%;
}
@media (max-width: 991px) {
  .website-section2 .img-box {
    display: none;
  }
}
.website-section2 .img-box img {
  width: 100%;
}
@media (min-width: 1920px) {
  .website-section2.new-website-section2 {
    padding: 3% 5.589% 165px 13.2%;
  }
}
@media (max-width: 1599px) {
  .website-section2.new-website-section2 {
    padding: 0 0 160px;
  }
}
@media (max-width: 1199px) {
  .website-section2.new-website-section2 {
    padding: 0 0 140px;
  }
}
@media (max-width: 991px) {
  .website-section2.new-website-section2 {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .website-section2.new-website-section2 {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .website-section2.new-website-section2 {
    padding: 40px 0;
  }
}
.website-section2.new-website-section2 .img-box {
  flex: 0 0 44.777%;
  max-width: 44.777%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .website-section2.new-website-section2 .img-box {
    display: none;
  }
}
@media (max-width: 1599px) {
  .website-section2.new-website-section2 .info h2 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .website-section2.new-website-section2 .info h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .website-section2.new-website-section2 .info h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .website-section2.new-website-section2 .info h2 {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .website-section2.new-website-section2 .info h2 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.website-section2.new-website-section2 .info h2 span {
  color: #de1f26;
}
.website-section3 {
  position: relative;
  overflow: hidden;
  background: #fff;/*#27282a;*/
}
.website-section3 .head-tit {
  font-size: 40px;
  color: #000;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1199px) {
  .website-section3 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .website-section3 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .website-section3 .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .website-section3 .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.website-section3 .head-tit span {
  color: #de1f26;
}
.website-section3 .head-des {
  font-size: 20px;
  color: #999;
  text-align: center;
  margin: 0 0 70px;
}
@media (max-width: 767px) {
  .website-section3 .head-des {
    font-size: 18px;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .website-section3 .head-des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}
.website-section3 .flexbox .box-row {
  margin: 0 -3.35%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .website-section3 .flexbox .box-row {
    margin: 0 -25px;
  }
}
@media (max-width: 991px) {
  .website-section3 .flexbox .box-row {
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  .website-section3 .flexbox .box-row {
    margin: 0 -8px;
  }
}
@media (max-width: 575px) {
  .website-section3 .flexbox .box-row {
    margin: 0 -10px;
  }
}
.website-section3 .flexbox .box-col {
  position: relative;
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 0;
  display: flex;
}
@media (max-width: 1199px) {
  .website-section3 .flexbox .box-col {
    padding: 0 25px;
  }
}
@media (max-width: 991px) {
  .website-section3 .flexbox .box-col {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .website-section3 .flexbox .box-col {
    padding: 0 8px;
  }
}
@media (max-width: 575px) {
  .website-section3 .flexbox .box-col {
    padding: 0 5px;
  }
}
.website-section3 .flexbox .box-col:after {
  content: "";
  position: absolute;
  right: -1.8%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3.5%;
  height: 50px;
  background: url(../images/home/next-g.png) center / contain no-repeat;
}
@media (max-width: 991px) {
  .website-section3 .flexbox .box-col:after {
    display: none;
  }
}
.website-section3 .flexbox .box-col:last-child:after {
  display: none;
}
.website-section3 .flexbox .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 90%;
  height: auto;
  overflow: hidden;
  background: #356db7;
  box-shadow: 0 3px 30px 0 rgba(36, 9, 10, 0.05);
}
.website-section3 .flexbox .item .info-top {
  padding: 20% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .website-section3 .flexbox .item .info-top {
    padding: 30px 0;
  }
}
@media (max-width: 575px) {
  .website-section3 .flexbox .item .info-top {
    padding: 20px 0;
  }
}
.website-section3 .flexbox .item .info-top h4 {
  font-size: 30px;
  color: #fff;
  margin: 0 0 10px;
  text-align: center;
  font-family: "AVANTGA2";
}
@media (max-width: 1599px) {
  .website-section3 .flexbox .item .info-top h4 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .website-section3 .flexbox .item .info-top h4 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .website-section3 .flexbox .item .info-top h4 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .website-section3 .flexbox .item .info-top h4 {
    font-size: 18px;
  }
}
.website-section3 .flexbox .item .info-top p {
  font-size: 18px;
  color: #000;
  text-align: center;
  padding: 0 10px;
}
@media (max-width: 575px) {
  .website-section3 .flexbox .item .info-top p {
    font-size: 14px;
    padding: 0 10px;
  }
}
.website-section3 .flexbox .item .logo-bottom {
  padding: 35px 0;
  height: 120px;
  overflow: hidden;
  box-shadow: 0 -3px 30px 0 rgba(36, 9, 10, 0.05);
}
@media (max-width: 1599px) {
  .website-section3 .flexbox .item .logo-bottom {
    padding: 20px 15px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .website-section3 .flexbox .item .logo-bottom {
    padding: 12px 0;
    height: 50px;
  }
}
.website-section3 .flexbox .item .logo-bottom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.website-section4 {
  background: #fff;
}
.website-section4 .sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 45px;
  position: relative;
}
@media (max-width: 575px) {
  .website-section4 .sec-head {
    margin: 0 0 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .website-section4 .sec-head .leftinfo {
    margin: 0 0 30px;
  }
}
.website-section4 .sec-head .leftinfo h2 {
  font-size: 48px;
  color: #27282a;
  margin: 0 0 12px;
}
@media (max-width: 1599px) {
  .website-section4 .sec-head .leftinfo h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .website-section4 .sec-head .leftinfo h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .website-section4 .sec-head .leftinfo h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .website-section4 .sec-head .leftinfo h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .website-section4 .sec-head .leftinfo h2 {
    font-size: 20px;
  }
}
.website-section4 .sec-head .leftinfo p {
  font-size: 16px;
  color: #666;
}
@media (max-width: 575px) {
  .website-section4 .sec-head .leftinfo p {
    font-size: 14px;
  }
}
.website-section4 .idx_case_list {
  padding: 0;
  margin: 0;
}
.website-section4 .idx_case_list li {
  width: 50%;
  position: relative;
  padding-bottom: 32%;
  float: left;
  overflow: hidden;
}
.website-section4 .idx_case_list .img_box {
  position: absolute;
  top: -3%;
  bottom: -3%;
  left: -3%;
  right: -3%;
}
.website-section4 .idx_case_list .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.website-section4 .idx_case_list .parallax-box {
  position: absolute;
  width: 100%;
  height: 100%;
}
.website-section4 .idx_case_list li:hover .tips {
  bottom: 30px;
}
.website-section4 .idx_case_list .tips {
  position: absolute;
  bottom: -100px;
  transition: 0.3s;
  overflow: hidden;
  width: 65%;
  z-index: 99;
  height: 50px;
  transition: linear 0.3s;
  padding: 0 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1200px) {
  .website-section4 .idx_case_list .tips {
    width: 88%;
  }
}
.website-section4 .idx_case_list .tips h4 {
  font-size: 16px;
  line-height: inherit;
  margin: 0;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 5px 0 0;
}
.website-section4 .idx_case_list .tips span {
  white-space: nowrap;
}
.website-section4 .idx_case_list .tips::after {
  content: "";
  clear: both;
  display: block;
}
.website-section4 .idx_case_list .time-1 {
  transition: 0.1s;
}
.website-section4 .idx_case_list .time-2 {
  transition: 0.2s;
}
.website-section4 .idx_case_list .time-3 {
  transition: 0.3s;
}
.website-section4 .idx_case_list .time-4 {
  transition: 0.4s;
}
.website-section4 .idx_case_list .time-5 {
  transition: 0.5s;
}
@media only screen and (max-width: 650px) {
  .website-section4 .idx_case_list {
    padding: 10px 0 40px 0;
  }
  .website-section4 .idx_case_list .tips {
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 30px;
    overflow: hidden;
    left: 20px;
    transform: translateX(0);
    background: transparent;
    border-radius: 9999px;
    bottom: 10px;
  }
  .website-section4 .idx_case_list .txt_show {
    background: #fff;
    width: 88%;
    padding: 0 20px;
  }
  .website-section4 .idx_case_list .tips h4:after {
    content: "...";
    text-align: center;
    float: left;
    width: 30px;
    height: 30px;
    display: block;
    line-height: 22px;
    background: #fff;
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.295);
  }
  .website-section4 .idx_case_list li:hover .tips {
    bottom: 10px;
    height: 30px;
    line-height: 30px;
  }
  .website-section4 .idx_case_list .tips h4 {
    font-size: 14px;
    padding-left: 20px;
  }
  .website-section4 .idx_case_list li {
    width: 100%;
  }
  .website-section4 .idx_case_list li {
    padding-bottom: 63%;
  }
  .website-section4 .idx_case_list .parallax-box {
    position: absolute;
    transition: linear 0.1s;
    left: 0;
    top: 0;
    transform: translate(0px, 0px);
  }
}
.website-section5 {
  background: #1a1a1a;
}
.website-section5 .sec5-head {
  position: relative;
  z-index: 1;
  margin: 0 0 80px;
}
@media (max-width: 1599px) {
  .website-section5 .sec5-head {
    margin: 0 0 60px;
  }
}
@media (max-width: 1199px) {
  .website-section5 .sec5-head {
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .website-section5 .sec5-head {
    margin: 0 0 30px;
  }
}
.website-section5 .sec5-head h2 {
  font-size: 48px;
  color: #fff;
  margin: 0 0 28px;
}
@media (max-width: 1599px) {
  .website-section5 .sec5-head h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .website-section5 .sec5-head h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .website-section5 .sec5-head h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .website-section5 .sec5-head h2 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .website-section5 .sec5-head h2 {
    font-size: 20px;
    margin: 0 0 12px;
  }
}
.website-section5 .sec5-head h2 span {
  position: relative;
}
.website-section5 .sec5-head h2 span:after {
  content: "";
  position: absolute;
  left: calc(100% + 30px);
  top: 0;
  bottom: 0;
  margin: auto;
  width: 114px;
  height: 3px;
  background: #fff;
}
@media (max-width: 1599px) {
  .website-section5 .sec5-head h2 span:after {
    width: 80px;
    height: 2px;
  }
}
@media (max-width: 575px) {
  .website-section5 .sec5-head h2 span:after {
    width: 40px;
    height: 1px;
    left: calc(100% + 15px);
  }
}
.website-section5 .sec5-head p {
  max-width: 790px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
@media (max-width: 1599px) {
  .website-section5 .sec5-head p {
    max-width: 600px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .website-section5 .sec5-head p {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .website-section5 .sec5-head p {
    font-size: 14px;
  }
}
.website-section5 .sec5-head .section-more {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 991px) {
  .website-section5 .sec5-head .section-more {
    display: none;
  }
}
.website-section5 .website-sec5-tabs {
  position: relative;
  background: #5c5c5c;
}
.website-section5 .website-sec5-tabs .activebg {
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  background: #f3f3f3;
}
@media (max-width: 1599px) {
  .website-section5 .website-sec5-tabs .activebg {
    height: 2px;
  }
}
.website-section5 .website-sec5-tabs ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.website-section5 .website-sec5-tabs ul li {
  position: relative;
  flex: 1;
}
.website-section5 .website-sec5-tabs ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  transition: 0.3s;
}
@media (max-width: 1599px) {
  .website-section5 .website-sec5-tabs ul li a {
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .website-section5 .website-sec5-tabs ul li a {
    height: 50px;
    font-size: 14px;
  }
}
.website-section5 .website-sec5-tabs ul li i {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  display: flex;
  font-size: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 575px) {
  .website-section5 .website-sec5-tabs ul li i {
    right: -7px;
    font-size: 12px;
  }
}
.website-section5 .website-sec5-tabs ul li.active a {
  color: #ffffff;
}
.website-section5 .website-sec5-tabs ul li:last-child i {
  display: none;
}
.website-section5 .website-sec5-info-swiper .swiper-slide {
  padding: 70px 45px;
}
@media (max-width: 1599px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide {
    padding: 20px 15px;
  }
}
.website-section5 .website-sec5-info-swiper .swiper-slide h4 {
  position: relative;
  font-size: 30px;
  color: #fff;
  margin: 0 0 30px;
}
@media (max-width: 1599px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide h4 {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide h4 {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
@media (max-width: 575px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide h4 {
    font-size: 18px;
    margin: 0 0 15px;
  }
}
.website-section5 .website-sec5-info-swiper .swiper-slide h4 span {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 60px;
  font-weight: 100;
  color: #fff;
  font-family: "AvantGardeITCbyBT-Book";
  display: flex;
  align-items: center;
}
@media (max-width: 1599px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide h4 span {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide h4 span {
    font-size: 28px;
  }
}
.website-section5 .website-sec5-info-swiper .swiper-slide p {
  font-size: 16px;
  color: #fff;
  line-height: 2;
}
@media (max-width: 1199px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide p {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media (max-width: 575px) {
  .website-section5 .website-sec5-info-swiper .swiper-slide p {
    line-height: 1.6;
  }
}
.website-section5 .video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.website-section5 .video .video-img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.website-section5 .video .mask {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.website-section5 .video .mask img {
  width: 60px;
}
.website-section5 .video #movie {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.website-section5 .video:hover .video-img {
  transform: scale(1.03);
}
.website-section5 .flexbox {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .website-section5 .flexbox {
    display: block;
  }
}
.website-section5 .flexbox .leftbox {
  flex: 0 0 50%;
  max-width: 50%;
  background: #252525;
}
@media (max-width: 991px) {
  .website-section5 .flexbox .leftbox {
    flex: inherit;
    max-width: inherit;
    margin: 0 0 40px;
  }
}
.website-section5 .flexbox .videobox {
  position: relative;
  flex: 0 0 42.858%;
  max-width: 42.858%;
}
@media (max-width: 991px) {
  .website-section5 .flexbox .videobox {
    flex: inherit;
    max-width: inherit;
  }
}
.website-section5 .flexbox .videobox:after {
  content: "";
  position: absolute;
  width: 567px;
  height: 300px;
  background: #262626;
  top: -210px;
  right: -80px;
}
@media (max-width: 1599px) {
  .website-section5 .flexbox .videobox:after {
    width: 400px;
  }
}
@media (max-width: 1199px) {
  .website-section5 .flexbox .videobox:after {
    width: 330px;
    height: 200px;
    top: -120px;
    right: -40px;
  }
}
@media (max-width: 991px) {
  .website-section5 .flexbox .videobox:after {
    display: none;
  }
}
.website-section6 .head-tit {
  font-size: 60px;
  color: #27282a;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1599px) {
  .website-section6 .head-tit {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .website-section6 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .website-section6 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .website-section6 .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .website-section6 .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.website-section6 .head-tit span {
  color: #de1f26;
}
.website-section6 .head-des {
  font-size: 20px;
  color: #de1f26;
  text-align: center;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .website-section6 .head-des {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .website-section6 .head-des {
    font-size: 14px;
  }
}
.website-section6 .head-down {
  text-align: center;
  font-size: 20px;
  color: #de1f26;
}
.website-section6 .sec-group {
  background: #fff;
}
.website-section6 .sec-group .flexbox {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
}
.website-section6 .sec-group .flexbox .img-group {
  flex: 1;
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox .img-group {
    flex: inherit;
    width: 100%;
  }
}
.website-section6 .sec-group .flexbox .img-group .img-box {
  position: relative;
  width: 77%;
  padding: 0 0 74%;
  height: 0;
}
@media (max-width: 1199px) {
  .website-section6 .sec-group .flexbox .img-group .img-box {
    width: 84%;
  }
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox .img-group .img-box {
    margin: 0 auto;
  }
}
.website-section6 .sec-group .flexbox .img-group .img-box img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.website-section6 .sec-group .flexbox .img-group .radius {
  position: absolute;
  width: 82%;
  height: 0;
  border-radius: 50%;
  padding: 0 0 79%;
  background: #f6f6f6;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.website-section6 .sec-group .flexbox .info {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox .info {
    flex: inherit;
    max-width: inherit;
    width: 100%;
    margin: 0 0 30px;
  }
}
.website-section6 .sec-group .flexbox .info h4 {
  font-size: 36px;
  color: #333;
  line-height: 1.4;
  margin: 0 0 80px;
}
@media (max-width: 1599px) {
  .website-section6 .sec-group .flexbox .info h4 {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .website-section6 .sec-group .flexbox .info h4 {
    font-size: 26px;
    margin: 0 0 60px;
  }
}
@media (max-width: 991px) {
  .website-section6 .sec-group .flexbox .info h4 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox .info h4 {
    font-size: 18px;
    margin: 0 0 30px;
  }
}
.website-section6 .sec-group .flexbox .info h4 span {
  color: #de1f26;
}
.website-section6 .sec-group .flexbox .info .tips {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #de1f26;
  margin: 0 0 20px;
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox .info .tips {
    font-size: 12px;
  }
}
.website-section6 .sec-group .flexbox .info .tips i {
  margin: 0 0 0 10px;
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox .info .tips i {
    margin: 0 0 0 5px;
  }
}
.website-section6 .sec-group .flexbox .info .des {
  font-size: 22px;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 1599px) {
  .website-section6 .sec-group .flexbox .info .des {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .website-section6 .sec-group .flexbox .info .des {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox .info .des {
    font-size: 14px;
    line-height: 1.6;
  }
}
.website-section6 .sec-group .flexbox .info .more {
  background: #de1f26;
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  display: inline-block;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  .website-section6 .sec-group .flexbox .info .more {
    font-size: 14px;
    padding: 12px 20px;
  }
}
@media (max-width: 575px) {
  .website-section6 .sec-group .flexbox .info .more {
    padding: 10px 15px;
  }
}
.website-section6 .sec-group .flexbox .info .more:hover {
  transform: translateY(-10px);
  background: #ef3037;
}
.website-section6 .sec-group .flexbox .info .more img {
  margin: 0 0 0 16px;
}
.website-section6 .sec-group.nth-child1 {
  padding: 45px 0 100px;
}
@media (max-width: 767px) {
  .website-section6 .sec-group.nth-child1 {
    padding: 45px 0 80px;
  }
}
@media (max-width: 575px) {
  .website-section6 .sec-group.nth-child1 {
    padding: 40px 0;
  }
}
.website-section6 .sec-group.nth-child1 .flexbox .info h4 {
  max-width: 560px;
}
@media (max-width: 1599px) {
  .website-section6 .sec-group.nth-child1 .flexbox .info h4 {
    max-width: 100%;
  }
}
.website-section6 .sec-group.nth-child2 {
  padding: 140px 0;
  background: #f2f2f2;
}
@media (max-width: 991px) {
  .website-section6 .sec-group.nth-child2 {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .website-section6 .sec-group.nth-child2 {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .website-section6 .sec-group.nth-child2 {
    padding: 40px 0;
  }
}
.website-section6 .sec-group.nth-child2 .flexbox {
  flex-direction: row-reverse;
}
@media (max-width: 575px) {
  .website-section6 .sec-group.nth-child2 .flexbox {
    flex-direction: column-reverse;
  }
}
.website-section6 .sec-group.nth-child2 .flexbox .img-group .img-box {
  margin: 0 0 0 auto;
}
@media (max-width: 575px) {
  .website-section6 .sec-group.nth-child2 .flexbox .img-group .img-box {
    margin: 0 auto;
  }
}
.website-section6 .sec-group.nth-child2 .flexbox .img-group .radius {
  background: #f6f6f6;
}
.website-section6 .sec-group.nth-child2 .flexbox .info h4 {
  max-width: 660px;
}
@media (max-width: 1599px) {
  .website-section6 .sec-group.nth-child2 .flexbox .info h4 {
    max-width: 100%;
  }
}
.website-section6 .sec-group.nth-child3 {
  padding: 140px 0;
}
@media (max-width: 991px) {
  .website-section6 .sec-group.nth-child3 {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .website-section6 .sec-group.nth-child3 {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .website-section6 .sec-group.nth-child3 {
    padding: 40px 0;
  }
}
.website-section6 .sec-group.nth-child3 .flexbox .img-group .radius {
  background: #f6f6f6;
}
.website-section6 .sec-group.nth-child3 .flexbox .info h4 {
  max-width: 630px;
}
@media (max-width: 1599px) {
  .website-section6 .sec-group.nth-child3 .flexbox .info h4 {
    max-width: 100%;
  }
}
.website-section6 .sec-group.nth-child3 .flexbox .info .des {
  margin: 0 0 100px;
}
@media (max-width: 1599px) {
  .website-section6 .sec-group.nth-child3 .flexbox .info .des {
    margin: 0 0 80px;
  }
}
@media (max-width: 1199px) {
  .website-section6 .sec-group.nth-child3 .flexbox .info .des {
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .website-section6 .sec-group.nth-child3 .flexbox .info .des {
    margin: 0 0 30px;
  }
}
.website-section7 .sec-group {
  display: flex;
  align-items: center;
  background-color: #fff;
}
@media (max-width: 767px) {
  .website-section7 .sec-group {
    flex-direction: column;
  }
}
.website-section7 .sec-group .img-box {
  position: relative;
  overflow: hidden;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .website-section7 .sec-group .img-box {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .website-section7 .sec-group .img-box {
    flex: inherit;
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .website-section7 .sec-group .img-box {
    height: 280px;
  }
}
.website-section7 .sec-group .img-box .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #fff;
}
.website-section7 .sec-group .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.website-section7 .sec-group .info {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 13.2% 0 7.8%;
}
@media (max-width: 1599px) {
  .website-section7 .sec-group .info {
    padding: 0 0 0 60px;
    max-width: 570px;
  }
}
@media (max-width: 1199px) {
  .website-section7 .sec-group .info {
    max-width: 470px;
  }
}
@media (max-width: 991px) {
  .website-section7 .sec-group .info {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .website-section7 .sec-group .info {
    flex: inherit;
    max-width: inherit;
    width: 100%;
    padding: 30px 15px 40px;
  }
}
.website-section7 .sec-group .info h4 {
  font-size: 48px;
  color: #333;
  line-height: 1.5;
  max-width: 450px;
  margin: 0 0 55px;
}
@media (max-width: 1599px) {
  .website-section7 .sec-group .info h4 {
    font-size: 30px;
    line-height: 1.4;
    max-width: 100%;
    margin: 0 0 40px;
  }
}
@media (max-width: 1199px) {
  .website-section7 .sec-group .info h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .website-section7 .sec-group .info h4 {
    font-size: 22px;
    margin: 0 0 30px;
  }
}
@media (max-width: 575px) {
  .website-section7 .sec-group .info h4 {
    font-size: 18px;
    margin: 0 0 20px;
  }
}
.website-section7 .sec-group .info h4 span {
  color: #de1f26;
}
.website-section7 .sec-group .info .des {
  font-size: 16px;
  color: #666;
  line-height: 2.2;
  margin: 0 0 110px;
}
@media (max-width: 1599px) {
  .website-section7 .sec-group .info .des {
    margin: 0 0 80px;
    line-height: 1.8;
  }
}
@media (max-width: 1199px) {
  .website-section7 .sec-group .info .des {
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .website-section7 .sec-group .info .des {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 30px;
  }
}
.website-section7 .sec-group:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .website-section7 .sec-group:nth-child(even) {
    flex-direction: column;
  }
}
.website-section7 .sec-group:nth-child(even) .info {
  padding: 0 7.8% 0 13.2%;
}
@media (max-width: 1599px) {
  .website-section7 .sec-group:nth-child(even) .info {
    padding: 0 60px 0 0;
    max-width: 570px;
  }
}
@media (max-width: 1199px) {
  .website-section7 .sec-group:nth-child(even) .info {
    max-width: 470px;
  }
}
@media (max-width: 991px) {
  .website-section7 .sec-group:nth-child(even) .info {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .website-section7 .sec-group:nth-child(even) .info {
    flex: inherit;
    max-width: inherit;
    width: 100%;
    padding: 30px 15px;
  }
}
.website-section7 .sec-group:nth-child(even) .info h4 {
  max-width: 400px;
}
@media (max-width: 1599px) {
  .website-section7 .sec-group:nth-child(even) .info h4 {
    max-width: 100%;
  }
}
.advert-section1 .info h2 {
  line-height: 1.4;
  max-width: 725px;
}
@media (max-width: 1599px) {
  .advert-section1 .info h2 {
    max-width: 600px;
  }
}
.advert-section2 {
  position: relative;
  overflow: hidden;
  background: #27282a;
}
.advert-section2 .head-tit {
  font-size: 48px;
  color: #fff;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1199px) {
  .advert-section2 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .advert-section2 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .advert-section2 .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .advert-section2 .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.advert-section2 .head-tit span {
  color: #de1f26;
}
.advert-section2 .head-des {
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 0 0 55px;
}
@media (max-width: 767px) {
  .advert-section2 .head-des {
    font-size: 16px;
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .advert-section2 .head-des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}
.advert-section2 .head-down {
  width: 143px;
  margin: 0 auto 65px;
}
@media (max-width: 991px) {
  .advert-section2 .head-down {
    margin: 0 auto 40px;
  }
}
@media (max-width: 575px) {
  .advert-section2 .head-down {
    display: none;
  }
}
.advert-section2 .head-down img {
  width: 100%;
}
.advert-section2-swiper .swiper-slide .img-box {
  position: relative;
  padding: 0 0 60%;
  width: 100%;
  height: 0;
  margin: 0 0 14px;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .advert-section2-swiper .swiper-slide .img-box {
    padding: 0 0 50%;
  }
}
.advert-section2-swiper .swiper-slide .img-box img {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: 0.3s;
}
.advert-section2-swiper .swiper-slide p {
  text-align: center;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1199px) {
  .advert-section2-swiper .swiper-slide p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .advert-section2-swiper .swiper-slide p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .advert-section2-swiper .swiper-slide:hover .img-box img {
    transform: scale(1.1);
  }
}
.advert-section2-pagination {
  margin: 40px 0 0;
  position: relative;
  width: 100%;
  text-align: center;
}
@media (max-width: 575px) {
  .advert-section2-pagination {
    margin: 30px 0 0;
  }
}
.advert-section2-pagination .swiper-pagination-bullet {
  background: #fff;
  margin: 0 5px;
  opacity: 1;
}
.advert-section2-pagination .swiper-pagination-bullet-active {
  background: #de1f26;
}
.advert-section3 .sec-head h2 {
  font-size: 55px;
  color: #27282a;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1599px) {
  .advert-section3 .sec-head h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .advert-section3 .sec-head h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .advert-section3 .sec-head h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .advert-section3 .sec-head h2 {
    font-size: 25px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .advert-section3 .sec-head h2 {
    font-size: 20px;
    margin: 0 0 10px;
    padding: 0 45px;
  }
}
.advert-section3 .sec-head h2 span {
  color: #de1f26;
}
.advert-section3 .sec-head p {
  font-size: 16px;
  color: #666;
  line-height: 2.5;
  text-align: center;
  margin: 0 0 180px;
}
@media (max-width: 1599px) {
  .advert-section3 .sec-head p {
    margin: 0 0 120px;
  }
}
@media (max-width: 1199px) {
  .advert-section3 .sec-head p {
    line-height: 2;
  }
}
@media (max-width: 991px) {
  .advert-section3 .sec-head p {
    margin: 0 0 100px;
  }
}
@media (max-width: 767px) {
  .advert-section3 .sec-head p {
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .advert-section3 .sec-head p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 40px;
    padding: 0px 35px;
  }
}
.advert-section3 .sec-group {
  margin: 0 0 180px;
}
@media (max-width: 1599px) {
  .advert-section3 .sec-group {
    margin: 0 0 120px;
  }
}
@media (max-width: 991px) {
  .advert-section3 .sec-group {
    margin: 0 0 100px;
  }
}
@media (max-width: 767px) {
  .advert-section3 .sec-group {
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .advert-section3 .sec-group {
    margin: 0 0 40px;
  }
}
.advert-section3 .sec-group:last-child {
  margin: 0;
}
@media (min-width: 1600px) {
  .advert-section3 .sec-group > .container {
    width: 100%;
    padding: 0 9% 0 13.2%;
  }
}
.advert-section3 .sec-group .flexbox {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .advert-section3 .sec-group .flexbox {
    flex-direction: column;
  }
}
.advert-section3 .sec-group .flexbox .info {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767px) {
  .advert-section3 .sec-group .flexbox .info {
    flex: inherit;
    max-width: inherit;
    width: 100%;
    margin: 0 0 40px;
  }
}
.advert-section3 .sec-group .flexbox .info h4 {
  font-size: 36px;
  color: #333;
  margin: 0 0 30px;
}
@media (max-width: 1599px) {
  .advert-section3 .sec-group .flexbox .info h4 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .advert-section3 .sec-group .flexbox .info h4 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .advert-section3 .sec-group .flexbox .info h4 {
    font-size: 18px;
    margin: 0 0 20px;
  }
}
.advert-section3 .sec-group .flexbox .info h4 span {
  color: #de1f26;
}
.advert-section3 .sec-group .flexbox .info .tips {
  font-size: 24px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 45px;
}
@media (max-width: 1599px) {
  .advert-section3 .sec-group .flexbox .info .tips {
    font-size: 20px;
    margin: 0 0 40px;
  }
}
@media (max-width: 991px) {
  .advert-section3 .sec-group .flexbox .info .tips {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .advert-section3 .sec-group .flexbox .info .tips {
    font-size: 14px;
    margin: 0 0 20px;
  }
}
.advert-section3 .sec-group .flexbox .info .words {
  font-size: 18px;
  color: #666;
  line-height: 2;
  margin: 0 0 45px;
}
@media (max-width: 1599px) {
  .advert-section3 .sec-group .flexbox .info .words {
    font-size: 16px;
    margin: 0 0 30px;
  }
}
@media (max-width: 991px) {
  .advert-section3 .sec-group .flexbox .info .words {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .advert-section3 .sec-group .flexbox .info .words {
    margin: 0 0 20px;
  }
}
.advert-section3 .sec-group .flexbox .info .person {
  display: flex;
  align-items: center;
}
.advert-section3 .sec-group .flexbox .info .person .user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eee;
  overflow: hidden;
  margin: 0 16px 0 0;
}
.advert-section3 .sec-group .flexbox .info .person .user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advert-section3 .sec-group .flexbox .info .person h6 {
  font-size: 18px;
  color: #333;
  margin: 0 0 5px;
}
@media (max-width: 991px) {
  .advert-section3 .sec-group .flexbox .info .person h6 {
    font-size: 16px;
  }
}
.advert-section3 .sec-group .flexbox .info .person p {
  font-size: 14px;
  color: #666;
}
.advert-section3 .sec-group .flexbox .img-box {
  flex: 0 0 50%;
  max-width: 50%;
  height: 450px;
  padding: 0 0 0 14%;
}
@media (max-width: 1599px) {
  .advert-section3 .sec-group .flexbox .img-box {
    padding: 0 0 0 10%;
    height: 400px;
  }
}
@media (max-width: 1199px) {
  .advert-section3 .sec-group .flexbox .img-box {
    height: 340px;
  }
}
@media (max-width: 991px) {
  .advert-section3 .sec-group .flexbox .img-box {
    height: 270px;
    padding: 0 0 0 8%;
  }
}
@media (max-width: 767px) {
  .advert-section3 .sec-group .flexbox .img-box {
    flex: inherit;
    max-width: inherit;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .advert-section3 .sec-group .flexbox .img-box {
    height: 250px;
  }
}
.advert-section3 .sec-group .flexbox .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 1600px) {
  .advert-section3 .sec-group.rtl > .container {
    width: 100%;
    padding: 0 13.2% 0 9%;
  }
}
.advert-section3 .sec-group.rtl .flexbox {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .advert-section3 .sec-group.rtl .flexbox {
    flex-direction: column;
  }
}
.advert-section3 .sec-group.rtl .flexbox .img-box {
  padding: 0 14% 0 0;
}
@media (max-width: 1599px) {
  .advert-section3 .sec-group.rtl .flexbox .img-box {
    padding: 0 10% 0 0;
  }
}
@media (max-width: 991px) {
  .advert-section3 .sec-group.rtl .flexbox .img-box {
    padding: 0 8% 0 0;
  }
}
@media (max-width: 767px) {
  .advert-section3 .sec-group.rtl .flexbox .img-box {
    padding: 0;
  }
}
.advert-section4 .head-tit {
  line-height: 1.3;
}
@media (min-width: 1600px) {
  .advert-section4 .head-des {
    margin: 0 0 90px;
  }
}
.advert-section5 {
  background: #27282a;
}
.advert-section5 .head-tit {
	font-weight: bold;
    font-size: 40px;
    line-height: 34px;
    color: #333;
  /*font-size: 48px;*/
  /*color: #fff;*/
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1199px) {
  .advert-section5 .head-tit {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .advert-section5 .head-tit {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .advert-section5 .head-tit {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
@media (max-width: 575px) {
  .advert-section5 .head-tit {
    font-size: 20px;
  }
}
.advert-section5 .head-tit span {
  color: #de1f26;
}
.advert-section5 .head-des {
  font-size: 20px;
  color: #999;
  text-align: center;
  margin: 0 0 75px;
}
@media (max-width: 767px) {
  .advert-section5 .head-des {
    font-size: 18px;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .advert-section5 .head-des {
    font-size: 14px;
    margin: 0 0 40px;
  }
}
.advert-section5 .process {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  display: flex;
  margin: -11px auto 0;
}
@media (max-width: 991px) {
  .advert-section5 .process {
    display: block;
  }
}
@media (max-width: 991px) {
  .advert-section5 .process:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 25px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .advert-section5 .process:before {
    left: 7px;
  }
}
.advert-section5 .process > li {
  position: relative;
  flex: 1;
  margin: 0 2.9% 0 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .advert-section5 .process > li {
    margin: 0 0 40px;
    padding: 0 0 0 50px;
  }
}
@media (max-width: 575px) {
  .advert-section5 .process > li {
    margin: 0 0 30px;
    padding: 0 0 0 40px;
  }
}
.advert-section5 .process > li:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  max-width: 22px;
  max-height: 22px;
  border-radius: 50%;
  background: #999;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  .advert-section5 .process > li:after {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 991px) {
  .advert-section5 .process > li:after {
    position: absolute;
    top: 23px;
  }
}
@media (max-width: 575px) {
  .advert-section5 .process > li:after {
    width: 15px;
    height: 15px;
    top: 18px;
  }
}
.advert-section5 .process > li .inner {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: 17.3% 9% 10.4%;
  margin: 55px 0 0;
}
@media (max-width: 1599px) {
  .advert-section5 .process > li .inner {
    padding: 40px 20px 20px;
  }
}
@media (max-width: 1199px) {
  .advert-section5 .process > li .inner {
    padding: 30px 15px 15px;
  }
}
@media (max-width: 991px) {
  .advert-section5 .process > li .inner {
    opacity: 1;
    margin: 0;
    padding: 20px;
    transform: translateY(0);
  }
}
@media (max-width: 575px) {
  .advert-section5 .process > li .inner {
    padding: 15px;
  }
}
.advert-section5 .process > li .inner .tit {
  font-size: 24px;
  color: #27282a;
  margin: 0 0 30px;
  transition: 0.3s;
}
@media (max-width: 1599px) {
  .advert-section5 .process > li .inner .tit {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .advert-section5 .process > li .inner .tit {
    padding: 0 0 0 45px;
  }
}
@media (max-width: 575px) {
  .advert-section5 .process > li .inner .tit {
    font-size: 16px;
    margin: 0 0 8px;
    padding: 0 0 0 35px;
  }
}
.advert-section5 .process > li .inner .des {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 100px;
  transition: 0.3s;
}
@media (max-width: 1599px) {
  .advert-section5 .process > li .inner .des {
    font-size: 14px;
    margin: 0 0 80px;
  }
}
@media (max-width: 991px) {
  .advert-section5 .process > li .inner .des {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .advert-section5 .process > li .inner .des {
    line-height: 1.6;
  }
}
.advert-section5 .process > li .inner .num {
  position: absolute;
  left: 9%;
  bottom: 10%;
  font-size: 60px;
  font-family: "AVANTGA2";
  color: rgba(39, 40, 42, 0.1);
  line-height: 1;
  transition: 0.3s;
}
@media (max-width: 1599px) {
  .advert-section5 .process > li .inner .num {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .advert-section5 .process > li .inner .num {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .advert-section5 .process > li .inner .num {
    position: absolute;
    top: 17px;
    left: 20px;
    font-size: 30px;
    color: #366fba;
  }
}
@media (max-width: 575px) {
  .advert-section5 .process > li .inner .num {
    top: 13px;
    left: 15px;
    font-size: 22px;
  }
}
.advert-section5 .process > li:last-child {
  margin: 0;
}
.advert-section5 .process > li:last-child .outer .tit i {
  display: none;
}
.advert-section5 .process > li:hover:after {
  border: 6px solid #366fba;
  background: #fff;
}
@media (max-width: 991px) {
  .advert-section5 .process > li:hover:after {
    background: #999;
    border: 0;
  }
}
.advert-section5 .process > li:hover .inner {
  background: #366fba url(../images/other/adv-sec5-itembg.png) bottom right / 52% auto no-repeat;
}
.advert-section5 .process > li:hover .inner .tit,
.advert-section5 .process > li:hover .inner .des {
  color: #fff;
}
.advert-section5 .process > li:hover .inner .num {
  color: rgba(255, 255, 255, 0.5);
}
.advert-section5 .process > li:hover .outer {
  opacity: 0;
}
.advert-section5 .process-line {
  position: relative;
  width: 88.3%;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  .advert-section5 .process-line {
    width: 95%;
  }
}
@media (max-width: 991px) {
  .advert-section5 .process-line {
    display: none;
  }
}
.advert-section5 .process-line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.advert-section6 {
  background: #fff url(../images/home/sec7-bg-main.png) bottom right / 21.5% auto no-repeat;
}
.advert-section6 .info {
  max-width: 670px;
}
@media (max-width: 1599px) {
  .advert-section6 .info {
    max-width: 100%;
  }
}
.advert-section6 .info h2 {
  font-size: 60px;
  color: #27282a;
  margin: 0 0 55px;
  line-height: 1.3;
}
@media (max-width: 1599px) {
  .advert-section6 .info h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .advert-section6 .info h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .advert-section6 .info h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .advert-section6 .info h2 {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .advert-section6 .info h2 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.advert-section6 .info h2 span {
  color: #de1f26;
}
.advert-section6 .info p {
  font-size: 18px;
  color: #666;
  line-height: 2.5;
  margin: 0 0 140px;
}
@media (max-width: 1599px) {
  .advert-section6 .info p {
    margin: 0 0 90px;
  }
}
@media (max-width: 1199px) {
  .advert-section6 .info p {
    font-size: 16px;
    line-height: 2;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .advert-section6 .info p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 40px;
  }
}
.advert-section7 {
  position: relative;
  overflow: hidden;
  background: #1a1b1e;
}
.advert-section7 .head-tit {
  font-size: 48px;
  color: #fff;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1199px) {
  .advert-section7 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .advert-section7 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .advert-section7 .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .advert-section7 .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.advert-section7 .head-tit span {
  color: #de1f26;
}
.advert-section7 .head-des {
  font-size: 20px;
  color: #999;
  text-align: center;
  margin: 0 0 100px;
}
@media (max-width: 1199px) {
  .advert-section7 .head-des {
    font-size: 18px;
    margin: 0 0 80px;
  }
}
@media (max-width: 767px) {
  .advert-section7 .head-des {
    font-size: 18px;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .advert-section7 .head-des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}
.advert-section7-swiper {
  background: #f6f6f6;
}
.advert-section7-swiper .outbox {
  padding: 12.7% 11%;
  background: #27282a;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .advert-section7-swiper .outbox {
    padding: 8%;
  }
}
.advert-section7-swiper .item {
  position: relative;
  background: #fff url(../images/other/adv-sec7-itembg.png) center bottom / 35% no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8% 5%;
}
@media (max-width: 575px) {
  .advert-section7-swiper .item {
    padding: 20px 15px;
  }
}
.advert-section7-swiper .item .decorate {
  position: absolute;
  top: 0;
  width: 100%;
  height: 12%;
}
.advert-section7-swiper .item .decorate i {
  position: absolute;
  height: 100%;
  left: 13%;
  width: 6px;
}
.advert-section7-swiper .item .decorate i:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #27282a;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.advert-section7-swiper .item .decorate i:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27282a;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.advert-section7-swiper .item .decorate i:last-child {
  left: auto;
  right: 13%;
}
.advert-section7-swiper .item .ilogo {
  width: 150px;
  margin: 0 0 40px;
}
@media (max-width: 1599px) {
  .advert-section7-swiper .item .ilogo {
    width: 120px;
  }
}
@media (max-width: 575px) {
  .advert-section7-swiper .item .ilogo {
    margin: 0 0 20px;
    width: 100px;
  }
}
.advert-section7-swiper .item .ilogo img {
  width: 100%;
}
.advert-section7-swiper .item .tit {
  display: inline-block;
  margin: 0 0 50px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  text-align: center;
  padding: 0 0 20px;
}
@media (max-width: 1599px) {
  .advert-section7-swiper .item .tit {
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .advert-section7-swiper .item .tit {
    margin: 0 0 20px;
  }
}
.advert-section7-swiper .item .tit span {
  position: relative;
  padding: 0 0 16px;
  font-size: 24px;
  color: #27282a;
  transition: 0.3s;
}
@media (max-width: 1599px) {
  .advert-section7-swiper .item .tit span {
    font-size: 18px;
    padding: 0 0 12px;
  }
}
@media (max-width: 575px) {
  .advert-section7-swiper .item .tit span {
    font-size: 16px;
    padding: 0 0 12px;
  }
}
.advert-section7-swiper .item .tit span:before,
.advert-section7-swiper .item .tit span:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #27282a;
  height: 4px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.advert-section7-swiper .item .tit span:before {
  left: 0;
  right: 0;
  background: #de1f26;
}
@media (max-width: 767px) {
  .advert-section7-swiper .item .tit span {
    padding: 0 0 12px;
  }
  .advert-section7-swiper .item .tit span img {
    margin: 0 0 0 15px;
    width: 25px;
  }
  .advert-section7-swiper .item .tit span:before,
  .advert-section7-swiper .item .tit span:after {
    height: 2px;
  }
  .advert-section7-swiper .item .tit span:after {
    left: 0;
    right: 0;
  }
}
.advert-section7-swiper .item .from {
  font-size: 16px;
  color: #333;
}
@media (max-width: 575px) {
  .advert-section7-swiper .item .from {
    font-size: 14px;
  }
}
.advert-section7-swiper .item:hover .tit span {
  color: #de1f26;
}
.advert-section7-swiper .item:hover .tit span:after {
  left: 100%;
  right: 0;
}
.advert-section7-swiper .item-tit {
  padding: 35px 0 0;
  font-size: 24px;
  color: #27282a;
  text-align: center;
  background: #f6f6f6;
}
@media (max-width: 1599px) {
  .advert-section7-swiper .item-tit {
    padding: 25px 0 0;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .advert-section7-swiper .item-tit {
    padding: 15px 0 0;
    font-size: 16px;
  }
}
.advert-section7-swiper .swiper-slide:last-child .outbox {
  border-right: 0;
}
.advert-section8 {
  background: #fff;
  border-bottom: 4px solid #f4f4f4;
}
@media (max-width: 575px) {
  .advert-section8 {
    border-bottom: 2px solid #f4f4f4;
  }
}
.advert-section8 .sec-head .leftinfo h2 {
  color: #333;
}
.advert-section8 .sec-head .leftinfo p {
  color: rgba(51, 51, 51, 0.8);
}
.advert-section8 .flexbox .item .info .time {
  color: rgba(51, 51, 51, 0.7);
}
.advert-section8 .flexbox .item .info h4 {
  color: #333;
}
.advert-section8 .sec-head .section-more a {
  color: #27282a;
}
.advert-section8 .sec-head .section-more a:before {
  background: #de1f26;
}
.advert-section8 .sec-head .section-more a:after {
  background: #27282a;
}
.seo-section1 .info {
  max-width: 730px;
  padding: 75px 0 0;
}
@media (max-width: 1599px) {
  .seo-section1 .info {
    padding: 60px 0 0;
  }
}
@media (max-width: 991px) {
  .seo-section1 .info {
    padding: 0;
  }
}
.seo-section1 .info h2 {
  line-height: 1.3;
}
.seo-section2 {
  background: #27282a;
}
.seo-section2 .head-tit {
  font-size: 48px;
  color: #fff;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1199px) {
  .seo-section2 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .seo-section2 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .seo-section2 .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .seo-section2 .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.seo-section2 .head-tit span {
  color: #de1f26;
}
.seo-section2 .head-des {
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 0 0 60px;
}
@media (max-width: 767px) {
  .seo-section2 .head-des {
    margin: 0 0 50px;
  }
}
@media (max-width: 575px) {
  .seo-section2 .head-des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}
.seo-section2-swiper {
  width: 100%;
  height: 0;
  padding: 0 0 46.45%;
  margin: 0 0 2.5%;
  position: relative;
}
@media (max-width: 575px) {
  .seo-section2-swiper {
    padding: 0 0 60%;
  }
}
.seo-section2-swiper .swiper-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.seo-section2-swiper .item {
  height: 100%;
  background: #f4f4f4;
  font-size: 20px;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-section2-pagination {
  position: static;
  width: 100%;
  text-align: center;
}
.seo-section2-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0 9px;
}
@media (max-width: 991px) {
  .seo-section2-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}
.seo-section2-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}
.seo-section3 {
  background: #fff;
}
.seo-section3 .head-tit,
.seo-section3 .head-des {
  color: #333;
}
.seo-section3 .process > li .inner {
  background: #f7f7f7;
}
.seo-section3 .process > li:after {
  background: #27282a;
}
.seo-section3 .process-line:before {
  background: #27282a;
}
@media (max-width: 991px) {
  .seo-section3 .process:before,
  .seo-section3 .process > li:after {
    background: #ddd;
  }
}
.seo-section4 .head-tit {
  font-size: 60px;
  color: #27282a;
  text-align: center;
}
@media (max-width: 1599px) {
  .seo-section4 .head-tit {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .seo-section4 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .seo-section4 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .seo-section4 .head-tit {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .seo-section4 .head-tit {
    font-size: 20px;
    padding: 0 10%;
  }
}
.seo-section4 .head-tit span {
  color: #de1f26;
}
.seo-section4 .flexbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 120px 0 0;
}
@media (max-width: 1199px) {
  .seo-section4 .flexbox {
    margin: 80px 0 0;
  }
}
@media (max-width: 991px) {
  .seo-section4 .flexbox {
    display: block;
  }
}
@media (max-width: 575px) {
  .seo-section4 .flexbox {
    margin: 30px 0 0;
  }
}
.seo-section4 .flexbox.rtl {
  flex-direction: row-reverse;
}
.seo-section4 .flexbox .leftbox {
  width: 44.3%;
}
@media (max-width: 1599px) {
  .seo-section4 .flexbox .leftbox {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .seo-section4 .flexbox .leftbox {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .seo-section4 .flexbox .leftbox {
    width: 100%;
    margin: 0 0 10px;
  }
}
.seo-section4 .flexbox .leftbox .num {
  font-size: 60px;
  color: #27282a;
  font-family: "BEBAS";
  margin: 0 0 8px;
}
@media (max-width: 1599px) {
  .seo-section4 .flexbox .leftbox .num {
    font-size: 48px;
    margin: 0 0 5px;
  }
}
@media (max-width: 575px) {
  .seo-section4 .flexbox .leftbox .num {
    font-size: 30px;
  }
}
.seo-section4 .flexbox .leftbox h3 {
  font-size: 48px;
  color: #27282a;
  margin: 0 0 90px;
}
@media (max-width: 1599px) {
  .seo-section4 .flexbox .leftbox h3 {
    font-size: 45px;
    margin: 0 0 70px;
  }
}
@media (max-width: 1199px) {
  .seo-section4 .flexbox .leftbox h3 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .seo-section4 .flexbox .leftbox h3 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .seo-section4 .flexbox .leftbox h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .seo-section4 .flexbox .leftbox h3 {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
.seo-section4 .flexbox .leftbox h3 span {
  color: #de1f26;
}
.seo-section4 .flexbox .rightbox {
  position: relative;
  width: 38.2%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .seo-section4 .flexbox .rightbox {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .seo-section4 .flexbox .rightbox {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 767px) {
  .seo-section4 .flexbox .rightbox {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .seo-section4 .flexbox .rightbox {
    height: 300px;
  }
}
.seo-section4 .flexbox .rightbox .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #fff;
}
.seo-section4 .flexbox .rightbox img {
  width: 100%;
}
@media (max-width: 991px) {
  .seo-section4 .flexbox .rightbox img {
    height: 100%;
    object-fit: cover;
  }
}
.seo-section4 .inner-flexbox {
  overflow: hidden;
}
@media (max-width: 1599px) {
  .seo-section4 .inner-flexbox {
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .seo-section4 .inner-flexbox {
    margin: 0;
  }
}
.seo-section4 .inner-flexbox .box-row {
  margin: 0 -6.3%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1599px) {
  .seo-section4 .inner-flexbox .box-row {
    margin: 0 -25px;
  }
}
@media (max-width: 1199px) {
  .seo-section4 .inner-flexbox .box-row {
    margin: 0 -15px;
  }
}
.seo-section4 .inner-flexbox .box-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 6.3%;
  margin: 0 0 50px;
}
@media (max-width: 1599px) {
  .seo-section4 .inner-flexbox .box-col {
    padding: 0 25px;
  }
}
@media (max-width: 1199px) {
  .seo-section4 .inner-flexbox .box-col {
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  .seo-section4 .inner-flexbox .box-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
}
.seo-section4 .inner-flexbox .item .ico {
  height: 35px;
  margin: 0 0 14px;
}
@media (max-width: 575px) {
  .seo-section4 .inner-flexbox .item .ico {
    height: 25px;
  }
}
.seo-section4 .inner-flexbox .item .ico img {
  height: 100%;
}
.seo-section4 .inner-flexbox .item h4 {
  font-size: 20px;
  color: #666;
  margin: 0 0 18px;
}
@media (max-width: 1199px) {
  .seo-section4 .inner-flexbox .item h4 {
    font-size: 18px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .seo-section4 .inner-flexbox .item h4 {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.seo-section4 .inner-flexbox .item p {
  line-height: 1.8;
  font-size: 14px;
  color: #666;
}
@media (max-width: 575px) {
  .seo-section4 .inner-flexbox .item p {
    line-height: 1.6;
  }
}
.seo-section5 {
  background: #27282a;
}
.seo-section5 .head-tit {
  position: relative;
  font-size: 55px;
  color: #fff;
  margin: 0 0 55px;
  text-align: center;
  letter-spacing: 2px;
}
.seo-section5 .head-tit:after {
  content: "";
  position: absolute;
  width: 52px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  bottom: -28px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .seo-section5 .head-tit:after {
    display: none;
  }
}
@media (max-width: 1599px) {
  .seo-section5 .head-tit {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .seo-section5 .head-tit {
    font-size: 36px;
    letter-spacing: 1px;
  }
}
@media (max-width: 991px) {
  .seo-section5 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .seo-section5 .head-tit {
    font-size: 30px;
    margin: 0 0 24px;
  }
}
@media (max-width: 575px) {
  .seo-section5 .head-tit {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
.seo-section5 .head-tit2 {
  letter-spacing: 12px;
  font-size: 30px;
  color: #f5f5f5;
  text-align: center;
  font-weight: 300;
  margin: 0 0 18px;
}
@media (max-width: 1199px) {
  .seo-section5 .head-tit2 {
    font-size: 24px;
    letter-spacing: 8px;
  }
}
@media (max-width: 767px) {
  .seo-section5 .head-tit2 {
    font-weight: normal;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .seo-section5 .head-tit2 {
    font-size: 15px;
    margin: 0 0 12px;
    letter-spacing: 3px;
  }
}
.seo-section5 .head-des {
  color: rgba(245, 245, 245, 0.6);
  font-size: 18px;
  margin: 0 auto 85px;
  text-align: center;
  max-width: 1320px;
  letter-spacing: 1px;
  line-height: 1.8;
}
@media (max-width: 1599px) {
  .seo-section5 .head-des {
    margin: 0 0 60px;
  }
}
@media (max-width: 1199px) {
  .seo-section5 .head-des {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .seo-section5 .head-des {
    font-size: 14px;
    margin: 0 0 30px;
    line-height: 1.6;
  }
}
.seo-section5 .flexbox {
  margin: 0 0 90px;
}
@media (max-width: 767px) {
  .seo-section5 .flexbox {
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .seo-section5 .flexbox {
    margin: 0 0 40px;
  }
}
.seo-section5 .flexbox .item {
  padding: 30px;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .seo-section5 .flexbox .item {
    padding: 30px 15px;
  }
}
@media (max-width: 575px) {
  .seo-section5 .flexbox .item {
    padding: 15px 8px;
  }
}
.seo-section5 .flexbox .item .ico {
  position: relative;
  width: 14%;
  height: 0;
  padding: 0 0 14%;
  overflow: hidden;
  margin: 0 auto 20px;
}
@media (max-width: 1199px) {
  .seo-section5 .flexbox .item .ico {
    width: 20%;
    padding: 0 0 20%;
    margin: 0 auto 15px;
  }
}
@media (max-width: 767px) {
  .seo-section5 .flexbox .item .ico {
    width: 30%;
    padding: 0 0 30%;
    margin: 0 auto 10px;
  }
}
.seo-section5 .flexbox .item .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.seo-section5 .flexbox .item p {
  text-align: center;
  font-size: 24px;
  color: #333;
  line-height: 1.4;
}
@media (max-width: 1599px) {
  .seo-section5 .flexbox .item p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .seo-section5 .flexbox .item p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .seo-section5 .flexbox .item p {
    font-size: 14px;
  }
}
.seo-section6 {
  background: #fff url(../images/home/sec7-bg-main.png) bottom right / 21.5% auto no-repeat;
}
.blog-section1 {
  padding: 50px 0 150px;
}
@media (max-width: 1199px) {
  .blog-section1 {
    padding: 50px 0 100px;
  }
}
@media (max-width: 767px) {
  .blog-section1 {
    padding: 40px 0 80px;
  }
}
@media (max-width: 575px) {
  .blog-section1 {
    padding: 20px 0 50px;
  }
}
.blog-section1-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 80px;
}
@media (max-width: 1199px) {
  .blog-section1-tabs {
    margin: 0 0 50px;
  }
}
@media (max-width: 575px) {
  .blog-section1-tabs {
    margin: 0 0 30px;
  }
}
.blog-section1-tabs > a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #27282a;
  padding: 1.2% 2.3%;
  white-space: nowrap;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .blog-section1-tabs > a {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .blog-section1-tabs > a {
    font-size: 14px;
  }
}
.blog-section1-tabs > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  border: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
  transition: 0.3s;
}
.blog-section1-tabs > a:after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 30%;
  background: #ddd;
  transition: 0.3s;
}
.blog-section1-tabs > a:first-child:before {
  border-left: 1px solid #ddd;
}
.blog-section1-tabs > a:last-child:before {
  border-right: 1px solid #ddd;
}
.blog-section1-tabs > a.active {
  background: #de1f26;
  color: #fff;
}
.blog-section1-tabs > a.active:before {
  border: 1px solid #de1f26;
  border-left: 0;
  border-right: 0;
}
.blog-section1-tabs > a.active:first-child:before {
  border-left: 1px solid #de1f26;
}
.blog-section1-tabs > a.active:last-child:before {
  border-right: 1px solid #de1f26;
}
.blog-section1-tabs > a.active:after {
  background: #de1f26;
  right: 0;
}
@media (max-width: 767px) {
  .blog-section1-tabs.overflow-tabs {
    justify-content: flex-start;
    overflow: auto;
    padding: 1px 0 15px;
    margin: -1px 0 15px;
    -webkit-overflow-scrolling: touch;
  }
  .blog-section1-tabs.overflow-tabs > a {
    flex: 0 0 28%;
    text-align: center;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .blog-section1-tabs.overflow-tabs > a {
    padding: 10px;
  }
}
.blog-section1 .flexbox {
  overflow: hidden;
}
.blog-section1 .flexbox .box-row {
  margin: 0 -1.5%;
  display: flex;
  flex-wrap: wrap;
}
.blog-section1 .flexbox .box-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 1.5%;
  margin: 0 0 3%;
}
@media (max-width: 575px) {
  .blog-section1 .flexbox .box-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 15px;
  }
}
.blog-section1-swiper .item .img-box {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 61%;
  overflow: hidden;
}
.blog-section1-swiper .item .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.blog-section1-swiper .item .info {
  display: flex;
  padding: 4.5% 6.7%;
  background: #f9f9f9;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .blog-section1-swiper .item .info {
    padding: 15px;
  }
}
.blog-section1-swiper .item .info .txt {
  flex: 1;
  padding: 0 2% 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-section1-swiper .item .info .txt {
    padding: 0;
  }
}
.blog-section1-swiper .item .info .txt .tit {
  font-size: 24px;
  color: #333;
  margin: 0 0 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  .blog-section1-swiper .item .info .txt .tit {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .blog-section1-swiper .item .info .txt .tit {
    font-size: 16px;
  }
}
.blog-section1-swiper .item .info .txt .des {
  font-size: 14px;
  color: #666;
  transition: 0.3s;
}
.blog-section1-swiper .item .info .ico {
  opacity: 0;
  flex: 0 0 5%;
  max-width: 5%;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .blog-section1-swiper .item .info .ico {
    display: none;
  }
}
.blog-section1-swiper .item .info .ico img {
  width: 100%;
}
@media (min-width: 768px) {
  .blog-section1-swiper .item:hover .img-box img {
    transform: scale(1.1);
  }
  .blog-section1-swiper .item:hover .info {
    background: #de1f26;
  }
  .blog-section1-swiper .item:hover .info .txt .tit,
  .blog-section1-swiper .item:hover .info .txt .des {
    color: #fff;
  }
  .blog-section1-swiper .item:hover .info .ico {
    opacity: 1;
  }
}
.blog-section1-swiper .more {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #fff;
  background: #de1f26;
  display: inline-block;
  margin: 20px auto 0;
  padding: 14px 58px;
  letter-spacing: 1px;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .blog-section1-swiper .more {
    font-size: 14px;
    padding: 10px 35px;
  }
}
@media (min-width: 768px) {
  .blog-section1-swiper .more:hover {
    background: #dc3d43;
    transform: translateY(-5px);
  }
}
.blog-section2 .head-tit {
  font-size: 48px;
}
@media (max-width: 1710px) {
  .blog-section2 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .blog-section2 .head-tit {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .blog-section2 .head-tit {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .blog-section2 .head-tit {
    font-size: 20px;
  }
}
.blog-section3 {
  background: #27282a url(../images/other/web-sec5-bg.jpg) top left / cover no-repeat fixed;
}
@media (max-width: 575px) {
  .blog-section3 {
    background: #27282a url(../images/other/web-sec5-bg.jpg) center / cover no-repeat;
  }
}
.blog-section3 h2 {
  font-size: 48px;
  color: #fff;
  margin: 0 0 40px;
  max-width: 640px;
  line-height: 1.3;
}
@media (max-width: 1599px) {
  .blog-section3 h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .blog-section3 h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .blog-section3 h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .blog-section3 h2 {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .blog-section3 h2 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.blog-section3 h2 span {
  color: #de1f26;
}
.blog-section3 p {
  font-size: 18px;
  color: #bbb;
  line-height: 2.5;
  margin: 0 0 140px;
}
@media (max-width: 1599px) {
  .blog-section3 p {
    margin: 0 0 90px;
  }
}
@media (max-width: 1199px) {
  .blog-section3 p {
    font-size: 16px;
    line-height: 2;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .blog-section3 p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 40px;
  }
}
.blogView-section1 {
  padding: 100px 0 150px;
}
@media (max-width: 1599px) {
  .blogView-section1 {
    padding: 80px 0 100px;
  }
}
@media (max-width: 1199px) {
  .blogView-section1 {
    padding: 60px 0 100px;
  }
}
@media (max-width: 767px) {
  .blogView-section1 {
    padding: 40px 0 80px;
  }
}
@media (max-width: 575px) {
  .blogView-section1 {
    padding: 20px 0 50px;
  }
}
.blogView-section1 .main-flexbox {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox {
    display: block;
  }
}
.blogView-section1 .main-flexbox .leftbox {
  flex: 1;
  padding: 0 8% 0 0;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .leftbox {
    padding: 0 30px 0 0;
  }
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .leftbox {
    position: static;
    padding: 0;
  }
}
.blogView-section1 .main-flexbox .leftbox .article-title {
  font-size: 40px;
  color: #27282a;
  line-height: 1.4;
  letter-spacing: 1px;
  margin: 0 0 70px;
}
@media (max-width: 1599px) {
  .blogView-section1 .main-flexbox .leftbox .article-title {
    font-size: 36px;
    margin: 0 0 60px;
  }
}
@media (max-width: 1199px) {
  .blogView-section1 .main-flexbox .leftbox .article-title {
    font-size: 30px;
    margin: 0 0 40px;
  }
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .leftbox .article-title {
    font-size: 24px;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .leftbox .article-title {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .blogView-section1 .main-flexbox .leftbox .article-title {
    font-size: 18px;
    margin: 0 0 20px;
  }
}
.blogView-section1 .main-flexbox .leftbox .info {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 0 0 130px;
}
@media (max-width: 1599px) {
  .blogView-section1 .main-flexbox .leftbox .info {
    margin: 0 0 80px;
  }
}
@media (max-width: 1199px) {
  .blogView-section1 .main-flexbox .leftbox .info {
    margin: 0 0 60px;
  }
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .leftbox .info {
    margin: 0 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blogView-section1 .main-flexbox .leftbox .info {
    display: block;
  }
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .leftbox .info {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .blogView-section1 .main-flexbox .leftbox .info {
    margin: 0 0 20px;
  }
}
.blogView-section1 .main-flexbox .leftbox .info:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 1px;
  left: 0;
  bottom: -65px;
  background: #ddd;
}
@media (max-width: 1599px) {
  .blogView-section1 .main-flexbox .leftbox .info:after {
    bottom: -40px;
  }
}
@media (max-width: 1199px) {
  .blogView-section1 .main-flexbox .leftbox .info:after {
    bottom: -30px;
  }
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .leftbox .info:after {
    bottom: -20px;
  }
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .leftbox .info:after {
    display: none;
  }
}
.blogView-section1 .main-flexbox .leftbox .info .item {
  margin: 0 60px 0 0;
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .leftbox .info .item {
    display: flex;
  }
}
@media (max-width: 575px) {
  .blogView-section1 .main-flexbox .leftbox .info .item {
    margin: 0 20px 0 0;
  }
}
.blogView-section1 .main-flexbox .leftbox .info .item:last-child {
  margin: 0;
}
.blogView-section1 .main-flexbox .leftbox .info .item .des {
  font-size: 16px;
  color: #999;
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .leftbox .info .item .des {
    margin: 0;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .blogView-section1 .main-flexbox .leftbox .info .item .des {
    font-size: 12px;
  }
}
.blogView-section1 .main-flexbox .leftbox .info .item .tit {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .leftbox .info .item .tit {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .blogView-section1 .main-flexbox .leftbox .info .item .tit {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .leftbox .newslist {
    display: none;
  }
}
.blogView-section1 .main-flexbox .leftbox .newslist .tit {
  font-size: 24px;
  color: #27282a;
  font-weight: bold;
  margin: 0 0 22px;
}
@media (max-width: 1199px) {
  .blogView-section1 .main-flexbox .leftbox .newslist .tit {
    font-size: 20px;
  }
}
.blogView-section1 .main-flexbox .leftbox .newslist ul {
  padding: 0;
  margin: 0 0 45px;
}
.blogView-section1 .main-flexbox .leftbox .newslist ul li {
  margin: 0 0 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .leftbox .newslist ul li {
    margin: 0 0 8px;
  }
}
.blogView-section1 .main-flexbox .leftbox .newslist ul li:last-child {
  margin: 0;
}
.blogView-section1 .main-flexbox .leftbox .newslist ul li a {
  font-size: 16px;
  color: #666;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .leftbox .newslist ul li a {
    font-size: 14px;
  }
}
.blogView-section1 .main-flexbox .leftbox .newslist ul li a:hover {
  color: #de1f26;
}
.blogView-section1 .main-flexbox .leftbox .newslist .more {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #fff;
  background: #de1f26;
  display: inline-block;
  padding: 9px 36px;
  letter-spacing: 1px;
  transition: 0.3s;
}
.blogView-section1 .main-flexbox .leftbox .newslist .more:hover {
  background: #dc3d43;
  transform: translateY(-5px);
}
.blogView-section1 .main-flexbox .rightbox {
  flex: 0 0 51.5%;
  max-width: 51.5%;
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .rightbox {
    flex: inherit;
    max-width: 100%;
  }
}
.blogView-section1 .main-flexbox .rightbox .markdown-text {
  margin: 0 0 50px;
}
@media (max-width: 575px) {
  .blogView-section1 .main-flexbox .rightbox .markdown-text {
    margin: 0 0 40px;
  }
}
.blogView-section1 .main-flexbox .rightbox .markdown-text img {
  max-width: 100%;
  height: auto;
}
.blogView-section1 .main-flexbox .rightbox .markdown-text p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}
.blogView-section1 .main-flexbox .rightbox .markdown-text .tit {
  font-weight: 700;
  color: #333;
  font-size: 20px;
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .rightbox .markdown-text .tit {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .blogView-section1 .main-flexbox .rightbox .markdown-text .tit {
    font-size: 15px;
  }
}
.blogView-section1 .main-flexbox .rightbox .markdown-text .tit2 {
  font-weight: 700;
  color: #333;
  font-size: 16px;
}
@media (max-width: 991px) {
  .blogView-section1 .main-flexbox .rightbox .markdown-text .tit2 {
    font-size: 14px;
  }
}
.blogView-section1 .main-flexbox .rightbox .prev-next p {
  margin: 0 0 16px;
}
.blogView-section1 .main-flexbox .rightbox .prev-next p:last-child {
  margin: 0;
}
.blogView-section1 .main-flexbox .rightbox .prev-next p a {
  display: block;
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .blogView-section1 .main-flexbox .rightbox .prev-next p a {
    font-size: 14px;
  }
}
.blogView-section1 .main-flexbox .rightbox .prev-next p a:hover {
  color: #de1f26;
}
.blogView-section2 {
  background: #f8f8f8;
}
.blogView-section2 .flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blogView-section2 .flexbox .leftbox {
  flex: 0 0 52.5%;
  max-width: 52.5%;
}
@media (max-width: 991px) {
  .blogView-section2 .flexbox .leftbox {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.blogView-section2 .flexbox .leftbox .head-tit {
  font-size: 48px;
  color: #333;
  margin: 0 0 30px;
}
@media (max-width: 1599px) {
  .blogView-section2 .flexbox .leftbox .head-tit {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .blogView-section2 .flexbox .leftbox .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .blogView-section2 .flexbox .leftbox .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .blogView-section2 .flexbox .leftbox .head-tit {
    font-size: 30px;
    margin: 0 0 20px;
  }
}
@media (max-width: 575px) {
  .blogView-section2 .flexbox .leftbox .head-tit {
    font-size: 20px;
  }
}
.blogView-section2 .flexbox .leftbox .head-tit span {
  color: #de1f26;
}
.blogView-section2 .flexbox .leftbox .des {
  color: #666;
  font-size: 18px;
  margin: 0 0 60px;
  line-height: 1.8;
}
@media (max-width: 1599px) {
  .blogView-section2 .flexbox .leftbox .des {
    margin: 0 0 40px;
  }
}
@media (max-width: 1199px) {
  .blogView-section2 .flexbox .leftbox .des {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .blogView-section2 .flexbox .leftbox .des {
    line-height: 1.6;
    font-size: 14px;
    margin: 0 0 30px;
  }
}
.blogView-section2 .flexbox .leftbox form {
  display: flex;
  margin: 0 0 80px;
}
@media (max-width: 991px) {
  .blogView-section2 .flexbox .leftbox form {
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .blogView-section2 .flexbox .leftbox form {
    margin: 0 0 30px;
  }
}
.blogView-section2 .flexbox .leftbox form input {
  flex: 0 0 76%;
  max-width: 76%;
  height: 60px;
  margin: 0 3.7% 0 0;
  border: 1px solid #cecece;
  background: #fff;
  padding: 0 20px;
  color: #27282a;
  font-size: 16px;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .blogView-section2 .flexbox .leftbox form input {
    height: 60px;
  }
}
@media (max-width: 575px) {
  .blogView-section2 .flexbox .leftbox form input {
    height: 40px;
    font-size: 14px;
  }
}
.blogView-section2 .flexbox .leftbox form button {
  flex: 1;
  height: 60px;
  font-size: 18px;
  color: #fff;
  background: #de1f26;
  border: 0;
  outline: none;
}
@media (max-width: 991px) {
  .blogView-section2 .flexbox .leftbox form button {
    height: 60px;
  }
}
@media (max-width: 575px) {
  .blogView-section2 .flexbox .leftbox form button {
    height: 40px;
    font-size: 14px;
  }
}
.blogView-section2 .flexbox .leftbox .bottom-tips {
  display: flex;
  align-items: center;
}
.blogView-section2 .flexbox .leftbox .bottom-tips .img-box {
  flex: 0 0 130px;
  max-width: 130px;
  margin: 0 36px 0 0;
}
@media (max-width: 575px) {
  .blogView-section2 .flexbox .leftbox .bottom-tips .img-box {
    flex: 0 0 100px;
    max-width: 100px;
    margin: 0 15px 0 0;
  }
}
.blogView-section2 .flexbox .leftbox .bottom-tips .img-box img {
  width: 100%;
}
.blogView-section2 .flexbox .leftbox .bottom-tips .info h6 {
  font-size: 24px;
  color: #333;
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .blogView-section2 .flexbox .leftbox .bottom-tips .info h6 {
    font-size: 20px;
    margin: 0 0 12px;
  }
}
@media (max-width: 575px) {
  .blogView-section2 .flexbox .leftbox .bottom-tips .info h6 {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.blogView-section2 .flexbox .leftbox .bottom-tips .info p {
  font-size: 16px;
  color: #666;
}
@media (max-width: 575px) {
  .blogView-section2 .flexbox .leftbox .bottom-tips .info p {
    font-size: 14px;
  }
}
.blogView-section2 .flexbox .rightbox {
  position: relative;
  flex: 0 0 33%;
  max-width: 33%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .blogView-section2 .flexbox .rightbox {
    display: none;
  }
}
.blogView-section2 .flexbox .rightbox .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #f8f8f8;
}
.blogView-section2 .flexbox .rightbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogView-section3 .sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 45px;
  position: relative;
}
@media (max-width: 575px) {
  .blogView-section3 .sec-head {
    margin: 0 0 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .blogView-section3 .sec-head .leftinfo {
    margin: 0 0 30px;
  }
}
.blogView-section3 .sec-head .leftinfo h2 {
  font-size: 48px;
  color: #333;
  margin: 0;
}
@media (max-width: 1599px) {
  .blogView-section3 .sec-head .leftinfo h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .blogView-section3 .sec-head .leftinfo h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .blogView-section3 .sec-head .leftinfo h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .blogView-section3 .sec-head .leftinfo h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .blogView-section3 .sec-head .leftinfo h2 {
    font-size: 20px;
  }
}
.blogView-section3 .flexbox {
  overflow: hidden;
}
.blogView-section3 .flexbox .box-row {
  margin: 0 -1.5%;
  display: flex;
  flex-wrap: wrap;
}
.blogView-section3 .flexbox .box-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 1.5%;
  margin: 0 0 3%;
}
@media (max-width: 575px) {
  .blogView-section3 .flexbox .box-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 15px;
  }
}
.blogView-section3 .flexbox .item .img-box {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 61%;
  overflow: hidden;
}
.blogView-section3 .flexbox .item .img-box .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #ddd;
}
.blogView-section3 .flexbox .item .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.blogView-section3 .flexbox .item .info {
  display: flex;
  padding: 4.5% 6.7%;
  background: #f9f9f9;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .blogView-section3 .flexbox .item .info {
    padding: 15px;
  }
}
.blogView-section3 .flexbox .item .info .txt {
  flex: 1;
  padding: 0 2% 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blogView-section3 .flexbox .item .info .txt {
    padding: 0;
  }
}
.blogView-section3 .flexbox .item .info .txt .tit {
  font-size: 24px;
  color: #333;
  margin: 0 0 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  .blogView-section3 .flexbox .item .info .txt .tit {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .blogView-section3 .flexbox .item .info .txt .tit {
    font-size: 16px;
  }
}
.blogView-section3 .flexbox .item .info .txt .des {
  font-size: 14px;
  color: #666;
  transition: 0.3s;
}
.blogView-section3 .flexbox .item .info .ico {
  opacity: 0;
  flex: 0 0 5%;
  max-width: 5%;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .blogView-section3 .flexbox .item .info .ico {
    display: none;
  }
}
.blogView-section3 .flexbox .item .info .ico img {
  width: 100%;
}
@media (min-width: 768px) {
  .blogView-section3 .flexbox .item:hover .img-box img {
    transform: scale(1.1);
  }
  .blogView-section3 .flexbox .item:hover .info {
    background: #de1f26;
  }
  .blogView-section3 .flexbox .item:hover .info .txt .tit,
  .blogView-section3 .flexbox .item:hover .info .txt .des {
    color: #fff;
  }
  .blogView-section3 .flexbox .item:hover .info .ico {
    opacity: 1;
  }
}
@media (min-width: 1600px) {
  .photography-section1 {
    padding: 7% 9% 165px 13.2%;
  }
}
.photography-section1 .info {
  padding: 70px 0 0;
}
@media (max-width: 1599px) {
  .photography-section1 .info {
    padding: 40px 0 0;
  }
}
@media (max-width: 991px) {
  .photography-section1 .info {
    padding: 0;
  }
}
.photography-section1 .info h2 {
  max-width: 515px;
  line-height: 1.3;
}
@media (max-width: 1599px) {
  .photography-section1 .info h2 {
    max-width: 420px;
  }
}
.photography-section1 .info p {
  line-height: 2;
  max-width: 490px;
  margin: 0;
}
.photography-section2 .sec-group .info h4 {
  max-width: 100%;
}
.photography-section2 .sec-group:nth-child(even) .info h4 {
  max-width: 100%;
}
.photography-section2 .sec-group .info .des {
  margin: 0;
}
.photography-section3 {
  background: #fff;
}
.photography-section3 .info {
  max-width: 900px;
}
@media (min-width: 1600px) {
  .photography-section3 .info h2 {
    font-size: 48px;
    margin: 0 0 40px;
  }
}
@media (min-width: 576px) {
  .photography-section3 .info p {
    line-height: 2;
  }
}
.photography-section4 .outbox {
  padding: 15.8% 10% 0;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1199px) {
  .photography-section4 .outbox {
    padding: 8% 8% 0;
  }
}
.photography-section4 .outbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.photography-section4 .inner {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-width: 18px;
  border-style: solid;
  border-color: transparent;
  border-bottom: 0;
  border-image: url(../images/other/pho-sec4-imgbg.png) 16 round;
}
@media (max-width: 1599px) {
  .photography-section4 .inner {
    border-width: 12px;
  }
}
.photography-section4 .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .photography-section4 .inner:hover img {
    transform: scale(1.1);
  }
}
.photography-section4 .item-tit {
  position: relative;
  z-index: 1;
}
@media (min-width: 1921px) {
  .contact-section1 {
    padding: 7% 9% 15.5% 13.2%;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .contact-section1 {
    padding: 7% 0 15.5%;
  }
}
.contact-section1 .flexbox {
  align-items: center;
}
@media (max-width: 991px) {
  .contact-section1 .flexbox {
    justify-content: center;
    text-align: center;
  }
}
.contact-section1 .info h2 {
  margin: 0 0 115px;
}
@media (max-width: 1199px) {
  .contact-section1 .info h2 {
    margin: 0 0 90px;
  }
}
@media (max-width: 991px) {
  .contact-section1 .info h2 {
    margin: 0 0 60px;
  }
}
@media (max-width: 767px) {
  .contact-section1 .info h2 {
    margin: 0 0 40px;
  }
}
.contact-section1 .info .phone-tips {
  font-size: 18px;
  color: #333;
  margin: 0 0 20px;
}
@media (max-width: 575px) {
  .contact-section1 .info .phone-tips {
    font-size: 14px;
    margin: 0 0 15px;
  }
}
.contact-section1 .info .phone-btn {
  font-size: 21px;
  font-family: "AvantGardeITCbyBT-Book";
  color: #de1f26;
  padding: 9px 27px;
  border: 1px solid #de1f26;
  display: inline-block;
}
@media (max-width: 1199px) {
  .contact-section1 .info .phone-btn {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .contact-section1 .info .phone-btn {
    font-size: 14px;
    padding: 5px 10px;
    background: #de1f26;
    color: #fff;
  }
}
.contact-section1 .info .chat-btn {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #fff;
  background: #de1f26;
  display: inline-block;
  margin: 0 0 0 15px;
  padding: 14px 58px;
  letter-spacing: 1px;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .contact-section1 .info .chat-btn {
    font-size: 14px;
    padding: 6px 12px;
    margin: 0 0 0 10px;
  }
}
.contact-section2 {
  position: relative;
  overflow: hidden;
  background: #27282a;
}
.contact-section2 .head-tit {
  font-size: 48px;
  color: #fff;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1199px) {
  .contact-section2 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .contact-section2 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .contact-section2 .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .contact-section2 .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.contact-section2 .head-tit span {
  color: #de1f26;
}
.contact-section2 .head-des {
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 0 0 70px;
}
@media (max-width: 767px) {
  .contact-section2 .head-des {
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .contact-section2 .head-des {
    font-size: 14px;
    max-width: 260px;
    margin: 0 auto 30px;
  }
}
.contact-section2 form {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.contact-section2 form .input-row {
  display: flex;
  margin: 0 -11px;
}
@media (max-width: 575px) {
  .contact-section2 form .input-row {
    display: block;
  }
}
.contact-section2 form .input-group {
  flex: 1;
  display: flex;
  margin: 0 0 22px;
  padding: 0 11px;
}
@media (max-width: 575px) {
  .contact-section2 form .input-group {
    margin: 0 0 15px;
  }
}
.contact-section2 form .input-group input {
  flex: 1;
  height: 70px;
  background: #3c3d3e;
  outline: none;
  font-size: 16px;
  color: #fff;
  padding: 0 38px;
  border: 0;
}
@media (max-width: 1199px) {
  .contact-section2 form .input-group input {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .contact-section2 form .input-group input {
    height: 50px;
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .contact-section2 form .input-group input {
    padding: 0 15px;
    height: 40px;
    font-size: 14px;
  }
}
.contact-section2 form .input-group .select-box {
  position: relative;
  flex: 1;
  background: #3c3d3e;
}
.contact-section2 form .input-group .select-box .ico {
  position: absolute;
  width: 75px;
  height: 100%;
  right: 0;
  top: 0;
  border-left: 1px solid #636465;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .contact-section2 form .input-group .select-box .ico {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .contact-section2 form .input-group .select-box .ico {
    width: 40px;
  }
}
.contact-section2 form .input-group .select-box .ico:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
@media (max-width: 767px) {
  .contact-section2 form .input-group .select-box .ico:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
  }
}
@media (max-width: 575px) {
  .contact-section2 form .input-group .select-box .ico:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
  }
}
.contact-section2 form .input-group select {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 70px;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: #888;
  padding: 0 38px;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .contact-section2 form .input-group select {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .contact-section2 form .input-group select {
    height: 50px;
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .contact-section2 form .input-group select {
    padding: 0 15px;
    height: 40px;
    font-size: 14px;
  }
}
.contact-section2 form .input-group select option {
  color: #333;
}
.contact-section2 form textarea {
  width: 100%;
  height: 220px;
  background: #3c3d3e;
  outline: none;
  font-size: 16px;
  color: #fff;
  padding: 25px 38px;
  margin: 0 0 30px;
  border: 0;
  resize: none;
}
@media (max-width: 1199px) {
  .contact-section2 form textarea {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .contact-section2 form textarea {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .contact-section2 form textarea {
    padding: 15px;
    height: 150px;
    font-size: 14px;
    margin: 0 0 15px;
  }
}
.contact-section2 form .ok {
  width: 320px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #de1f26;
  color: #fff;
  font-size: 18px;
  margin: 0 auto 35px;
  border: 0;
}
@media (max-width: 1199px) {
  .contact-section2 form .ok {
    width: 300px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .contact-section2 form .ok {
    height: 50px;
  }
}
@media (max-width: 575px) {
  .contact-section2 form .ok {
    width: 150px;
    height: 40px;
    font-size: 14px;
    margin: 0 auto 20px;
  }
}
.contact-section2 form .tips {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 991px) {
  .contact-section2 form .tips {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .contact-section2 form .tips {
    font-size: 14px;
    max-width: 285px;
    margin: 0 auto;
  }
}
.contact-section3 .flexbox {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .contact-section3 .flexbox {
    display: block;
  }
}
.contact-section3 .flexbox .mapbox {
  position: relative;
  flex: 0 0 48.56%;
  max-width: 48.56%;
  margin: 0 9.66% 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .contact-section3 .flexbox .mapbox {
    margin: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .contact-section3 .flexbox .mapbox {
    margin: 0 0 30px;
    flex: inherit;
    max-width: inherit;
  }
}
.contact-section3 .flexbox .mapbox .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #fff;
}
.contact-section3 .flexbox .mapbox #map {
  width: 100%;
  height: 0;
  padding: 0 0 66.2%;
  background: #ddd;
}
.contact-section3 .flexbox .mapbox #map .anchorBL {
  display: none;
}
.contact-section3 .flexbox .info h2 {
  font-size: 48px;
  margin: 0 0 50px;
}
@media (max-width: 1199px) {
  .contact-section3 .flexbox .info h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .contact-section3 .flexbox .info h2 {
    font-size: 35px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .contact-section3 .flexbox .info h2 {
    font-size: 30px;
    margin: 0 0 30px;
  }
}
@media (max-width: 575px) {
  .contact-section3 .flexbox .info h2 {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
.contact-section3 .flexbox .info h2 span {
  color: #de1f26;
}
.contact-section3 .flexbox .info ul {
  padding: 0;
  margin: 0 0 50px;
}
@media (max-width: 991px) {
  .contact-section3 .flexbox .info ul {
    margin: 0 0 30px;
  }
}
.contact-section3 .flexbox .info ul li {
  margin: 0 0 12px;
  font-size: 18px;
  display: flex;
}
@media (max-width: 1199px) {
  .contact-section3 .flexbox .info ul li {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .contact-section3 .flexbox .info ul li {
    font-size: 14px;
    display: list-item;
  }
}
.contact-section3 .flexbox .info ul li:last-child {
  margin: 0;
}
.contact-section3 .flexbox .info ul li p {
  margin: 0 130px 0 0;
}
@media (max-width: 1599px) {
  .contact-section3 .flexbox .info ul li p {
    margin: 0 60px 0 0;
  }
}
@media (max-width: 991px) {
  .contact-section3 .flexbox .info ul li p {
    margin: 0 0 12px;
  }
}
.contact-section3 .flexbox .info ul li p:last-child {
  margin: 0;
}
.contact-section3 .flexbox .info .erweima-group {
  display: flex;
}
.contact-section3 .flexbox .info .erweima-group .item {
  margin: 0 20px 0 0;
}
.contact-section3 .flexbox .info .erweima-group .item:last-child {
  margin: 0;
}
.contact-section3 .flexbox .info .erweima-group .item img {
  width: 100%;
  margin: 0 0 8px;
}
.contact-section3 .flexbox .info .erweima-group .item p {
  text-align: center;
  font-size: 14px;
}
.about-section1 {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .about-section1 {
    height: 400px !important;
  }
}
@media (max-width: 575px) {
  .about-section1 {
    height: 300px !important;
  }
}
.about-section1 .bannerimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-section1 .bannerimg {
    object-position: -400px;
  }
}
@media (max-width: 767px) {
  .about-section1 .bannerimg {
    object-position: 64%;
  }
}
@media (max-width: 575px) {
  .about-section1 .bannerimg {
    object-position: center;
  }
}
.about-section1 .wraper {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .about-section1 .wraper {
    max-width: 991px;
  }
}
@media (max-width: 991px) {
  .about-section1 .wraper {
    max-width: 768px;
    padding: 0 15px;
  }
}
.about-section1 .info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
}
@media (max-width: 575px) {
  .about-section1 .info {
    align-items: flex-end;
  }
}
.about-section1 .info .text1 {
  font-size: 36px;
  color: #cacdd6;
  margin: 0 0 45px;
}
@media (max-width: 1199px) {
  .about-section1 .info .text1 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .about-section1 .info .text1 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .about-section1 .info .text1 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .about-section1 .info .text1 {
    font-size: 18px;
    text-align: right;
  }
}
.about-section1 .info .text1 span {
  color: #fff;
  font-weight: bold;
}
.about-section1 .info .text2 {
  font-weight: 100;
  font-size: 48px;
  color: #cacdd6;
}
@media (max-width: 1199px) {
  .about-section1 .info .text2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .about-section1 .info .text2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .about-section1 .info .text2 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .about-section1 .info .text2 {
    font-size: 20px;
  }
}
.about-section1 .info .text2 span {
  color: #fff;
  font-weight: bold;
}
.about-section2 .head-tit {
  font-size: 55px;
  line-height: 1.4;
  margin: 0 0 90px;
}
@media (max-width: 1599px) {
  .about-section2 .head-tit {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .about-section2 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-section2 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .about-section2 .head-tit {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .about-section2 .head-tit {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.about-section2 .flexbox .box-col:after {
  content: "+";
  background: none;
  font-size: 48px;
  color: #adadad;
  right: -3.8%;
  width: 7.6%;
  line-height: 50px;
}
@media (max-width: 1199px) {
  .about-section2 .flexbox .box-col:after {
    font-size: 30px;
  }
}
.about-section3 {
  background: #fff;
}
@media (min-width: 1600px) {
  .about-section3 > .container {
    width: 100%;
  }
}
.about-section3 .flexbox {
  margin: 0 13.2% 0 9.48%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1599px) {
  .about-section3 .flexbox {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .about-section3 .flexbox {
    display: flex;
    flex-direction: column-reverse;
  }
}
.about-section3 .flexbox .leftbox {
  position: relative;
  width: 41%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .about-section3 .flexbox .leftbox {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .about-section3 .flexbox .leftbox {
    width: 100%;
    height: 700px;
  }
}
@media (max-width: 767px) {
  .about-section3 .flexbox .leftbox {
    height: auto;
  }
}
.about-section3 .flexbox .leftbox .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #fff;
}
.about-section3 .flexbox .leftbox img {
  width: 100%;
}
.about-section3 .flexbox .rightbox {
  width: 47.4%;
}
@media (max-width: 1599px) {
  .about-section3 .flexbox .rightbox {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .about-section3 .flexbox .rightbox {
    width: 100%;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .about-section3 .flexbox .rightbox {
    width: 100%;
    margin: 0 0 30px;
  }
}
.about-section3 .flexbox .rightbox .head-tit {
  font-size: 65px;
  color: #27282a;
  margin: 0 0 80px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 1710px) {
  .about-section3 .flexbox .rightbox .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .about-section3 .flexbox .rightbox .head-tit {
    font-size: 45px;
    margin: 0 0 70px;
  }
}
@media (max-width: 1199px) {
  .about-section3 .flexbox .rightbox .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-section3 .flexbox .rightbox .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .about-section3 .flexbox .rightbox .head-tit {
    font-size: 30px;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .about-section3 .flexbox .rightbox .head-tit {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
.about-section3 .flexbox .rightbox .head-tit span {
  color: #de1f26;
}
.about-section3 .flexbox .rightbox .des {
  color: #666;
  font-size: 16px;
  line-height: 2.3;
}
@media (max-width: 1199px) {
  .about-section3 .flexbox .rightbox .des {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .about-section3 .flexbox .rightbox .des {
    font-size: 14px;
    line-height: 1.8;
  }
}
.about-section4 {
  background: #f8f8f8;
}
.about-section4 .flexbox .box-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4.67%;
}
@media (max-width: 1599px) {
  .about-section4 .flexbox .box-row {
    margin: 0 -3.67%;
  }
}
@media (max-width: 991px) {
  .about-section4 .flexbox .box-row {
    margin: 0 -2.67%;
  }
}
@media (max-width: 767px) {
  .about-section4 .flexbox .box-row {
    margin: 0 30px;
  }
}
@media (max-width: 575px) {
  .about-section4 .flexbox .box-row {
    margin: 0;
  }
}
.about-section4 .flexbox .box-col {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 4.67%;
}
@media (max-width: 1599px) {
  .about-section4 .flexbox .box-col {
    padding: 0 3.67%;
  }
}
@media (max-width: 991px) {
  .about-section4 .flexbox .box-col {
    padding: 0 2.67%;
  }
}
@media (max-width: 767px) {
  .about-section4 .flexbox .box-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 30px;
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .about-section4 .flexbox .box-col {
    padding: 0 15px;
    margin: 0 0 20px;
    display: flex;
  }
}
@media (max-width: 575px) {
  .about-section4 .flexbox .item {
    height: 100%;
  }
}
.about-section4 .flexbox .item .ico {
  position: relative;
  font-size: 24px;
  width: 100%;
  height: 0;
  padding: 0 0 100%;
  background: #e3e3e3;
  border-radius: 50%;
  margin: 0 0 45px;
  transition: 0.3s;
}
@media (max-width: 1599px) {
  .about-section4 .flexbox .item .ico {
    margin: 0 0 30px;
  }
}
@media (max-width: 991px) {
  .about-section4 .flexbox .item .ico {
    margin: 0 0 15px;
  }
}
.about-section4 .flexbox .item .ico:after {
  content: "+";
  position: absolute;
  right: -34%;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 30px;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}
@media (max-width: 1599px) {
  .about-section4 .flexbox .item .ico:after {
    right: -25%;
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .about-section4 .flexbox .item .ico:after {
    display: none;
  }
}
.about-section4 .flexbox .item .ico span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #27282a;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.about-section4 .flexbox .item .des {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 1599px) {
  .about-section4 .flexbox .item .des {
    font-size: 14px;
    line-height: 1.6;
  }
}
.about-section4 .flexbox .item:hover .ico {
  background: #de1f26;
}
.about-section4 .flexbox .item:hover .ico span {
  color: #fff;
}
.about-section4 .flexbox .box-col:last-child .item .ico:after {
  display: none;
}
.about-section5 .topinfo {
  max-width: 740px;
}
@media (max-width: 1599px) {
  .about-section5 .topinfo {
    max-width: 650px;
  }
}
.about-section5 .topinfo .head-tit {
  font-size: 65px;
  margin: 0 0 45px;
}
@media (max-width: 1710px) {
  .about-section5 .topinfo .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .about-section5 .topinfo .head-tit {
    font-size: 45px;
    margin: 0 0 30px;
  }
}
@media (max-width: 1199px) {
  .about-section5 .topinfo .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-section5 .topinfo .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .about-section5 .topinfo .head-tit {
    font-size: 30px;
    margin: 0 0 20px;
  }
}
@media (max-width: 575px) {
  .about-section5 .topinfo .head-tit {
    font-size: 20px;
  }
}
.about-section5 .topinfo .head-des {
  font-size: 18px;
  line-height: 2;
  margin: 0;
}
@media (max-width: 1599px) {
  .about-section5 .topinfo .head-des {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .about-section5 .topinfo .head-des {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .about-section6 > .container.z-container {
    width: 82%;
  }
}
.about-section6 .head-tit {
  font-size: 80px;
  color: #27282a;
  margin: 0 0 30px;
  font-family: "Arial";
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1710px) {
  .about-section6 .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .about-section6 .head-tit {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .about-section6 .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-section6 .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .about-section6 .head-tit {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .about-section6 .head-tit {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
.about-section6 .head-tit img {
  width: 75px;
  margin: 0 30px;
}
@media (max-width: 1199px) {
  .about-section6 .head-tit img {
    width: 40px;
    margin: 0 15px;
  }
}
@media (max-width: 575px) {
  .about-section6 .head-tit img {
    width: 25px;
    margin: 0 10px;
  }
}
.about-section6 .des {
  font-size: 30px;
  font-weight: 300;
  margin: 0 auto 70px;
  line-height: 1.5;
  text-align: center;
  max-width: 1200px;
}
@media (max-width: 1599px) {
  .about-section6 .des {
    margin: 0 auto 50px;
  }
}
@media (max-width: 575px) {
  .about-section6 .des {
    font-size: 14px;
    margin: 0 auto 30px;
  }
}
@media (min-width: 1600px) {
  .about-section7 > .container.z-container {
    width: 82%;
  }
}
.about-section7 .item-group .item {
  display: flex;
  align-items: center;
  margin: -150px 0 0;
}
@media (max-width: 1199px) {
  .about-section7 .item-group .item {
    margin: -50px 0 0;
  }
}
@media (max-width: 991px) {
  .about-section7 .item-group .item {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .about-section7 .item-group .item {
    display: block;
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .about-section7 .item-group .item {
    margin: 0 0 40px;
  }
}
.about-section7 .item-group .item:first-child {
  margin: 0;
}
@media (max-width: 767px) {
  .about-section7 .item-group .item:first-child {
    margin: 0 0 60px;
  }
}
@media (max-width: 575px) {
  .about-section7 .item-group .item:first-child {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .about-section7 .item-group .item:last-child {
    margin: 0;
  }
}
.about-section7 .item-group .item .info {
  flex: 1;
  padding: 0 9.62% 0 5.13%;
}
@media (max-width: 991px) {
  .about-section7 .item-group .item .info {
    padding: 0 9.62% 0 0;
  }
}
@media (max-width: 767px) {
  .about-section7 .item-group .item .info {
    padding: 0;
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .about-section7 .item-group .item .info {
    margin: 0 0 30px;
  }
}
.about-section7 .item-group .item .info .head-tit {
  font-size: 65px;
  margin: 0 0 45px;
}
@media (max-width: 1710px) {
  .about-section7 .item-group .item .info .head-tit {
    font-size: 60px;
  }
}
@media (max-width: 1599px) {
  .about-section7 .item-group .item .info .head-tit {
    font-size: 45px;
    margin: 0 0 30px;
  }
}
@media (max-width: 1199px) {
  .about-section7 .item-group .item .info .head-tit {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-section7 .item-group .item .info .head-tit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .about-section7 .item-group .item .info .head-tit {
    font-size: 30px;
    margin: 0 0 20px;
  }
}
@media (max-width: 575px) {
  .about-section7 .item-group .item .info .head-tit {
    font-size: 20px;
  }
}
.about-section7 .item-group .item .info .head-tit span {
  color: #de1f26;
}
.about-section7 .item-group .item .info .head-des {
  font-size: 18px;
  line-height: 2;
  margin: 0;
}
@media (max-width: 1599px) {
  .about-section7 .item-group .item .info .head-des {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .about-section7 .item-group .item .info .head-des {
    font-size: 14px;
  }
}
.about-section7 .item-group .item .img-box {
  position: relative;
  overflow: hidden;
  flex: 0 0 40.38%;
  max-width: 40.38%;
}
@media (max-width: 767px) {
  .about-section7 .item-group .item .img-box {
    flex: inherit;
    max-width: inherit;
  }
}
.about-section7 .item-group .item .img-box .img-mask {
  display: block;
  position: absolute;
  z-index: 9;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #fff;
}
.about-section7 .item-group .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section7 .item-group .item:nth-child(even) {
  flex-direction: row-reverse;
}
.about-section7 .item-group .item:nth-child(even) .info {
  padding: 0 5.13% 0 9.62%;
}
@media (max-width: 991px) {
  .about-section7 .item-group .item:nth-child(even) .info {
    padding: 0 0 0 9.62%;
  }
}
@media (max-width: 767px) {
  .about-section7 .item-group .item:nth-child(even) .info {
    padding: 0;
  }
}
.about-section8 {
  background: #f5f5f5;
}
.home-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  align-items: center;
  padding: 0 15px;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.home-popup.open {
  visibility: visible;
  opacity: 1;
}
.home-popup .popup-box {
  position: relative;
  z-index: 1;
  width: 1400px;
  max-height: 95%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 2px;
  margin: 0 auto;
  background: #fff;
}
@media (max-width: 1599px) {
  .home-popup .popup-box {
    width: 850px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box {
    width: 500px;
  }
}
@media (min-width: 768px) {
  .home-popup .popup-box::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #f6f8f9;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .home-popup .popup-box::-webkit-scrollbar-thumb {
    background-color: rgba(123, 121, 121, 0.7);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }
}
.home-popup .popup-box .close-box {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.home-popup .popup-box .close-popup-btn {
  position: absolute;
  z-index: 1;
  right: 30px;
  top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #27282a;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .close-popup-btn {
    width: 40px;
    height: 40px;
    right: 20px;
    top: 20px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .close-popup-btn {
    width: 35px;
    height: 35px;
    right: 10px;
    top: 10px;
  }
}
@media (max-width: 575px) {
  .home-popup .popup-box .close-popup-btn {
    right: 0;
    top: 0;
  }
}
.home-popup .popup-box .close-popup-btn img {
  width: 35%;
}
.home-popup .popup-box .viewbox {
  padding: 100px;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .viewbox {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .viewbox {
    padding: 40px 20px;
  }
}
@media (max-width: 575px) {
  .home-popup .popup-box .viewbox {
    padding: 30px 15px;
  }
}
.home-popup .popup-box .popup-top {
  margin: 0 0 35px;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-top {
    margin: 0 0 20px;
  }
}
.home-popup .popup-box .popup-top h2 {
  font-size: 60px;
  text-align: center;
  color: #27282a;
  margin: 0 0 40px;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-top h2 {
    font-size: 35px;
    margin: 0 0 30px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-top h2 {
    font-size: 24px;
    margin: 0 0 20px;
  }
}
.home-popup .popup-box .popup-top .pt-tips {
  font-size: 18px;
  text-align: center;
  color: #27282a;
  font-weight: 100;
  margin: 0 0 10px;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-top .pt-tips {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-top .pt-tips {
    font-size: 14px;
  }
}
.home-popup .popup-box .popup-top .pt-smtips {
  font-size: 18px;
  text-align: center;
  color: #de1f26;
  margin: 0 0 35px;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-top .pt-smtips {
    font-size: 16px;
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-top .pt-smtips {
    font-size: 14px;
    margin: 0 0 10px;
  }
}
.home-popup .popup-box .popup-top .downico {
  width: 26px;
  animation: rise 1s linear infinite alternate;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-top .downico {
    width: 15px;
  }
}
.home-popup .popup-box .popup-form {
  padding: 75px 80px 50px;
  background: #f1f1f1;
  margin: 0 0 60px;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-form {
    padding: 30px 40px;
    margin: 0 0 30px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-form {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .home-popup .popup-box .popup-form {
    padding: 15px;
  }
}
.home-popup .popup-box .popup-form form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.home-popup .popup-box .popup-form form .form-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-form form .form-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 15px;
  }
}
.home-popup .popup-box .popup-form form .form-col input {
  border: 0;
  height: 65px;
  background: #fff;
  outline: none;
  padding: 0 18px;
  font-size: 16px;
  color: #333;
  width: 100%;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-form form .form-col input {
    height: 50px;
    padding: 0 15px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-form form .form-col input {
    height: 45px;
  }
}
.home-popup .popup-box .popup-form form .button-col {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 20px 0 0;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-form form .button-col {
    margin: 0;
  }
}
.home-popup .popup-box .popup-form form .button-col button {
  background: #de1f26;
  font-size: 18px;
  color: #fff;
  padding: 20px 60px;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-form form .button-col button {
    padding: 15px 30px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-form form .button-col button {
    padding: 13px 25px;
  }
}
.home-popup .popup-box .popup-form form .button-col button:hover {
  transform: translate3d(0, -2px, 0);
  -webkit-transform: translate3d(0, -2px, 0);
  background: rgba(230, 7, 7, 0.8);
}
.home-popup .popup-box .popup-classify {
  display: flex;
  justify-content: space-between;
  padding: 0 0 50px;
  margin: 0 0 115px;
  border-bottom: 2px solid #333;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-classify {
    padding: 0 0 30px;
    margin: 0 0 80px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-classify {
    border-bottom: 1px solid #333;
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .home-popup .popup-box .popup-classify {
    flex-wrap: wrap;
    padding: 0 0 15px;
    margin: 0 0 30px;
  }
}
.home-popup .popup-box .popup-classify .item {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .home-popup .popup-box .popup-classify .item {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0 0 15px;
  }
}
.home-popup .popup-box .popup-classify .item .ico {
  flex: 0 0 30px;
  max-width: 30px;
  margin: 0 16px 0 0;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-classify .item .ico {
    flex: 0 0 25px;
    max-width: 25px;
    margin: 0 10px 0 0;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-classify .item .ico {
    flex: 0 0 20px;
    max-width: 20px;
    margin: 0 10px 0 0;
  }
}
.home-popup .popup-box .popup-classify .item .ico img {
  width: 100%;
}
.home-popup .popup-box .popup-classify .item span {
  font-size: 24px;
  font-weight: bold;
  color: #27282a;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-classify .item span {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-classify .item span {
    font-size: 14px;
  }
}
.home-popup .popup-box .popup-catalog .flexbox {
  display: flex;
  align-items: flex-start;
}
.home-popup .popup-box .popup-catalog .flexbox .process {
  flex: 0 0 36.67%;
  max-width: 36.67%;
  padding: 0;
  margin: 0 8.35% 0 0;
  list-style: none;
  position: relative;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-catalog .flexbox .process {
    flex: 0 0 46%;
    max-width: 46.67%;
    margin: 0 5% 0 0;
  }
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-catalog .flexbox .process {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.home-popup .popup-box .popup-catalog .flexbox .process:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  left: 1.85714286em;
  top: 0;
  border-left: 1px dashed #ddd;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-catalog .flexbox .process:before {
    left: 20px;
  }
}
.home-popup .popup-box .popup-catalog .flexbox .process li {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
}
.home-popup .popup-box .popup-catalog .flexbox .process li:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-catalog .flexbox .process li:not(:last-child) {
    margin-bottom: 30px;
  }
}
.home-popup .popup-box .popup-catalog .flexbox .process li .process-number {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #de1f26;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 0;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-catalog .flexbox .process li .process-number {
    width: 40px;
    height: 40px;
    border: 1px solid #de1f26;
  }
}
.home-popup .popup-box .popup-catalog .flexbox .process li .process-number span {
  font-size: 18px;
  font-weight: bold;
  color: #de1f26;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-catalog .flexbox .process li .process-number span {
    font-size: 14px;
  }
}
.home-popup .popup-box .popup-catalog .flexbox .process li .process-body {
  flex: 1;
}
.home-popup .popup-box .popup-catalog .flexbox .process li .process-body h4 {
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: bold;
  color: #27282a;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-catalog .flexbox .process li .process-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .home-popup .popup-box .popup-catalog .flexbox .process li .process-body h4 {
    font-size: 16px;
  }
}
.home-popup .popup-box .popup-catalog .flexbox .process li .process-body p {
  font-size: 16px;
  color: #666;
  text-align: justify;
}
@media (max-width: 1599px) {
  .home-popup .popup-box .popup-catalog .flexbox .process li .process-body p {
    font-size: 14px;
  }
}
.home-popup .popup-box .popup-catalog .flexbox .img-box {
  flex: 1;
  box-shadow: 0 3px 30px 0 rgba(42, 41, 38, 0.15);
}
@media (max-width: 991px) {
  .home-popup .popup-box .popup-catalog .flexbox .img-box {
    display: none;
  }
}
.home-popup .popup-box .popup-catalog .flexbox .img-box img {
  width: 100%;
}
.home-popup .popup-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.home-popup-mask {
  position: fixed;
  z-index: 999998;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.home-popup-mask.open {
  display: block;
}
.case-top-hot {
  margin: 0 0 115px;
}
@media (max-width: 1599px) {
  .case-top-hot {
    margin: 0 0 80px;
  }
}
.case-top-hot .flexbox {
  display: flex;
}
@media (max-width: 991px) {
  .case-top-hot .flexbox {
    display: block;
  }
}
.case-top-hot .flexbox .case-top-hot__img-swiper {
  position: relative;
  min-height: 514px;
  flex: 0 0 63.453%;
  max-width: 63.453%;
  min-height: 650px;
  overflow: hidden;
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .case-top-hot__img-swiper {
    min-height: 450px;
  }
}
@media (max-width: 1199px) {
  .case-top-hot .flexbox .case-top-hot__img-swiper {
    min-height: 400px;
  }
}
@media (max-width: 991px) {
  .case-top-hot .flexbox .case-top-hot__img-swiper {
    flex: inherit;
    max-width: inherit;
    width: 100%;
    min-height: inherit;
    height: 350px;
  }
}
@media (max-width: 575px) {
  .case-top-hot .flexbox .case-top-hot__img-swiper {
    height: 250px;
  }
}
.case-top-hot .flexbox .case-top-hot__img-swiper .swiper-slide {
  overflow: hidden;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .item {
  width: 100%;
  height: 100%;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .img_box {
  position: absolute;
  top: -3%;
  bottom: -3%;
  left: -3%;
  right: -3%;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .parallax-box {
  position: absolute;
  width: 100%;
  height: 100%;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .time-1 {
  transition: 0.1s;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .time-2 {
  transition: 0.2s;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .time-3 {
  transition: 0.3s;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .time-4 {
  transition: 0.4s;
}
.case-top-hot .flexbox .case-top-hot__img-swiper .time-5 {
  transition: 0.5s;
}
.case-top-hot .flexbox .rightbox {
  position: relative;
  background: #f2f2f2;
  padding: 70px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .rightbox {
    padding: 40px;
  }
}
@media (max-width: 1199px) {
  .case-top-hot .flexbox .rightbox {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .case-top-hot .flexbox .rightbox {
    padding: 20px 15px;
  }
}
.case-top-hot .flexbox .rightbox h3 {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 14px;
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .rightbox h3 {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .case-top-hot .flexbox .rightbox h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .case-top-hot .flexbox .rightbox h3 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.case-top-hot .flexbox .rightbox .smtit {
  position: relative;
  margin: 0 0 100px;
  font-size: 30px;
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .rightbox .smtit {
    font-size: 20px;
    margin: 0 0 60px;
  }
}
@media (max-width: 1199px) {
  .case-top-hot .flexbox .rightbox .smtit {
    font-size: 18px;
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .case-top-hot .flexbox .rightbox .smtit {
    font-size: 16px;
    margin: 0 0 30px;
  }
}
.case-top-hot .flexbox .rightbox .smtit:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 50px;
  height: 5px;
  background: #de1f26;
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .rightbox .smtit:after {
    height: 3px;
    bottom: -30px;
  }
}
@media (max-width: 1199px) {
  .case-top-hot .flexbox .rightbox .smtit:after {
    height: 2px;
    bottom: -20px;
  }
}
@media (max-width: 575px) {
  .case-top-hot .flexbox .rightbox .smtit:after {
    height: 1px;
    bottom: -15px;
  }
}
.case-top-hot .flexbox .rightbox .des {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 75px;
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .rightbox .des {
    font-size: 14px;
    margin: 0 0 40px;
  }
}
@media (max-width: 1199px) {
  .case-top-hot .flexbox .rightbox .des {
    line-height: 1.6;
    margin: 0 0 20px;
  }
}
.case-top-hot .flexbox .rightbox .prev-next {
  display: flex;
}
.case-top-hot .flexbox .rightbox .prev-next .prev,
.case-top-hot .flexbox .rightbox .prev-next .next {
  display: block;
  width: 91px;
  height: 11px;
  background: url(../images/other/case-left.png) center / contain no-repeat;
  transition: 0.3s;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .rightbox .prev-next .prev,
  .case-top-hot .flexbox .rightbox .prev-next .next {
    width: 60px;
  }
}
@media (max-width: 575px) {
  .case-top-hot .flexbox .rightbox .prev-next .prev,
  .case-top-hot .flexbox .rightbox .prev-next .next {
    flex: 1;
    height: 20px;
    background: url(../images/other/case-left.png) center / auto 40% no-repeat;
  }
}
.case-top-hot .flexbox .rightbox .prev-next .prev.swiper-button-disabled,
.case-top-hot .flexbox .rightbox .prev-next .next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .case-top-hot .flexbox .rightbox .prev-next .prev:hover,
  .case-top-hot .flexbox .rightbox .prev-next .next:hover {
    transform: translateX(-5px);
    background: url(../images/other/case-left-r.png) center / contain no-repeat;
  }
}
.case-top-hot .flexbox .rightbox .prev-next .next {
  margin: 0 0 0 60px;
  background: url(../images/other/case-right.png) center / contain no-repeat;
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .rightbox .prev-next .next {
    margin: 0 0 0 30px;
  }
}
@media (max-width: 575px) {
  .case-top-hot .flexbox .rightbox .prev-next .next {
    margin: 0;
    background: url(../images/other/case-right.png) center / auto 40% no-repeat;
  }
}
@media (min-width: 768px) {
  .case-top-hot .flexbox .rightbox .prev-next .next:hover {
    transform: translateX(5px);
    background: url(../images/other/case-right-r.png) center / contain no-repeat;
  }
}
.case-top-hot .flexbox .rightbox .right-top-ico {
  position: absolute;
  z-index: 1;
  width: 64px;
  height: 64px;
  right: 0;
  top: 0;
  background: #de1f26;
  color: #fff;
  font-style: normal;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-2px);
}
@media (max-width: 1599px) {
  .case-top-hot .flexbox .rightbox .right-top-ico {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .case-top-hot .flexbox .rightbox .right-top-ico {
    display: none;
  }
}
.case-card-list .box-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
  padding: 0;
}
@media (max-width: 1599px) {
  .case-card-list .box-row {
    margin: 0 -15px 20px;
  }
}
@media (max-width: 1599px) {
  .case-card-list .box-row {
    margin: 0 -15px 10px;
  }
}
.case-card-list .box-col {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 0 30px;
  margin: 0 0 75px;
}
@media (max-width: 1599px) {
  .case-card-list .box-col {
    padding: 0 15px;
    margin: 0 0 40px;
  }
}
@media (max-width: 991px) {
  .case-card-list .box-col {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
}
@media (max-width: 575px) {
  .case-card-list .box-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
}
.caseView-content .breadnav {
  padding: 2.5% 0 3.5%;
}
@media (max-width: 767px) {
  .caseView-prev-next {
    display: none;
  }
}
.caseView-prev-next .prev,
.caseView-prev-next .next {
  position: fixed;
  z-index: 98;
  left: 0;
  top: 0;
  width: 2.365%;
  height: 100%;
  background: #1a1a1a;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transform: translate3d(-100%, 0, 0);
}
.caseView-prev-next .prev.on,
.caseView-prev-next .next.on {
  transform: translate3d(0, 0, 0);
}
.caseView-prev-next .prev > span,
.caseView-prev-next .next > span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caseView-prev-next .prev .preview,
.caseView-prev-next .next .preview {
  visibility: hidden;
  transform: translate3d(-100%, 0, 0);
  position: relative;
  flex: 0 0 440px;
  max-width: 440px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
  transition: 0.6s cubic-bezier(1, 0.1, 0.5, 1) 0.1s;
}
@media (max-width: 1599px) {
  .caseView-prev-next .prev .preview,
  .caseView-prev-next .next .preview {
    flex: 0 0 350px;
    max-width: 350px;
  }
}
.caseView-prev-next .prev .preview .img-box,
.caseView-prev-next .next .preview .img-box {
  width: 100%;
}
.caseView-prev-next .prev .preview .img-box img,
.caseView-prev-next .next .preview .img-box img {
  width: 100%;
}
.caseView-prev-next .prev .preview .info,
.caseView-prev-next .next .preview .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 35px;
  background: #27282a;
}
@media (max-width: 1599px) {
  .caseView-prev-next .prev .preview .info,
  .caseView-prev-next .next .preview .info {
    padding: 20px 25px;
  }
}
.caseView-prev-next .prev .preview .info h4,
.caseView-prev-next .next .preview .info h4 {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
  text-align: right;
}
@media (max-width: 1599px) {
  .caseView-prev-next .prev .preview .info h4,
  .caseView-prev-next .next .preview .info h4 {
    font-size: 16px;
  }
}
.caseView-prev-next .prev .preview .info img,
.caseView-prev-next .next .preview .info img {
  width: 40px;
  margin: 0 15px 0 0;
}
.caseView-prev-next .prev:hover .preview,
.caseView-prev-next .next:hover .preview {
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: 0.3s;
}
.caseView-prev-next .next {
  left: auto;
  right: 0;
  transform: translate3d(100%, 0, 0);
  justify-content: flex-end;
}
.caseView-prev-next .next.on {
  transform: translate3d(0, 0, 0);
}
.caseView-prev-next .next .preview {
  transform: translate3d(100%, 0, 0);
}
.caseView-prev-next .next .preview .info h4 {
  text-align: left;
}
.caseView-prev-next .next .preview .info img {
  margin: 0 0 0 15px;
}
.caseView-section1 {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
}
@media (max-width: 767px) {
  .caseView-section1 {
    height: 500px !important;
  }
}
@media (max-width: 575px) {
  .caseView-section1 {
    height: auto !important;
    padding: 0 0 40px;
  }
}
.caseView-section1:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.caseView-section1 > .container.z-container {
  position: relative;
  z-index: 1;
  height: 100%;
}
.caseView-section1 .inner-content {
  padding: 90px 0 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .caseView-section1 .inner-content {
    padding: 60px 0 0;
  }
}
.caseView-section1 .inner-content .breadnav > li:last-child {
  color: #fff;
}
.caseView-section1 .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 15vh;
}
@media (max-width: 575px) {
  .caseView-section1 .info {
    padding: 30px 0 0;
  }
}
.caseView-section1 .info .smtit {
  font-size: 24px;
  color: #ccc;
  margin: 0 0 20px;
}
@media (max-width: 1599px) {
  .caseView-section1 .info .smtit {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .caseView-section1 .info .smtit {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .caseView-section1 .info .smtit {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .caseView-section1 .info .smtit {
    font-size: 14px;
  }
}
.caseView-section1 .info h2 {
  margin: 0 0 85px;
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1599px) {
  .caseView-section1 .info h2 {
    font-size: 35px;
    margin: 0 0 60px;
  }
}
@media (max-width: 1199px) {
  .caseView-section1 .info h2 {
    font-size: 30px;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .caseView-section1 .info h2 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .caseView-section1 .info h2 {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
.caseView-section1 .info .statistics {
  margin: 0 0 65px;
  padding: 0;
  display: flex;
}
@media (max-width: 1199px) {
  .caseView-section1 .info .statistics {
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .caseView-section1 .info .statistics {
    margin: 0 0 30px;
  }
}
.caseView-section1 .info .statistics > li {
  text-align: center;
  margin: 0 95px 0 0;
}
@media (max-width: 1599px) {
  .caseView-section1 .info .statistics > li {
    margin: 0 60px 0 0;
  }
}
@media (max-width: 575px) {
  .caseView-section1 .info .statistics > li {
    margin: 0 30px 0 0;
  }
}
.caseView-section1 .info .statistics > li:last-child {
  margin: 0;
}
.caseView-section1 .info .statistics > li h4 {
  font-size: 40px;
  margin: 0 0 12px;
  color: #fff;
  font-family: "AVANTGA2";
}
@media (max-width: 1599px) {
  .caseView-section1 .info .statistics > li h4 {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .caseView-section1 .info .statistics > li h4 {
    font-size: 20px;
    margin: 0 0 8px;
  }
}
.caseView-section1 .info .statistics > li p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1599px) {
  .caseView-section1 .info .statistics > li p {
    font-size: 14px;
  }
}
.caseView-section1 .info .tips {
  position: relative;
  padding: 35px 0 0;
  margin: 0;
  display: flex;
}
@media (max-width: 575px) {
  .caseView-section1 .info .tips {
    padding: 30px 0 0;
  }
}
.caseView-section1 .info .tips:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 672px;
  height: 3px;
  background: #fff;
}
@media (max-width: 1599px) {
  .caseView-section1 .info .tips:before {
    width: 500px;
    height: 2px;
  }
}
@media (max-width: 1199px) {
  .caseView-section1 .info .tips:before {
    width: 450px;
  }
}
@media (max-width: 767px) {
  .caseView-section1 .info .tips:before {
    width: 400px;
    height: 1px;
  }
}
@media (max-width: 575px) {
  .caseView-section1 .info .tips:before {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
  }
}
.caseView-section1 .info .tips > li {
  position: relative;
  padding: 0 0 0 16px;
  margin: 0 50px 0 0;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1599px) {
  .caseView-section1 .info .tips > li {
    margin: 0 30px 0 0;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .caseView-section1 .info .tips > li {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .caseView-section1 .info .tips > li {
    margin: 0 30px 0 0;
  }
}
.caseView-section1 .info .tips > li:last-child {
  margin: 0;
}
.caseView-section1 .info .tips > li:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #ccc;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
}
@media (max-width: 1599px) {
  .caseView-section1 .info .tips > li:before {
    width: 4px;
    height: 4px;
  }
}
.caseView-section2 {
  background: #fff;
}
.caseView-section2 .head {
  text-align: center;
  margin: 0 0 95px;
}
@media (max-width: 1599px) {
  .caseView-section2 .head {
    margin: 0 0 80px;
  }
}
@media (max-width: 1199px) {
  .caseView-section2 .head {
    margin: 0 0 40px;
  }
}
@media (max-width: 575px) {
  .caseView-section2 .head {
    margin: 0 0 30px;
  }
}
.caseView-section2 .head .tit {
  font-size: 48px;
  line-height: 1.5;
  margin: 0 0 15px;
}
@media (max-width: 1599px) {
  .caseView-section2 .head .tit {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .caseView-section2 .head .tit {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .caseView-section2 .head .tit {
    font-size: 20px;
    margin: 0 0 6px;
  }
}
.caseView-section2 .head .smtit {
  font-size: 24px;
  color: #666;
  margin: 0 0 45px;
}
@media (max-width: 1599px) {
  .caseView-section2 .head .smtit {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
@media (max-width: 991px) {
  .caseView-section2 .head .smtit {
    font-size: 18px;
    margin: 0 0 20px;
  }
}
@media (max-width: 575px) {
  .caseView-section2 .head .smtit {
    font-size: 16px;
    margin: 0 0 15px;
  }
}
.caseView-section2 .head .des {
  font-size: 16px;
  color: #999;
  line-height: 2;
  max-width: 855px;
  margin: 0 auto 50px;
}
@media (max-width: 1599px) {
  .caseView-section2 .head .des {
    margin: 0 auto 40px;
  }
}
@media (max-width: 1599px) {
  .caseView-section2 .head .des {
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto 30px;
  }
}
.caseView-section2 .head .preview-website {
  width: 170px;
  height: 55px;
  background: #de1f26;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  .caseView-section2 .head .preview-website {
    font-size: 16px;
    width: 160px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .caseView-section2 .head .preview-website {
    font-size: 14px;
    width: 130px;
    height: 40px;
  }
}
@media (min-width: 768px) {
  .prev-next--content {
    background: #1a1a1a;
    transform: translate3d(0px, 0px, 0px) scale(1.05, 1.05);
    transform-origin: 50% 0% 0px;
    margin: 0 2.365%;
  }
  .prev-next--content.show-padding {
    transform: scale(1);
  }
}
@media (max-width: 767px) {
  .prev-next--content {
    transform: scale(1) !important;
  }
}