/* Write your styles */
div,
section,
a,
p,
li,
ul,
span,
h1,
h2,
h3,
h4,
h5,
time {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
html,
body {
  background-color: #fff;
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body {
  font-size: 1.5rem;
}
body {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
body.active {
  opacity: 1;
}
body.hidden {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
p {
  font-size: 16px;
  line-height: 1.8;
}
.primary-btn a {
  color: #fff;
  background-color: #124D98;
  width: 180px;
  height: 42px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  padding: 0 30px;
  font-weight: 600;
  letter-spacing: 1px;
}
.primary-btn a span {
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.primary-btn a span i {
  transition: all 0.5s ease-in-out;
  position: relative;
  left: 0;
}
.primary-btn a span i img {
  height: 7px;
}
.primary-btn a::before {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
  position: absolute;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.primary-btn a:hover {
  color: #f5f5f5;
}
.primary-btn a:hover span i {
  left: 10px;
}
.primary-btn a:hover::before {
  width: 100%;
}
.primary-btn button {
  border: 0;
  color: #fff;
  background-color: #124D98;
  width: 180px;
  height: 42px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  padding: 0 30px;
  font-weight: 600;
  letter-spacing: 1px;
}
.primary-btn button span {
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.primary-btn button span i {
  transition: all 0.5s ease-in-out;
  position: relative;
  left: 0;
}
.primary-btn button span i img {
  height: 7px;
}
.primary-btn button::before {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
  position: absolute;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.primary-btn button:hover {
  color: #f5f5f5;
}
.primary-btn button:hover span i {
  left: 10px;
}
.primary-btn button:hover::before {
  width: 100%;
}
.primary-title h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.primary-title hr {
  margin-top: 10px;
  width: 40px;
  border-top: 2px solid #E41921;
}
.primary-img img {
  position: relative;
}
.sub-title h3 {
  display: inline-flex;
  margin: 0;
  padding: 12px 20px;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 3px;
  align-items: center;
  letter-spacing: 2px;
}
.sub-title h3::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 22px;
  background-color: #124D98;
  margin-right: 10px;
}
.am-container {
  max-width: 1200px;
}
.am-container::before {
  display: none;
}
.am-container::after {
  display: none;
}
.content {
  padding: 80px 0;
}
.page-banner {
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-banner h2 {
  margin-top: 80px;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
}
.page-banner.api-banner {
  height: 330px;
}
.page-banner.api-banner h2 {
  font-size: 32px;
  font-weight: bold;
}
header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .am-container {
  position: relative;
  max-width: 1200px;
  padding: 0 20px;
  background: #FFFFFF;
  box-shadow: 0 4px 15px 0 rgba(209, 209, 209, 0.2);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .am-container .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
header .am-container .logo img {
  height: 45px;
  width: auto;
}
header .am-container .menu-container {
  display: flex;
}
header .am-container .menu-container nav {
  height: 80px;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
}
header .am-container .menu-container nav > ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
header .am-container .menu-container nav > ul > li {
  text-align: center;
  list-style-type: none;
  padding: 0 15px;
  position: relative;
  cursor: pointer;
}
header .am-container .menu-container nav > ul > li .sub-menu {
  height: 0;
  background-color: #FFFFFF;
  position: absolute;
  padding-left: 0;
  left: 0px;
  top: 20px;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  z-index: 999;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}
header .am-container .menu-container nav > ul > li .sub-menu li {
  list-style-type: none;
  width: 180px;
  line-height: 40px;
}
header .am-container .menu-container nav > ul > li .sub-menu li a {
  font-size: 14px;
  line-height: 35px;
}
header .am-container .menu-container nav > ul > li .sub-menu li.current-menu-item > a {
  color: #124D98 !important;
}
header .am-container .menu-container nav > ul > li .sub-menu li.current-menu-item > a::after {
  width: 100%;
}
header .am-container .menu-container nav > ul > li a {
  color: #666;
  font-size: 16px;
  padding-bottom: 5px;
  transition: all 0.5s ease-in-out;
  position: relative;
}
header .am-container .menu-container nav > ul > li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
  display: block;
  width: 0;
  height: 2px;
  background-color: #124D98;
}
header .am-container .menu-container nav > ul > li a:hover {
  color: #124D98;
}
header .am-container .menu-container nav > ul > li a:hover::after {
  width: 100%;
}
header .am-container .menu-container nav > ul > li.current-menu-item > a {
  color: #124D98 !important;
}
header .am-container .menu-container nav > ul > li.current-menu-item > a::after {
  width: 100%;
}
header .am-container .menu-container nav > ul > li:hover .sub-menu {
  display: block;
  height: 80px;
}
header .am-container .menu-container > .right {
  display: flex;
  align-items: center;
}
header .am-container .menu-container > .right .language {
  display: inline-block;
  position: relative;
}
header .am-container .menu-container > .right .language .select {
  position: relative;
  cursor: pointer;
}
header .am-container .menu-container > .right .language .select .select-list {
  position: absolute;
  top: 20px;
  right: 0;
  height: 0;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  transition: all 0.2s;
  overflow: hidden;
  width: 120px;
  display: flex;
  flex-direction: column;
}
header .am-container .menu-container > .right .language .select .select-list a {
  display: block;
  line-height: 32px;
  text-align: center;
  color: #000;
  position: relative;
}
header .am-container .menu-container > .right .language .select .select-list a:hover {
  color: #124D98;
}
header .am-container .menu-container > .right .language .select .select-list a.active {
  color: #124D98;
}
header .am-container .menu-container > .right .language .select:hover .select-list {
  height: 64px;
}
header .am-container .menu-container > .right .language .select.open .select-list {
  height: 64px;
}
header .am-container .menu-container > .right > ul {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
}
header .am-container .menu-container > .right > ul li {
  list-style-type: none;
  cursor: pointer;
  position: relative;
}
header .am-container .menu-container > .right > ul li > .menu-btn {
  width: 110px;
  height: 36px;
  display: inline-flex;
  margin: 0 5px;
  border: 1px solid rgba(17, 77, 152, 0.8);
  border-radius: 2px;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  color: #124D98;
}
header .am-container .menu-container > .right > ul li > .menu-btn.btn1 {
  box-shadow: 1px 3px 6px 1px rgba(17, 77, 152, 0.2);
  background-color: rgba(17, 77, 152, 0.9);
  color: #fff;
}
header .am-container .menu-container > .right > ul li > .menu-btn span {
  z-index: 2;
}
header .am-container .menu-container > .right > ul li > .menu-btn::before {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
  position: absolute;
  width: 0;
  height: 100%;
  background-color: #124D98;
}
header .am-container .menu-container > .right > ul li > .menu-btn:hover {
  color: #f5f5f5;
}
header .am-container .menu-container > .right > ul li > .menu-btn:hover::before {
  width: 100%;
}
header .am-container .menu-container > .right > ul li > .sub-menu {
  height: 0;
  background-color: #FFFFFF;
  position: absolute;
  padding-left: 0;
  left: 0px;
  top: 40px;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  z-index: 999;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}
header .am-container .menu-container > .right > ul li > .sub-menu li {
  list-style-type: none;
  min-width: 120px;
  text-align: center;
  padding: 0 20px;
  line-height: 40px;
}
header .am-container .menu-container > .right > ul li > .sub-menu li a {
  font-size: 14px;
  color: #666;
  position: relative;
  padding-bottom: 4px;
}
header .am-container .menu-container > .right > ul li > .sub-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
  display: block;
  width: 0;
  height: 2px;
  background-color: #124D98;
}
header .am-container .menu-container > .right > ul li > .sub-menu li a:hover {
  color: #124D98;
}
header .am-container .menu-container > .right > ul li > .sub-menu li a:hover::after {
  width: 100%;
}
header .am-container .menu-container > .right > ul li:hover .sub-menu {
  height: 80px;
}
header .am-container .mb-menu {
  display: none;
  position: absolute;
  right: 2rem;
  width: 20px;
  margin: 0;
  z-index: 1300;
  transform: scale(1);
  transition: all 0.6s ease-in-out;
}
header .am-container .mb-menu .icon {
  height: 16px;
}
header .am-container .mb-menu .icon > span {
  display: block;
  background-color: #666666;
  height: 2px;
  width: 20px;
  position: absolute;
  transition: all 1s ease-in-out;
  border-radius: 2px;
}
header .am-container .mb-menu .icon > span:first-child {
  top: 0;
}
header .am-container .mb-menu .icon > span:nth-child(2) {
  top: 6px;
  right: 0;
}
header .am-container .mb-menu .icon > span:nth-child(3) {
  top: 12px;
}
header .am-container .mb-menu.active .icon > span:first-child {
  transform: rotate(405deg);
  transform-origin: center;
  top: 6px;
}
header .am-container .mb-menu.active .icon > span:nth-child(2) {
  right: -40px;
}
header .am-container .mb-menu.active .icon > span:last-child {
  transform: rotate(-405deg);
  transform-origin: center;
  top: 6px;
}
header.fixed {
  top: 0;
  position: fixed;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
header.fixed .am-container {
  box-shadow: none;
}
header.fixed .am-container .left .logo img {
  height: 40px;
}
header.fixed .am-container .left nav {
  height: 60px;
}
#m-header {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
}
#m-header .am-offcanvas-content {
  padding: 0;
}
#m-header .mb-top {
  width: 100%;
  height: 50px;
  background-color: #fff;
  padding: 0 15px;
  display: block;
}
#m-header .mb-top .logo {
  float: left;
}
#m-header .mb-top .logo a img {
  height: 30px;
  margin-top: 10px;
}
#m-header .mb-top .menu {
  float: right;
}
#m-header .mb-top .menu a {
  line-height: 50px;
  color: #888;
  font-size: 20px;
}
#m-header .m-content .logo {
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 0 15px;
}
#m-header .m-content .logo img {
  height: 30px;
}
#m-header .m-content .mk-menu ul {
  margin: 0;
  padding: 0;
}
#m-header .m-content .mk-menu ul li {
  list-style-type: none;
}
#m-header .m-content .mk-menu ul li a {
  height: 50px;
  width: 100%;
  border-bottom: 1px dashed #6b6b6b;
  display: block;
  padding: 0 10px;
  line-height: 50px;
}
.mb-mcontainer {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: 99999;
  display: none;
}
.mb-mcontainer .mb-gb {
  font-size: 24px;
  color: #333;
  width: 30px;
  height: 30px;
  display: inline-block;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -moz-transform: rotate(45deg);
  /* Firefox */
  -webkit-transform: rotate(45deg);
  /* Safari å’Œ Chrome */
  -o-transform: rotate(45deg);
  /* Opera */
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 99999;
}
.mb-mcontainer .mb-top {
  position: relative;
  width: 100%;
  height: 55%;
  text-align: center;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
.mb-mcontainer .mb-top ul {
  padding-left: 0;
  width: 100%;
}
.mb-mcontainer .mb-top ul li {
  list-style-type: none;
}
.mb-mcontainer .mb-top ul li a {
  color: #666;
  font-size: 16px;
  line-height: 2.5;
  width: 200px;
  display: inline-block;
}
.mb-mcontainer .mb-bot {
  text-align: center;
  color: #999;
  height: 45%;
  background-color: #FAFAFA;
  border-top: 1px solid #f3f3f3;
  padding-top: 40px;
}
.mb-mcontainer .mb-bot .mb-cop {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #f1f1f1;
  height: 40px;
}
.mb-mcontainer .mb-bot .mb-cop p {
  line-height: 40px;
  color: #666;
  font-size: 12px;
}
.mb-mcontainer .mb-bot .mb-social {
  padding: 0 20px;
  text-align: left;
  font-size: 14px;
}
.mb-mcontainer .mb-bot .mb-social img {
  height: 50px;
  margin-bottom: 20px;
}
.mb-mcontainer .mb-bot .mb-social a {
  color: #999;
}
.mb-mcontainer .mb-bot .mb-ewm {
  text-align: center;
}
.mb-mcontainer .mb-bot .mb-ewm img {
  max-width: 108px;
}
.mb-mcontainer .mb-bot .mb-ewm p {
  margin-top: 10px;
}
@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100vw 0;
  }
}
#home .f1 {
  background-size: contain;
  background-position: center center;
  position: relative;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 80px;
  background-image: url(../img/bp1.jpg);
  animation: slide 40s linear infinite;
}
#home .f1 .am-container {
  padding-right: 0;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}
#home .f1 .am-container .parallax-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
#home .f1 .am-container .parallax-wrapper .layer {
  transition: auto;
}
#home .f1 .am-container .left {
  width: 45%;
  padding: 0 40px 0 0;
  position: relative;
  z-index: 2;
}
#home .f1 .am-container .left .inner .top {
  margin-bottom: 100px;
}
#home .f1 .am-container .left .inner .top h1 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 0;
}
#home .f1 .am-container .left .inner .top h3 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 0;
}
#home .f1 .am-container .left .inner .top hr {
  width: 40px;
  border-top: 2px solid #E41921;
}
#home .f1 .am-container .right {
  width: 55%;
  position: relative;
  z-index: 2;
}
#home .f1 .am-container .right img {
  position: relative;
  z-index: 2;
}
#home .f1-1 {
  padding-bottom: 80px;
}
#home .f1-1 .am-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#home .f1-1 .am-container .left {
  width: 50%;
}
#home .f1-1 .am-container .right {
  width: 50%;
}
#home .f1-1 .am-container .right .inner {
  padding-left: 60px;
  background: #FFFFFF;
  background-image: url(../img/bar.jpg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center right;
}
#home .f1-1 .am-container .right .inner .bd {
  margin-top: 40px;
}
#home .f1-1 .am-container .right .inner .bd p {
  text-align: justify;
  line-height: 2;
}
#home .f1-1 .am-container .right .inner .bd ul {
  margin-top: 30px;
  margin-left: 0;
  padding-left: 15px;
}
#home .f1-1 .am-container .right .inner .bd ul li {
  color: #E41921;
  line-height: 2;
}
#home .f1-1 .am-container .right .inner .bd ul li span {
  color: #343434;
}
#home .f2 {
  background-color: #fff;
  padding: 0 0 40px;
}
#home .f2 .am-container .inner {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#home .f2 .am-container .inner .item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
#home .f2 .am-container .inner .item:nth-child(even) {
  flex-direction: row-reverse;
}
#home .f2 .am-container .inner .item .left {
  width: 45%;
  position: relative;
}
#home .f2 .am-container .inner .item .right {
  width: 55%;
  display: flex;
  justify-content: center;
}
#home .f2 .am-container .inner .item .right .bd {
  max-width: 300px;
}
#home .f2 .am-container .inner .item .right .bd p {
  max-width: 260px;
  text-align: justify;
}
#home .f3 {
  background-size: cover;
  background-position: center;
}
#home .f3 .am-container .inner {
  display: flex;
  justify-content: space-between;
}
#home .f3 .am-container .inner .item {
  max-width: 260px;
  text-align: center;
  color: #fff;
}
#home .f3 .am-container .inner .item img {
  height: 40px;
}
#home .f3 .am-container .inner .item i {
  font-size: 50px;
}
#home .f3 .am-container .inner .item h3 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
}
#home .f3 .am-container .inner .item hr {
  width: 30px;
  margin: 0 auto;
  border-width: 2px;
}
#home .f3 .am-container .inner .item p {
  font-weight: 400;
  text-align: center;
  color: #b3bfcf;
}
#home .f4 {
  background-size: contain;
  background-repeat: no-repeat;
}
#home .f4 .advantage .item {
  position: relative;
  display: flex;
  flex-flow: row;
  align-items: center;
  overflow: hidden;
}
#home .f4 .advantage .item .left {
  width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
#home .f4 .advantage .item .left .bd {
  height: 100%;
  max-width: 350px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#home .f4 .advantage .item .left .bd p {
  margin-bottom: 30px;
}
#home .f4 .advantage .item .left .bd .primary-title h2 {
  font-size: 20px;
}
#home .f4 .advantage .item .right {
  width: 50%;
}
#home .f4 .advantage .item:nth-child(even) {
  flex-direction: row-reverse;
}
#home .f4 .partners {
  padding-top: 80px;
}
#home .f4 .partners .am-container .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
#home .f4 .partners .am-container .inner .item {
  padding: 5px;
  width: 20%;
  border: 1px solid #eee;
  box-sizing: border-box;
}
#home .f5 {
  background-size: cover;
}
#home .f5 .am-container p {
  margin: 30px 0;
}
#choice .f1 {
  background-size: cover;
  background-position: center;
}
#choice .f1 .am-container {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
#choice .f1 .am-container .left {
  width: 50%;
}
#choice .f1 .am-container .left img {
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}
#choice .f1 .am-container .right {
  width: 50%;
  padding: 0 30px;
}
#choice .f1 .am-container .right .primary-title {
  margin-bottom: 40px;
}
#choice .f1 .am-container .right .bd {
  max-width: 375px;
}
#choice .f1 .am-container .right .bd p {
  color: #636363;
}
#choice .f2 {
  background-size: cover;
  background-position: center;
}
#choice .f2 .top {
  text-align: center;
  margin-bottom: 30px;
}
#choice .f2 .top .primary-title hr {
  margin: 0 auto;
  margin-top: 15px;
}
#choice .f2 .content {
  padding: 0;
}
#choice .f2 .content .am-container .gallery-bot {
  height: 330px;
  background-color: #fff;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
}
#choice .f2 .content .am-container .gallery-bot .swiper-wrapper .swiper-slide {
  height: 330px;
  display: flex;
  padding: 20px 30px;
  align-items: center;
  background-color: #fff;
}
#choice .f2 .content .am-container .gallery-bot .swiper-wrapper .swiper-slide .left {
  width: 45%;
}
#choice .f2 .content .am-container .gallery-bot .swiper-wrapper .swiper-slide .left img {
  border-radius: 4px;
  overflow: hidden;
}
#choice .f2 .content .am-container .gallery-bot .swiper-wrapper .swiper-slide .right {
  width: 55%;
  padding: 40px;
}
#choice .f2 .content .am-container .gallery-bot .swiper-wrapper .swiper-slide .right .bd ul li {
  line-height: 2;
  color: #124D98;
}
#choice .f2 .content .am-container .gallery-bot .swiper-wrapper .swiper-slide .right .bd ul li span {
  color: #636363;
}
#choice .f2 .content .am-container .gallery-thumbs {
  height: 275px;
  box-sizing: border-box;
  padding: 10px 0;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide {
  cursor: pointer;
  background-color: #fff;
  width: 25%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide::after {
  transition: all 0.4s ease-in-out;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide img {
  transition: all 0.4s ease-in-out;
  width: 80px;
  opacity: 0.1;
  -webkit-filter: grayscale(100%);
  /* Chrome, Safari, Opera */
  filter: grayscale(100%);
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide i {
  font-size: 50px;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide h3 {
  margin-top: 20px;
  letter-spacing: 2px;
  color: #636363;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0);
  /* Chrome, Safari, Opera */
  filter: grayscale(0);
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:hover h3 {
  color: #000;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:hover::after {
  transition: all 0.4s ease-in-out;
  content: '';
  display: block;
  height: 4px;
  width: 60%;
  background-color: #124D98;
  position: absolute;
  bottom: 0;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  opacity: 1;
  -webkit-filter: grayscale(0);
  /* Chrome, Safari, Opera */
  filter: grayscale(0);
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active h3 {
  color: #000;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::after {
  transition: all 0.4s ease-in-out;
  content: '';
  display: block;
  height: 4px;
  width: 60%;
  background-color: #124D98;
  position: absolute;
  bottom: 0;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:nth-child(2):hover::after {
  background-color: #575756;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:nth-child(2).swiper-slide-thumb-active::after {
  background-color: #575756;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:nth-child(3):hover::after {
  background-color: #00529F;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:nth-child(3).swiper-slide-thumb-active::after {
  background-color: #00529F;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:nth-child(4):hover::after {
  background-color: #F50013;
}
#choice .f2 .content .am-container .gallery-thumbs .swiper-wrapper .swiper-slide:nth-child(4).swiper-slide-thumb-active::after {
  background-color: #F50013;
}
#choice .f3 {
  background-color: #4a4a4a;
  background-size: cover;
  background-position: center;
}
#choice .f3 .am-container {
  max-width: 1080px;
  padding: 0 60px;
  position: relative;
}
#choice .f3 .am-container .team .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
}
#choice .f3 .am-container .team .swiper-wrapper .swiper-slide .left {
  width: 50%;
}
#choice .f3 .am-container .team .swiper-wrapper .swiper-slide .left img {
  border-radius: 4px;
}
#choice .f3 .am-container .team .swiper-wrapper .swiper-slide .right {
  width: 50%;
  padding: 0 40px;
}
#choice .f3 .am-container .team .swiper-wrapper .swiper-slide .right .primary-title h2 {
  font-size: 22px;
  color: #FFFFFF;
}
#choice .f3 .am-container .team .swiper-wrapper .swiper-slide .right .primary-title hr {
  border-color: #FFFFFF;
}
#choice .f3 .am-container .team .swiper-wrapper .swiper-slide .right p {
  color: #FFFFFF;
}
#choice .f3 .am-container .swiper-button-prev,
#choice .f3 .am-container .swiper-button-next {
  outline: none;
}
#choice .f3 .am-container .swiper-button-prev:after,
#choice .f3 .am-container .swiper-button-next:after {
  font-size: 24px;
  color: #FFFFFF;
}
#choice .f3 .am-container .swiper-pagination {
  width: 100%;
  margin-top: 20px;
}
#choice .f3 .am-container .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: #fff;
}
#choice .f4 {
  background-size: cover;
  background-color: #f8f8f8;
}
#choice .f4 .am-container .primary-title {
  text-align: center;
}
#choice .f4 .am-container .primary-title hr {
  margin: 0 auto;
  margin-top: 15px;
}
#choice .f4 .am-container .bd {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}
#choice .f4 .am-container .bd p {
  color: #636363;
  line-height: 2;
  margin-bottom: 30px;
}
#choice .f5 {
  background-color: #fff;
}
#choice .f5 .partners .am-container .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
#choice .f5 .partners .am-container .inner .item {
  padding: 5px;
  width: 20%;
  border: 1px solid #eee;
  box-sizing: border-box;
}
#solution .f1 .am-container .inner {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
#solution .f1 .am-container .inner .item {
  width: 25%;
  position: relative;
  cursor: pointer;
  top: 0;
}
#solution .f1 .am-container .inner .item .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.79;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  display: flex;
  align-items: flex-end;
  padding: 0 35px;
}
#solution .f1 .am-container .inner .item .cover .primary-title h2 {
  font-size: 18px;
  color: #fff;
}
#solution .f1 .am-container .inner .item .cover .primary-title hr {
  width: 20px;
  border-color: #49D6FF;
}
#solution .f1 .am-container .inner .item .cover p {
  color: #d6d6d6;
  min-height: 100px;
}
#solution .f1 .am-container .inner .item:hover {
  box-shadow: 2px 7px 15px rgba(0, 65, 255, 0.3);
  top: -10px;
}
#solution .f1 .am-container .inner .item:hover .cover {
  background-image: linear-gradient(180deg, rgba(17, 77, 152, 0) 21%, #124D98 100%);
}
#solution .f1 .am-container .inner .item:hover .cover p {
  color: #fff;
}
#solution .f2 {
  background-image: url(../img/hhbg.jpg);
  background-size: cover;
  background-color: #f8f8f8;
}
#solution .f2 .am-container .inner {
  margin-top: 40px;
}
#solution .f2 .am-container .inner .min-title {
  margin-top: 20px;
}
#solution .f2 .am-container .inner .min-title span {
  font-size: 16px;
  color: #636363;
  letter-spacing: 1px;
  padding-right: 10px;
}
#solution .f2 .am-container .inner .min-title span:not(:first-of-type) {
  border-left: 1px solid #636363;
  padding-left: 15px;
}
#solution .f2 .am-container .inner .group {
  margin-top: 60px;
}
#solution .f2 .am-container .inner .group .bd {
  display: flex;
  margin-top: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
#solution .f2 .am-container .inner .group .bd .item {
  width: 33.333%;
  padding: 0 20px;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 60px 40px;
  background: #FFFFFF;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  position: relative;
  justify-content: center;
  top: 0;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd .icon {
  width: 45px;
  height: 45px;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 9;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd img {
  width: 45px;
  position: relative;
  z-index: 2;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd .primary-title {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd .primary-title h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd .primary-title hr {
  width: 22px;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd p {
  position: relative;
  z-index: 2;
  line-height: 2;
  color: #898989;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd .cover {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd:hover {
  top: -10px;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd:hover i {
  color: #fff;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd:hover .cover {
  background: rgba(17, 77, 152, 0.7);
}
#solution .f2 .am-container .inner .group .bd .item .item-bd:hover p {
  color: #fff;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd:hover .primary-title h2 {
  color: #fff;
}
#solution .f2 .am-container .inner .group .bd .item .item-bd:hover .primary-title hr {
  border-color: #49D6FF;
}
#solution .f2 .am-container .inner .group .bd .item:nth-child(1) .item-bd .icon {
  background-image: url(../img/j1.png);
}
#solution .f2 .am-container .inner .group .bd .item:nth-child(1):hover .icon {
  background-image: url(../img/j1-1.png);
}
#solution .f2 .am-container .inner .group .bd .item:nth-child(2) .item-bd .icon {
  background-image: url(../img/j2.png);
}
#solution .f2 .am-container .inner .group .bd .item:nth-child(2):hover .icon {
  background-image: url(../img/j2-1.png);
}
#solution .f2 .am-container .inner .group .bd .item:nth-child(3) .item-bd .icon {
  background-image: url(../img/j3.png);
}
#solution .f2 .am-container .inner .group .bd .item:nth-child(3):hover .icon {
  background-image: url(../img/j3-1.png);
}
#solution .f2 .am-container .inner .group2 {
  margin-top: 60px;
}
#solution .f2 .am-container .inner .group2 .bd {
  margin: 0;
  margin-top: 40px;
  display: flex;
}
#solution .f2 .am-container .inner .group2 .bd .left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 55%;
  padding: 0 30px;
  background-color: #fff;
}
#solution .f2 .am-container .inner .group2 .bd .left .title img {
  width: 40px;
}
#solution .f2 .am-container .inner .group2 .bd .left .title i {
  font-size: 35px;
  color: #636363;
}
#solution .f2 .am-container .inner .group2 .bd .left .title hr {
  width: 20px;
  border-top: 2px solid #124D98;
}
#solution .f2 .am-container .inner .group2 .bd .left ul {
  padding-left: 1.5rem;
}
#solution .f2 .am-container .inner .group2 .bd .left ul li {
  line-height: 2;
}
#solution .f2 .am-container .inner .group2 .bd .right {
  width: 45%;
  padding-left: 40px;
}
#solution .f2 .am-container .inner .group2:nth-child(odd) .bd {
  flex-direction: row-reverse;
}
#solution .f2 .am-container .inner .group2:nth-child(odd) .bd .right {
  padding-left: 0;
  padding-right: 40px;
}
#solution .f2 .am-container .inner .group2.c2 .bd .left {
  width: 45%;
}
#solution .f2 .am-container .inner .group2.c2 .bd .right {
  width: 55%;
}
#solution .f2 .am-container .inner .group2.c3 .bd .left {
  width: 45%;
}
#solution .f2 .am-container .inner .group2.c3 .bd .right {
  width: 55%;
}
#transport .banner {
  background-position: center bottom;
}
#transport .f1 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f7f9fa;
  position: relative;
}
#transport .f1 > img {
  height: 70%;
  position: absolute;
  right: -10px;
  top: 50%;
  opacity: 0.15;
  transform: translateY(-50%);
}
#transport .f1 h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #124D98;
  margin-bottom: 40px;
  text-align: center;
}
#transport .f1 .am-container .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1120px;
}
#transport .f1 .am-container .inner .left {
  width: 50%;
  padding-right: 20px;
  border-right: 1px solid #eee;
}
#transport .f1 .am-container .inner .right {
  width: 50%;
  padding-left: 40px;
}
#transport .f2 {
  background-color: #FFFFFF;
}
#transport .f2 .am-container .primary-title {
  margin-bottom: 50px;
  text-align: center;
}
#transport .f2 .am-container .primary-title hr {
  margin: 0 auto;
}
#transport .f2 .am-container .inner {
  display: flex;
  flex-direction: row;
}
#transport .f2 .am-container .inner .item {
  padding: 0 20px;
  width: 50%;
  position: relative;
  top: 0;
  cursor: pointer;
}
#transport .f2 .am-container .inner .item .item-bd {
  background: #FFFFFF;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
}
#transport .f2 .am-container .inner .item .item-bd .bot {
  background-color: #FFFFFF;
  padding: 30px 40px;
}
#transport .f2 .am-container .inner .item .item-bd .bot p {
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
}
#transport .f2 .am-container .inner .item .item-bd .bot p::before {
  content: '';
  margin-right: 10px;
  position: relative;
  display: inline-block;
  width: 1px ;
  height: 50px;
  background-color: #124D98;
}
#transport .f2 .am-container .inner .item:hover {
  top: -10px;
}
#transport .f2 .am-container .inner .item:hover .item-bd {
  box-shadow: 0 5px 24px 0 rgba(17, 77, 152, 0.1);
}
#transport .f3 {
  background-size: cover;
  background-position: center;
}
#transport .f3 .am-container .primary-title {
  text-align: center;
}
#transport .f3 .am-container .primary-title h2 {
  color: #FFFFFF;
}
#transport .f3 .am-container .primary-title h3 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}
#transport .f3 .am-container .primary-title hr {
  margin: 0 auto;
}
#transport .f3 .am-container .inner {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
}
#transport .f3 .am-container .inner .item {
  width: 50%;
  color: #FFFFFF;
  text-align: center;
}
#transport .f3 .am-container .inner .item img {
  width: 72px;
  margin-bottom: 15px;
}
#transport .f4 {
  background-size: cover;
  background-position: center bottom;
}
#transport .f4 .am-container .primary-title {
  text-align: center;
}
#transport .f4 .am-container .primary-title hr {
  margin: 0 auto;
}
#transport .f4 .inner {
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: -200px;
}
#transport .f4 .inner .container {
  width: 83%;
  padding-left: 80px;
  position: relative;
}
#transport .f4 .inner .container .swiper-button-prev {
  outline: none;
  position: absolute;
  left: 0;
}
#transport .f4 .inner .container .swiper-button-prev::after {
  display: none;
}
#transport .f4 .inner .container .swiper-button-prev img {
  height: 40px;
}
#transport .f4 .inner .container .ts_slider {
  position: relative;
  width: 100%;
  margin: 0;
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  background: #FFFFFF;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  height: 400px;
  padding: 0 30px;
  padding-top: 60px;
  cursor: pointer;
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide .item-bd .primary-title .icon {
  width: 42px;
  height: 42px;
  background-size: contain;
  background-position: center;
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide .item-bd .primary-title .icon.i1 {
  background-image: url(../img/yl1.png);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide .item-bd .primary-title .icon.i2 {
  background-image: url(../img/yl2.png);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide .item-bd .primary-title .icon.i3 {
  background-image: url(../img/yl3.png);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide .item-bd .primary-title .icon.i4 {
  background-image: url(../img/yl4.png);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide .item-bd .primary-title hr {
  width: 30%;
  border-width: 1px;
  margin-top: 20px;
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide .item-bd .primary-title h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 400;
  color: #124D98;
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide .item-bd p {
  color: #636363;
  font-size: 16px;
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active {
  background-color: rgba(18, 77, 152, 0.9);
  background-image: url(../img/slbg.jpg);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active .item-bd .primary-title .icon.i1 {
  background-image: url(../img/yl1-1.png);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active .item-bd .primary-title .icon.i2 {
  background-image: url(../img/yl2-1.png);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active .item-bd .primary-title .icon.i3 {
  background-image: url(../img/yl3-1.png);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active .item-bd .primary-title .icon.i4 {
  background-image: url(../img/yl4-1.png);
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active .item-bd .primary-title h3,
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active .item-bd .primary-title h2 {
  color: #FFFFFF;
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active .item-bd .primary-title hr {
  border-color: #fff;
}
#transport .f4 .inner .container .ts_slider .swiper-wrapper .swiper-slide.swiper-slide-active .item-bd p {
  color: #FFFFFF;
}
#transport .f5 {
  padding-top: 240px;
}
#transport .f5 .am-container .primary-title {
  text-align: center;
}
#transport .f5 .am-container .primary-title hr {
  margin: 0 auto;
}
#transport .f5 .am-container .inner {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
#transport .f5 .am-container .inner .item {
  padding: 0 10px;
  width: 50%;
  margin-bottom: 30px;
  cursor: pointer;
  position: relative;
  top: 0;
}
#transport .f5 .am-container .inner .item:hover {
  top: -10px;
}
#transport .f5 .am-container .inner .item .item-bd {
  background: #FFFFFF;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
}
#transport .f5 .am-container .inner .item .item-bd .bot {
  background-color: #fff;
  height: 110px;
  display: flex;
  text-align: center;
  align-items: center;
  padding: 0 20px;
}
#transport .f5 .am-container .inner .item .item-bd .bot img {
  width: 40px;
  margin: 0 auto;
}
#transport .f5 .am-container .inner .item .item-bd .bot p {
  margin-bottom: 0;
  font-size: 14px;
}
#transport .f5 .am-container .inner .item .item-bd .bot .left {
  width: 40%;
}
#transport .f5 .am-container .inner .item .item-bd .bot .right {
  width: 60%;
  border-left: 1px solid #eee;
}
#transport .f6 {
  display: flex;
  align-items: stretch;
  background-color: #fff;
}
#transport .f6 .left {
  width: 50%;
}
#transport .f6 .right {
  background-image: url(../img/yy.jpg);
  background-size: cover;
  width: 50%;
  display: flex;
  align-items: center;
  padding-left: 60px;
}
#transport .f6 .right ul li {
  line-height: 2;
  color: #636363;
}
#cross .banner {
  height: 550px;
}
#cross .banner h2 {
  margin-top: -50px;
}
#cross .f1 {
  margin-top: -150px;
  padding-bottom: 80px;
}
#cross .f1 .am-container {
  padding: 0;
}
#cross .f1 .am-container .inner {
  display: flex;
  flex-direction: row;
  background: #FFFFFF;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  overflow: hidden;
}
#cross .f1 .am-container .inner .left {
  width: 60%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#cross .f1 .am-container .inner .left p {
  margin: 0;
}
#cross .f1 .am-container .inner .left p:first-child {
  margin-bottom: 20px;
}
#cross .f1 .am-container .inner .right {
  width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
#cross .f2 {
  background-image: url(../img/lbg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right -50px;
  background-color: #FFFFFF;
}
#cross .f2 .am-container {
  display: flex;
  flex-direction: row;
}
#cross .f2 .am-container .left {
  width: 40%;
}
#cross .f2 .am-container .right {
  width: 60%;
  padding-left: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#cross .f2 .am-container .right .inner .bd {
  margin-top: 30px;
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
#cross .f2 .am-container .right .inner .bd .item {
  position: relative;
  margin-bottom: 30px;
  height: 60px;
  width: 280px;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
}
#cross .f2 .am-container .right .inner .bd .item img {
  height: 40px;
  margin-right: 10px;
}
#cross .f3 {
  background-size: cover;
  background-position: center;
}
#cross .f3 .am-container .primary-title h2 {
  color: #FFFFFF;
}
#cross .f3 .am-container .primary-title hr {
  border-color: #FFFFFF;
}
#cross .f3 .am-container .inner {
  display: flex;
  margin-top: 60px;
  margin-left: -20px;
  margin-right: -20px;
}
#cross .f3 .am-container .inner .item {
  width: 25%;
  padding: 0 20px;
}
#cross .f3 .am-container .inner .item h3 {
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}
#cross .f3 .am-container .inner .item hr {
  width: 10px;
  margin-top: 0;
}
#cross .f3 .am-container .inner .item p {
  color: #fff;
}
#cross .f3 .am-container .cc {
  margin-top: 30px;
  text-align: center;
}
#cross .f3 .am-container .cc img {
  height: 84px;
  margin: 0 auto;
}
#cross .f4 .am-container .inner {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
#cross .f4 .am-container .inner .item {
  width: 33.333%;
  padding: 0 20px;
  margin-bottom: 40px;
}
#cross .f4 .am-container .inner .item .item-bd {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #FFFFFF;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.03);
  position: relative;
  top: 0;
}
#cross .f4 .am-container .inner .item .item-bd .top {
  position: relative;
}
#cross .f4 .am-container .inner .item .item-bd .top .cover {
  background-color: rgba(17, 77, 152, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#cross .f4 .am-container .inner .item .item-bd .top .cover .bd {
  position: absolute;
  bottom: 10px;
  left: 40px;
}
#cross .f4 .am-container .inner .item .item-bd .top .cover .bd hr {
  width: 15px;
  border-color: #49D6FF;
  margin-bottom: 0;
  border-width: 2px;
}
#cross .f4 .am-container .inner .item .item-bd .top .cover .bd h3 {
  color: #fff;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
}
#cross .f4 .am-container .inner .item .item-bd .bot {
  padding: 20px 30px;
  background-color: #FFFFFF;
}
#cross .f4 .am-container .inner .item .item-bd .bot h3 {
  font-size: 18px;
  font-weight: 400;
  color: #636363;
  position: relative;
}
#cross .f4 .am-container .inner .item .item-bd .bot p {
  margin-bottom: 0;
  color: #9F9F9F;
  font-size: 14px;
}
#cross .f4 .am-container .inner .item .item-bd:hover {
  top: -10px;
  box-shadow: 0 5px 24px 0 rgba(17, 77, 152, 0.1);
}
#cross .f4 .am-container .inner .item .item-bd:hover .top .cover {
  opacity: 1;
}
#cross .f4 .am-container .inner .item .item-bd:hover .bot h3 {
  color: #000;
}
#cross .f4 .am-container .inner .item .item-bd:hover .bot h3::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #49D6FF;
  border-radius: 20px;
  display: inline-block;
  position: absolute;
  top: 12px;
  left: -8px;
}
#cross .f4 .am-container .inner .item .item-bd:hover .bot p {
  color: #636363;
}
#product .banner {
  height: 100vh;
  background-position: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
#product .banner .primary-btn {
  text-align: center;
}
#product .banner .primary-btn a {
  width: 150px;
  height: 45px;
  line-height: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  border: 1px solid #FFFFFF;
}
#product .banner .primary-btn a span {
  display: block;
}
#product .banner .primary-btn a::before {
  background-color: rgba(255, 255, 255, 0.8);
}
#product .banner .primary-btn a:hover {
  color: #124D98 !important;
}
#product .banner h2 {
  margin-top: -100px;
}
#product .banner .slogan {
  width: 100%;
  position: absolute;
  text-align: center;
  color: #FFFFFF;
  bottom: 80px;
}
#product .banner .slogan span {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
}
#product .f1 .am-container .primary-title {
  text-align: center;
}
#product .f1 .am-container .primary-title hr {
  margin: 0 auto;
}
#product .f1 .am-container .inner {
  margin-top: 50px;
  text-align: center;
}
#product .f1 .am-container .inner p {
  margin: 0 auto;
  max-width: 500px;
}
#product .f2 {
  background-color: #f2f2f2;
  padding-bottom: 40px;
}
#product .f2 .am-container .inner {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
#product .f2 .am-container .inner .item {
  width: 50%;
  padding: 0 20px;
  margin-bottom: 40px;
}
#product .f2 .am-container .inner .item .item-bd .top {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0 5px 24px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
#product .f2 .am-container .inner .item .item-bd .top .tt {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
#product .f2 .am-container .inner .item .item-bd .top .tt .cover {
  width: 100%;
  height: 100%;
  background-color: rgba(17, 77, 152, 0.8);
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  display: none;
}
#product .f2 .am-container .inner .item .item-bd .top .tt .cover .mid {
  width: 75px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 75px;
  border-radius: 100px;
  position: relative;
}
#product .f2 .am-container .inner .item .item-bd .top .tt .cover .mid::before {
  content: '';
  height: 5px;
  width: 5px;
  border-radius: 10px;
  background-color: #49D6FF;
  position: absolute;
  right: 10px;
  top: 5px;
}
#product .f2 .am-container .inner .item .item-bd .top .tt .cover .mid i {
  color: #FFFFFF;
  font-size: 40px;
}
#product .f2 .am-container .inner .item .item-bd .top h2 {
  display: none;
  opacity: 0;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  position: absolute;
  left: -14px;
  top: 10%;
  z-index: 2;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-align: justify;
  text-shadow: 0 2px 14px rgba(17, 77, 152, 0.38);
}
#product .f2 .am-container .inner .item .item-bd:hover .top {
  box-shadow: 0 5px 24px 0 rgba(17, 77, 152, 0.1);
}
#product .f2 .am-container .inner .item .item-bd:hover .top .cover {
  opacity: 1;
}
#product .f2 .am-container .inner .item .item-bd:hover .top h2 {
  opacity: 1;
}
#product .f2 .am-container .inner .item .item-bd .bot {
  margin-top: 20px;
}
#product .f2 .am-container .inner .item .item-bd .bot .primary-title h2 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0;
}
#product .f2 .am-container .inner .item .item-bd .bot .primary-title hr {
  width: 15px;
}
#product .f3 {
  background-size: cover;
  background-position: center;
}
#product .f3 .am-container .primary-title {
  text-align: center;
}
#product .f3 .am-container .primary-title hr {
  margin: 0 auto;
}
#product .f3 .am-container .inner {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}
#product .f3 .am-container .inner .item {
  width: 25%;
  padding: 0 10px;
}
#product .f3 .am-container .inner .item .item-bd {
  border-radius: 4px;
  cursor: pointer;
  padding: 40px 25px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-items: center;
  vertical-align: middle;
  position: relative;
  top: 0;
}
#product .f3 .am-container .inner .item .item-bd .icon {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center;
}
#product .f3 .am-container .inner .item .item-bd .icon.i1 {
  background-image: url(../img/xz1.png);
}
#product .f3 .am-container .inner .item .item-bd .icon.i2 {
  background-image: url(../img/xz2.png);
}
#product .f3 .am-container .inner .item .item-bd .icon.i3 {
  background-image: url(../img/xz3.png);
}
#product .f3 .am-container .inner .item .item-bd .icon.i4 {
  background-image: url(../img/xz4.png);
}
#product .f3 .am-container .inner .item .item-bd hr {
  width: 60px;
  border-color: #124D98;
  margin-bottom: 0;
}
#product .f3 .am-container .inner .item .item-bd h2 {
  font-size: 30px;
  font-weight: 400;
  margin-top: 15px;
}
#product .f3 .am-container .inner .item .item-bd p {
  font-size: 14px;
  color: #000000;
  min-height: 50px ;
}
#product .f3 .am-container .inner .item .item-bd:hover {
  top: -10px;
  background-color: #1853FE;
}
#product .f3 .am-container .inner .item .item-bd:hover .icon.i1 {
  background-image: url(../img/xz1-1.png);
}
#product .f3 .am-container .inner .item .item-bd:hover .icon.i2 {
  background-image: url(../img/xz2-1.png);
}
#product .f3 .am-container .inner .item .item-bd:hover .icon.i3 {
  background-image: url(../img/xz3-1.png);
}
#product .f3 .am-container .inner .item .item-bd:hover .icon.i4 {
  background-image: url(../img/xz4-1.png);
}
#product .f3 .am-container .inner .item .item-bd:hover hr {
  border-color: #FFFFFF;
}
#product .f3 .am-container .inner .item .item-bd:hover h2 {
  color: #fff;
}
#product .f3 .am-container .inner .item .item-bd:hover p {
  color: #fff;
}
#product .f4 {
  background-size: cover;
  background-position: center;
}
#product .f4 .am-container .primary-title {
  text-align: center;
}
#product .f4 .am-container .primary-title hr {
  margin: 0 auto;
}
#product .f4 .am-container .primary-title h2 {
  color: #FFFFFF;
}
#product .f4 .am-container .primary-title h3 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}
#product .f4 .am-container .inner {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#product .f4 .am-container .inner .item {
  width: 25%;
  padding: 0 20px;
  color: #FFFFFF;
  text-align: center;
}
#product .f4 .am-container .inner .item img {
  width: 80px;
  margin-bottom: 15px;
}
#product .f4.f4_1 .am-container .inner .item {
  width: 33.333%;
}
#product .f5 {
  background-size: cover;
}
#product .f5 .am-container {
  max-width: 850px;
}
#product .f5 .am-container .inner {
  display: flex;
  align-items: center;
}
#product .f5 .am-container .inner .left {
  padding: 60px;
  width: 60%;
  background: #FFFFFF;
  box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
#product .f5 .am-container .inner .left form label {
  font-size: 14px;
  font-weight: normal;
  color: #676767;
}
#product .f5 .am-container .inner .left form .am-form-group {
  margin-bottom: 20px;
}
#product .f5 .am-container .inner .left form .am-form-group input {
  font-size: 15px;
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  padding-left: 0;
}
#product .f5 .am-container .inner .left form .am-form-group input:focus {
  background: none;
  box-shadow: none;
}
#product .f5 .am-container .inner .left form .am-form-group textarea {
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  padding-left: 0;
}
#product .f5 .am-container .inner .left form .am-form-group textarea:focus {
  background: none;
  box-shadow: none;
}
#product .f5 .am-container .inner .right {
  width: 40%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
#product .f5 .am-container .inner .right .primary-title {
  margin-bottom: 30px;
}
#product .f5 .am-container .inner .right .bd .qr_code {
  width: 150px;
  margin-top: 30px;
  margin-bottom: 30px;
}
#contact .f1 {
  background-size: cover;
  background-position: center;
}
#contact .f1 .am-container {
  max-width: 1024px;
}
#contact .f1 .am-container .inner {
  padding: 40px;
  background: #FFFFFF;
  box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}
#contact .f1 .am-container .inner form label {
  font-size: 16px;
  font-weight: normal;
  color: #676767;
}
#contact .f1 .am-container .inner form label.am-radio-inline {
  font-size: 14px;
}
#contact .f1 .am-container .inner form label.am-checkbox-inline {
  font-size: 14px;
}
#contact .f1 .am-container .inner form fieldset {
  margin: 0;
  padding: 0;
}
#contact .f1 .am-container .inner form fieldset .am-form-group {
  margin-bottom: 40px;
  width: 50%;
  float: left;
  padding: 0 20px;
  position: relative;
}
#contact .f1 .am-container .inner form fieldset .am-form-group.full {
  width: 100%;
}
#contact .f1 .am-container .inner form fieldset .am-form-group input {
  font-size: 14px;
  background: none;
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  padding-left: 0;
}
#contact .f1 .am-container .inner form fieldset .am-form-group input:focus {
  background: none;
  box-shadow: none;
}
#contact .f1 .am-container .inner form fieldset .am-form-group textarea {
  background: none;
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  padding-left: 0;
}
#contact .f1 .am-container .inner form fieldset .am-form-group textarea:focus {
  background: none;
  box-shadow: none;
}
#contact .f1 .am-container .inner form fieldset .am-form-group .am-checkbox-inline {
  width: 48%;
  margin: 0;
  margin-bottom: 10px;
}
#contact .f1 .am-container .inner form fieldset .am-form-group .am-checkbox-inline input:focus {
  background: none;
  box-shadow: none;
}
#contact .f1 .am-container .inner form fieldset .am-form-group .other {
  width: 100%;
}
#contact .f1 .am-container .inner form fieldset .am-form-group .other .t1 {
  width: 50px !important;
}
#contact .f1 .am-container .inner form fieldset .am-form-group .other .t2 {
  width: 80%;
}
#contact .f1 .am-container .inner form fieldset .submit {
  margin-top: 30px;
  text-align: center;
}
#page .f1 .am-container h2 {
  margin-top: 0;
  margin-bottom: 30px;
}
#page .f1 .am-container h4 {
  margin-bottom: 0;
  margin-top: 10px;
}
#page .f1 .am-container p {
  text-align: left;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 15px;
  margin-top: 10px;
}
footer {
  padding-top: 80px;
  background-image: url(../img/fbg.jpg);
  background-size: cover;
  background-position: center;
  background-color: #0b374b;
  position: relative;
}
footer .am-container .inner {
  overflow: hidden;
  margin-bottom: 70px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
footer .am-container .inner .left {
  width: 100%;
  margin-bottom: 30px;
}
footer .am-container .inner .left img {
  width: 120px;
}
footer .am-container .inner .mid {
  width: 80%;
  display: flex;
  justify-content: space-between;
}
footer .am-container .inner .mid .lx {
  position: relative;
  width: 33.333%;
}
footer .am-container .inner .mid .lx h3 {
  margin-bottom: 25px;
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  position: relative;
}
footer .am-container .inner .mid .lx h3:after {
  display: block;
  content: "";
  width: 50%;
  height: 1px;
  background-color: #979797;
  position: absolute;
  bottom: -15px;
  z-index: 1;
}
footer .am-container .inner .mid .lx h3:before {
  display: block;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -15px;
  z-index: 2;
}
footer .am-container .inner .mid .lx .bd ul {
  margin: 0;
  padding: 0;
}
footer .am-container .inner .mid .lx .bd ul li {
  list-style-type: none;
  color: #ababab;
}
footer .am-container .inner .mid .lx .bd ul li a {
  color: #a0b7d5;
  font-size: 14px;
  line-height: 2;
  position: relative;
  padding-bottom: 4px;
}
footer .am-container .inner .mid .lx .bd ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
}
footer .am-container .inner .mid .lx .bd ul li a:hover {
  color: #fff;
}
footer .am-container .inner .mid .lx .bd ul li a:hover::after {
  width: 100%;
}
footer .am-container .inner .right {
  width: 20%;
}
footer .am-container .inner .right .bd .social .am-icon-btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border-radius: 4px;
  margin: 0 2px;
}
footer .am-container .inner .right .bd .contact {
  margin-top: 20px;
}
footer .am-container .inner .right .bd .contact p {
  font-size: 14px;
  color: #ddd;
}
footer .am-container .inner .right .bd .contact p a {
  color: #a0b7d5;
}
footer .cop {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px 0;
}
footer .cop .am-container {
  text-align: center;
}
footer .cop .am-container p {
  font-size: 13px;
  color: #a2a2a2;
  margin-bottom: 0;
}
footer .cop .am-container a {
  color: #a2a2a2;
  font-size: 13px;
}
footer .cop .am-container a i {
  font-size: 16px;
}
footer .gotop {
  top: -20px;
  border-radius: 2px;
  overflow: hidden;
  right: 10%;
  position: absolute;
  color: #fff;
}
footer .gotop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #0097A0;
}
footer .gotop a:hover {
  background-color: #03777d;
}
