.header {
  position: sticky;
  top: 0;
  background: #FFF;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px;
}
.header .logo img {
  width: 182pX;
}
.header .header-row {
  position: relative;
  height: 100px;
  width: 1200px;
  margin: 0 auto;
  --box-height:60px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .header .header-row {
    margin: 0 10px;
    width: auto;
  }
}
@media (max-width: 950px) {
  .header .header-row {
    margin: 0 10px;
    width: auto;
  }
}
@media (max-width: 400px) {
  .header .header-row {
    margin: 0 10px;
    height: 60px;
  }
}
.header .header-row .main-menu-nav {
  position: relative;
  height: 100%;
}
@media (max-width: 950px) {
  .header .header-row .main-menu-nav {
    display: none;
  }
}
.header .header-row .lang {
  display: none;
  position: absolute;
  top: 120px;
  right: -37px;
  width: 105px;
  height: 77px;
  background: #FFF;
  border-radius: 5px;
}
.header .header-row .lang::before {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  content: "";
  border: 10px solid #FFF;
  border-color: transparent;
  border-bottom-color: #FFF;
}
.header .header-row .lang p {
  cursor: pointer;
  text-align: center;
  line-height: 38px;
  border-bottom: 1px solid #dcdcdc;
}
.header .header-row .lang p:nth-of-type(2) {
  border-bottom: none;
}
.header .header-row .pc-search-box {
  display: none;
  position: absolute;
  width: 100%;
  margin: 0;
}
@keyframes search {
  from {
    top: 50px;
  }
  to {
    top: 0;
  }
}
.header .header-row .pc-search-box-show {
  display: block;
  animation: 0.5s search;
  animation-fill-mode: forwards;
}
.header .header-row .search-box {
  margin: 15px 0;
  margin-left: 50px;
  height: var(--box-height);
  background: #FFF;
}
.header .header-row .search-box form {
  width: 100%;
}
.header .header-row .search-box .input {
  border: 1px solid #d2d2d2;
  width: calc(100% - 30px - 50px);
  height: 30px;
  outline: none;
}
.header .header-row .search-box .btn {
  cursor: pointer;
  width: 30px;
  height: 28px;
  border: 1px solid #000;
  color: #FFF;
  font-size: 20px;
  outline: none;
  background: #000;
  text-align: center;
}
.header .header-row .search-box .clear {
  cursor: pointer;
  padding: 20px;
  margin-left: 10px;
}
.header .header-row .search-box .clear .iconfont {
  font-size: 12px;
}
.header .header-row .main-menu {
  height: 100%;
  transition: all 0.5s;
}
.header .header-row .main-menu .main-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 16px;
  margin-left: 50px;
  padding: 25px 0;
  cursor: pointer;
  overflow: visible;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .header .header-row .main-menu .main-menu-item {
    margin-left: 20px;
  }
}
.header .header-row .main-menu .main-menu-item a {
  display: block;
  display: flex;
  align-items: center;
  height: 100%;
}
.header .header-row .main-menu .main-menu-item:hover .children {
  display: block;
}
.header .header-row .main-menu .main-menu-item:hover a {
  color: #0fa9ee;
}
.header .header-row .main-menu .main-menu-item img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.header .header-row .main-menu .main-menu-item .children {
  position: absolute;
  left: 0;
  margin-top: 344px;
  width: 200px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
  display: none;
}
.header .header-row .main-menu .main-menu-item .children p {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0 10px;
  border-bottom: 1px #eaf7fd solid;
  background: #f5fbfe;
}
.header .header-row .main-menu .main-menu-item .children p:hover {
  background: #FFF;
}
.header .header-row .main-menu .main-menu-item .children a {
  display: block;
  color: #3e3934;
  line-height: 60px;
  font-size: 13px;
}
.header .header-row .main-menu .main-menu-item .children a::before {
  display: none !important;
}
.header .header-row .main-menu .active a {
  color: #0fa9ee;
}
.header .header-row .main-menu .active a::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: #0fa9ee;
  transform: translate(-50%, -50%);
}
.header .header-row .main-mobile-menu {
  display: none;
}
@media (max-width: 950px) {
  .header .header-row .main-mobile-menu {
    display: block;
  }
}
.header .header-row .main-mobile-menu .icon-item {
  cursor: pointer;
  margin-right: 10px;
  padding: 10px;
}
.header .header-row .main-mobile-menu .iconfont {
  font-size: 20px;
  color: #0d668e;
}
.header .header-row .main-mobile-menu .main-mobile-menu-nav {
  display: none;
  position: fixed;
  left: 0;
  top: 100px;
  background: #f6f6f6;
  width: 100%;
  height: 100%;
}
@media (max-width: 400px) {
  .header .header-row .main-mobile-menu .main-mobile-menu-nav {
    top: 60px;
  }
}
.header .header-row .main-mobile-menu .main-mobile-menu-nav li {
  position: relative;
  border-bottom: 1px solid #dadada;
}
.header .header-row .main-mobile-menu .main-mobile-menu-nav li .xia {
  cursor: pointer;
  font-size: 16px;
  outline: none;
  border: none;
  background: transparent;
  width: 35px;
  height: 50px;
  position: absolute;
  right: 7px;
  z-index: 9;
  top: 0;
}
.header .header-row .main-mobile-menu .main-mobile-menu-nav li a {
  padding: 5px 12px 5px 30px;
  color: #333;
  font-size: 14px;
  display: block;
  line-height: 35px;
}
.header .header-row .main-mobile-menu .children {
  display: none;
}
.header .header-row .mobile-search-box {
  height: 50px;
  display: none;
  justify-content: center;
  position: fixed;
  text-align: center;
  top: 100px;
  background: #FFF;
  left: 0;
  margin: 0;
  width: 100%;
}
@media (max-width: 400px) {
  .header .header-row .mobile-search-box {
    top: 60px;
  }
}
.header .header-row .mobile-search-box .input {
  height: 30px;
}

footer.footer {
  padding-top: 30px;
  width: 100%;
  height: 400px;
  background: #0a2c45;
}
@media (max-width: 950px) {
  footer.footer {
    height: auto;
  }
}
footer.footer .content {
  width: 1200px;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 950px) and (max-width: 1200px) {
  footer.footer .content {
    width: 850px;
  }
}
@media (max-width: 950px) {
  footer.footer .content {
    width: 80%;
    padding-bottom: 40px;
    margin: 0 auto;
    flex-direction: column;
  }
}
footer.footer .content .box {
  width: 380px;
  color: #b4e7ff;
  font-size: 16px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  footer.footer .content .box {
    width: 270px;
  }
}
@media (max-width: 950px) {
  footer.footer .content .box {
    width: 100%;
  }
}
footer.footer .content .box .tit {
  padding: 15px 0;
  font-size: 24px;
  color: #0fa9ee;
  border-bottom: 2px solid #0fa9ee;
}
footer.footer .content .box .national-flag {
  margin: 20px 0 15px;
}
footer.footer .content .box .national-flag img {
  margin-right: 10px;
}
footer.footer .content .box .contact {
  margin: 20px 0;
  font-family: "ali", serif;
}
footer.footer .content .box .link {
  margin-top: 83px;
}
footer.footer .content .box .link li {
  margin: 1em 0;
}
footer.footer .content .box .link a {
  color: #b4e7ff;
}
footer.footer .content .box .social {
  margin-top: 83px;
}
footer.footer .content .box .social span {
  display: inline-block;
  margin-right: 10px;
  font-size: 50px;
  margin-bottom: 20px;
  color: #0fa9ee;
}

.copyright {
  flex-wrap: wrap;
  position: relative;
  color: #b4e7ff;
  font-size: 16px;
  text-align: center;
  height: 61px;
  background: #07253b;
}
@media (max-width: 950px) {
  .copyright {
    font-size: 12px;
  }
}
.copyright .shu {
  margin: 0 10px;
}
.copyright .link {
  color: #b4e7ff;
  margin-left: 5px;
  font-size: 16px;
}
.copyright .link:hover {
  color: #0fa9ee;
}
.copyright .up {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 20%;
  width: 54px;
  height: 54px;
  border-radius: 5px 5px 0 0;
  background: #0d3c5e;
  color: #FFF;
}
@media (max-width: 950px) {
  .copyright .up {
    display: none;
  }
}
.copyright .up span {
  display: block;
}

.fullwidth-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  overflow: hidden;
  height: 840px;
  width: 100%;
  background: url("../img/about-bottom.jpg") no-repeat center;
  background-size: cover;
  align-items: center;
  justify-content: center;
}
.fullwidth-box h1 {
  text-align: center;
  font-size: 60px;
  color: #FFF;
}
@media (min-width: 0) and (max-width: 1500px) {
  .fullwidth-box h1 {
    font-size: 45px;
  }
}
.fullwidth-box .desc {
  text-align: center;
  color: #FFF;
  font-size: 18px;
}
.fullwidth-box .fullwidth-swiper {
  overflow: hidden;
  margin: 100px auto 0;
  width: 1200px;
  height: 200px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .fullwidth-box .fullwidth-swiper {
    width: 850px;
  }
}
@media (max-width: 950px) {
  .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
.fullwidth-box .fullwidth-swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.fullwidth-box .fullwidth-swiper .swiper-slide img {
  width: 100%;
  margin: 0 auto;
}

.home .plate .tlt {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 950px) {
  .home .plate .tlt {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .home .plate .tlt {
    font-size: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .plate .tlt {
    font-size: 45px;
  }
}
.home .plate .tlt span {
  color: #0fa9ee;
}
.home .banner {
  position: relative;
  background: url("../img/bg.jpg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
}
@media (max-width: 950px) {
  .home .banner {
    height: calc(100vh - 100px);
  }
}
@media (max-width: 400px) {
  .home .banner {
    height: calc(100vh - 60px);
  }
}
.home .banner video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.home .banner video::-webkit-media-controls-fullscreen-button {
  display: none;
}
.home .banner video::-webkit-media-controls-play-button {
  display: none;
}
.home .banner video::-webkit-media-controls-timeline {
  display: none;
}
.home .banner video::-webkit-media-controls-current-time-display {
  display: none;
}
.home .banner video::-webkit-media-controls-time-remaining-display {
  display: none;
}
.home .banner video::-webkit-media-controls-mute-button {
  display: none;
}
.home .banner video::-webkit-media-controls-toggle-closed-captions-button {
  display: none;
}
.home .banner video::-webkit-media-controls-volume-slider {
  display: none;
}
.home .banner video::-webkit-media-controls-enclosure {
  display: none;
}
.home .banner video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none !important;
}
.home .banner .swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home .banner .box {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 1200px;
  margin: 0 auto;
  color: #FFF;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .banner .box {
    width: 950px;
  }
}
@media (max-width: 950px) {
  .home .banner .box {
    width: 100%;
    align-items: center;
  }
}
.home .banner .box .h1 {
  font-size: 100px;
  font-family: "font-blod";
  font-weight: bold;
  transition: all 0.5s;
  white-space: nowrap;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .banner .box .h1 {
    white-space: nowrap;
    font-size: 70px;
  }
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .banner .box .h1 {
    font-size: 70px;
  }
}
@media (max-width: 950px) {
  .home .banner .box .h1 {
    font-size: 30px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .home .banner .box .h1 {
    font-size: 25px;
  }
}
.home .banner .box .h2 {
  margin: 10px 0;
  font-size: 48px;
  font-family: "ali";
  transition: all 0.5s;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .banner .box .h2 {
    font-size: 30px;
  }
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .banner .box .h2 {
    font-size: 30px;
  }
}
@media (max-width: 950px) {
  .home .banner .box .h2 {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .home .banner .box .h2 {
    font-size: 16px;
  }
}
.home .banner .box p {
  line-height: 1.5;
  font-size: 18px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .banner .box p {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .home .banner .box p {
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .home .banner .box p {
    display: none;
  }
}
.home .banner .box .to {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  cursor: pointer;
  font-size: 16px;
  color: #FFF;
  background: #6f318a;
  padding: 0 20px;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 400px) {
  .home .banner .box .to {
    width: 200px;
    font-size: 12px;
  }
}
.home .banner .box .to i {
  display: flex;
  align-items: flex-end;
  padding-top: 10px;
  font-size: 30px;
}
@media (max-width: 400px) {
  .home .banner .box .to i {
    font-size: 20px;
  }
}
.home .Motron {
  padding-bottom: 80px;
}
.home .Motron .content {
  padding: 0 5%;
}
@media (max-width: 950px) {
  .home .Motron .content {
    flex-wrap: wrap;
  }
}
.home .Motron .content .item {
  position: relative;
  width: 21%;
  height: 600px;
  margin-bottom: 20px;
  background: url("../img/Reamco_Electric_Motors-16-of-45.jpg") no-repeat center;
  background-size: cover;
}
@media (max-width: 950px) {
  .home .Motron .content .item {
    width: 100%;
  }
}
.home .Motron .content .item:nth-of-type(2) {
  background-image: url("../img/Reamco_Electric_Motors-20-of-45.jpg");
}
.home .Motron .content .item:nth-of-type(3) {
  background-image: url("../img/Reamco_Electric_Motors-26-of-45.jpg");
}
.home .Motron .content .item:nth-of-type(4) {
  background-image: url("../img/capability-statorconstruction.jpg");
}
.home .Motron .content .item::before {
  display: none;
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  border: 2px solid #b4e7ff;
  z-index: 99;
  border-bottom: none;
  border-right: none;
  width: 98px;
  height: 98px;
}
.home .Motron .content .item::after {
  display: none;
  position: absolute;
  content: "";
  right: 10px;
  bottom: 10px;
  border: 2px solid #b4e7ff;
  border-left: none;
  border-top: none;
  width: 98px;
  height: 98px;
}
.home .Motron .content .item:hover .shade {
  transition: all 0.1s;
  display: block;
}
.home .Motron .content .item:hover::after {
  display: block;
}
.home .Motron .content .item:hover::before {
  display: block;
}
.home .Motron .content .item:hover .box {
  display: block;
}
.home .Motron .content .item .shade {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(8, 78, 109, 0.7);
  animation: zhang 0.5s;
}
@keyframes zhang {
  from {
    width: 0;
    height: 0;
  }
  to {
    width: 100%;
    height: 100%;
  }
}
.home .Motron .content .item .box {
  display: none;
  position: relative;
  z-index: 99;
  color: #FFF;
  text-align: center;
}
.home .Motron .content .item .box .title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 55px;
  font-weight: bold;
  white-space: pre-wrap;
}
@media screen and (max-width: 1500px) {
  .home .Motron .content .item .box .title {
    font-size: 14px;
  }
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .Motron .content .item .box .title {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .home .Motron .content .item .box .title {
    font-size: 18px;
  }
}
.home .Motron .content .item .box ul li {
  font-size: 16px;
  line-height: 26px;
}
.home .Motron .content .item .box .view {
  cursor: pointer;
  margin: 50px auto 0;
  width: 102px;
  height: 41px;
  line-height: 41px;
  background: #6f318a;
  color: #FFF;
  font-size: 18px;
}
.home .Motron .content .active .shade {
  transition: all 0.1s;
  display: block;
}
.home .Motron .content .active::after {
  display: block;
}
.home .Motron .content .active::before {
  display: block;
}
.home .Motron .content .active .box {
  display: block;
}
.home .news_Box {
  background: #eaf7fd;
}
.home .news_Box .content {
  position: relative;
  width: 1200px;
  padding: 0 0 20px;
  margin: 0 auto;
  padding-bottom: 180px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .news_Box .content {
    width: 930px;
  }
}
@media (max-width: 950px) {
  .home .news_Box .content {
    width: 100%;
    padding: 0 0 150px;
    flex-wrap: wrap;
  }
}
.home .news_Box .item {
  width: 48%;
}
@media (max-width: 950px) {
  .home .news_Box .item {
    width: 90%;
    margin: 0 auto;
  }
}
.home .news_Box .tit {
  font-size: 60px;
  font-weight: bold;
  margin: 100px 0 50px;
  color: #0b658d;
  line-height: 1.4;
}
@media (min-width: 0px) and (max-width: 1200px) {
  .home .news_Box .tit {
    font-size: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .news_Box .tit {
    font-size: 40px;
  }
}
.home .news_Box .tit .motrons {
  color: #0fa9ee;
}
.home .news_Box .Why {
  margin-right: 4%;
}
.home .news_Box .Why .box {
  font-size: 17px;
  color: #000;
  line-height: 1.5;
}
.home .news_Box .news .hot a {
  color: #000;
  font-size: 24px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .news_Box .news .hot a {
    font-size: 20px;
  }
}
.home .news_Box .news h4 {
  font-size: 16px;
  line-height: 1.5;
}
.home .news_Box .news .fusion-meta-info {
  flex-wrap: wrap;
  margin-top: 150px;
  white-space: nowrap;
  border: 1px solid #b5ddf1;
  border-left: none;
  border-right: none;
  padding: 5px 0;
  font-size: 13px;
  color: #656565;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .news_Box .news .fusion-meta-info {
    margin-top: 100px;
  }
}
@media (max-width: 950px) {
  .home .news_Box .news .fusion-meta-info {
    margin-top: 50px;
  }
}
.home .news_Box .news .fusion-meta-info .fusion-read-more {
  color: #084e6d;
  font-size: 13px;
}
.home .news_Box .news .fusion-meta-info a {
  color: #000;
}
.home .job {
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url("../img/job.jpg") no-repeat center;
  background-size: cover;
  padding: 0 20px;
}
.home .job .log {
  margin: 80px auto 10px;
  width: 158px;
}
@media (max-width: 950px) {
  .home .job .log {
    width: 100px;
  }
}
.home .job .log img {
  width: 100%;
}
.home .job .tit {
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: #FFF;
  margin-block-start: 30PX;
  margin-block-end: 20PX;
}
@media (max-width: 950px) {
  .home .job .tit {
    font-size: 20px;
  }
}
@media (min-width: 950px) and (max-width: 1500px) {
  .home .job .tit {
    font-size: 35px;
  }
}
.home .job .h3 {
  text-align: center;
  color: #FFF;
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 950px) {
  .home .job .h3 {
    font-size: 12px;
  }
}
.home .job .video {
  margin: 0 auto;
  width: 576px;
  height: 330px;
}
@media (max-width: 950px) {
  .home .job .video {
    width: auto;
    height: auto;
    margin: 0;
  }
}
.home .job .video video {
  width: 100%;
  height: 100%;
}
.home .job .emit {
  margin: 30px 0;
  background: #6f318a;
  padding: 10px 20px;
  color: #FFF;
  font-size: 18px;
}
@media (max-width: 950px) {
  .home .job .emit {
    font-size: 13px;
  }
}
.home .job .tips {
  text-align: center;
  color: #10aaef;
  font-size: 24px;
}
@media (max-width: 950px) {
  .home .job .tips {
    font-size: 15px;
  }
}
.home .cooperation {
  background: #9aacba;
  height: 260px;
  overflow: hidden;
}
.home .cooperation .cooperation-swiper {
  overflow: hidden;
  margin: 0 auto;
  width: 1200px;
  height: 100%;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .cooperation .cooperation-swiper {
    width: 850px;
  }
}
@media (max-width: 950px) {
  .home .cooperation .cooperation-swiper {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .home .cooperation .cooperation-swiper {
    width: 100%;
  }
}
.home .cooperation .cooperation-swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.home .cooperation .cooperation-swiper .swiper-slide img {
  width: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
@media (max-width: 400px) {
  .home .cooperation .cooperation-swiper .swiper-slide img {
    width: 100%;
  }
}
@media (max-width: 950px) {
  .home .cooperation .cooperation-swiper .swiper-slide img {
    width: 100%;
  }
}

.about .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .about .banner {
    top: 60px;
  }
}
.about .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .plate {
  background: #FFF;
  padding-top: 90px;
}
.about .plate .tit {
  position: relative;
  padding-bottom: 40px;
  text-align: center;
  line-height: 1.4;
  font-size: 60px;
  font-weight: bold;
  color: #0b658d;
}
@media (max-width: 950px) {
  .about .plate .tit {
    font-size: 35px;
  }
}
@media (min-width: 950px) and (max-width: 1500px) {
  .about .plate .tit {
    font-size: 45px;
  }
}
.about .plate .tit span {
  color: #0fa9ee;
}
.about .plate .tit::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 74px;
  height: 4px;
  transform: translate(-50%, 0);
  background: #0fa9ee;
}
.about .plate .tips {
  margin: 30px 0 50px;
  color: #0b658d;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 950px) {
  .about .plate .tips {
    font-size: 15px;
  }
}
.about .plate .content {
  justify-content: space-between;
  margin: 0 auto;
  width: 1200px;
  padding-bottom: 120px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .about .plate .content {
    width: 920px;
  }
}
@media (max-width: 950px) {
  .about .plate .content {
    width: auto;
    margin: 0 20px;
    flex-direction: column;
  }
}
.about .plate .content .txt {
  width: 45%;
}
@media (max-width: 950px) {
  .about .plate .content .txt {
    width: 100%;
  }
}
.about .plate .content .txt p {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}
.about .plate .content .slideshow {
  width: 45%;
  height: 20vw;
}
@media (max-width: 950px) {
  .about .plate .content .slideshow {
    width: 100%;
    height: auto;
  }
}
.about .plate .content .slideshow .control {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
.about .plate .content .slideshow .control .right {
  transform: rotate(180deg);
}
.about .plate .content .slideshow .control .every {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #858585;
  margin-left: 10px;
}
.about .plate .content .slideshow .control .every .iconfont {
  font-size: 30px;
  color: #FFF;
}
.about .plate .content .swiper {
  width: 100%;
  height: 20vw;
}
@media (max-width: 950px) {
  .about .plate .content .swiper {
    width: 100%;
    height: auto;
  }
}
.about .plate .content .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.about .plate .content .swiper .swiper-wrapper img {
  width: 100%;
  height: auto;
}
.about .fullwidth-box {
  margin-bottom: 10px;
  overflow: hidden;
  height: 840px;
  width: 100%;
  background: url("../img/about-bottom.jpg") no-repeat center;
  background-size: cover;
}
.about .fullwidth-box h1 {
  text-align: center;
  font-size: 60px;
  color: #FFF;
}
@media (min-width: 0px) and (max-width: 1500px) {
  .about .fullwidth-box h1 {
    font-size: 35px;
  }
}
.about .fullwidth-box .desc {
  text-align: center;
  color: #FFF;
  font-size: 18px;
}
.about .fullwidth-box .fullwidth-swiper {
  overflow: hidden;
  margin: 100px auto 0;
  width: 1200px;
  height: 200px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .about .fullwidth-box .fullwidth-swiper {
    width: 850px;
  }
}
@media (max-width: 950px) {
  .about .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .about .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
.about .fullwidth-box .fullwidth-swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.about .fullwidth-box .fullwidth-swiper .swiper-slide img {
  width: 100%;
  margin: 0 auto;
}

.cap .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .cap .banner {
    top: 60px;
  }
}
.cap .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cap .zls {
  padding: 90px 0 150px;
  background: #f2fbff;
  overflow: hidden;
}
@media (max-width: 950px) {
  .cap .zls {
    padding: 45px 0 75px;
    height: auto;
  }
}
.cap .zls .title {
  margin-block-start: 0;
  color: #0b658d;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .cap .zls .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .cap .zls .title {
    font-size: 40px;
  }
}
.cap .zls .fen {
  width: 74px;
  height: 4px;
  background: #0fa9ee;
  margin: 0 auto;
}
.cap .zls .desc {
  margin: 60px 0;
  font-size: 24px;
  text-align: center;
  color: #0b658d;
}
@media (max-width: 950px) {
  .cap .zls .modules {
    flex-wrap: wrap;
    padding: 0 5%;
  }
}
.cap .zls .modules .item {
  padding: 0 20px;
  width: 310px;
  height: 320px;
  background: #FFF;
  border-radius: 6px;
  margin-right: 47px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .cap .zls .modules .item {
    width: 250px;
  }
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .modules .item {
    width: 210px;
    height: auto;
  }
}
@media (max-width: 950px) {
  .cap .zls .modules .item {
    width: 80%;
    height: auto;
    margin-right: 0;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.cap .zls .modules .item:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
}
.cap .zls .modules .item:hover ul li {
  color: #0fa9ee;
}
.cap .zls .modules .item:nth-of-type(4) {
  margin-right: 0;
}
.cap .zls .modules .item .tit {
  color: #0a2c45;
  font-size: 24px;
}
.cap .zls .modules .item ul {
  color: #0b658d;
  font-size: 16px;
}
.cap .zls .modules .item ul li {
  line-height: 1.8;
}
.cap .zls .swiper {
  width: 1200px;
  margin: 0 auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .swiper {
    width: auto;
    margin: 0 30px;
  }
}
@media (max-width: 950px) {
  .cap .zls .swiper {
    width: auto;
    margin: 0 30px;
  }
}
.cap .zls .swiper .swiper-button-next, .cap .zls .swiper .swiper-button-prev {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 10;
  justify-content: center;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.6);
  top: 50%;
  transition: all 0.3s ease;
}
.cap .zls .swiper .swiper-button-next::after, .cap .zls .swiper .swiper-button-prev::after {
  font-size: 14px;
}
.cap .zls .swiper .swiper-slide {
  width: 390px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .swiper .swiper-slide {
    height: auto;
  }
}
@media (max-width: 950px) {
  .cap .zls .swiper .swiper-slide {
    height: auto;
  }
}
.cap .zls .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.cap .zls .text {
  width: 1200px;
  margin: 60px auto;
  color: #000;
  font-size: 18px;
  line-height: 1.778;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .text {
    width: auto;
    margin: 0 30px;
  }
}
@media (max-width: 950px) {
  .cap .zls .text {
    width: auto;
    margin: 0 30px;
  }
}
.cap .zls .text .color {
  color: #0b658d;
}
.cap .zls .text .tit {
  color: #0b658d;
  font-size: 24px;
}
.cap .zls .text .det {
  margin: 60px auto;
}
.cap .zls .text ul {
  padding-inline-start: 40px;
}
.cap .zls .text ul li {
  list-style: initial;
  display: list-item;
  text-align: -webkit-match-parent;
}
.cap .zls .text ul li::marker {
  color: #0fa9ee;
}
.cap .zls .text ul ul {
  margin-top: 10px;
}
.cap .zls .text ul ul li {
  list-style: circle;
}
.cap .detail {
  height: auto;
}

.the-ramco .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .the-ramco .banner {
    top: 60px;
  }
}
.the-ramco .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.the-ramco .plate {
  overflow: hidden;
}
.the-ramco .zls {
  background: #FFF;
}
.the-ramco .zls .title {
  padding-top: 30px;
  color: #0b658d;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .the-ramco .zls .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .the-ramco .zls .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .the-ramco .zls .title {
    font-size: 40px;
  }
}
.the-ramco .zls .fen {
  width: 74px;
  height: 4px;
  background: #0fa9ee;
  margin: 0 auto;
}
.the-ramco .zls .desc {
  margin: 60px 0;
  font-size: 24px;
  text-align: center;
  color: #0b658d;
}
.the-ramco .box {
  background: #FFF;
  padding-bottom: 50px;
}
.the-ramco .box .title {
  color: #0b658d;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .the-ramco .box .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .the-ramco .box .title {
    font-size: 25px;
  }
}
.the-ramco .box .desc {
  margin: 29px 0 40px;
  font-size: 24px;
  text-align: center;
  color: #1b1b1b;
  line-height: 1.667;
}
.the-ramco .box .photo {
  margin: 0 auto;
  width: 360px;
  height: 360px;
}
.the-ramco .box .photo img {
  width: 100%;
  height: 100%;
}
.the-ramco .box:nth-of-type(2n) {
  background: #f2fbff;
}

.contact .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .contact .banner {
    top: 60px;
  }
}
.contact .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .plate {
  overflow: hidden;
  background: #FFF;
}
.contact .zls {
  background: #FFF;
}
.contact .zls .title {
  padding-top: 35px;
  color: #0b658d;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .contact .zls .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .contact .zls .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .contact .zls .title {
    font-size: 40px;
  }
}
.contact .zls .fen {
  width: 74px;
  height: 4px;
  background: #0fa9ee;
  margin: 0 auto;
}
.contact .zls .desc {
  margin: 55px 0;
  font-size: 24px;
  text-align: center;
  color: #0b658d;
}
.contact .form {
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .contact .form {
    width: auto;
    margin: 0 20px;
  }
}
@media (max-width: 950px) {
  .contact .form {
    width: auto;
    margin: 0 10px;
  }
}
.contact .form .form-item {
  margin-top: 16px;
  margin-right: 4%;
  width: 48%;
}
.contact .form .form-item:nth-of-type(2n) {
  margin-right: 0;
}
.contact .form .form-item .tlt {
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #0a2c45;
  font-size: 18px;
}
.contact .form .form-item .tlt span {
  color: #0fa9ee;
  font-size: 30px;
}
.contact .form .form-item :where(select, input) {
  width: 100%;
  height: 45px;
  border: 1px solid #79888f;
  border-radius: 5px;
  outline: none;
  padding: 0 5px;
}
.contact .form .form-item .bottom-name {
  margin-top: 5px;
  color: #5f5f5f;
  font-size: 14px;
}
.contact .form .form-item textarea {
  width: 100%;
  height: 286px;
  outline: none;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #79888f;
}
.contact .form .submit {
  margin: 50px 0;
  width: 112px;
  height: 50px;
  color: #fff;
  font-size: 18px;
  background: #0fa9ee;
  border-radius: 5px;
  border: none;
  outline: none;
}
.contact .form .lenth {
  width: 100%;
}
.contact .info {
  background: #f2fbff;
}
.contact .info .box {
  overflow: hidden;
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .contact .info .box {
    width: auto;
    margin: 0 30px;
  }
}
@media (max-width: 950px) {
  .contact .info .box {
    width: auto;
    margin: 0 20px;
  }
}
.contact .info .box .tit {
  margin: 30px 0;
  font-size: 24px;
  color: #0b658d;
  font-weight: bold;
}
.contact .info .box ul li {
  font-family: "ali", serif;
  line-height: 1.78;
  color: #0a2c45;
  font-size: 16px;
}
.contact .info .box ul li .iconfont {
  font-size: 20px;
}
.contact .info .box .social {
  padding-bottom: 80PX;
  color: #0fa9ee;
}
.contact .info .box .social .iconfont {
  font-size: 30px;
}

.news .banner {
  position: relative;
  height: 100px;
  width: 100%;
  overflow: hidden;
}
.news .banner .txt {
  margin: 40px auto 0;
  width: 1200px;
}
.news .banner .txt .name {
  color: #0fa9ee;
  font-size: 36px;
}
.news .banner .txt .nav {
  color: #e1f3ff;
  font-size: 14px;
}
.news .banner .txt .nav a {
  color: #e1f3ff;
  font-size: 14px;
}
.news .banner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.news .list {
  padding-bottom: 100px;
}
.news .list .item {
  width: 1200px;
  margin: 40px auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .news .list .item {
    width: auto;
    margin: 40px 20px;
  }
}
@media (max-width: 950px) {
  .news .list .item {
    width: auto;
    margin: 40px 20px;
  }
}
.news .list .item .title a {
  font-size: 24px;
  color: #000;
}
.news .list .item .desc {
  font-weight: unset;
  font-size: 16px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news .list .item .info {
  height: 40px;
  border: 1px solid #b5ddf1;
  border-left: none;
  border-right: none;
  color: #656565;
  font-size: 13px;
}
@media (max-width: 950px) {
  .news .list .item .info .b {
    display: none;
  }
}
@media (max-width: 400px) {
  .news .list .item .info .a {
    display: none;
  }
  .news .list .item .info .b {
    display: none;
  }
}
.news .list .item .info .more {
  color: #084e6d;
  display: flex;
  align-items: center;
}

@media (max-width: 950px) {
  .news.detail .banner .txt {
    width: 100%;
    text-align: center;
  }
}
.news.detail .banner .name {
  color: #0fa9ee;
  font-size: 14px;
}
@media (max-width: 950px) {
  .news.detail .banner .name {
    width: 100%;
    text-align: center;
  }
}
.news.detail .banner .nav {
  font-size: 14px;
}
.news.detail .banner .nav a {
  color: #e1f3ff;
  font-size: 14px;
}
@media (max-width: 950px) {
  .news.detail .banner .nav {
    display: none;
  }
}
.news.detail .container .content {
  width: 1200px;
  margin: 50px auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .news.detail .container .content {
    width: auto;
    margin: 50px 20px;
  }
}
@media (max-width: 950px) {
  .news.detail .container .content {
    width: auto;
    margin: 50px 20px;
  }
}
.news.detail .container .content .title {
  color: #000;
}
.news.detail .container .content .text {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}

.motron .title {
  margin-top: 85px;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
}
.motron .log {
  margin: 30px;
  text-align: center;
}
.motron .desc {
  font-size: 18px;
  color: #FFF;
  text-align: center;
}
.motron .form {
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .motron .form {
    width: auto;
    margin: 0 20px;
  }
}
@media (max-width: 950px) {
  .motron .form {
    width: auto;
    margin: 0 10px;
  }
}
.motron .form .form-item {
  margin-top: 16px;
  margin-right: 4%;
  width: 48%;
}
.motron .form .form-item:nth-of-type(2n) {
  margin-right: 0;
}
.motron .form .form-item .tlt {
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #FFF;
  font-size: 18px;
}
.motron .form .form-item .tlt span {
  color: #0fa9ee;
  font-size: 30px;
}
.motron .form .form-item :where(select, input) {
  width: 100%;
  height: 45px;
  border: 1px solid #79888f;
  border-radius: 5px;
  outline: none;
  padding: 0 5px;
}
.motron .form .form-item .bottom-name {
  margin-top: 5px;
  color: #5f5f5f;
  font-size: 14px;
}
.motron .form .form-item textarea {
  width: 100%;
  height: 286px;
  outline: none;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #79888f;
}
.motron .form .submit {
  margin: 50px 0;
  width: 112px;
  height: 50px;
  color: #fff;
  font-size: 18px;
  background: #0fa9ee;
  border-radius: 5px;
  border: none;
  outline: none;
}
.motron .form .lenth {
  width: 100%;
}
.motron .info {
  background: #f2fbff;
  height: 300px;
}
@media (max-width: 950px) {
  .motron .info {
    flex-wrap: wrap;
    height: auto;
  }
}
.motron .info .item {
  margin: 0 80px;
}
@media (max-width: 950px) {
  .motron .info .item {
    width: 80%;
    margin: 30px auto;
  }
}
.motron .info .item .name {
  text-align: center;
  color: #0b658d;
  font-size: 18px;
}
.motron .info .item .text {
  text-align: center;
  margin-top: 20px;
  color: #0fa9ee;
  font-size: 24px;
}
.motron .info .fen {
  margin: 0 20px;
  width: 1px;
  height: 110px;
  background: #c1c1c1;
}
@media (max-width: 950px) {
  .motron .info .fen {
    display: none;
  }
}

.show {
  display: block !important;
}/*# sourceMappingURL=css.css.map */