body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  /**/
}
body::-webkit-scrollbar-track {
  background: #E9E7E4;
}
body::-webkit-scrollbar-thumb {
  background: #00468f;
}
body::-webkit-scrollbar-thumb:hover {
  background: #0050cd;
}
body::-webkit-scrollbar-corner {
  background: #00468f;
}
::selection {
  color: #fff;
  background: #00468f;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .page-header {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
header .header .content {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header .content .le-logo {
  padding-top: 16px;
}
header .header .content .navigation-list {
  height: 100%;
}
header .header .content .navigation-list ul {
  height: 100%;
  display: flex;
  align-items: center;
}
header .header .content .navigation-list ul li {
  position: relative;
  height: 100%;
}
header .header .content .navigation-list ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 32px;
  color: #282828;
  font-size: 18px;
}
header .header .content .navigation-list ul li a:hover {
  color: #00468f;
}
header .header .content .navigation-list ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding-top: 10px;
}
header .header .content .navigation-list ul li .sub-menu dl {
  background-color: #fff;
  width: 180px;
  text-align: center;
  padding: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
header .header .content .navigation-list ul li .sub-menu dl:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #fff;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  -moz-transform: translate(-50%, 50%) rotate(45deg);
  -ms-transform: translate(-50%, 50%) rotate(45deg);
  -o-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(-50%, 50%) rotate(45deg);
  box-shadow: -2px -2px 3px rgba(0, 0, 0, 0.1);
}
header .header .content .navigation-list ul li .sub-menu dl dd {
  position: relative;
}
header .header .content .navigation-list ul li .sub-menu dl dd a {
  padding: 10px 4px;
  display: block;
  font-size: 14px;
}
header .header .content .navigation-list ul li .sub-menu dl dd:hover {
  background-color: #00468f;
}
header .header .content .navigation-list ul li .sub-menu dl dd:hover a {
  color: #fff;
}
header .header .content .navigation-list ul li:hover .sub-menu {
  display: block;
}
header .header .content .navigation-list ul .active > a {
  color: #00468f;
}
header .header .content .ri-item {
  display: flex;
  align-items: center;
}
header .header .content .ri-item img {
  display: block;
}
header .header .content .ri-item .login-btn {
  margin-right: 10px;
}
header .header .content .ri-item .login-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border: 1px solid #282828;
  border-radius: 15px;
  padding: 0 12px;
  min-width: 100px;
}
header .header .content .ri-item .login-btn a span {
  font-size: 14px;
  display: inline-block;
  margin-left: 6px;
  color: #282828;
}
header .header .content .ri-item .language {
  position: relative;
  border-left: 1px solid #282828;
  border-right: 1px solid #282828;
}
header .header .content .ri-item .language a {
  display: block;
  padding: 0 10px;
}
header .header .content .ri-item .language a img {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
header .header .content .ri-item .language div {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding-top: 10px;
}
header .header .content .ri-item .language div ul {
  background-color: #fff;
  width: 180px;
  text-align: center;
  padding: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
header .header .content .ri-item .language div ul:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #fff;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  -moz-transform: translate(-50%, 50%) rotate(45deg);
  -ms-transform: translate(-50%, 50%) rotate(45deg);
  -o-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(-50%, 50%) rotate(45deg);
  box-shadow: -2px -2px 3px rgba(0, 0, 0, 0.1);
}
header .header .content .ri-item .language div ul li {
  position: relative;
}
header .header .content .ri-item .language div ul li a {
  padding: 10px 4em;
  display: block;
}
header .header .content .ri-item .language div ul li:hover {
  background-color: #00468f;
}
header .header .content .ri-item .language div ul li:hover a {
  color: #fff;
}
header .header .content .ri-item .language:hover > div {
  display: block;
}
header .header .content .ri-item .language:hover a img {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
header .header .content .ri-item .phone a {
  display: block;
  padding: 0 10px;
}
header .header .content .ri-item .search {
  position: relative;
}
header .header .content .ri-item .search a {
  display: block;
  padding: 0 10px;
}
header .header .content .ri-item .search a svg {
  width: 26px;
  height: 26px;
}
header .header .content .ri-item .search .search-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-65%, 0);
  -moz-transform: translate(-65%, 0);
  -ms-transform: translate(-65%, 0);
  -o-transform: translate(-65%, 0);
  transform: translate(-65%, 0);
  padding-top: 10px;
}
header .header .content .ri-item .search .search-box form {
  background-color: #fff;
  width: 280px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
header .header .content .ri-item .search .search-box form:before {
  content: '';
  position: absolute;
  top: 0;
  left: 66%;
  background-color: #fff;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  -moz-transform: translate(-50%, 50%) rotate(45deg);
  -ms-transform: translate(-50%, 50%) rotate(45deg);
  -o-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(-50%, 50%) rotate(45deg);
  box-shadow: -2px -2px 3px rgba(0, 0, 0, 0.1);
}
header .header .content .ri-item .search .search-box form input {
  border: #e1e3e6 solid 1px;
  width: 75%;
  height: 32px;
  background-color: #f4f4f4;
  padding: 8px 10px;
}
header .header .content .ri-item .search .search-box form button {
  width: 25%;
  float: right;
  padding: 7px 0 7px 0;
  cursor: pointer;
  height: 32px;
  font-weight: bold;
  background-color: #174f9f;
  color: #FFF;
  border: none;
}
header .header .content .ri-item .search:hover > div {
  display: block;
}
header .header .content .ri-item .menu-btn {
  display: none;
  margin-left: 42px;
}
header .header .content .ri-item .menu-btn a {
  display: block;
  overflow: hidden;
}
header .header .content .ri-item .menu-btn a i {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #00468f;
  margin: 4px 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header .header .content .ri-item .menu-btn a i:last-child {
  margin-left: -8px;
}
header .header .content .ri-item .menu-btn a:hover i:nth-child(2) {
  margin-left: -8px;
}
header .header .content .ri-item .menu-btn a:hover i:last-child {
  margin-left: 0;
}
header .header-navigation {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 70, 143, 0.95);
  display: none;
}
header .header-navigation .content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
header .header-navigation .close-btn {
  position: absolute;
  right: 160px;
  top: 50px;
}
header .header-navigation .close-btn a img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header .header-navigation .close-btn a:hover img {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
header .header-navigation .main-cont {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
header .header-navigation .main-cont .search-module form {
  position: relative;
  width: 100%;
}
header .header-navigation .main-cont .search-module form input {
  width: 100%;
  height: 56px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 32px;
  text-align: center;
  color: #fff;
}
header .header-navigation .main-cont .search-module form input::placeholder {
  color: #eee;
}
header .header-navigation .main-cont .search-module form button {
  position: absolute;
  right: 0;
  height: 80%;
  padding-left: 46px;
  padding-right: 10px;
  background-color: transparent;
  border: none;
  border-left: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header .header-navigation .main-cont .search-module form button:hover {
  padding-left: 32px;
}
header .header-navigation .main-cont .navigation-list {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
header .header-navigation .main-cont .navigation-list ul {
  padding: 0 40px;
  margin: 0 10px;
}
header .header-navigation .main-cont .navigation-list ul li:first-child {
  margin-bottom: 36px;
}
header .header-navigation .main-cont .navigation-list ul li:first-child a {
  position: relative;
  display: block;
  font-size: 18px;
  color: #fff;
  padding-bottom: 15px;
}
header .header-navigation .main-cont .navigation-list ul li:first-child a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #fff;
}
header .header-navigation .main-cont .navigation-list ul li:not(:first-child) a {
  display: block;
  padding: 5px 0;
  color: #a3b2cc;
  font-size: 16px;
}
header .header-navigation .main-cont .navigation-list ul li:not(:first-child) a:hover {
  color: #fff;
  text-decoration: underline;
}
.content {
  padding: 0 160px;
}
.min-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
#fullPage .section .home-banner {
  position: relative;
  width: 100%;
  height: 100%;
}
#fullPage .section .home-banner .swiper-slide {
  width: 100%;
  overflow: hidden;
}
#fullPage .section .home-banner .swiper-slide .bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 3s ease-in-out;
  -moz-transition: all 3s ease-in-out;
  -ms-transition: all 3s ease-in-out;
  -o-transition: all 3s ease-in-out;
  transition: all 3s ease-in-out;
}
#fullPage .section .home-banner .swiper-slide .text {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
  color: #282828;
}
#fullPage .section .home-banner .swiper-slide .text * {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0;
}
#fullPage .section .home-banner .swiper-slide .text h3 {
  font-size: 68px;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
#fullPage .section .home-banner .swiper-slide .text p {
  font-size: 36px;
  margin-top: 54px;
}
#fullPage .section .home-banner .swiper-slide .text i {
  display: inline-block;
  font-size: 26px;
  margin-top: 32px;
  line-height: 56px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 72px;
  border-radius: 30px;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
#fullPage .section .home-banner .ani-slide .bg-img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#fullPage .section .home-banner .ani-slide .text * {
  opacity: 1;
}
#fullPage .section .home-banner .ani-slide .text h3,
#fullPage .section .home-banner .ani-slide .text i {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#fullPage .section .home-banner .home-pagination {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 1;
}
#fullPage .section .home-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
#fullPage .section .fp-tableCell {
  position: relative;
}
#fullPage .section .home-module {
  padding-top: 100px;
}
#fullPage .section .home-module .title {
  position: absolute;
  left: 0;
  top: 160px;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(0, -200%);
  -moz-transform: translate(0, -200%);
  -ms-transform: translate(0, -200%);
  -o-transform: translate(0, -200%);
  transform: translate(0, -200%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}
#fullPage .section .home-module .title h3 {
  position: relative;
  font-size: 26px;
  padding-bottom: 10px;
}
#fullPage .section .home-module .title h3:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 38px;
  height: 1px;
  background-color: #00468f;
}
#fullPage .section .home-module .title p {
  font-size: 16px;
  margin-top: 10px;
}
#fullPage .section .home-module .main-cont {
  padding-top: 160px;
}
#fullPage .section .home-products .main-cont ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#fullPage .section .home-products .main-cont ul li {
  display: inline-block;
  margin: 0 40px;
}
#fullPage .section .home-products .main-cont ul li a {
  display: block;
}
#fullPage .section .home-products .main-cont ul li a .top-img {
  position: relative;
  font-size: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 1s 0.2s ease;
  -moz-transition: all 1s 0.2s ease;
  -ms-transition: all 1s 0.2s ease;
  -o-transition: all 1s 0.2s ease;
  transition: all 1s 0.2s ease;
}
#fullPage .section .home-products .main-cont ul li a .top-img .img {
  position: absolute;
  left: 3.00230947%;
  top: 4.73684211%;
  width: 93.5334873%;
  height: auto;
  overflow: hidden;
}
#fullPage .section .home-products .main-cont ul li a .top-img .img img {
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullPage .section .home-products .main-cont ul li a .txt {
  text-align: center;
  margin-top: 52px;
}
#fullPage .section .home-products .main-cont ul li a .txt h5 {
  font-size: 24px;
  color: #282828;
  -webkit-transition: all 1s 0.5s ease;
  -moz-transition: all 1s 0.5s ease;
  -ms-transition: all 1s 0.5s ease;
  -o-transition: all 1s 0.5s ease;
  transition: all 1s 0.5s ease;
  -webkit-transform: translate(0, 300%);
  -moz-transform: translate(0, 300%);
  -ms-transform: translate(0, 300%);
  -o-transform: translate(0, 300%);
  transform: translate(0, 300%);
  opacity: 0;
}
#fullPage .section .home-products .main-cont ul li a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#fullPage .section .home-advantage {
  display: flex;
  align-items: flex-start;
  padding-top: 0;
  height: 100%;
  overflow: hidden;
}
#fullPage .section .home-advantage > div {
  width: 50%;
  height: 100%;
  padding-top: 100px;
}
#fullPage .section .home-advantage > div .content {
  padding-top: 58px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
#fullPage .section .home-advantage > div .tit {
  text-align: center;
}
#fullPage .section .home-advantage > div .tit h3 {
  font-size: 24px;
  color: #282828;
}
#fullPage .section .home-advantage > div .tit p {
  font-size: 16px;
  color: #282828;
  margin-top: 24px;
}
#fullPage .section .home-advantage > div .cont {
  margin-top: 52px;
}
#fullPage .section .home-advantage .le-module .content {
  padding-right: 32px;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
#fullPage .section .home-advantage .le-module .cont .img-view {
  position: relative;
  display: inline-block;
}
#fullPage .section .home-advantage .le-module .cont .img-view img {
  display: block;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window {
  position: absolute;
  left: 6.32570659%;
  top: 4.03508772%;
  padding: 26px 18px;
  width: 84.25302826%;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li:not(:first-child) {
  margin-top: 20px;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
  opacity: 0;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li > div {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li .port {
  border-radius: 5px;
  overflow: hidden;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li .txt {
  position: relative;
  font-size: 16px;
  color: #282828;
  margin: 0 12px;
  padding: 12px;
  line-height: 28px;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  background-color: #fff;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li .txt:before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  -moz-transform: translate(50%, -50%) rotate(-45deg);
  -ms-transform: translate(50%, -50%) rotate(-45deg);
  -o-transform: translate(50%, -50%) rotate(-45deg);
  transform: translate(50%, -50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #d1d1d1;
  border-left: 1px solid #d1d1d1;
  background-color: #fff;
  margin-bottom: 1px;
  margin-right: 1px;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul .my-item {
  justify-content: flex-end;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul .my-item .txt {
  background-color: #6fd354;
  border-color: #6fd354;
}
#fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul .my-item .txt:before {
  left: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -moz-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  -o-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
  margin-top: 1px;
  margin-left: 1px;
  background-color: #6fd354;
  border-color: #6fd354;
}
#fullPage .section .home-advantage .le-module .cont .btn {
  margin-top: 32px;
  text-align: center;
}
#fullPage .section .home-advantage .le-module .cont .btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #00468f;
  border-radius: 40px;
}
#fullPage .section .home-advantage .le-module .cont .btn a span {
  padding-left: 36px;
  line-height: 52px;
  font-size: 16px;
  color: #fff;
}
#fullPage .section .home-advantage .le-module .cont .btn a .icon {
  padding-right: 30px;
  margin-left: 50px;
}
#fullPage .section .home-advantage .le-module .cont .btn a .icon img {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullPage .section .home-advantage .le-module .cont .btn a .icon:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  border-bottom: 52px solid #1b5fa5;
  border-top: 0 solid #1b5fa5;
  border-left: 30px solid transparent;
  border-right: 64px solid #1b5fa5;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 0 40px 40px 0;
}
#fullPage .section .home-advantage .le-module .cont .btn a:hover .icon img {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
#fullPage .section .home-advantage .le-module .cont .btn a:hover .icon:before {
  -webkit-transform: translate(10%, 0);
  -moz-transform: translate(10%, 0);
  -ms-transform: translate(10%, 0);
  -o-transform: translate(10%, 0);
  transform: translate(10%, 0);
}
#fullPage .section .home-advantage .ri-module {
  background-color: #eee;
  background-position: center;
  background-repeat: no-repeat;
}
#fullPage .section .home-advantage .ri-module .content {
  padding-left: 32px;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
#fullPage .section .home-advantage .ri-module .cont {
  display: flex;
  justify-content: center;
}
#fullPage .section .home-advantage .ri-module .cont ul {
  max-width: 680px;
}
#fullPage .section .home-advantage .ri-module .cont ul li {
  display: flex;
  padding: 28px 0;
  cursor: pointer;
}
#fullPage .section .home-advantage .ri-module .cont ul li .icon {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background-color: #fff;
}
#fullPage .section .home-advantage .ri-module .cont ul li .txt {
  padding-left: 36px;
  width: calc(100% - 90px);
}
#fullPage .section .home-advantage .ri-module .cont ul li .txt h5 {
  font-size: 18px;
  color: #00468f;
  font-weight: normal;
}
#fullPage .section .home-advantage .ri-module .cont ul li .txt p {
  font-size: 14px;
  color: #282828;
  margin-top: 14px;
}
#fullPage .section .home-advantage .ri-module .cont ul li:hover .icon {
  background-color: #00468f;
}
#fullPage .section .home-advantage .ri-module .cont ul li:hover .icon img {
  filter: grayscale(100%) invert(100%) brightness(500%);
}
#fullPage .section .home-cases .main-cont .top-cont {
  display: flex;
  align-items: stretch;
}
#fullPage .section .home-cases .main-cont .top-cont > div {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
#fullPage .section .home-cases .main-cont .top-cont .le-slide {
  width: 727px;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
#fullPage .section .home-cases .main-cont .top-cont .le-slide .home-cases-slide {
  overflow: hidden;
  height: 100%;
}
#fullPage .section .home-cases .main-cont .top-cont .le-slide .home-cases-slide .swiper-slide {
  background-size: cover;
  background-position: center;
}
#fullPage .section .home-cases .main-cont .top-cont .le-slide .home-cases-slide .swiper-slide .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #009e96;
  font-size: 16px;
  color: #fff;
  padding: 32px 20px;
  line-height: 2em;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon {
  padding-left: 46px;
  width: calc(100% - 727px);
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul {
  font-size: 0;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li {
  display: inline-block;
  width: calc((100% - 100px) / 5);
  border: 1px solid #959595;
  padding: 20px 0 30px;
  margin-right: 25px;
  margin-bottom: 25px;
  cursor: pointer;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li .box .icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li .box h5 {
  font-size: 16px;
  font-weight: normal;
  color: #282828;
  text-align: center;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li:hover {
  border-color: #009e96;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li:hover {
  background-color: #009e96;
  border-color: #009e96;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li:hover .box .icon img {
  filter: grayscale(100%) invert(100%) brightness(500%);
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li:hover .box h5 {
  color: #fff;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li:nth-last-child(-n+5) {
  margin-bottom: 0;
}
#fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li:nth-child(5n) {
  margin-right: 0;
}
#fullPage .section .home-cases .main-cont .bottom-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
#fullPage .section .home-cases .main-cont .bottom-cont .swiper-button {
  font-size: 0;
}
#fullPage .section .home-cases .main-cont .bottom-cont .swiper-button > div {
  display: inline-block;
  width: 30px;
  line-height: 30px;
  background-color: #b4b4b4;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-right: 1px;
  cursor: pointer;
  font-family: '宋体';
}
#fullPage .section .home-cases .main-cont .bottom-cont .swiper-button .swiper-button-disabled {
  background-color: #dadada;
}
#fullPage .section .home-cases .main-cont .bottom-cont .more a {
  font-size: 16px;
  font-weight: bold;
}
#fullPage .section .home-seminar {
  padding-bottom: 60px;
}
#fullPage .section .home-seminar .main-cont {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
#fullPage .section .home-seminar .main-cont .le-item {
  position: relative;
  padding-bottom: 36px;
  text-align: right;
  font-size: 0;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
#fullPage .section .home-seminar .main-cont .le-item .cont {
  position: relative;
  display: inline-block;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list {
  position: absolute;
  top: 50%;
  right: 70px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  max-width: 540px;
  width: 100%;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul {
  text-align: left;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .top-tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .top-tit h5 {
  font-size: 20px;
  color: #fff;
  font-weight: normal;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .top-tit a {
  display: inline-block;
  line-height: 22px;
  color: #fff;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid #fff;
  font-size: 14px;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .top-tit a:hover {
  background-color: #fff;
  color: #282828;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .txt {
  margin-top: 16px;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .txt p:not(:first-child) {
  margin-top: 6px;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .txt p {
  position: relative;
  font-size: 14px;
  color: #fff;
  padding-left: 14px;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .txt p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 5px;
  height: 5px;
}
#fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li:not(:first-child) {
  margin-top: 24px;
}
#fullPage .section .home-seminar .main-cont .le-item .seminar-icon {
  position: absolute;
  left: -200px;
  bottom: 0;
}
#fullPage .section .home-seminar .main-cont .ri-item {
  padding-left: 28px;
  padding-bottom: 36px;
  display: grid;
  flex-flow: row wrap;
  align-content: space-between;
}
#fullPage .section .home-seminar .main-cont .ri-item .box {
  position: relative;
  border: 1px solid #a0a0a0;
  width: 450px;
  padding: 62px 38px;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 1s 0.5s ease;
  -moz-transition: all 1s 0.5s ease;
  -ms-transition: all 1s 0.5s ease;
  -o-transition: all 1s 0.5s ease;
  transition: all 1s 0.5s ease;
}
#fullPage .section .home-seminar .main-cont .ri-item .box .le-txt {
  text-transform: uppercase;
}
#fullPage .section .home-seminar .main-cont .ri-item .box .le-txt h5 {
  font-size: 24px;
  font-weight: normal;
  line-height: 1em;
}
#fullPage .section .home-seminar .main-cont .ri-item .box .le-txt p {
  font-size: 16px;
  margin-top: 10px;
}
#fullPage .section .home-seminar .main-cont .ri-item .box .le-txt a {
  margin-top: 32px;
  display: inline-block;
  width: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #38b3ad;
  font-size: 24px;
  color: #fff;
  font-weight: lighter;
}
#fullPage .section .home-seminar .main-cont .ri-item .box .icon {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#fullPage .section .home-seminar .main-cont .ri-item .box:last-child .le-txt {
  text-align: right;
}
#fullPage .section .home-seminar .main-cont .ri-item .box:last-child .le-txt a {
  background-color: #00468f;
}
#fullPage .section .home-seminar .main-cont .ri-item .box:last-child .icon {
  left: 24px;
  right: auto;
}
#fullPage .section .home-news .main-cont {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-bottom: 100px;
}
#fullPage .section .home-news .main-cont .text .top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#fullPage .section .home-news .main-cont .text .top-line .date {
  color: #000;
  line-height: 1em;
}
#fullPage .section .home-news .main-cont .text .top-line .date p {
  font-size: 24px;
  font-weight: bold;
}
#fullPage .section .home-news .main-cont .text .top-line .date span {
  font-size: 16px;
  display: block;
  margin-top: 12px;
}
#fullPage .section .home-news .main-cont > div {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 100%;
}
#fullPage .section .home-news .main-cont > div a .img {
  overflow: hidden;
}
#fullPage .section .home-news .main-cont > div a .img img {
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullPage .section .home-news .main-cont > div a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#fullPage .section .home-news .main-cont .le-item {
  max-width: 736px;
  width: 100%;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
#fullPage .section .home-news .main-cont .le-item a {
  display: block;
}
#fullPage .section .home-news .main-cont .le-item a .img {
  font-size: 0;
}
#fullPage .section .home-news .main-cont .le-item a .text {
  padding: 32px 10px;
}
#fullPage .section .home-news .main-cont .le-item a .text .top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#fullPage .section .home-news .main-cont .le-item a .text .top-line .date {
  color: #000;
  line-height: 1em;
}
#fullPage .section .home-news .main-cont .le-item a .text .top-line .date p {
  font-size: 24px;
  font-weight: bold;
}
#fullPage .section .home-news .main-cont .le-item a .text .top-line .date span {
  font-size: 16px;
  display: block;
  margin-top: 12px;
}
#fullPage .section .home-news .main-cont .le-item a .text .txt {
  color: #000;
  margin-top: 30px;
}
#fullPage .section .home-news .main-cont .le-item a .text .txt h5 {
  font-size: 18px;
  line-height: 1em;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
#fullPage .section .home-news .main-cont .le-item a .text .txt p {
  font-size: 16px;
  margin-top: 24px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
#fullPage .section .home-news .main-cont .ri-item {
  width: calc(100% - 745px);
  padding-left: 20px;
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
#fullPage .section .home-news .main-cont .ri-item ul li a {
  display: flex;
  align-items: center;
}
#fullPage .section .home-news .main-cont .ri-item ul li a .img {
  width: 242px;
  height: 170px;
}
#fullPage .section .home-news .main-cont .ri-item ul li a .text {
  width: calc(100% - 242px);
  padding-left: 24px;
}
#fullPage .section .home-news .main-cont .ri-item ul li a .text .txt {
  margin-top: 26px;
}
#fullPage .section .home-news .main-cont .ri-item ul li a .text .txt h5 {
  font-size: 18px;
  color: #000;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
#fullPage .section .home-news .main-cont .ri-item ul li a .text .txt p {
  font-size: 16px;
  margin-top: 10px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
#fullPage .section .home-news .main-cont .ri-item ul li:not(:first-child) {
  margin-top: 30px;
}
#fullPage .section .home-partner {
  padding-bottom: 50vh;
}
#fullPage .section .home-partner .main-cont .home-partner-slide {
  margin-top: 10px;
}
#fullPage .section .home-partner .main-cont .home-partner-slide .swiper-slide {
  position: relative;
  height: 80px;
  border: 1px solid #c9c9c9;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 1s 0.5s ease;
  -moz-transition: all 1s 0.5s ease;
  -ms-transition: all 1s 0.5s ease;
  -o-transition: all 1s 0.5s ease;
  transition: all 1s 0.5s ease;
  opacity: 0;
}
#fullPage .section .home-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top: 50px;
  padding-top: 60px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: all 1s 0.2s ease;
  -moz-transition: all 1s 0.2s ease;
  -ms-transition: all 1s 0.2s ease;
  -o-transition: all 1s 0.2s ease;
  transition: all 1s 0.2s ease;
}
#fullPage .section .home-footer .top-contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#fullPage .section .home-footer .top-contact .le-item .title p {
  font-size: 36px;
  opacity: 0.1;
  text-transform: uppercase;
  font-weight: bold;
}
#fullPage .section .home-footer .top-contact .le-item .title h3 {
  font-size: 24px;
  color: #282828;
}
#fullPage .section .home-footer .top-contact .le-item .txt {
  margin-top: 32px;
  white-space: pre-line;
  font-size: 16px;
  color: #282828;
  line-height: 2em;
}
#fullPage .section .home-footer .top-contact .le-item .mobile-txt {
  display: none;
}
#fullPage .section .home-footer .top-contact .ri-item {
  display: flex;
  align-items: flex-start;
}
#fullPage .section .home-footer .top-contact .ri-item .box {
  margin-left: 28px;
}
#fullPage .section .home-footer .top-contact .ri-item .box p {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
  color: #282828;
}
#fullPage .section .home-footer .bottom-cont {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
#fullPage .section .home-footer .bottom-cont .txt {
  font-size: 18px;
}
#fullPage .section .home-footer .bottom-cont .contact-btn a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #c9c9c9;
  background-color: #fff;
}
#fullPage .section .home-footer .bottom-cont .contact-btn .footer-WeChat-btn .box {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 100%;
  padding-bottom: 10px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#fullPage .section .home-footer .bottom-cont .contact-btn .footer-WeChat-btn .box .img {
  position: relative;
  padding: 8px;
  border-radius: 8px;
  background-color: #fff;
  width: 160px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#fullPage .section .home-footer .bottom-cont .contact-btn .footer-WeChat-btn .box .img:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background-color: #fff;
}
#fullPage .section .home-footer .bottom-cont .contact-btn .footer-WeChat-btn:hover .box {
  display: block;
}
#fullPage .section.active .home-module .title {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
#fullPage .section.active .home-products .main-cont ul li a .top-img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#fullPage .section.active .home-products .main-cont ul li a .txt {
  margin-top: 15px;
}
#fullPage .section.active .home-products .main-cont ul li a .txt h5 {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#fullPage .section.active .home-advantage > div .content {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#fullPage .section.active .home-advantage .le-module .cont .img-view .chat-window ul li {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
#fullPage .section.active .home-advantage .le-module .cont .img-view .chat-window ul li:nth-child(1) {
  -webkit-transition: all 1s 0.5s ease;
  -moz-transition: all 1s 0.5s ease;
  -ms-transition: all 1s 0.5s ease;
  -o-transition: all 1s 0.5s ease;
  transition: all 1s 0.5s ease;
}
#fullPage .section.active .home-advantage .le-module .cont .img-view .chat-window ul li:nth-child(2) {
  -webkit-transition: all 1s 0.8s ease;
  -moz-transition: all 1s 0.8s ease;
  -ms-transition: all 1s 0.8s ease;
  -o-transition: all 1s 0.8s ease;
  transition: all 1s 0.8s ease;
}
#fullPage .section.active .home-advantage .le-module .cont .img-view .chat-window ul li:nth-child(3) {
  -webkit-transition: all 1s 1.1s ease;
  -moz-transition: all 1s 1.1s ease;
  -ms-transition: all 1s 1.1s ease;
  -o-transition: all 1s 1.1s ease;
  transition: all 1s 1.1s ease;
}
#fullPage .section.active .home-advantage .le-module .cont .img-view .chat-window ul li:nth-child(4) {
  -webkit-transition: all 1s 1.4s ease;
  -moz-transition: all 1s 1.4s ease;
  -ms-transition: all 1s 1.4s ease;
  -o-transition: all 1s 1.4s ease;
  transition: all 1s 1.4s ease;
}
#fullPage .section.active .home-advantage .le-module .cont .img-view .chat-window ul li:nth-child(5) {
  -webkit-transition: all 1s 1.7s ease;
  -moz-transition: all 1s 1.7s ease;
  -ms-transition: all 1s 1.7s ease;
  -o-transition: all 1s 1.7s ease;
  transition: all 1s 1.7s ease;
}
#fullPage .section.active .home-advantage .le-module .cont .img-view .chat-window ul li:nth-child(6) {
  -webkit-transition: all 1s 2s ease;
  -moz-transition: all 1s 2s ease;
  -ms-transition: all 1s 2s ease;
  -o-transition: all 1s 2s ease;
  transition: all 1s 2s ease;
}
#fullPage .section.active .home-cases .main-cont .top-cont > div {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#fullPage .section.active .home-seminar .main-cont .le-item {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#fullPage .section.active .home-seminar .main-cont .ri-item .box {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#fullPage .section.active .home-news .main-cont > div {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#fullPage .section.active .home-partner .main-cont .home-partner-slide .swiper-slide {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#fullPage .section.active .home-footer {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.home-next-page-btn {
  position: fixed;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home-next-page-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #797979;
}
.home-next-page-btn a i {
  display: inline-block;
  font-family: '宋体';
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 19px;
  color: #797979;
  margin-left: -2px;
}
.home-next-page-btn .moveSectionUp i {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.home-next-page-btn a:hover {
  background-color: #00468f;
  border-color: #00468f;
}
.home-next-page-btn a:hover i {
  color: #fff;
}
section {
  margin-top: 100px;
}
section .page-banner {
  height: 300px;
  background-position: center;
  background-size: cover;
}
section .page-banner .content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section .page-banner .txt h1 {
  position: relative;
  font-size: 24px;
  color: #fff;
  font-weight: normal;
}
section .page-banner .txt h1:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 44px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
section .page-route {
  border-bottom: 1px solid #ddd;
}
section .page-route .min-content {
  font-size: 0;
}
section .page-route .min-content .tab-route a {
  position: relative;
  display: inline-block;
  line-height: 59px;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  font-size: 16px;
  margin-right: 60px;
}
section .page-route .min-content .tab-route a .tag {
  position: absolute;
  right: 0;
  top: 5px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #009e96;
  font-size: 12px;
  color: #fff;
  padding: 0 5px;
  border-radius: 4px;
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  -ms-transform: translate(100%, 0%);
  -o-transform: translate(100%, 0%);
  transform: translate(100%, 0%);
}
section .page-route .min-content .tab-route a:hover {
  color: #009e96;
}
section .page-route .min-content .tab-route .active {
  border-color: #009e96;
}
section .page-route .min-content .route-link {
  border-left: 1px solid #ddd;
}
section .page-route .min-content .route-link a {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: #282828;
  font-size: 16px;
  line-height: 59px;
  margin-right: 20px;
}
section .page-route .min-content .route-link a:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  border-left: 10px solid #282828;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
section .page-route .min-content .route-link a:hover {
  color: #009e96;
}
section .page-route .min-content .route-link span {
  font-size: 16px;
  color: #282828;
  line-height: 59px;
  padding: 0 14px;
}
section .products-nav {
  margin-top: 50px;
  text-align: center;
  font-size: 0;
}
section .products-nav a:not(.aps) {
  display: inline-block;
  line-height: 42px;
  font-size: 18px;
  color: #282828;
  background-color: #eee;
  min-width: 140px;
  border-radius: 10px;
  padding: 0 20px;
  margin: 0 20px;
}
section .products-nav a.aps {
  display: inline-block;
  width: 31.5%;
  margin: 0 2.5% 4.4% 0;
  box-shadow: 0 0 10px #eaeaea;
}
section .products-nav a.aps .txt {
  padding: 7.6% 0 12% 0;
  font-size: 14px;
  text-align: center;
}
section .products-nav a.aps .txt h5 {
  color: #333333;
  font-size: 16px;
  line-height: 180%;
  margin-bottom: 24px;
}
section .products-nav a.aps .txt .btn {
  width: 142px;
  height: 42px;
  line-height: 42px;
  border: 1px solid #d2d2d2;
  border-radius: 2px;
  margin: 0 auto;
  color: #333;
}
section .products-nav a.aps .txt .btn span {
  display: inline-block;
  margin-left: 10px;
}
section .products-nav a.aps:nth-child(3n) {
  margin-right: 0;
}
section .products-nav a.aps:hover .txt .btn {
  background-color: #009e96;
  border-color: #009e96;
  color: #fff;
}
section .products-nav .active:not(.aps) {
  background-color: #009e96;
  color: #fff;
}
section .products-module {
  margin-top: 60px;
}
section .products-module .min-content .title h3 {
  position: relative;
  font-size: 24px;
  color: #282828;
  padding-left: 50px;
  font-weight: normal;
}
section .products-module .min-content .title h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 3px;
  background-color: #009e96;
  margin-top: -1px;
}
section .products-module .min-content .main-cont {
  margin-top: 36px;
}
section .products-module .min-content .introd-cont .text {
  font-size: 16px;
  color: #757575;
}
section .products-module .min-content .introd-cont .label-block {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section .products-module .min-content .introd-cont .label-block span {
  padding: 0 45px;
  line-height: 48px;
  background-color: #009e96;
  color: #fff;
  font-size: 16px;
  margin: 0 12px;
}
section .products-module .min-content .introd-cont .images {
  margin-top: 52px;
  font-size: 0;
}
section .products-module .min-content .introd-cont .images .img {
  display: inline-block;
  width: calc(50% - 10px);
  margin-right: 20px;
}
section .products-module .min-content .introd-cont .images .img:nth-child(2n) {
  margin-right: 0;
}
section .products-module .min-content .introd-cont .APS-what-ul {
  margin-top: 36px;
}
section .products-module .min-content .introd-cont .APS-what-ul ul {
  font-size: 0;
  text-align: center;
}
section .products-module .min-content .introd-cont .APS-what-ul ul li {
  display: inline-block;
  width: 300px;
  margin: 0 30px 0 0;
  padding: 20px;
  background: #f3f3f3;
  text-align: left;
}
section .products-module .min-content .introd-cont .APS-what-ul ul li h3 {
  font-size: 20px;
  color: #222222;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d5d5d5;
}
section .products-module .min-content .introd-cont .APS-what-ul ul li div p {
  color: #666666;
  line-height: 215%;
  padding-left: 15px;
  font-size: 14px;
}
section .products-module .min-content .introd-cont .APS-what-ul ul li:nth-child(3n) {
  margin-right: 0;
}
section .products-module .min-content .optioTab {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #dbe2e8;
  margin-top: 3.33%;
}
section .products-module .min-content .optioTab th {
  border: 1px solid #dbe2e8;
  color: #3c3c3c;
  font-size: 14px;
  width: 5.5%;
  background: #f2f4f6;
}
section .products-module .min-content .optioTab th,
section .products-module .min-content .optioTab td {
  padding: 2% 0.5%;
}
section .products-module .min-content .optioTab th:nth-child(1),
section .products-module .min-content .optioTab td:nth-child(1) {
  width: 28%;
}
section .products-module .min-content .optioTab td {
  border: 1px solid #dbe2e8;
  text-align: center;
}
section .products-module .min-content .optioTab td:nth-child(1) {
  padding: 2% 1.5%;
  text-align: left;
}
section .products-module .min-content .optioTab td .offdown {
  list-style: none;
  text-decoration: none;
  font-style: normal;
}
section .products-module .min-content .optioTab td .offdown em {
  display: inline-block;
  width: 62px;
  line-height: 30px;
  text-align: center;
  border-radius: 2px;
  margin-right: 12px;
  color: #fff;
  text-transform: uppercase;
  list-style: none;
  text-decoration: none;
  font-style: normal;
}
section .products-module .min-content .optioTab tr:nth-child(2) .offdown em {
  background: #053987;
}
section .products-module .min-content .optioTab tr:nth-child(3) .offdown em {
  background: #d88511;
}
section .products-module .min-content .optioTab tr:nth-child(4) .offdown em {
  background: #1d95d4;
}
section .products-module .min-content .optioTab tr:nth-child(5) .offdown em {
  background: #2ba239;
}
section .products-module .min-content .optioTab tr:nth-child(6) .offdown em {
  background: #bc1937;
}
section .products-module .min-content .optioTab tr:nth-child(7) .offdown em {
  background: #764390;
}
section .products-module .min-content .optioTab tr:nth-last-child(2) .offdown em {
  background: #231916;
}
section .products-module .min-content .notice {
  margin-top: 22px;
  color: #646f79;
  line-height: 200%;
  font-size: 14px;
}
section .products-module .min-content .notice span {
  display: inline-block;
}
section .products-module .min-content .notice .notice-show {
  display: inline-block;
  width: 90%;
  vertical-align: top;
}
section .products-module .min-content .notice .notice-show p {
  margin-bottom: 2px;
}
section .products-module .min-content .features > h3 {
  font-size: 2em;
  text-align: center;
}
section .products-module .min-content .features .data-list {
  margin-top: 30px;
}
section .products-module .min-content .features .data-list ul li {
  display: inline-flex;
  width: 238px;
  background: #fff;
  padding: 8px 18px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  vertical-align: center;
  box-sizing: content-box;
  margin: 10px;
}
section .products-module .min-content .features .data-list ul li em {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: #c2c2c2;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  vertical-align: top;
  margin-top: 2px;
  list-style: none;
  text-decoration: none;
  font-style: normal;
}
section .products-module .min-content .features .data-list ul li p {
  display: inline-block;
  width: calc(100% - 32px);
  margin-left: 10px;
  color: #666;
  line-height: 175%;
}
section .products-module .min-content .features .images {
  font-size: 0;
}
section .products-module .min-content .features .images .img {
  display: inline-block;
}
section .products-module .min-content .features .images .img:nth-child(2) {
  float: right;
}
section .products-module .min-content .features .images .img:last-child {
  width: 100%;
}
section .products-module .min-content .features .images .img:last-child img {
  width: 100%;
}
section .products-module .min-content .features .regulars {
  margin-bottom: 13px;
  padding: 4.583% 4% 7.25% 4%;
  background: #f7f7f7;
}
section .products-module .min-content .features .regulars .regulars-img {
  float: left;
  width: 56.7%;
}
section .products-module .min-content .features .regulars .regulars-cont {
  float: right;
  width: 39.22%;
}
section .products-module .min-content .features .regulars .regulars-cont h2 {
  color: #000;
  margin-bottom: 4.6%;
  font-size: 24px;
}
section .products-module .min-content .features .regulars .regulars-cont p {
  color: #333;
  padding-left: 9px;
  background-image: url(../images/regulars-spot.jpg);
  background-repeat: no-repeat;
  background-position: 1px center;
  line-height: 180%;
  margin-bottom: 6px;
}
section .products-module .min-content .structure-cont {
  display: flex;
  align-items: stretch;
}
section .products-module .min-content .structure-cont .le-menu {
  width: calc(100% - 796px);
  padding-right: 24px;
}
section .products-module .min-content .structure-cont .le-menu ul li {
  background-color: #b4b4b4;
}
section .products-module .min-content .structure-cont .le-menu ul li a {
  position: relative;
  display: block;
  line-height: 60px;
  padding: 0 50px;
  font-size: 16px;
  color: #fff;
}
section .products-module .min-content .structure-cont .le-menu ul li a:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  border-right: 10px solid #009e96;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 24px;
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -o-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  display: none;
}
section .products-module .min-content .structure-cont .le-menu ul li a:hover {
  text-decoration: underline;
}
section .products-module .min-content .structure-cont .le-menu ul .active {
  background-color: #009e96;
}
section .products-module .min-content .structure-cont .le-menu ul .active a:after {
  display: block;
}
section .products-module .min-content .structure-cont .le-menu ul li:not(:first-child) {
  margin-top: 12px;
}
section .products-module .min-content .structure-cont .ri-cont {
  width: 796px;
  background-color: #009e96;
  padding: 24px 40px;
  color: #fff;
  font-size: 14px;
}
section .products-module .min-content .structure-cont .ri-cont img {
  margin: 24px 0;
}
section .products-module .min-content .function-cont {
  font-size: 0;
}
section .products-module .min-content .function-cont ul li {
  display: inline-block;
  vertical-align: top;
  width: calc(100% / 6);
  border: 1px solid #d6d6d6;
}
section .products-module .min-content .function-cont ul li a {
  display: block;
  height: 168px;
  padding: 14px 5px;
}
section .products-module .min-content .function-cont ul li a .icon {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
section .products-module .min-content .function-cont ul li a h5 {
  font-size: 14px;
  color: #282828;
  font-weight: normal;
  text-align: center;
  white-space: pre-line;
}
section .products-module .min-content .function-cont ul li:nth-child(2n) {
  border-left: none;
  border-right: none;
}
section .products-module .min-content .function-cont ul li:nth-child(6n) {
  border-right: 1px solid #d6d6d6;
}
section .products-module .min-content .function-cont ul li:nth-child(n+7) {
  border-top: none;
}
section .products-module .min-content .solution-cont {
  margin-top: 0;
  padding-bottom: 60px;
}
section .products-module .min-content .solution-cont ul li {
  margin-top: 30px;
}
section .products-module .min-content .solution-cont ul li a {
  display: flex;
  align-items: center;
}
section .products-module .min-content .solution-cont ul li a .img {
  width: 460px;
  font-size: 0;
  overflow: hidden;
}
section .products-module .min-content .solution-cont ul li a .img img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
section .products-module .min-content .solution-cont ul li a .ri-text {
  width: calc(100% - 460px);
  padding-left: 40px;
}
section .products-module .min-content .solution-cont ul li a .ri-text h3 {
  font-size: 16px;
  color: #282828;
  font-weight: normal;
}
section .products-module .min-content .solution-cont ul li a .ri-text p {
  color: #999;
  font-size: 16px;
  margin-top: 36px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
section .products-module .min-content .solution-cont ul li a .ri-text span {
  display: block;
  font-size: 16px;
  color: #282828;
  margin-top: 36px;
}
section .products-module .min-content .solution-cont ul li a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
section .products-module .min-content .solution-cont ul li a:hover .ri-text h3 {
  color: #009e96;
}
section .products-module .min-content .easy-structure {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .products-module .min-content .easy-structure .le-text {
  padding-left: 24px;
}
section .products-module .min-content .easy-structure .le-text ul li {
  margin-top: 16px;
}
section .products-module .min-content .easy-structure .le-text ul li * {
  padding-left: 24px;
}
section .products-module .min-content .easy-structure .le-text ul li h5 {
  position: relative;
  font-size: 18px;
  color: #009e96;
}
section .products-module .min-content .easy-structure .le-text ul li h5:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 6px;
  height: 6px;
  background-color: #009e96;
  border-radius: 50%;
}
section .products-module .min-content .easy-structure .le-text ul li p {
  font-size: 18px;
  color: #ababab;
  margin-top: 10px;
}
section .products-module .min-content .easy-structure .le-text ul li:first-child {
  margin-top: 0;
}
section .products-module .min-content .easy-apply ul {
  font-size: 0;
}
section .products-module .min-content .easy-apply ul li {
  display: inline-block;
  width: calc((100% - 44px) / 2);
  margin-right: 44px;
}
section .products-module .min-content .easy-apply ul li p {
  font-size: 16px;
  line-height: 50px;
  background-color: #009e96;
  text-align: center;
  color: #fff;
}
section .products-module .min-content .easy-apply ul li:nth-child(2n) {
  margin-right: 0;
}
section .products-module .min-content .easy-apply ul li:nth-child(n+3) {
  margin-top: 24px;
}
section .products-module .min-content .easy-function ul {
  font-size: 0;
}
section .products-module .min-content .easy-function ul li {
  display: inline-block;
  vertical-align: top;
  width: calc((100% - 30px) / 3);
  margin-right: 15px;
}
section .products-module .min-content .easy-function ul li .img {
  position: relative;
  width: 100%;
  height: 250px;
  border: 1px solid #ababab;
}
section .products-module .min-content .easy-function ul li .img .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
section .products-module .min-content .easy-function ul li p {
  font-size: 16px;
  color: #009e96;
  text-align: center;
  margin-top: 12px;
}
section .products-module .min-content .easy-function ul li:hover .img .mask {
  display: block;
}
section .products-module .min-content .easy-function ul li:nth-child(3n) {
  margin-right: 0;
}
section .products-module .min-content .easy-function ul li:nth-child(n+4) {
  margin-top: 40px;
}
section .products-module .min-content .easy-support {
  padding-bottom: 60px;
}
section .products-module .min-content .easy-support ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
section .products-module .min-content .easy-support ul li .img {
  border-radius: 50%;
  overflow: hidden;
}
section .products-module .min-content .easy-support ul li .img img {
  display: block;
}
section .products-module .min-content .easy-support ul li p {
  font-size: 24px;
  color: #282828;
  text-align: center;
  margin-top: 40px;
}
section .products-module .min-content ul.options li {
  border-bottom: 1px solid #e2e2e2;
  padding: 33px 0 38px 0;
}
section .products-module .min-content ul.options li .funcnn {
  float: left;
  width: 25.8%;
}
section .products-module .min-content ul.options li .funcnn h1 {
  color: #24599f;
  font-size: 28px;
}
section .products-module .min-content ul.options li .method {
  float: left;
  width: 47.5%;
}
section .products-module .min-content ul.options li .method h1 {
  color: #000;
  font-size: 22px;
  margin-bottom: 16px;
}
section .products-module .min-content ul.options li .method p {
  line-height: 175%;
  color: #444;
}
section .products-module .min-content ul.options li .method .djyl {
  display: none;
}
section .products-module .min-content ul.options li .illustrate {
  float: right;
  width: 18%;
  text-align: center;
}
section .products-module .min-content ul.options li .illustrate p {
  font-size: 18px;
  color: #333;
}
section .products-module .min-content ul.options li .djyl {
  color: #009e96;
  font-size: 15px;
  width: 100%;
  margin-top: 13px;
}
section .products-module .min-content ul.options li .annot {
  margin: 15px 0;
}
section .products-module .min-content ul.options li .annot a {
  padding: 2% 6%;
  text-align: center;
  border-radius: 2px;
  margin-right: 9px;
  color: #fff;
  text-transform: uppercase;
}
section .products-module .min-content ul.options li .annot a:nth-child(1) {
  background: #e28d16;
}
section .products-module .min-content ul.options li .annot a:nth-child(2) {
  background: #1b94d4;
}
section .products-module .min-content ul.options li .annot a:nth-child(3) {
  background: #1751a7;
}
section .products-module .min-content ul.options li .note {
  color: #444;
}
section .products-module .min-content ul.options li .star {
  color: #fd1c1c;
  margin-right: 3px;
}
section .products-module .min-content ul.options li:nth-child(1) {
  color: #444;
  font-weight: bold;
  font-size: 16px;
  /* line-height: 64px; */
  padding: 1.7% 0;
}
section .products-module .min-content .scm {
  padding-bottom: 60px;
}
section .products-module .min-content .scm h1 {
  color: #222;
  font-size: 2em;
  text-align: center;
  padding: 0 0 2.66% 0;
}
section .products-module .min-content .scm > div {
  margin-bottom: 28px;
}
section .products-module .min-content .scm > div strong {
  display: block;
  color: #64696d;
  font-weight: bold;
  margin-bottom: 9px;
  padding-left: 16px;
  background: url(../images/scm-fang.jpg) no-repeat 0px 4.5px;
}
section .products-module .min-content .scm .tab {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dbe2e8;
  font-size: 15px;
}
section .products-module .min-content .scm .tab th {
  background: #f2f4f6;
  color: #3c3c3c;
  border: 1px solid #dbe2e8;
  padding: 1.8% 3%;
  text-align: left;
}
section .products-module .min-content .scm .tab td {
  color: #646f79;
  border: 1px solid #dbe2e8;
  padding: 1.8% 3%;
}
section .products-module .structure {
  background: #f5f5f5;
  margin-top: 36px;
}
section .products-module .structure ul li {
  border-bottom: 1px solid #d6d6d6;
  padding: 4.166% 0;
}
section .products-module .structure ul li .structure-left {
  float: left;
  width: 31.25%;
}
section .products-module .structure ul li .structure-left h1 {
  font-size: 45px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  color: #231916;
  margin-top: -10px;
}
section .products-module .structure ul li .structure-left p {
  color: #444444;
}
section .products-module .structure ul li .structure-rg {
  float: left;
  width: 64.58%;
}
section .products-module .structure ul li .structure-rg h3 {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}
section .products-module .structure ul li .structure-rg p {
  font-size: 15px;
  color: #333;
  line-height: 175%;
}
section .products-module .move {
  background-size: cover !important;
}
section .products-module .move .move-ul li {
  float: left;
  width: 48.83%;
  height: 345px;
  padding: 2.9% 5.4% 0 3.33%;
  border: 2px solid #bababa;
  color: #fff;
}
@media (max-width: 766px) {
  section .products-module .move .move-ul li {
    width: 100%;
  }
}
section .products-module .move .move-ul li h5 {
  font-size: 24px;
  margin-bottom: 20px;
}
section .products-module .move .move-ul li:nth-child(2) {
  float: right;
}
section .search-page {
  padding: 60px 0;
}
section .search-page .list li {
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}
section .search-page .list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
section .search-page .list li a h3 {
  font-size: 16px;
  font-weight: normal;
  color: inherit;
}
section .search-page .list li a h3.user:after {
  content: '会员';
  background-color: #009e96;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  margin-left: 20px;
}
section .search-page .list li a:hover {
  color: #009e96;
}
section .search-page .list.download li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .search-page .list.download li .le-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding-right: 20px;
}
section .search-page .list.download li .le-item input {
  padding-left: 12px;
}
section .search-page .list.download li .layui-form-select dl dd.layui-this {
  background-color: #009e96;
}
section .search-page .list.download li:hover a {
  color: #009e96;
}
section .consult-list {
  padding-bottom: 60px;
}
section .consult-list ul {
  font-size: 0;
}
section .consult-list ul li {
  margin-top: 20px;
}
section .consult-list ul li a {
  display: flex;
  align-items: stretch;
}
section .consult-list ul li a .ri-text {
  border: 1px solid #eeeeee;
  padding: 56px 60px;
  flex: 1;
}
section .consult-list ul li a .ri-text h5 {
  font-size: 18px;
  color: #282828;
  font-weight: normal;
}
section .consult-list ul li a .ri-text .txt {
  margin-top: 20px;
}
section .consult-list ul li a .ri-text .txt p {
  font-size: 14px;
  color: #282828;
  line-height: 2em;
}
section .consult-list ul li a .ri-text .btn {
  margin-top: 20px;
}
section .consult-list ul li a .ri-text .btn span {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #009e96;
  line-height: 28px;
  padding: 0 15px;
  border-radius: 14px;
}
section .consult-list ul li:first-child {
  margin-top: 0;
}
section .consult-details .top-view {
  display: flex;
  align-items: flex-start;
}
section .consult-details .top-view .ri-text {
  flex: 1;
  padding: 46px 50px;
}
section .consult-details .top-view .ri-text .top-title {
  display: flex;
  align-items: center;
}
@media (max-width: 766px) {
  section .consult-details .top-view .ri-text .top-title {
    display: block;
  }
}
section .consult-details .top-view .ri-text .top-title h5 {
  font-size: 24px;
  font-weight: normal;
}
section .consult-details .top-view .ri-text .top-title span {
  margin-left: 32px;
  display: inline-block;
  background-color: #009e96;
  font-size: 16px;
  color: #fff;
  line-height: 36px;
  padding: 0 20px;
  border-radius: 18px;
}
@media (max-width: 766px) {
  section .consult-details .top-view .ri-text .top-title span {
    margin-left: 0;
  }
}
section .consult-details .top-view .ri-text .txt {
  margin-top: 36px;
}
section .consult-details .top-view .ri-text .txt p {
  position: relative;
  font-size: 16px;
  color: #282828;
  line-height: 2em;
  padding-left: 24px;
}
section .consult-details .top-view .ri-text .txt p:after {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 2px;
  background-color: #009e96;
}
section .consult-details .consult-data {
  margin-top: 60px;
}
section .consult-details .consult-data .main-cont .business-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
section .consult-details .consult-data .main-cont .business-nav a {
  position: relative;
  font-size: 18px;
  color: #282828;
  background-color: #eee;
  line-height: 46px;
  border-radius: 23px;
  padding: 0 24px;
}
section .consult-details .consult-data .main-cont .business-nav a:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  display: none;
  width: 14px;
  height: 14px;
  background-color: #eee;
  border: 1px solid #d2d2d2;
  border-right: 0;
  border-bottom: 0;
  margin-top: 32px;
}
section .consult-details .consult-data .main-cont .business-nav .active {
  background-color: #009e96;
  color: #fff;
}
section .consult-details .consult-data .main-cont .business-nav .active:before {
  display: block;
}
section .consult-details .consult-data .main-cont .text-cont {
  margin-top: 32px;
  padding: 72px 60px;
  background-color: #eee;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
}
section .consult-details .consult-data .main-cont .text-cont .text {
  display: none;
}
section .consult-details .consult-data .main-cont .text-cont .text p {
  position: relative;
  line-height: 2em;
  font-size: 18px;
  color: #282828;
  padding-left: 24px;
}
section .consult-details .consult-data .main-cont .text-cont .text p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #009e96;
}
section .products-bottom {
  margin-top: 32px;
  padding-bottom: 100px;
}
section .products-bottom .txt {
  background-color: #009e96;
  line-height: 56px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}
section .products-bottom .img-list {
  margin-top: 10px;
}
section .products-bottom .img-list ul {
  font-size: 0;
}
section .products-bottom .img-list ul li {
  display: inline-block;
  width: calc((100% - 30px) / 4);
  height: 146px;
  border: 1px solid #d2d2d2;
  position: relative;
  margin-right: 10px;
}
section .products-bottom .img-list ul li:nth-child(4n) {
  margin-right: 0;
}
section .products-bottom .btn {
  margin-top: 100px;
  text-align: center;
}
section .products-bottom .btn a {
  display: inline-flex;
  align-items: center;
  background-color: #009e96;
  color: #fff;
  font-size: 24px;
  padding: 0 56px;
  line-height: 72px;
  border-radius: 36px;
}
section .products-bottom .btn a img {
  margin-left: 42px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
section .products-bottom .btn a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
section .news-module {
  padding: 60px 0;
}
section .news-module .top-data a {
  display: flex;
  align-items: center;
}
section .news-module .top-data a .img {
  width: 360px;
  font-size: 0;
  overflow: hidden;
}
section .news-module .top-data a .img img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
section .news-module .top-data a .ri-text {
  width: calc(100% - 460px);
  padding-left: 40px;
}
section .news-module .top-data a .ri-text h3 {
  font-size: 24px;
  color: #282828;
  font-weight: normal;
}
section .news-module .top-data a .ri-text p {
  color: #999;
  font-size: 16px;
  margin-top: 36px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
section .news-module .top-data a .ri-text span {
  display: block;
  font-size: 16px;
  color: #282828;
  margin-top: 36px;
}
section .news-module .top-data a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
section .news-module .top-data a:hover .ri-text h3 {
  color: #009e96;
}
section .news-module .news-list {
  margin-top: 30px;
}
section .news-module .news-list ul.list li {
  margin-top: 20px;
}
section .news-module .news-list ul.list li > a {
  display: flex;
  align-items: center;
}
section .news-module .news-list ul.list li > a .img {
  width: 360px;
  font-size: 0;
  overflow: hidden;
}
section .news-module .news-list ul.list li > a .img img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
section .news-module .news-list ul.list li > a .ri-text {
  width: calc(100% - 460px);
  padding-left: 40px;
}
section .news-module .news-list ul.list li > a .ri-text h3 {
  font-size: 24px;
  color: #282828;
  font-weight: normal;
}
section .news-module .news-list ul.list li > a .ri-text p {
  color: #999;
  font-size: 16px;
  margin-top: 36px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
section .news-module .news-list ul.list li > a .ri-text > span {
  display: block;
  font-size: 16px;
  color: #282828;
  margin-top: 36px;
}
section .news-module .news-list ul.list li > a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
section .news-module .news-list ul.list li > a:hover .ri-text h3 {
  color: #009e96;
}
section .column-module .min-content {
  display: flex;
}
section .column-module .label-module {
  display: flex;
  flex-wrap: wrap;
  gap: 1ch;
  margin-bottom: 20px;
}
section .column-module .label-module span {
  border: 1px solid #384655;
  font-weight: bold;
  display: block;
  color: #384655;
  padding: 1ch 2ch;
}
section .column-module .label-module span a {
  display: inline-block;
  font-size: 14px;
  margin-left: 6px;
}
section .column-module .news-list {
  flex: 1;
  margin-top: 0;
  padding-right: 30px;
}
section .column-module .news-list ul.list li.is-user {
  position: relative;
}
section .column-module .news-list ul.list li.is-user:after {
  content: '会员';
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #009e96;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
}
section .column-module .news-list ul.list li:first-child {
  margin-top: 0;
}
section .column-module .news-list ul.list li .item {
  display: flex;
  align-items: center;
}
section .column-module .news-list ul.list li .item .img {
  width: 360px;
  font-size: 0;
  overflow: hidden;
}
section .column-module .news-list ul.list li .item .img img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
section .column-module .news-list ul.list li .item .ri-text {
  width: calc(100% - 460px);
  padding-left: 40px;
}
section .column-module .news-list ul.list li .item .ri-text h3 {
  font-size: 24px;
  color: #282828;
  font-weight: normal;
}
section .column-module .news-list ul.list li .item .ri-text p {
  color: #999;
  font-size: 16px;
  margin-top: 36px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
section .column-module .news-list ul.list li .item .ri-text > span {
  display: block;
  font-size: 16px;
  color: #282828;
}
section .column-module .news-list ul.list li .item .ri-text .bot-item {
  margin-top: 36px;
}
section .column-module .news-list ul.list li .item .ri-text .bot-item .label-box a {
  display: inline-block;
  margin-left: 5px;
  color: #009e96;
}
section .column-module .news-list ul.list li .item .ri-text .bot-item .label-box a:hover {
  text-decoration: underline;
}
section .column-module .news-list ul.list li .item:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
section .column-module .news-list ul.list li .item:hover .ri-text h3 {
  color: #009e96;
}
section .column-module .news-list ul.list li .item .ri-text {
  flex: 1;
}
section .column-module .news-list ul.list li .bot-item {
  display: flex;
}
section .column-module .news-list ul.list li .bot-item .label-box {
  display: flex;
  padding-left: 20px;
}
section .column-module .ri-content {
  width: 300px;
}
section .column-module .ri-content .search-module {
  padding: 15px 0;
  margin-bottom: 20px;
}
section .column-module .ri-content .search-module form input {
  border: #e1e3e6 solid 1px;
  width: 75%;
  height: 38px;
  background-color: #f4f4f4;
  padding: 8px 10px;
}
section .column-module .ri-content .search-module form input:focus {
  border-color: #333;
  background-color: #fff;
}
section .column-module .ri-content .search-module form button {
  width: 25%;
  float: right;
  padding: 7px 0 7px 0;
  cursor: pointer;
  height: 38px;
  font-weight: bold;
  background-color: #174f9f;
  color: #FFF;
  border: none;
}
section .column-module .ri-content .search-module form button:hover {
  background-color: #009e96;
}
section .column-module .ri-content .recommend {
  margin-bottom: 20px;
}
section .column-module .ri-content .recommend .top-title {
  background-color: #eee;
}
section .column-module .ri-content .recommend .top-title h3 {
  font-size: 16px;
  color: #384655;
  background-color: #f2f2f2;
  border-bottom: #e1e3e6 solid 1px;
  padding: 16px 15px;
  font-weight: bold;
}
section .column-module .ri-content .recommend ul li {
  border-bottom: 1px solid #e1e3e6;
}
section .column-module .ri-content .recommend ul li a {
  display: flex;
  padding: 15px 0;
}
section .column-module .ri-content .recommend ul li a .img {
  width: 90px;
  height: 60px;
  overflow: hidden;
}
section .column-module .ri-content .recommend ul li a .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
section .column-module .ri-content .recommend ul li a h5 {
  padding-left: 20px;
  flex: 1;
  font-size: 14px;
  font-weight: bold;
  color: #384655;
}
section .column-module .ri-content .recommend ul li a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
section .column-module .ri-content .recommend ul li a:hover h5 {
  color: #009e96;
}
section .column-module .ri-content .label-module {
  display: flex;
  flex-wrap: wrap;
  gap: 1ch;
}
section .column-module .ri-content .label-module a {
  border: 1px solid #384655;
  font-weight: bold;
  display: block;
  color: #384655;
  padding: 1ch 2ch;
}
section .column-module .ri-content .label-module a:hover {
  color: #009e96;
  border-color: #009e96;
}
section .pagination {
  margin-top: 60px;
  text-align: center;
  font-size: 0;
}
section .pagination li {
  display: inline-block;
  margin: 0 5px;
}
section .pagination li a {
  display: block;
  line-height: 36px;
  border: 1px solid #e5e5e5;
  padding: 0 16px;
  color: #656565;
  font-size: 12px;
}
section .pagination li a:hover {
  color: #009e96;
}
section .pagination .active a {
  background-color: #656565;
  border-color: #656565;
  color: #fff;
}
section .cases-module {
  padding: 36px 0 60px;
}
section .cases-module .top-type {
  font-size: 0;
}
section .cases-module .top-type ul li {
  width: calc(100% / 8);
  display: inline-block;
  border: 1px solid #dcdcdc;
}
section .cases-module .top-type ul li a {
  display: block;
  padding: 24px 10px;
}
section .cases-module .top-type ul li a .icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto;
}
section .cases-module .top-type ul li a p {
  font-size: 16px;
  color: #282828;
  text-align: center;
}
section .cases-module .top-type ul .active {
  background-color: #009e96;
  border-color: #009e96;
}
section .cases-module .top-type ul .active a .icon img {
  filter: grayscale(100%) invert(100%) brightness(500%);
}
section .cases-module .top-type ul .active a p {
  color: #fff;
}
section .cases-module .top-type ul li:nth-child(2n) {
  border-left: none;
  border-right: none;
}
section .cases-module .top-type ul li:nth-child(8n) {
  border-right: 1px solid #d6d6d6;
}
section .cases-module .top-type ul li:nth-child(n+9) {
  border-top: none;
}
section .cases-module .cases-list {
  padding-top: 50px;
}
section .cases-module .cases-list ul.list {
  font-size: 0;
}
section .cases-module .cases-list ul.list li {
  display: inline-block;
  width: calc((100% - 30px) / 2);
}
section .cases-module .cases-list ul.list li a {
  display: flex;
  align-items: center;
  background-color: #eee;
}
section .cases-module .cases-list ul.list li a .img {
  flex-shrink: 0;
  width: 260px;
  overflow: hidden;
}
section .cases-module .cases-list ul.list li a .img img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
section .cases-module .cases-list ul.list li a .text {
  flex-shrink: 1;
  padding: 0 30px;
  color: #282828;
}
section .cases-module .cases-list ul.list li a .text h5 {
  font-size: 18px;
  font-weight: normal;
  line-height: 2em;
}
section .cases-module .cases-list ul.list li a .text p {
  font-size: 14px;
  margin-top: 20px;
}
section .cases-module .cases-list ul.list li a:hover {
  background-color: #009e96;
}
section .cases-module .cases-list ul.list li a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
section .cases-module .cases-list ul.list li a:hover .text {
  color: #fff;
}
section .cases-module .cases-list ul.list li:nth-child(2n) {
  margin-left: 30px;
}
section .cases-module .cases-list ul.list li:not(:first-child) {
  margin-top: 30px;
}
section .seminar-module {
  padding: 30px 0 60px;
}
section .seminar-module .seminar-list ul.list {
  font-size: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
section .seminar-module .seminar-list ul.list li {
  display: inline-block;
  width: calc((100% - 34px) / 3);
  margin-top: 30px;
}
section .seminar-module .seminar-list ul.list li a {
  display: block;
}
section .seminar-module .seminar-list ul.list li a .text {
  padding: 24px;
  text-align: center;
  border: 1px solid #dcdcdc;
  border-top: 0;
}
section .seminar-module .seminar-list ul.list li a .text p {
  font-size: 14px;
}
section .seminar-module .seminar-list ul.list li a .text .btn {
  margin-top: 20px;
}
section .seminar-module .seminar-list ul.list li a .text .btn span {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #009e96;
  line-height: 32px;
  border-radius: 16px;
  padding: 0 52px;
}
section .download-module {
  padding: 30px 0 60px;
}
section .download-module .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0;
}
section .download-module .list li {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc((100% - 58px) / 2);
  border: 1px solid #dcdcdc;
  padding: 28px 36px 20px 16px;
}
section .download-module .list li .le-item {
  position: relative;
  padding-left: 30px;
}
section .download-module .list li .le-item .text h5 {
  font-size: 16px;
  font-weight: normal;
}
section .download-module .list li .le-item .text .txt {
  margin-top: 10px;
  font-size: 16px;
  color: #a3a3a3;
}
section .download-module .list li .le-item .btn {
  margin-top: 20px;
  font-size: 0;
}
section .download-module .list li .le-item .btn a {
  display: inline-block;
  width: auto;
  padding: 0 10px;
  line-height: 32px;
  border: 1px solid #cacaca;
  border-radius: 20px;
  text-align: center;
  color: #a2a1a1;
  margin-right: 15px;
  font-size: 16px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
section .download-module .list li .le-item .btn input {
  padding: 0 10px;
}
section .download-module .list li .le-item .btn .layui-form {
  font-size: 14px;
}
section .download-module .list li .le-item .btn .layui-form-select dl dd.layui-this {
  background-color: #009e96;
}
section .download-module .list li .le-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 40px;
  background-color: #009e96;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
section .download-module .list li:hover {
  background-color: #009e96;
}
section .download-module .list li:hover .le-item .text h5 {
  color: #fff;
}
section .download-module .list li:hover .le-item .text .txt {
  color: rgba(255, 255, 255, 0.5);
}
section .download-module .list li:hover .le-item .btn a {
  color: #fff;
  border-color: #fff;
}
section .download-module .list li:hover .le-item .btn .active {
  background-color: #fff;
  color: #009e96;
}
section .download-module .list li:hover .le-item:before {
  background-color: #fff;
}
section .download-module .list li:hover .download-btn a img {
  filter: grayscale(100%) invert(100%) brightness(500%);
}
section .contact-module {
  padding: 60px 0 0;
}
section .contact-module .page-module {
  display: none;
}
section .contact-module .page-module .module .tit {
  text-align: center;
}
section .contact-module .page-module .module .tit h3 {
  position: relative;
  font-size: 24px;
  color: #282828;
  padding-bottom: 20px;
  font-weight: normal;
}
section .contact-module .page-module .module .tit h3:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 1px;
  background-color: #000;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
section .contact-module .about-module {
  display: block;
}
section .contact-module .about-module .introduce .min-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
section .contact-module .about-module .introduce .min-content .le-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 40px;
}
section .contact-module .about-module .introduce .min-content .le-text .text h3 {
  position: relative;
  font-size: 24px;
  font-weight: normal;
  padding-left: 50px;
  color: #282828;
}
section .contact-module .about-module .introduce .min-content .le-text .text h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1px;
  background-color: #009e96;
}
section .contact-module .about-module .introduce .min-content .le-text .text .txt {
  margin-top: 40px;
  font-size: 14px;
  color: #282828;
  line-height: 2em;
}
section .contact-module .about-module .introduce .min-content .le-text .data-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
section .contact-module .about-module .introduce .min-content .le-text .data-list .box h5 {
  font-size: 36px;
  color: #009e96;
}
section .contact-module .about-module .introduce .min-content .le-text .data-list .box h5 span {
  font-size: 14px;
  font-weight: normal;
}
section .contact-module .about-module .introduce .min-content .le-text .data-list .box p {
  font-size: 16px;
}
section .contact-module .about-module .introduce .min-content .ri-video {
  width: 524px;
  display: flex;
  justify-content: space-between;
}
section .contact-module .about-module .introduce .min-content .ri-video a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 12px) / 2);
  background-color: #efefef;
}
section .contact-module .about-module .introduce .min-content .ri-video a .icon {
  text-align: center;
  font-size: 0;
}
section .contact-module .about-module .introduce .min-content .ri-video a h5 {
  margin-top: 24px;
  font-size: 24px;
  font-weight: normal;
}
section .contact-module .about-module .introduce .min-content .ri-video a:last-child {
  background-color: #009e96;
}
section .contact-module .about-module .introduce .min-content .ri-video a:last-child .icon img {
  filter: grayscale(100%) invert(100%) brightness(500%);
}
section .contact-module .about-module .introduce .min-content .ri-video a:last-child h5 {
  color: #fff;
}
section .contact-module .about-module .make-speech {
  padding: 120px 0 80px;
}
section .contact-module .about-module .make-speech .min-content .main-cont {
  background-color: #009e96;
  margin-top: 60px;
  display: flex;
  align-items: center;
  padding: 80px 42px;
}
section .contact-module .about-module .make-speech .min-content .main-cont .le-img {
  width: 310px;
  height: 310px;
  border-radius: 50%;
  overflow: hidden;
}
section .contact-module .about-module .make-speech .min-content .main-cont .ri-text {
  flex: 1;
  padding-left: 60px;
}
section .contact-module .about-module .make-speech .min-content .main-cont .ri-text .top-txt {
  font-size: 16px;
  color: #fff;
  line-height: 2em;
}
section .contact-module .about-module .make-speech .min-content .main-cont .ri-text .top-txt h5 {
  font-size: inherit;
  font-weight: normal;
}
section .contact-module .about-module .make-speech .min-content .main-cont .ri-text .txt {
  margin-top: 40px;
  font-size: 14px;
  color: #fff;
  line-height: 2em;
}
section .contact-module .about-module .develop {
  padding: 80px 0;
  background-attachment: fixed;
  background-position: center;
}
section .contact-module .about-module .develop .tit h3 {
  color: #fff;
}
section .contact-module .about-module .develop .tit h3:after {
  background-color: #fff;
}
section .contact-module .about-module .develop .main-cont {
  position: relative;
  margin-top: 80px;
  height: 200px;
  display: flex;
  align-items: flex-end;
}
section .contact-module .about-module .develop .main-cont .develop-slide {
  width: 100%;
  overflow: hidden;
}
section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide {
  text-align: center;
  width: auto;
}
section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide i {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 16px;
  height: 16px;
  background-color: #c1c1c1;
  border-radius: 50%;
  z-index: 10;
}
section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide i:before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  width: 1000%;
  height: 1px;
  background-color: #c1c1c1;
  z-index: -1;
}
section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide i:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 1000%;
  height: 1px;
  background-color: #c1c1c1;
  z-index: -1;
}
section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide h5 {
  position: relative;
  display: inline-block;
  width: auto;
  font-size: 18px;
  font-weight: normal;
  background-color: #fff;
  line-height: 52px;
  padding: 0 32px;
  margin-bottom: 14px;
}
section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide h5:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12px;
  height: 12px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide p {
  white-space: pre-line;
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-top: 12px;
  border: 1px solid transparent;
  padding: 20px 16px;
  max-width: 256px;
}
section .contact-module .about-module .develop .main-cont .develop-slide .active h5 {
  background-color: #009e96;
  color: #fff;
}
section .contact-module .about-module .develop .main-cont .develop-slide .active h5:after {
  background-color: #009e96;
}
section .contact-module .about-module .develop .main-cont .develop-slide .active i {
  background-color: #009e96;
}
section .contact-module .about-module .develop .main-cont .develop-slide .active p {
  border-color: #009e96;
  background-color: rgba(255, 255, 255, 0.2);
}
section .contact-module .about-module .develop .main-cont .develop-button {
  position: absolute;
  top: 82px;
  width: 28px;
  line-height: 26px;
  font-size: 18px;
  color: #fff;
  font-family: '宋体';
  border: 1px solid #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 26px;
}
section .contact-module .about-module .develop .main-cont .develop-button-next {
  left: 100%;
}
section .contact-module .about-module .develop .main-cont .develop-button-prev {
  right: 100%;
}
section .contact-module .about-module .system {
  padding: 80px 0 60px;
}
section .contact-module .about-module .system .main-cont {
  margin-top: 40px;
  text-align: center;
}
section .contact-module .about-module .system .main-cont .txt {
  position: relative;
  margin-top: -56px;
  padding: 60px 40px 40px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.2);
}
section .cooperate-module .partner .main-cont {
  margin-top: 40px;
}
section .cooperate-module .partner .main-cont .now-partner li {
  margin-bottom: 3.583%;
}
section .cooperate-module .partner .main-cont .now-partner li a {
  display: block;
}
section .cooperate-module .partner .main-cont .now-partner li img {
  width: 18.3%;
  box-shadow: 0 0 10px #ccc;
}
section .cooperate-module .partner .main-cont .now-partner li p {
  float: right;
  width: 76.6%;
  line-height: 180%;
  color: #444;
}
section .cooperate-module .partner .main-cont .now-partner-slide {
  width: 100%;
  overflow: hidden;
}
section .cooperate-module .partner .main-cont .now-partner-slide .swiper-wrapper {
  align-items: center;
}
section .cooperate-module .partner .main-cont .now-partner-slide .swiper-slide {
  width: auto;
  height: 100%;
}
section .cooperate-module .partner .main-cont .now-partner-slide .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
}
section .cooperate-module .rules {
  padding: 80px 0 60px;
}
section .cooperate-module .rules .main-cont {
  margin-top: 60px;
  font-size: 16px;
  line-height: 2em;
}
section .cooperate-module .rules .main-cont img {
  display: block;
  margin: 10px auto;
}
section .recruit-module {
  padding-bottom: 60px;
}
section .recruit-module .top-img img {
  display: block;
  height: 150px;
  object-fit: none;
  object-position: center;
}
section .recruit-module .recruit-cont {
  margin-top: 40px;
}
section .recruit-module .recruit-cont .top-title {
  background-color: #009e96;
  padding: 0 65px;
}
section .recruit-module .recruit-cont .top-title ul {
  display: flex;
  justify-content: space-between;
}
section .recruit-module .recruit-cont .top-title ul li {
  font-size: 16px;
  color: #fff;
  line-height: 3em;
  text-align: center;
}
section .recruit-module .recruit-cont .top-title ul li:nth-child(1) {
  width: 20%;
  text-align: left;
}
section .recruit-module .recruit-cont .top-title ul li:nth-child(2) {
  width: 20%;
}
section .recruit-module .recruit-cont .top-title ul li:nth-child(3) {
  width: 40%;
}
section .recruit-module .recruit-cont .top-title ul li:nth-child(4) {
  width: 80px;
}
section .recruit-module .recruit-cont .recruit-list ul {
  width: 100%;
}
section .recruit-module .recruit-cont .recruit-list ul li a {
  display: flex;
  justify-content: space-between;
  padding: 30px 65px;
  border-bottom: 1px solid #eee;
}
section .recruit-module .recruit-cont .recruit-list ul li a h5 {
  font-size: 16px;
  font-weight: normal;
  width: 20%;
}
section .recruit-module .recruit-cont .recruit-list ul li a span {
  font-size: 16px;
  text-align: center;
}
section .recruit-module .recruit-cont .recruit-list ul li a .people {
  width: 20%;
}
section .recruit-module .recruit-cont .recruit-list ul li a .txt {
  width: 40%;
  padding: 0 40px;
  text-align: left;
}
section .recruit-module .recruit-cont .recruit-list ul li a .date {
  text-align: right;
}
section .recruit-module .recruit-cont .recruit-list ul li .data {
  display: none;
  padding: 30px 65px;
  background-color: #eee;
  font-size: 16px;
  line-height: 2em;
}
section .relation-module .top-address {
  display: flex;
  align-items: flex-start;
}
section .relation-module .top-address > div {
  width: 50%;
}
section .relation-module .top-address .le-item {
  padding-right: 60px;
}
section .relation-module .top-address .le-item ul li {
  padding: 24px 0;
  line-height: 2em;
}
section .relation-module .top-address .le-item ul li h5 {
  font-size: 18px;
}
section .relation-module .top-address .le-item ul li p {
  margin-top: 10px;
  white-space: pre-line;
  font-size: 16px;
}
section .relation-module .top-address .le-item ul li:not(:first-child) {
  border-top: 1px solid #eee;
}
section .relation-module .top-address .ri-map {
  padding: 12px;
  border: 1px solid #dcdcdc;
  height: 400px;
}
section .relation-module .leave-message {
  padding: 80px 0 60px;
}
section .relation-module .leave-message .main-cont {
  display: flex;
  align-items: stretch;
  margin-top: 60px;
}
section .relation-module .leave-message .main-cont > div {
  width: 50%;
}
section .relation-module .leave-message .main-cont .ri-form {
  padding: 0 36px;
}
section .relation-module .leave-message .main-cont .ri-form form label {
  position: relative;
  display: block;
}
section .relation-module .leave-message .main-cont .ri-form form label:not(:first-child) {
  margin-top: 20px;
}
section .relation-module .leave-message .main-cont .ri-form form span {
  position: absolute;
  left: 50px;
  top: 0;
  line-height: 50px;
  font-size: 16px;
}
section .relation-module .leave-message .main-cont .ri-form form input {
  width: 100%;
  height: 50px;
  border: 1px solid #dcdcdc;
  padding: 0 100px;
  font-size: 16px;
}
section .relation-module .leave-message .main-cont .ri-form form textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  padding: 16px 100px;
  height: 118px;
  resize: none;
}
section .relation-module .leave-message .main-cont .ri-form form button {
  width: 100%;
  border: none;
  height: 50px;
  background-color: #009e96;
  font-size: 16px;
  color: #fff;
}
section .login-page {
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 502px);
  padding: 80px 0 60px;
}
section .login-page .min-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .login-page .min-content .tit-tip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-size: 18px;
  color: #999;
  margin-bottom: 20px;
}
section .login-page .min-content .le-item {
  padding: 0 42px;
  width: 50%;
}
section .login-page .min-content .le-item .title {
  text-align: center;
}
section .login-page .min-content .le-item .title h3 {
  font-size: 18px;
  font-weight: normal;
}
section .login-page .min-content .le-item .title p {
  font-size: 18px;
  color: #999;
}
section .login-page .min-content .le-item .login-module {
  margin-top: 50px;
}
section .login-page .min-content .le-item .login-module form label {
  position: relative;
  display: block;
  margin-top: 18px;
}
section .login-page .min-content .le-item .login-module form label input {
  width: 100%;
  height: 62px;
  border: 1px solid #efefef;
  font-size: 14px;
  padding: 0 24px;
}
section .login-page .min-content .le-item .login-module form label p {
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #f72b2e;
  font-size: 24px;
  margin-left: 10px;
}
section .login-page .min-content .le-item .login-module form label i {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 1px solid #c9c9c9;
}
section .login-page .min-content .le-item .login-module form label span {
  font-size: 16px;
  color: #999;
  margin-left: 10px;
}
section .login-page .min-content .le-item .login-module form label .active {
  background-color: #009e96;
}
section .login-page .min-content .le-item .login-module form label button {
  width: 100%;
  height: 62px;
  background-color: #009e96;
  border: none;
  font-size: 16px;
  color: #fff;
}
section .login-page .min-content .le-item .login-module form label:first-child {
  margin-top: 0;
}
section .login-page .min-content .le-item .login-module form #rememberPassword {
  display: flex;
  align-items: center;
  cursor: pointer;
}
section .login-page .min-content .le-item .login-module form .Verification {
  display: flex;
}
section .login-page .min-content .le-item .login-module form .Verification input {
  flex: 1;
}
section .login-page .min-content .le-item .login-module form .Verification button {
  width: 140px;
  margin-left: 10px;
}
section .login-page .min-content .ri-item {
  max-width: 50%;
  padding: 0 120px;
  text-align: center;
}
section .login-page .min-content .ri-item .top-official p {
  font-size: 16px;
  color: #282828;
  margin-top: 20px;
}
section .login-page .min-content .ri-item .link {
  font-size: 14px;
  margin-top: 50px;
}
section .login-page .min-content .ri-item .link a {
  color: #009e96;
}
section .login-page .min-content .ri-item .link span {
  color: #999;
}
section .login-page .min-content .ri-item .txt-list {
  margin-top: 100px;
}
section .login-page .min-content .ri-item .txt-list ul li {
  position: relative;
  text-align: left;
  font-size: 14px;
  color: #6a6a6a;
  padding-left: 18px;
  margin-top: 20px;
}
section .login-page .min-content .ri-item .txt-list ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background-color: #009e96;
  border-radius: 50%;
}
section .user-page {
  padding: 80px 0 60px;
}
section .user-page .min-content {
  display: flex;
}
section .user-page .min-content .le-item {
  width: 290px;
  border: 1px solid #e4e4e4;
  padding-bottom: 24px;
}
section .user-page .min-content .le-item h3 {
  line-height: 46px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: normal;
}
section .user-page .min-content .le-item ul {
  margin-top: 10px;
}
section .user-page .min-content .le-item ul li a {
  display: flex;
  align-items: center;
  padding-left: 36px;
  border-left: 2px solid #009e96;
}
section .user-page .min-content .le-item ul li a span {
  font-size: 14px;
  color: #009e96;
  margin-left: 10px;
}
section .user-page .min-content .ri-item {
  flex: 1;
  margin-left: 30px;
  border: 1px solid #e4e4e4;
  padding: 0 24px;
}
section .user-page .min-content .ri-item h3 {
  line-height: 46px;
  border-bottom: 1px solid #e4e4e4;
  font-size: 16px;
  font-weight: normal;
}
section .user-page .min-content .ri-item .main-cont form {
  padding: 20px 0;
}
section .user-page .min-content .ri-item .main-cont form label {
  display: flex;
  margin-top: 20px;
}
section .user-page .min-content .ri-item .main-cont form label .tit {
  font-size: 12px;
  width: 110px;
  text-align: right;
  padding-right: 24px;
  line-height: 32px;
}
section .user-page .min-content .ri-item .main-cont form label .line {
  display: flex;
  align-items: center;
  max-width: 420px;
  width: 100%;
}
section .user-page .min-content .ri-item .main-cont form label .line input {
  border: 1px solid #dedede;
  height: 32px;
  background-color: #fff;
  padding: 0 12px;
  width: 100%;
  flex: 1;
}
section .user-page .min-content .ri-item .main-cont form label .line .item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
section .user-page .min-content .ri-item .main-cont form label .line .item i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #e5e5e5;
  border-radius: 50%;
  border: 1px solid #d0d0d0;
}
section .user-page .min-content .ri-item .main-cont form label .line .item span {
  margin-left: 10px;
  font-size: 12px;
}
section .user-page .min-content .ri-item .main-cont form label .line p {
  font-size: 12px;
}
section .user-page .min-content .ri-item .main-cont form label .line a {
  color: #009e96;
  margin-left: 10px;
}
section .user-page .min-content .ri-item .main-cont form label button {
  margin-left: 110px;
  height: 32px;
  width: 60px;
  background-color: #009e96;
  font-size: 12px;
  color: #fff;
  border: none;
}
section .cases-page {
  padding: 24px 0 0;
}
section .cases-page .top-view {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
section .cases-page .top-view > div {
  width: 49%;
}
section .cases-page .top-view .le-img {
  position: relative;
  border: 2px solid #dcdcdc;
}
section .cases-page .top-view .ri-data .top-box .tit {
  background-color: #009e96;
  padding: 0 50px;
}
section .cases-page .top-view .ri-data .top-box .tit h5 {
  position: relative;
  font-size: 18px;
  color: #fff;
  line-height: 62px;
  padding-left: 28px;
}
section .cases-page .top-view .ri-data .top-box .tit h5:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 4px;
  background-color: #fff;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
section .cases-page .top-view .ri-data .top-box .cont {
  padding: 30px 50px 40px;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}
section .cases-page .top-view .ri-data .top-box .cont ul {
  font-size: 0;
}
section .cases-page .top-view .ri-data .top-box .cont ul li {
  display: inline-block;
  width: 50%;
  font-size: 18px;
  color: #424242;
  margin-top: 10px;
}
section .cases-page .top-view .ri-data .bottom-btn {
  padding: 25px 50px;
  border: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
}
section .cases-page .top-view .ri-data .bottom-btn a {
  display: flex;
  align-items: center;
  height: 64px;
  color: #fff;
  font-size: 16px;
  padding: 0 26px;
}
section .cases-page .top-view .ri-data .bottom-btn a span {
  margin-left: 20px;
}
section .cases-page .top-view .ri-data .bottom-btn a:first-child {
  background-color: #009e96;
}
section .cases-page .top-view .ri-data .bottom-btn a:last-child {
  flex: 1;
  background-color: #00468f;
  margin-left: 20px;
}
section .cases-page .solution-text {
  display: flex;
  align-items: stretch;
  margin-top: 50px;
}
section .cases-page .solution-text .le-item {
  width: 166px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #009e96;
  padding: 20px 0;
}
section .cases-page .solution-text .le-item h5 {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  margin-top: 10px;
}
section .cases-page .solution-text .ri-text {
  flex: 1;
  padding: 36px;
  background-color: #f2f2f2;
  font-size: 16px;
  line-height: 2em;
}
section .cases-page .data-list {
  margin-top: 78px;
  border-bottom: 1px solid #dcdcdc;
}
section .cases-page .data-list .module {
  margin-bottom: 20px;
}
section .cases-page .data-list .module .title {
  display: inline-block;
  background-color: #009e96;
  padding-left: 20px;
  min-width: 180px;
}
section .cases-page .data-list .module .title h3 {
  position: relative;
  font-size: 16px;
  color: #fff;
  line-height: 36px;
  padding-left: 24px;
  font-weight: normal;
}
section .cases-page .data-list .module .title h3:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  border-top: 36px solid #009e96;
  border-right: 36px solid transparent;
}
section .cases-page .data-list .module .title h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 16px;
  height: 3px;
  background-color: #fff;
}
section .cases-page .data-list .module .main-cont {
  padding: 30px 0;
  font-size: 16px;
  color: #282828;
  line-height: 2em;
}
section .cases-page .data-list .module .main-cont img {
  display: block;
  margin: 10px auto;
}
section .Quick-jump {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
}
section .Quick-jump a {
  display: flex;
  align-items: center;
  padding: 0 100px;
}
section .Quick-jump a span {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #dedede;
  font-size: 14px;
  text-align: center;
  line-height: 23px;
  font-family: '宋体';
}
section .Quick-jump a p {
  font-size: 14px;
  margin: 0 14px;
}
section .recommended-cases {
  padding: 60px 0;
  background-color: #f1f1f1;
}
section .recommended-cases .title {
  text-align: center;
}
section .recommended-cases .title h3 {
  position: relative;
  font-size: 24px;
  color: #282828;
  padding-bottom: 20px;
  font-weight: normal;
}
section .recommended-cases .title h3:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 1px;
  background-color: #000;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
section .recommended-cases .main-cont {
  margin-top: 40px;
}
section .recommended-cases .main-cont ul {
  font-size: 0;
}
section .recommended-cases .main-cont ul li {
  width: calc((100% - 30px) / 3);
  display: inline-block;
  margin-right: 15px;
}
section .recommended-cases .main-cont ul li .img {
  overflow: hidden;
}
section .recommended-cases .main-cont ul li .img img {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
section .recommended-cases .main-cont ul li .txt {
  font-size: 14px;
  padding: 16px;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
}
section .recommended-cases .main-cont ul li .txt span {
  display: inline-block;
  width: 50px;
  line-height: 46px;
  background-color: #009e96;
  color: #fff;
  font-size: 16px;
}
section .recommended-cases .main-cont ul li .txt p {
  width: 100%;
  line-height: 2em;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
section .recommended-cases .main-cont ul li a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
section .recommended-cases .main-cont ul li:nth-child(3n) {
  margin-right: 0;
}
section .seminar-page .basic-data .title {
  margin-top: 50px;
}
section .seminar-page .basic-data .title h3 {
  position: relative;
  font-size: 16px;
  padding-left: 36px;
  font-weight: normal;
}
section .seminar-page .basic-data .title h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #009e96;
}
section .seminar-page .basic-data .min-txt {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2em;
}
section .seminar-page .basic-data .detailed-txt {
  margin-top: 30px;
  background-color: #009e96;
  padding: 60px 40px;
  color: #fff;
}
section .seminar-page .basic-data .detailed-txt .box h5 {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  padding-left: 36px;
}
section .seminar-page .basic-data .detailed-txt .box h5:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #fff;
}
section .seminar-page .basic-data .detailed-txt .box .txt {
  white-space: pre-line;
  font-size: 16px;
  margin-top: 12px;
  line-height: 2em;
  padding-left: 36px;
}
section .seminar-page .basic-data .detailed-txt .box:not(:first-child) {
  margin-top: 40px;
}
section .seminar-page .basic-data .teacher-data {
  margin-top: 30px;
  padding: 40px;
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
}
section .seminar-page .basic-data .teacher-data .le-img {
  width: 208px;
  height: 208px;
  border-radius: 50%;
  overflow: hidden;
}
section .seminar-page .basic-data .teacher-data .ri-text {
  flex: 1;
  padding-left: 60px;
}
section .seminar-page .basic-data .teacher-data .ri-text h5 {
  color: #009e96;
  font-size: 24px;
  font-weight: normal;
}
section .seminar-page .basic-data .teacher-data .ri-text .txt {
  margin-top: 30px;
  font-size: 14px;
  color: #424242;
  white-space: pre-line;
  line-height: 2em;
}
section .seminar-page .basic-data .course-list {
  font-size: 0;
}
section .seminar-page .basic-data .course-list ul li {
  margin-top: 22px;
  display: inline-block;
  width: calc((100% - 24px) / 2);
  margin-right: 24px;
  padding: 40px;
  border: 2px solid #009e96;
}
section .seminar-page .basic-data .course-list ul li h5 {
  font-size: 16px;
  color: #009e96;
}
section .seminar-page .basic-data .course-list ul li .txt {
  font-size: 16px;
  white-space: pre-line;
  margin-top: 24px;
  line-height: 2em;
}
section .seminar-page .basic-data .course-list ul li:nth-child(2n) {
  margin-right: 0;
}
section .seminar-page .course-evaluate {
  margin-top: 60px;
  background-color: #f4f4f4;
  padding: 60px 0;
}
section .seminar-page .course-evaluate .title {
  text-align: center;
}
section .seminar-page .course-evaluate .title h3 {
  font-size: 24px;
  color: #009e96;
}
section .seminar-page .course-evaluate .list {
  margin-top: 40px;
}
section .seminar-page .course-evaluate .list li h5 {
  font-size: 16px;
  color: #009e96;
}
section .seminar-page .course-evaluate .list li .txt {
  white-space: pre-line;
  font-size: 14px;
  color: #4c4c4c;
  margin-top: 20px;
  line-height: 2em;
}
section .seminar-page .course-evaluate .list li:not(:first-child) {
  margin-top: 50px;
}
section .seminar-page .activity {
  margin-top: 60px;
}
section .seminar-page .activity .title {
  text-align: center;
}
section .seminar-page .activity .title h3 {
  font-size: 24px;
  color: #009e96;
}
section .seminar-page .activity .main-cont {
  margin-top: 50px;
}
section .seminar-experts .experts-nav {
  padding: 42px 0;
  text-align: center;
  font-size: 0;
}
section .seminar-experts .experts-nav a {
  display: inline-block;
  font-size: 16px;
  color: #282828;
  background-color: #f5f5f5;
  line-height: 42px;
  border-radius: 10px;
  padding: 0 24px;
  margin: 0 10px;
}
section .seminar-experts .experts-nav .active {
  color: #fff;
  background-color: #009e96;
}
section .seminar-experts .experts-data {
  background-color: #f5f5f5;
  padding: 60px 0;
}
section .seminar-experts .experts-data .min-content {
  display: flex;
  justify-content: space-between;
}
section .seminar-experts .experts-data .min-content .port {
  border-radius: 50%;
  overflow: hidden;
  width: 260px;
  height: 260px;
}
section .seminar-experts .experts-data .min-content .ri-item {
  flex: 1;
  max-width: 800px;
  padding-left: 30px;
}
section .seminar-experts .experts-data .min-content .ri-item .top-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .seminar-experts .experts-data .min-content .ri-item .top-title .title {
  width: calc(100% - 250px);
}
section .seminar-experts .experts-data .min-content .ri-item .top-title .title h3 {
  font-size: 24px;
  color: #282828;
  font-weight: normal;
}
section .seminar-experts .experts-data .min-content .ri-item .top-title .title p {
  font-size: 16px;
  color: #282828;
  margin-top: 10px;
}
section .seminar-experts .experts-data .min-content .ri-item .top-title a {
  font-size: 16px;
  color: #fff;
  background-color: #009e96;
  border-radius: 30px;
  line-height: 50px;
  padding: 0 20px;
}
section .seminar-experts .experts-data .min-content .ri-item .text {
  margin-top: 20px;
  font-size: 16px;
  color: #999999;
  line-height: 2em;
  white-space: pre-line;
}
section .seminar-experts .experts-course {
  padding: 20px 0 60px;
}
section .seminar-experts .experts-course ul.list li {
  margin-top: 10px;
}
section .seminar-experts .experts-course ul.list li a {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  color: #282828;
  background-color: #fff;
}
section .seminar-experts .experts-course ul.list li a h3 {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  color: inherit;
  padding-left: 50px;
}
section .seminar-experts .experts-course ul.list li a h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-left: 8px solid #dadada;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
section .seminar-experts .experts-course ul.list li a span {
  color: inherit;
}
section .seminar-experts .experts-course ul.list li a:hover {
  background-color: #009e96;
  color: #fff;
}
section .news-page .min-content .le-cont .top-title {
  padding: 60px 0 0;
  text-align: center;
}
section .news-page .min-content .le-cont .top-title .title h3 {
  font-size: 26px;
  color: #000;
  text-align: center;
  font-weight: bold;
}
section .news-page .min-content .le-cont .top-title .title .bot-text {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  color: #999;
}
section .news-page .min-content .le-cont .top-title .title .bot-text .label-list {
  margin-left: 20px;
}
section .news-page .min-content .le-cont .top-title .title .bot-text .label-list a {
  color: #009e96;
}
section .news-page .min-content .le-cont .top-title .title .bot-text .label-list a:hover {
  text-decoration: underline;
}
section .news-page .min-content .le-cont .top-title .cover {
  margin-top: 20px;
}
section .news-page .min-content .main-cont {
  padding: 40px  0 60px;
  border-bottom: 1px solid #dcdcdc;
  font-size: 18px;
  color: #4c4c4c;
  line-height: 2em;
}
section .news-page .min-content .main-cont img {
  display: block;
  margin: 20px auto;
}
section .application-page {
  padding: 60px 0;
  background-position: center top;
}
section .application-page .min-content .title h3 {
  font-size: 24px;
  color: #000;
  text-align: center;
  font-weight: normal;
}
section .application-page .min-content .main-cont {
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 60px 90px 20px;
  background-color: #fff;
  margin-top: 40px;
}
section .application-page .min-content .main-cont form .top-cont {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
section .application-page .min-content .main-cont form .top-cont > div {
  width: 45%;
}
section .application-page .min-content .main-cont form .top-cont .ri-item {
  display: flex;
  flex-direction: column;
}
section .application-page .min-content .main-cont form .top-cont .ri-item > div {
  flex-grow: 1;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-item {
  border-bottom: 1px solid #d2d2d2;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-item .layui-form-label {
  width: 30px;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-item .layui-form-label span {
  color: #ff0000;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-item .layui-input-block {
  margin-left: 30px;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-item .layui-input-block .layui-input {
  margin: 8px 0;
  color: #333;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-item .layui-input-block .layui-input::placeholder {
  color: #999;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-item .layui-input-block .layui-input,
section .application-page .min-content .main-cont form .top-cont .layui-form-item .layui-input-block .layui-select,
section .application-page .min-content .main-cont form .top-cont .layui-form-item .layui-input-block .layui-textarea {
  border-width: 0;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-text .layui-input-block {
  position: relative;
  height: 100%;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-text .layui-input-block span.placeholder {
  z-index: 10;
  color: #999;
  font-size: 12px;
  display: inline-block;
  padding-top: 10px;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-text .layui-input-block textarea {
  resize: none;
  background-color: transparent;
  margin: 0 -10px;
  height: 100px;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-text .layui-input-block textarea::placeholder {
  font-size: 0;
}
section .application-page .min-content .main-cont form .top-cont .layui-form-select dl dd.layui-this {
  background-color: #009e96;
}
section .application-page .min-content .main-cont form > .layui-form-item {
  margin-top: 40px;
}
section .application-page .min-content .main-cont form > .layui-form-item .layui-input-block {
  margin-left: 0;
  text-align: center;
}
section .application-page .min-content .main-cont form > .layui-form-item button {
  width: 320px;
  height: 62px;
  background-color: #009e96;
}
section .seminar-video-page {
  padding-top: 60px;
}
section .seminar-video-page .top-view .ri-data .top-box .cont ul li {
  width: 100%;
}
section .seminar-video-page .top-view .ri-data .top-box .cont .tip {
  font-size: 18px;
  color: #ff0000;
  margin-top: 10px;
}
section .seminar-video-page .top-view .ri-data .bottom-btn p {
  margin-left: 10px;
  color: #9d9d9d;
  font-size: 16px;
}
section .seminar-video-page .seminar-video-cont {
  margin-top: 20px;
}
section .seminar-video {
  padding: 60px 0;
}
section .seminar-video .min-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
section .seminar-video .min-content .le-item {
  width: 358px;
}
section .seminar-video .min-content .le-item h3 {
  font-size: 24px;
  color: #fff;
  background-color: #009e96;
  text-align: center;
  line-height: 56px;
}
section .seminar-video .min-content .le-item ul {
  margin-top: 24px;
}
section .seminar-video .min-content .le-item ul li .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .seminar-video .min-content .le-item ul li .tit a {
  font-size: 16px;
  line-height: 2em;
}
section .seminar-video .min-content .le-item ul li .tit span {
  font-size: 16px;
}
section .seminar-video .min-content .le-item ul li .sub {
  display: none;
  padding-bottom: 10px;
}
section .seminar-video .min-content .le-item ul li .sub dl dd a {
  font-size: 16px;
  color: #999;
  padding-left: 24px;
  line-height: 2em;
}
section .seminar-video .min-content .le-item ul li.show .sub {
  display: block;
}
section .seminar-video .min-content .ri-item {
  width: calc(100% - 378px);
}
section .seminar-video .min-content .ri-item .top-cont {
  background-color: #eeeeee;
}
section .seminar-video .min-content .ri-item .top-cont .text {
  padding: 20px;
}
section .seminar-video .min-content .ri-item .btn {
  text-align: center;
  margin-top: 36px;
}
section .seminar-video .min-content .ri-item .btn a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  padding: 0 40px;
  line-height: 62px;
  border-radius: 10px;
  background-color: #009e96;
}
footer {
  background-color: #282828;
}
footer .min-content {
  display: flex;
  align-items: stretch;
}
footer .min-content .le-item {
  width: 328px;
  background-color: #f0f0f0;
  text-align: center;
  padding: 65px 35px;
}
footer .min-content .le-item > div {
  display: inline-block;
}
footer .min-content .le-item .official-account {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .min-content .le-item .official-account .img {
  width: 100px;
  font-size: 0;
}
footer .min-content .le-item .official-account p {
  margin-top: 24px;
  font-size: 14px;
  color: #282828;
}
footer .min-content .ri-item {
  width: calc(100% - 328px);
}
footer .min-content .ri-item .top-item {
  padding: 62px 0 24px;
  height: calc(100% - 62px);
  display: grid;
  flex-flow: row wrap;
  align-content: space-between;
}
footer .min-content .ri-item .top-menu {
  padding: 0 60px;
}
footer .min-content .ri-item .top-menu ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .min-content .ri-item .top-menu ul li a {
  display: block;
  font-size: 14px;
  color: #fff;
}
footer .min-content .ri-item .top-menu ul li dl {
  margin-top: 1em;
  margin-bottom: 10px;
}
footer .min-content .ri-item .top-menu ul li dl dd a {
  color: #999;
  line-height: 2em;
}
footer .min-content .ri-item .top-menu ul li a:hover {
  text-decoration: underline;
}
footer .min-content .ri-item .footer-contact {
  font-size: 14px;
  color: #fff;
  padding: 0 60px;
}
footer .min-content .ri-item .footer-contact .top-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .min-content .ri-item .footer-contact .top-list ul li {
  margin-top: 12px;
}
footer .min-content .ri-item .footer-contact p {
  margin-top: 26px;
}
footer .min-content .ri-item .footer-copyright {
  font-size: 14px;
  color: #fff;
  height: 62px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  border-top: 1px solid #4c4c4c;
}
footer .min-content .ri-item .footer-copyright a {
  font-size: inherit;
  color: inherit;
}
footer .min-content .ri-item .footer-copyright a:hover {
  text-decoration: underline;
}
@media (max-width: 1680px) {
  .content {
    padding: 0 120px;
  }
  #fp-nav.fp-right {
    right: 60px;
  }
}
@media (max-width: 1600px) {
  header .header .content .navigation-list ul li a {
    font-size: 16px;
    padding: 0 20px;
  }
  header .header-navigation .main-cont .search-module form input {
    font-size: 24px;
    height: 50px;
  }
  header .header-navigation .main-cont .navigation-list {
    margin-top: 30px;
  }
  header .header-navigation .main-cont .navigation-list ul li:first-child {
    margin-bottom: 24px;
  }
  header .header-navigation .main-cont .navigation-list ul li:not(:first-child) a {
    font-size: 12px;
  }
  .content {
    padding: 0 80px;
  }
  #fp-nav.fp-right {
    right: 30px;
  }
  #fullPage .section .home-banner .swiper-slide .text h3 {
    font-size: 50px;
  }
  #fullPage .section .home-banner .swiper-slide .text p {
    font-size: 26px;
  }
  #fullPage .section .home-banner .swiper-slide .text i {
    font-size: 22px;
    line-height: 46px;
  }
  #fullPage .section .home-module {
    padding-top: 30px;
  }
  #fullPage .section .home-module .title {
    top: 100px;
  }
  #fullPage .section .home-module .main-cont {
    padding-top: 70px;
  }
  #fullPage .section .home-products .main-cont ul li a .txt {
    margin-top: 20px;
  }
  #fullPage .section .home-advantage {
    padding-top: 0;
  }
  #fullPage .section .home-advantage > div .tit p {
    margin-top: 14px;
  }
  #fullPage .section .home-advantage > div .content {
    padding-top: 0;
  }
  #fullPage .section .home-advantage > div .cont {
    margin-top: 32px;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view {
    width: 95%;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li .port {
    width: 36px;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li .txt {
    font-size: 14px;
    line-height: 18px;
  }
  #fullPage .section .home-advantage .le-module .cont .btn {
    margin-top: 24px;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li {
    padding: 12px 0;
  }
  #fullPage .section .home-cases .main-cont .top-cont .le-slide .home-cases-slide .swiper-slide .txt {
    padding: 20px;
    font-size: 14px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon {
    padding-left: 24px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li {
    padding: 16px 0;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li .box .icon {
    width: 42px;
    height: 42px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li .box h5 {
    font-size: 12px;
  }
  #fullPage .section .home-cases .main-cont .bottom-cont {
    margin-top: 20px;
  }
  #fullPage .section .home-seminar .main-cont {
    padding-top: 140px;
  }
  #fullPage .section .home-seminar .main-cont .le-item {
    width: 43%;
    padding-bottom: 14px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list {
    max-width: 324px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .top-tit h5 {
    font-size: 16px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .top-tit a {
    font-size: 12px;
    line-height: 18px;
    padding: 0 12px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .txt {
    margin-top: 8px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .txt p {
    font-size: 12px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li:not(:first-child) {
    margin-top: 14px;
  }
  #fullPage .section .home-seminar .main-cont .ri-item {
    padding-bottom: 14px;
  }
  #fullPage .section .home-seminar .main-cont .ri-item .box {
    padding: 20px;
  }
  #fullPage .section .home-news {
    padding-top: 116px;
  }
  #fullPage .section .home-news .main-cont .le-item a .text {
    padding: 10px 0 10px;
  }
  #fullPage .section .home-news .main-cont .le-item a .text .txt {
    margin-top: 8px;
  }
  #fullPage .section .home-news .main-cont .le-item a .text .txt h5 {
    font-size: 14px;
  }
  #fullPage .section .home-news .main-cont .le-item a .text .txt p {
    margin-top: 6px;
    font-size: 12px;
  }
  #fullPage .section .home-news .main-cont .ri-item ul li a .img {
    width: 200px;
    height: 142px;
  }
  #fullPage .section .home-news .main-cont .ri-item ul li a .text .txt {
    margin-top: 6px;
  }
  #fullPage .section .home-news .main-cont .ri-item ul li a .text .txt h5 {
    font-size: 14px;
  }
  #fullPage .section .home-news .main-cont .ri-item ul li a .text .txt p {
    font-size: 12px;
    margin-top: 6px;
  }
  #fullPage .section .home-news .main-cont .ri-item ul li:not(:first-child) {
    margin-top: 8px;
  }
  #fullPage .section .home-partner {
    margin-top: 20px;
  }
  #fullPage .section .home-partner .main-cont .home-partner-slide .swiper-slide {
    height: 60px;
  }
  #fullPage .section .home-footer {
    padding-top: 30px;
  }
  #fullPage .section .home-footer .top-contact .le-item .title p {
    font-size: 18px;
  }
  #fullPage .section .home-footer .top-contact .le-item .title h3 {
    font-size: 16px;
  }
  #fullPage .section .home-footer .top-contact .le-item .txt {
    font-size: 12px;
    margin-top: 8px;
  }
  #fullPage .section .home-footer .top-contact .ri-item .box .img {
    width: 120px;
  }
  #fullPage .section .home-footer .top-contact .ri-item .box p {
    margin-top: 12px;
    font-size: 12px;
  }
  #fullPage .section .home-footer .bottom-cont {
    margin-top: 0;
    padding: 12px 0;
  }
  #fullPage .section .home-footer .bottom-cont .txt {
    font-size: 12px;
  }
  .home-next-page-btn {
    bottom: 10px;
  }
  .home-next-page-btn a {
    width: 40px;
    height: 40px;
  }
  section {
    margin-top: 80px;
  }
}
@media (max-width: 1366px) {
  header .header .content {
    height: 80px;
  }
  header .header .content .le-logo {
    width: 120px;
  }
  header .header .content .navigation-list ul li a {
    padding: 0 20px;
  }
  header .header-navigation .main-cont {
    max-width: 85%;
    margin: 0 auto;
  }
  header .header-navigation .main-cont .search-module form input {
    font-size: 16px;
    height: 24px;
  }
  header .header-navigation .main-cont .search-module form button img {
    max-height: 100%;
  }
  header .header-navigation .main-cont .navigation-list ul {
    padding: 0 20px;
  }
  header .header-navigation .main-cont .navigation-list ul li:first-child a {
    font-size: 14px;
  }
  header .header-navigation .main-cont .navigation-list ul li:not(:first-child) a {
    padding: 3px 0;
  }
  header .header-navigation .close-btn {
    right: 85px;
    top: 32px;
  }
  #fullPage .section .home-banner .swiper-slide .text h3 {
    font-size: 42px;
  }
  #fullPage .section .home-banner .swiper-slide .text p {
    margin-top: 32px;
    font-size: 20px;
  }
  #fullPage .section .home-banner .swiper-slide .text i {
    font-size: 16px;
    line-height: 46px;
  }
  #fullPage .section .home-module .title {
    top: 72px;
  }
  #fullPage .section .home-module .title h3 {
    font-size: 20px;
  }
  #fullPage .section .home-module .title p {
    font-size: 12px;
  }
  #fullPage .section .home-advantage > div {
    padding-top: 72px;
  }
  #fullPage .section .home-advantage > div .tit h3 {
    font-size: 14px;
  }
  #fullPage .section .home-advantage > div .cont {
    margin-top: 20px;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view {
    width: 85%;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li .txt {
    font-size: 12px;
    line-height: 1em;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li:not(:first-child) {
    margin-top: 10px;
  }
  #fullPage .section .home-advantage .le-module .cont .btn {
    margin-top: 16px;
  }
  #fullPage .section .home-advantage .le-module .cont .btn a span {
    line-height: 42px;
    font-size: 14px;
  }
  #fullPage .section .home-advantage .le-module .cont .btn a .icon:before {
    border-bottom: 42px solid #1b5fa5;
  }
  #fullPage .section .home-advantage .ri-module {
    padding-left: 10px;
  }
  #fullPage .section .home-advantage .ri-module .content {
    padding-left: 0;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .icon {
    width: 60px;
    height: 60px;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .icon img {
    max-width: 60%;
    max-height: 60%;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .txt {
    width: calc(100% - 120px);
    padding-left: 10px;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .txt h5 {
    font-size: 14px;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .txt p {
    margin-top: 6px;
    font-size: 12px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .le-slide {
    width: 600px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .le-slide .home-cases-slide .swiper-slide .txt {
    font-size: 12px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon {
    width: calc(100% - 600px);
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li {
    width: calc((100% - 60px) / 5);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li .box .icon {
    width: 40px;
    height: 40px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li .box h5 {
    font-size: 12px;
  }
  #fullPage .section .home-news .main-cont {
    padding-bottom: 40px;
    padding-top: 40px;
  }
  #fullPage .section .home-news .main-cont .text .top-line .date {
    display: flex;
    align-items: center;
  }
  #fullPage .section .home-news .main-cont .text .top-line .date span {
    margin-top: 0;
    margin-left: 10px;
  }
  #fullPage .section .home-news .main-cont .le-item {
    max-width: 600px;
  }
  #fullPage .section .home-news .main-cont .le-item a .text .top-line .date span {
    margin-top: 0;
  }
  #fullPage .section .home-news .main-cont .ri-item {
    width: calc(100% - 600px);
  }
  #fullPage .section .home-news .main-cont .ri-item ul li a .img {
    width: 160px;
    height: 113px;
  }
  #fullPage .section .home-partner {
    margin-top: 40px;
  }
  #fullPage .section .home-partner .main-cont .home-partner-slide {
    overflow: hidden;
  }
  #fullPage .section .home-footer {
    margin-top: 20px;
    padding-top: 20px;
  }
  #fullPage .section .home-footer .bottom-cont {
    margin-top: 0;
  }
}
@media (max-width: 1280px) {
  .content {
    padding: 0 40px;
  }
  header .header .content .navigation-list ul li a {
    font-size: 14px;
    padding: 0 10px;
  }
  header .header .content .ri-item .menu-btn {
    margin-left: 10px;
  }
  .min-content {
    max-width: 960px;
  }
  section .products-module .min-content .structure-cont .le-menu {
    width: calc(100% - 600px);
  }
  section .products-module .min-content .structure-cont .ri-cont {
    width: 600px;
  }
  section .products-module .min-content .function-cont ul li a h5 {
    font-size: 12px;
  }
  section .seminar-module .seminar-list ul.list li {
    width: calc((100% - 40px) / 3);
  }
  section .download-module .list li {
    width: calc((100% - 40px) / 2);
  }
  section .cases-page .top-view .ri-data .top-box .tit {
    padding: 0 30px;
  }
  section .cases-page .top-view .ri-data .top-box .cont {
    padding: 20px 30px 30px;
  }
  section .cases-page .top-view .ri-data .bottom-btn {
    padding: 25px 30px;
  }
  section .cases-page .top-view .ri-data .bottom-btn a {
    font-size: 12px;
  }
  section .cases-module .cases-list ul.list li a .img {
    width: 200px;
  }
  section .cases-module .cases-list ul.list li a .text {
    padding: 0 20px;
  }
  section .cases-module .cases-list ul.list li a .text h5 {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  section .cases-module .cases-list ul.list li a .text p {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  section .column-module .news-list ul.list li .item .img {
    width: 260px;
  }
  section .column-module .news-list ul.list li .item .ri-text {
    padding-left: 20px;
  }
  section .column-module .news-list ul.list li .item .ri-text p {
    margin-top: 20px;
  }
  section .column-module .news-list ul.list li .item .ri-text .bot-item {
    margin-top: 20px;
  }
  section .column-module .ri-content {
    width: 240px;
  }
  footer .min-content .ri-item .footer-contact .top-list ul li {
    font-size: 12px;
  }
}
@media (max-width: 960px) {
  .home-next-page-btn a {
    width: 20px;
    height: 20px;
    border-width: 1px;
  }
  .home-next-page-btn a i {
    font-size: 13px;
  }
  header .header .content .navigation-list {
    display: none;
  }
  header .header .content .ri-item .menu-btn {
    display: block;
  }
  header .header-navigation .main-cont {
    max-width: 100%;
  }
  header .header-navigation .main-cont .navigation-list ul {
    margin: 0;
  }
  header .header-navigation .close-btn {
    right: 40px;
  }
  #fullPage .section .home-products .main-cont ul {
    flex-direction: column;
    justify-content: center;
  }
  #fullPage .section .home-products .main-cont ul li {
    margin-top: 10px;
  }
  #fullPage .section .home-products .main-cont ul li a {
    width: 55%;
    margin: 0 auto;
  }
  #fullPage .section .home-products .main-cont ul li a .txt {
    margin-top: 10px;
  }
  #fullPage .section .home-products .main-cont ul li a .txt h5 {
    font-size: 20px;
  }
  #fullPage .section .home-advantage {
    flex-direction: column;
  }
  #fullPage .section .home-advantage > div {
    width: 100%;
  }
  #fullPage .section .home-advantage .le-module .cont {
    text-align: center;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view {
    width: 78%;
    margin: 0 auto;
  }
  #fullPage .section .home-advantage .ri-module {
    padding-top: 20px;
    margin-top: 40px;
  }
  #fullPage .section .home-advantage .ri-module .cont ul {
    width: 100%;
    max-width: 100%;
    display: flex;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li {
    display: inline-block;
    width: 25%;
    text-align: center;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .icon {
    margin: 0 auto;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .txt {
    padding-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .txt p {
    display: none;
  }
  #fullPage .section .home-cases .main-cont .top-cont {
    flex-direction: column;
  }
  #fullPage .section .home-cases .main-cont .top-cont .le-slide {
    height: 40vh;
    width: 100%;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon {
    margin-top: 20px;
    width: 100%;
    padding-left: 0;
  }
  #fullPage .section .home-seminar .main-cont {
    flex-direction: column;
  }
  #fullPage .section .home-seminar .main-cont .le-item {
    width: 100%;
  }
  #fullPage .section .home-seminar .main-cont .le-item .seminar-icon {
    left: -70px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li:not(:first-child) {
    margin-top: 20px;
  }
  #fullPage .section .home-seminar .main-cont .ri-item {
    width: 100%;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    flex-flow: initial;
    margin-top: 20px;
  }
  #fullPage .section .home-news .main-cont {
    flex-direction: column;
  }
  #fullPage .section .home-news .main-cont .le-item {
    width: 100%;
    max-width: 100%;
  }
  #fullPage .section .home-news .main-cont .ri-item {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  #fullPage .section .home-news .main-cont .ri-item ul li a .text {
    width: calc(100% - 160px);
  }
  #fullPage .section .home-footer {
    margin-top: 40px;
    padding-top: 40px;
  }
  #fullPage .section .home-footer .top-contact {
    flex-direction: column;
  }
  #fullPage .section .home-footer .top-contact .le-item .title p {
    font-size: 42px;
  }
  #fullPage .section .home-footer .top-contact .le-item .title h3 {
    font-size: 28px;
  }
  #fullPage .section .home-footer .top-contact .le-item .txt {
    font-size: 14px;
  }
  #fullPage .section .home-footer .top-contact .ri-item {
    margin-top: 20px;
  }
  #fullPage .section .home-footer .top-contact .ri-item .box {
    margin-left: 0;
    margin-right: 28px;
  }
  .min-content {
    padding: 0 24px;
  }
  section .page-route .min-content .tab-route a {
    margin-right: 40px;
  }
  section .products-module .min-content .introd-cont .label-block span {
    padding: 0 32px;
  }
  section .products-module .min-content .structure-cont .le-menu {
    width: calc(100% - 500px);
  }
  section .products-module .min-content .structure-cont .le-menu ul li a {
    padding: 0 20px;
  }
  section .products-module .min-content .structure-cont .ri-cont {
    width: 500px;
  }
  section .products-module .min-content .function-cont ul li {
    width: calc(100% / 4);
  }
  section .products-module .min-content .function-cont ul li:nth-child(4n) {
    border-right: 1px solid #d6d6d6;
  }
  section .products-module .min-content .function-cont ul li:nth-child(n+8) {
    border-top: none;
  }
  section .news-module .top-data a .img {
    width: 360px;
  }
  section .news-module .top-data a .ri-text {
    width: calc(100% - 360px);
  }
  section .news-module .top-data a .ri-text p {
    margin-top: 14px;
  }
  section .cases-module .top-type ul li {
    width: calc(100% / 4);
  }
  section .cases-module .top-type ul li:nth-child(4n) {
    border-right: 1px solid #d6d6d6;
  }
  section .cases-module .top-type ul li:nth-child(n+5) {
    border-top: none;
  }
  section .cases-module .cases-list ul.list li {
    width: 100%;
    display: block;
  }
  section .cases-module .cases-list ul.list li a .img {
    width: 360px;
  }
  section .cases-module .cases-list ul.list li a .text {
    padding: 0 20px;
  }
  section .cases-module .cases-list ul.list li:nth-child(2n) {
    margin-left: 0;
  }
  section .download-module .list li {
    width: calc((100% - 20px) / 2);
  }
  section .contact-module .about-module .introduce .min-content {
    flex-direction: column;
  }
  section .contact-module .about-module .introduce .min-content .le-text {
    padding-right: 0;
  }
  section .contact-module .about-module .introduce .min-content .ri-video {
    width: 100%;
    margin-top: 20px;
  }
  section .relation-module .top-address {
    flex-direction: column;
  }
  section .relation-module .top-address > div {
    width: 100%;
  }
  section .relation-module .top-address .le-item {
    padding-right: 0;
  }
  section .relation-module .leave-message .main-cont {
    flex-direction: column;
  }
  section .relation-module .leave-message .main-cont > div {
    width: 100%;
  }
  section .relation-module .leave-message .main-cont .ri-form {
    padding: 0;
    margin-top: 20px;
  }
  section .Quick-jump a {
    padding: 0 20px;
  }
  section .cases-page .top-view {
    flex-direction: column;
  }
  section .cases-page .top-view > div {
    width: 100%;
  }
  section .cases-page .top-view .le-img {
    height: 300px;
  }
  section .application-page .min-content .main-cont {
    padding: 30px 20px;
  }
  section .application-page .min-content .main-cont form .top-cont {
    display: block;
  }
  section .application-page .min-content .main-cont form .top-cont > div {
    width: 100%;
  }
  section .application-page .min-content .main-cont form > .layui-form-item {
    margin-top: 10px;
  }
  section .seminar-experts .experts-nav {
    padding: 20px 0;
  }
  section .seminar-experts .experts-nav a {
    font-size: 14px;
    margin: 10px;
    padding: 0 10px;
  }
  section .seminar-experts .experts-data .min-content {
    display: block;
  }
  section .seminar-experts .experts-data .min-content .port {
    margin: 0 auto;
  }
  section .seminar-experts .experts-data .min-content .ri-item {
    margin-top: 20px;
    padding-left: 0;
  }
  section .seminar-experts .experts-data .min-content .ri-item .top-title {
    display: block;
  }
  section .seminar-experts .experts-course ul.list li a {
    padding: 0 10px;
  }
  section .seminar-experts .experts-course ul.list li a h3 {
    padding-left: 20px;
    font-size: 14px;
  }
  section .column-module .min-content {
    flex-direction: column;
  }
  section .column-module .min-content .news-list {
    padding-right: 0;
  }
  section .column-module .min-content .ri-content {
    margin-top: 20px;
    width: 100%;
  }
}
@media (max-width: 766px) {
  .content {
    padding: 0 12px;
  }
  header .header .content {
    height: 60px;
  }
  header .header .content .le-logo {
    width: 80px;
  }
  header .header-navigation .close-btn {
    right: 12px;
  }
  header .header-navigation .main-cont .navigation-list {
    display: block;
    overflow-y: scroll;
    height: 66vh;
  }
  header .header-navigation .main-cont .navigation-list ul:not(:first-child) {
    margin-top: 20px;
  }
  header .header-navigation .main-cont .navigation-list ul li:first-child {
    margin-bottom: 10px;
  }
  #fp-nav.fp-right {
    right: 6px;
    overflow: hidden;
  }
  #fp-nav.fp-right ul li a span {
    width: 2px;
  }
  #fullPage .section .home-module .title {
    top: 62px;
  }
  #fullPage .section .home-module .title h3 {
    font-size: 16px;
  }
  #fullPage .section .home-module .main-cont {
    padding-top: 60px;
  }
  #fullPage .section .home-banner .swiper-slide .text h3 {
    font-size: 18px;
  }
  #fullPage .section .home-banner .swiper-slide .text p {
    font-size: 14px;
  }
  #fullPage .section .home-banner .swiper-slide .text i {
    font-size: 12px;
    line-height: 24px;
    padding: 0 20px;
  }
  #fullPage .section .home-products .main-cont ul li a {
    width: 50%;
  }
  #fullPage .section .home-products .main-cont ul li a .txt h5 {
    font-size: 14px;
  }
  #fullPage .section .home-advantage > div {
    padding-top: 80px;
  }
  #fullPage .section .home-advantage > div .tit h3 {
    font-size: 16px;
  }
  #fullPage .section .home-advantage > div .tit p {
    font-size: 12px;
    margin-top: 6px;
  }
  #fullPage .section .home-advantage .le-module {
    height: 65vh;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view {
    width: 100%;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .bg {
    display: none;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .chat-window {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li .port {
    width: 30px;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li .txt {
    padding: 8px;
  }
  #fullPage .section .home-advantage .le-module .cont .img-view .chat-window ul li:not(:first-child) {
    margin-top: 16px;
  }
  #fullPage .section .home-advantage .le-module .cont .btn {
    margin-top: 22px;
  }
  #fullPage .section .home-advantage .ri-module {
    margin-top: 20px;
    height: 35vh;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .icon {
    width: 42px;
    height: 42px;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .icon img {
    width: 60%;
  }
  #fullPage .section .home-advantage .ri-module .cont ul li .txt h5 {
    font-size: 12px;
  }
  #fullPage .section .home-cases .main-cont .top-cont .le-slide {
    height: 30vh;
  }
  #fullPage .section .home-cases .main-cont .top-cont .le-slide .home-cases-slide .swiper-slide .txt {
    line-height: 1.2em;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li {
    width: calc((100% - 24px) / 5);
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 10px 0;
  }
  #fullPage .section .home-cases .main-cont .top-cont .ri-icon .icon-list ul li .box .icon {
    width: 20px;
    height: 20px;
  }
  #fullPage .section .home-seminar .main-cont {
    padding-top: 80px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .seminar-icon {
    display: none;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .bg {
    position: relative;
    top: 20px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list {
    padding: 0 20px;
    right: 0;
    max-width: 100%;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li {
    display: inline-block;
    width: 33.33%;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .top-tit {
    display: block;
    text-align: center;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .top-tit a {
    margin-top: 20px;
  }
  #fullPage .section .home-seminar .main-cont .le-item .cont .txt-list ul li .txt {
    display: none;
  }
  #fullPage .section .home-seminar .main-cont .ri-item {
    padding-bottom: 0;
    display: block;
  }
  #fullPage .section .home-seminar .main-cont .ri-item .box {
    width: 100%;
    padding: 10px;
  }
  #fullPage .section .home-seminar .main-cont .ri-item .box .le-txt h5 {
    font-size: 18px;
  }
  #fullPage .section .home-seminar .main-cont .ri-item .box .le-txt p {
    font-size: 12px;
  }
  #fullPage .section .home-seminar .main-cont .ri-item .box .icon {
    -webkit-transform: scale(0.8) translate(0, -65%);
    -moz-transform: scale(0.8) translate(0, -65%);
    -ms-transform: scale(0.8) translate(0, -65%);
    -o-transform: scale(0.8) translate(0, -65%);
    transform: scale(0.8) translate(0, -65%);
  }
  #fullPage .section .home-news {
    padding-top: 62px;
  }
  #fullPage .section .home-news .main-cont .le-item a .text {
    padding: 10px 0 ;
  }
  #fullPage .section .home-news .main-cont .le-item a .text .txt p {
    display: none;
  }
  #fullPage .section .home-news .main-cont .ri-item {
    margin-top: 10px;
  }
  #fullPage .section .home-news .main-cont .ri-item ul li:nth-child(3) {
    display: none;
  }
  #fullPage .section .home-partner {
    padding-bottom: 32vh;
  }
  #fullPage .section .home-partner .title {
    top: 80px;
  }
  #fullPage .section .home-footer {
    margin-top: 10px;
    padding-top: 20px;
  }
  #fullPage .section .home-footer .top-contact .le-item .title p {
    font-size: 24px;
  }
  #fullPage .section .home-footer .top-contact .le-item .title h3 {
    font-size: 16px;
  }
  #fullPage .section .home-footer .top-contact .le-item .txt {
    display: none;
    font-size: 12px;
  }
  #fullPage .section .home-footer .top-contact .le-item .mobile-txt {
    display: block;
    margin-top: 12px;
  }
  #fullPage .section .home-footer .top-contact .le-item .mobile-txt a {
    display: inline-flex;
    margin-right: 10px;
    line-height: 2em;
    font-size: 12px;
    padding: 0 12px;
    border-radius: 20px;
    background-color: #fff;
    color: #666;
    align-items: center;
  }
  #fullPage .section .home-footer .top-contact .le-item .mobile-txt a img {
    width: 12px;
  }
  #fullPage .section .home-footer .top-contact .le-item .mobile-txt a span {
    display: inline-block;
    margin-left: 5px;
  }
  #fullPage .section .home-footer .top-contact .ri-item {
    display: none;
  }
  #fullPage .section .home-footer .bottom-cont .txt {
    width: calc(100% - 100px);
  }
  section {
    margin-top: 60px;
  }
  section .page-banner {
    height: 200px;
  }
  section .min-content {
    padding: 0 12px;
  }
  section .page-route .min-content .route-link {
    float: none;
  }
  section .page-route .min-content .route-link a,
  section .page-route .min-content .route-link span {
    font-size: 12px;
    line-height: 3em;
  }
  section .page-route .min-content .tab-route a {
    margin-right: 10px;
    line-height: 3em;
    font-size: 14px;
  }
  section .products-nav a:not(.aps) {
    font-size: 14px;
    min-width: 100px;
    padding: 0 10px;
    margin: 0 5px;
  }
  section .products-nav a.aps {
    width: 100%;
    margin-right: 0;
  }
  section .products-module {
    margin-top: 20px;
  }
  section .products-module .min-content .title h3 {
    font-size: 18px;
  }
  section .products-module .min-content .main-cont {
    margin-top: 20px;
  }
  section .products-module .min-content .introd-cont .text {
    font-size: 12px;
  }
  section .products-module .min-content .introd-cont .label-block {
    margin-top: 20px;
    flex-direction: column;
  }
  section .products-module .min-content .introd-cont .label-block span {
    width: 100%;
    padding: 0 20px;
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
  }
  section .products-module .min-content .introd-cont .images {
    margin-top: 20px;
  }
  section .products-module .min-content .introd-cont .images .img {
    width: 100%;
  }
  section .products-module .min-content .structure-cont {
    display: block;
  }
  section .products-module .min-content .structure-cont .le-menu {
    width: 100%;
    padding-right: 0;
  }
  section .products-module .min-content .structure-cont .le-menu ul {
    white-space: nowrap;
    overflow-x: scroll;
  }
  section .products-module .min-content .structure-cont .le-menu ul li {
    display: inline-block;
  }
  section .products-module .min-content .structure-cont .le-menu ul li a {
    font-size: 14px;
    line-height: 2.5em;
  }
  section .products-module .min-content .structure-cont .le-menu ul .active a:after {
    display: none;
  }
  section .products-module .min-content .structure-cont .ri-cont {
    width: 100%;
    padding: 20px;
  }
  section .products-module .min-content .function-cont ul li {
    width: calc(100% / 3);
  }
  section .products-module .min-content .function-cont ul li:nth-child(3n) {
    border-right: 1px solid #d6d6d6;
  }
  section .products-module .min-content .function-cont ul li:nth-child(n+4) {
    border-top: none;
    border-left: 1px solid #d6d6d6;
  }
  section .products-module .min-content .solution-cont ul li {
    width: 100%;
    margin-top: 10px;
  }
  section .products-module .min-content .solution-cont ul li a {
    display: block;
  }
  section .products-module .min-content .solution-cont ul li a .img {
    width: 100%;
  }
  section .products-module .min-content .solution-cont ul li a .ri-text {
    padding-left: 20px;
    width: 100%;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  section .products-module .min-content .solution-cont ul li a .ri-text p,
  section .products-module .min-content .solution-cont ul li a .ri-text span {
    margin-top: 0;
  }
  section .products-module .min-content .solution-cont ul li:not(:first-child) {
    margin-top: 20px;
  }
  section .consult-list ul li a {
    display: block;
  }
  section .consult-list ul li a .ri-text {
    padding: 20px;
  }
  section .consult-list ul li a .ri-text .txt p {
    font-size: 12px;
  }
  section .consult-details .top-view {
    display: block;
  }
  section .consult-details .top-view .ri-text {
    padding: 36px 20px;
  }
  section .consult-details .top-view .ri-text .txt p {
    font-size: 12px;
  }
  section .consult-details .consult-data .main-cont .business-nav a {
    font-size: 12px;
    line-height: 1em;
    padding: 10px;
    text-align: center;
  }
  section .consult-details .consult-data .main-cont .text-cont {
    padding: 20px;
  }
  section .products-bottom .txt {
    font-size: 14px;
    line-height: 2.5em;
  }
  section .products-bottom .img-list ul li {
    width: calc((100% - 10px) / 2);
  }
  section .products-bottom .img-list ul li:nth-child(2n) {
    margin-right: 0;
  }
  section .products-bottom .btn {
    margin-top: 20px;
  }
  section .products-bottom .btn a {
    line-height: 52px;
    font-size: 18px;
  }
  section .news-module {
    padding: 40px 0;
  }
  section .news-module .top-data a {
    display: block;
  }
  section .news-module .top-data a .img {
    width: 100%;
  }
  section .news-module .top-data a .ri-text {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  section .news-module .top-data a .ri-text h3 {
    font-size: 14px;
  }
  section .news-module .top-data a .ri-text p {
    font-size: 12px;
  }
  section .news-module .top-data a .ri-text span {
    margin-top: 10px;
    font-size: 12px;
  }
  section .news-module .news-list ul.list li a {
    display: block;
    padding: 0;
  }
  section .news-module .news-list ul.list li a .ri-text {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  section .news-module .news-list ul.list li a .ri-text h3 {
    font-size: 14px;
  }
  section .news-module .news-list ul.list li a .ri-text p {
    font-size: 12px;
    margin-top: 10px;
  }
  section .news-module .news-list ul.list li a .ri-text span {
    margin-top: 10px;
    font-size: 12px;
  }
  section .column-module .news-list ul.list li .item {
    flex-direction: column;
  }
  section .column-module .news-list ul.list li .item .img {
    width: 100%;
  }
  section .column-module .news-list ul.list li .item .ri-text {
    position: relative;
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  section .column-module .news-list ul.list li .item .ri-text h3 {
    font-size: 14px;
  }
  section .column-module .news-list ul.list li .item .ri-text p {
    font-size: 12px;
    margin-top: 10px;
  }
  section .column-module .news-list ul.list li .item .ri-text span {
    font-size: 12px;
  }
  section .column-module .news-list ul.list li .item .ri-text .bot-item {
    margin-top: 10px;
  }
  section .column-module .news-list ul.list li .item .ri-text .bot-item .label-box {
    padding-left: 0;
  }
  section .column-module .news-list ul.list li .item .ri-text .bot-item span {
    position: absolute;
    right: 0;
    top: 0;
  }
  section .cases-module .top-type ul {
    white-space: nowrap;
    overflow-x: scroll;
  }
  section .cases-module .top-type ul li a {
    padding: 10px;
  }
  section .cases-module .top-type ul li a .icon {
    width: 36px;
    height: 36px;
  }
  section .cases-module .top-type ul li a p {
    font-size: 12px;
    margin-top: 10px;
  }
  section .cases-module .top-type ul li:nth-child(n+5) {
    border-top: 1px solid #d6d6d6;
  }
  section .cases-module .cases-list {
    padding-top: 20px;
  }
  section .cases-module .cases-list ul.list li a {
    display: block;
  }
  section .cases-module .cases-list ul.list li a .img {
    width: 100%;
  }
  section .cases-module .cases-list ul.list li a .text {
    padding: 10px;
  }
  section .cases-module .cases-list ul.list li a .text h5 {
    font-size: 14px;
  }
  section .cases-module .cases-list ul.list li a .text p {
    font-size: 12px;
    margin-top: 10px;
  }
  section .seminar-module {
    padding: 20px 0 30px;
  }
  section .seminar-module .seminar-list ul.list {
    display: block;
  }
  section .seminar-module .seminar-list ul.list li {
    width: calc((100% - 10px)/2);
    margin-top: 10px;
    margin-right: 10px;
  }
  section .seminar-module .seminar-list ul.list li a .text {
    padding: 10px;
  }
  section .seminar-module .seminar-list ul.list li a .text .btn span {
    padding: 0 20px;
  }
  section .seminar-module .seminar-list ul.list li:nth-child(2n) {
    margin-right: 0;
  }
  section .download-module {
    padding: 0 0 30px;
  }
  section .download-module .list {
    display: block;
  }
  section .download-module .list li {
    width: 100%;
    margin-top: 20px;
  }
  section .contact-module {
    padding: 30px 0 0;
  }
  section .contact-module .page-module .module .tit h3 {
    font-size: 16px;
  }
  section .contact-module .about-module .introduce .min-content .le-text .text h3 {
    font-size: 16px;
  }
  section .contact-module .about-module .introduce .min-content .le-text .text .txt {
    margin-top: 16px;
    font-size: 12px;
  }
  section .contact-module .about-module .introduce .min-content .le-text .data-list .box h5 {
    font-size: 24px;
  }
  section .contact-module .about-module .introduce .min-content .le-text .data-list .box p {
    font-size: 12px;
  }
  section .contact-module .about-module .introduce .min-content .ri-video {
    min-height: 200px;
  }
  section .contact-module .about-module .introduce .min-content .ri-video a h5 {
    font-size: 16px;
  }
  section .contact-module .about-module .make-speech {
    padding: 30px 0 20px;
  }
  section .contact-module .about-module .make-speech .min-content .main-cont {
    margin-top: 20px;
    padding: 20px;
    display: block;
  }
  section .contact-module .about-module .make-speech .min-content .main-cont .ri-text {
    padding-left: 0;
  }
  section .contact-module .about-module .make-speech .min-content .main-cont .ri-text .txt {
    margin-top: 20px;
    font-size: 12px;
  }
  section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide h5 {
    font-size: 16px;
  }
  section .contact-module .about-module .develop .main-cont .develop-slide .swiper-slide p {
    font-size: 12px;
  }
  section .contact-module .about-module .system .main-cont .txt {
    padding: 20px;
  }
  section .contact-module .partner .main-cont {
    margin-top: 20px;
  }
  section .contact-module .partner .main-cont ul li {
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
    margin-top: 10px;
  }
  section .contact-module .partner .main-cont ul li:nth-child(5n) {
    margin-right: 10px;
  }
  section .contact-module .partner .main-cont ul li:nth-child(3n) {
    margin-right: 0;
  }
  section .cooperate-module .rules {
    padding: 20px 0 20px;
  }
  section .cooperate-module .rules .min-content .main-cont {
    margin-top: 20px;
    font-size: 12px;
  }
  section .recruit-module .recruit-cont .top-title {
    padding: 0 20px;
  }
  section .recruit-module .recruit-cont .top-title ul li {
    font-size: 12px;
  }
  section .recruit-module .recruit-cont .recruit-list ul li a {
    padding: 10px 20px;
  }
  section .recruit-module .recruit-cont .recruit-list ul li a span {
    font-size: 12px;
  }
  section .recruit-module .recruit-cont .recruit-list ul li a .txt {
    padding: 0 10px;
  }
  section .recruit-module .recruit-cont .recruit-list ul li .data {
    padding: 20px;
    font-size: 12px;
  }
  section .relation-module .top-address .le-item ul li {
    padding: 10px 0;
  }
  section .relation-module .top-address .le-item ul li h5 {
    font-size: 14px;
  }
  section .relation-module .top-address .le-item ul li p {
    font-size: 12px;
  }
  section .relation-module .leave-message {
    padding: 30px 0 20px;
  }
  section .relation-module .leave-message .main-cont {
    margin-top: 20px;
  }
  section .relation-module .leave-message .main-cont .ri-form form span {
    left: 20px;
    font-size: 14px;
  }
  section .Quick-jump a {
    padding: 0;
  }
  section .news-page .min-content .top-title {
    padding: 20px 0 0;
  }
  section .news-page .min-content .main-cont {
    padding: 20px 0 30px;
    font-size: 12px;
  }
  section .cases-page .top-view .le-img {
    height: 200px;
  }
  section .cases-page .top-view .ri-data .top-box .tit {
    padding: 0 14px;
  }
  section .cases-page .top-view .ri-data .top-box .tit h5 {
    font-size: 14px;
  }
  section .cases-page .top-view .ri-data .top-box .cont {
    padding: 14px;
  }
  section .cases-page .top-view .ri-data .top-box .cont ul li {
    font-size: 14px;
  }
  section .cases-page .top-view .ri-data .bottom-btn {
    padding: 14px;
    display: block;
  }
  section .cases-page .top-view .ri-data .bottom-btn a {
    font-size: 14px;
  }
  section .cases-page .top-view .ri-data .bottom-btn a:last-child {
    margin-left: 0;
    margin-top: 10px;
  }
  section .cases-page .solution-text {
    display: block;
  }
  section .cases-page .solution-text .le-item {
    width: 100%;
  }
  section .cases-page .solution-text .ri-text {
    padding: 14px;
    font-size: 12px;
  }
  section .cases-page .data-list {
    margin-top: 20px;
  }
  section .cases-page .data-list .module .main-cont {
    padding: 14px 0;
    font-size: 12px;
  }
  section .seminar-page .basic-data .title {
    margin-top: 20px;
  }
  section .seminar-page .basic-data .title h3 {
    font-size: 14px;
  }
  section .seminar-page .basic-data .min-txt {
    font-size: 12px;
    margin-top: 14px;
  }
  section .seminar-page .basic-data .detailed-txt {
    margin-top: 20px;
    padding: 20px;
  }
  section .seminar-page .basic-data .detailed-txt .box .txt {
    font-size: 12px;
  }
  section .seminar-page .basic-data .teacher-data {
    display: block;
    padding: 20px;
  }
  section .seminar-page .basic-data .teacher-data .le-img {
    margin: 0 auto;
  }
  section .seminar-page .basic-data .teacher-data .ri-text {
    padding-left: 0;
    margin-top: 20px;
  }
  section .seminar-page .basic-data .teacher-data .ri-text h5 {
    font-size: 16px;
    text-align: center;
  }
  section .seminar-page .basic-data .teacher-data .ri-text .txt {
    font-size: 12px;
    margin-top: 14px;
  }
  section .seminar-page .basic-data .course-list ul li {
    width: 100%;
    margin-right: 0;
    padding: 20px;
  }
  section .seminar-page .basic-data .course-list ul li h5 {
    font-size: 14px;
  }
  section .seminar-page .basic-data .course-list ul li .txt {
    font-size: 12px;
    margin-top: 14px;
  }
  section .seminar-page .course-evaluate {
    margin-top: 20px;
    padding: 20px 0;
  }
  section .seminar-page .course-evaluate .list {
    margin-top: 20px;
  }
  section .seminar-page .course-evaluate .list li h5 {
    font-size: 14px;
  }
  section .seminar-page .course-evaluate .list li .txt {
    font-size: 12px;
  }
  section .seminar-page .course-evaluate .list li:not(:first-child) {
    margin-top: 20px;
  }
  section .seminar-page .activity {
    margin-top: 20px;
    padding: 20px 0;
  }
  section .seminar-page .activity .title h3 {
    font-size: 16px;
  }
  section .seminar-page .activity .main-cont {
    margin-top: 20px;
  }
  section .login-page {
    padding: 40px 0 30px;
  }
  section .login-page .min-content {
    display: block;
  }
  section .login-page .min-content .le-item {
    width: 100%;
    padding: 0;
  }
  section .login-page .min-content .ri-item {
    max-width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  section .login-page .min-content .ri-item .txt-list {
    margin-top: 20px;
  }
  section .user-page {
    padding: 20px 0;
  }
  section .user-page .min-content {
    display: block;
  }
  section .user-page .min-content .le-item {
    width: 100%;
  }
  section .user-page .min-content .ri-item {
    margin-left: 0;
    margin-top: 20px;
  }
  section .user-page .min-content .ri-item .main-cont form label .tit {
    width: 100px;
  }
  section .user-page .min-content .ri-item .main-cont form label .line {
    width: calc(100% - 100px);
  }
  section .user-page .min-content .ri-item .main-cont form label input {
    width: 100%;
  }
  section .user-page .min-content .ri-item .main-cont form label button {
    margin-left: 100px;
  }
  footer .min-content {
    padding: 0;
    flex-direction: column;
  }
  footer .min-content .le-item {
    width: 100%;
    padding: 20px;
  }
  footer .min-content .ri-item {
    width: 100%;
  }
  footer .min-content .ri-item .top-item {
    padding: 20px 0;
  }
  footer .min-content .ri-item .top-item .top-menu {
    padding: 0 20px;
  }
  footer .min-content .ri-item .top-item .top-menu ul {
    display: block;
    text-align: center;
  }
  footer .min-content .ri-item .top-item .top-menu ul li {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
    line-height: 2em;
  }
  footer .min-content .ri-item .top-item .top-menu ul li dl {
    margin-top: 8px;
  }
  footer .min-content .ri-item .footer-contact {
    padding: 0 20px;
    text-align: center;
  }
  footer .min-content .ri-item .footer-contact .top-list {
    display: block;
  }
  footer .min-content .ri-item .footer-copyright {
    padding: 0 20px;
  }
}
.yourclass .video-box {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 90%;
}
.yourclass .video-box video {
  max-width: 100%;
}
.layui-layer-options {
  width: 710px !important;
  height: auto !important;
}
@media (max-width: 766px) {
  .layui-layer-options {
    width: 95% !important;
  }
}
.sale-cont {
  padding: 14.6% 16.6%;
}
/*# sourceMappingURL=style.css.map */