@charset "utf-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

li,
ol,
ul {
  list-style: none;
}

em,
i {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: SourceBold;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
  object-fit: cover;
}

input,
select,
button,
textarea {
  border: none;
  border-radius: 0;
  outline: none;
  background-color: transparent;
}

video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

button {
  cursor: pointer;
  outline: none;
  background: none;
}

input,
textarea {
  outline: 0;
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  /*Webkit browsers*/
  color: #ffffff;
}

:-moz-placeholder {
  /*Mozilla Firefox 4 to 8*/
  color: #ffffff;
}

::moz-placeholder {
  /*Mozilla Firefox 19+*/
  color: #ffffff;
}

:-ms-input-placeholder {
  /*Internet Explorer 10+*/
  color: #ffffff;
}

a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  color: #5d5d5d;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

@font-face {
  font-family: alternate-gothic;
  src: url('../font/alternate-gothic-lt-no1.ttf');
}

body {
  overflow-x: hidden;
  color: #515a6e;

  margin: 0;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-variant: tabular-nums;
  line-height: 1.5;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
  position: relative;
  -moz-user-select: text;
  /*火狐*/
  -webkit-user-select: text;
  /*webkit浏览器*/
  -ms-user-select: text;
  /*IE10*/
  user-select: text;
  /*选中文字时避免出现蓝色背景*/
}

.hide {
  display: none !important;
}

.xs-visible {
  display: none !important;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.wrap2 {
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.flex-row {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.header-wrap {

  width: 100%;
  z-index: 10000;
  transition: background .3s;
}

.header-wrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 80px;
}

header .header .logo {
  position: relative;
  z-index: 100;
  width: 196px;
  height: 45px;
  background: url(../images/logo_white.png) no-repeat;
  transition: background .3s;
}

header .header .ul {
  display: flex;
  height: 80px;
}

header .header .ul>li {
  position: relative;
  height: 100%;
}

header .header .ul>li>a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  transition: color .3s;
  font-size: 16px;
  color: #FFF;
}

header .header .ul>li:hover>a {
  color: #f08200;
}

header .header .ul>li:hover .subnav {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

header .header .ul>li .subnav {
  width: 120px;
  position: absolute;
  left: 50%;
  top: 100%;
  text-align: center;
  background-color: rgba(13, 70, 158, 0.4);
  border-radius: 4px;
  transition: all .3s ease;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
  z-index: 100;
}

header .header .ul>li .subnav dt {
  margin: 15px 0;
}

header .header .ul>li .subnav dt a {
  display: block;
  color: #fff;
  transition: color .3s;
}

header .header .ul>li .subnav dt a:hover {
  color: #f08200;
}

header .header .ul>li .subnav::before {
  content: '';
  border-style: solid;
  border-width: 12px;
  border-color: transparent transparent rgba(13, 70, 158, 0.4) transparent;
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
}

header .header.on .header-menu {
  height: 0;
  position: fixed;
  overflow: hidden;
  opacity: 0;
  transition: height .6s;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 99;
}

header .header.on .header-menu .ul {
  height: 100%;
  width: 100%;
  background: url(../images/side_bg.jpg) no-repeat;
  background-size: cover;
}

header .header.on .header-menu .ul>li {
  height: 100%;
}

header .header.on .header-menu .ul>li .subnav {
  position: static;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  width: auto;
  background: transparent;
}

header .header.on .header-menu .ul>li .subnav::before {
  display: none;
}

header .header.on .header-menu .ul>li>a {
  padding: 0 15px;
  font-style: inherit;
  line-height: 68px;
  height: 68px;
  display: block;
  text-align: center;
  position: relative;
  transition: all .6s;
}

header .header.on .header-menu .ul>li:hover {
  background: transparent;
}

header .header.on .header-menu .ul>li:hover>a {
  color: #fff;
}

header .header.on .header-menu .ul>li:hover>a:after {
  border-top-color: #FFF;
}

header .c {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .c form {
  display: flex;
  position: relative;
}

header .c form input {
  visibility: hidden;
  transition: none;
  width: 100px;
  background: none;
  color: #FFF;
}

header .c form.active input {
  visibility: visible;
}

header .c form div {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #FFF;
  transition: none;
}

header .c form.active div {
  width: 100%;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

header .c .search {
  width: 20px;
  height: 20px;
  background: url(../images/search_header_nav_white.png);
  background-size: 20px 20px;
  transition: background .3s;
}

header .c .user {
  width: 13px;
  height: 16px;
  background: url(../images/use.png);
  background-size: 13px 16px;
}

header .c .active button {
  position: absolute;
  right: -28px;
  top: 1px;
  height: 20px;
  width: 20px;
  background: none;
  transition: none;
  outline: none;
}

header .c .cd {
  width: 16px;
  height: 16px;
  background: url(../images/cd.png);
  background-size: 16px 16px;
}

header .c span {
  display: inline-block;
  width: 1px;
  background: #282828;
  height: 18px;
  margin: 0 7px;
}

header .c>a {
  margin: 0 5px;
  display: inline-block;
  white-space: nowrap;
}

header #open_menu {
  margin-left: 20px;
  width: 40px;
  height: 30px;
  position: relative;
  z-index: 101;
  transition: background 0.3s;
  float: left;
  cursor: pointer;
}

header #open_menu i {
  position: absolute;
  width: 40%;
  top: 50%;
  left: 20%;
  margin-top: -1px;
  height: 2px;
  background: #FFF;
}

header #open_menu i::before,
header #open_menu i::after {
  position: absolute;
  right: 0;
  width: 140%;
  height: 100%;
  content: '';
  transition: transform 0.3s;
  background: #FFF;
}

header #open_menu i::before {
  top: 6px;
}

header #open_menu i::after {
  top: -6px;
}

header #open_menu.open_menu_on {
  border-color: #fff;
}

header #open_menu.open_menu_on i {
  background: none !important;
}

header #open_menu.open_menu_on i::before {
  top: 0 !important;
  transform: rotate(45deg);
}

header #open_menu.open_menu_on i::after {
  top: 0 !important;
  transform: rotate(-45deg);
}

@media (min-width: 1025px) {
  header .header.on .header-menu {
    height: 100% !important;
    opacity: 1;
  }

  header .header.on .header-menu li {
    flex: 1;
    padding-top: 16%;
    transition: height .6s, background 0.3s;
    opacity: 1;
    border-right: 1px solid #ebebeb;
    background: #FFFFFF;
  }

  header .header.on .header-menu li>a {
    font-size: 18px;
    font-weight: bold;
  }

  header .header.on .header-menu li>a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid #5e5e5e;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    bottom: 0;
    left: 50%;
    margin-left: -6px;
  }

  header .header.on .header-menu li .sub-menu {
    margin-top: 20px;
  }

  header .header.on .header-menu li .sub-menu dt a {
    display: block;
    text-align: center;
    color: #999999;
    font-size: 14px;
  }

  header .header.on .header-menu li .sub-menu dt a:hover {
    color: #ee8219;
  }
}

.header-wrap.active {
  background-color: #FFF;
}

.header-wrap.active .header .logo,
.header-wrap .header.on .logo {
  background: url(../images/logo.png) no-repeat;
}

.header-wrap.active .header .ul>li>a,
.header-wrap .header.on .ul>li>a {
  color: #221815;
}

.header-wrap.active .header .ul>li:hover>a,
.header-wrap .header.on .ul>li:hover>a {
  color: #f08200;
}

.header-wrap.active .header .c .search,
.header-wrap .header.on .c .search {
  background: url(../images/search_header_nav.png) no-repeat;
}

.header-wrap.active .header #open_menu i,
.header-wrap .header.on #open_menu i {
  background: #221815;
}

.header-wrap.active .header .c form.active div,
.header-wrap .header.on .c form.active div {
  background: #221815;
}

.header-wrap.active .header .c form input,
.header-wrap .header.on .c form input {
  color: #221815;
}

.header-wrap.active .header #open_menu i::before,
.header-wrap.active .header #open_menu i::after,
.header-wrap .header.on #open_menu i::before,
.header-wrap .header.on #open_menu i::after {
  background: #221815;
}




.home-title {
  text-align: center;
  color: #4e494b;
  position: relative;
  z-index: 2;
}

.home-title h3 {
  font-size: 30px;
  position: relative;
  z-index: 2;
}

.home-title p {
  font-size: 18px;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.home-title .bg-world {
  position: absolute;
  left: 50%;
  top: -65px;
  transform: translateX(-50%);
  color: #eeeff0;
  font-size: 120px;
  z-index: 1;
  text-transform: uppercase;
  font-weight: bold;
}

.home .banner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.home .banner .swiper-container,
.home .banner .swiper-wrapper,
.home .banner .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home .banner .swiper-slide {
  width: 100%;
  height: 100%;
}

.home .banner .swiper-slide img {
  width: 100%;
  height: 100%;
}

.home .banner .swiper-slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0s linear 2s, opacity 2s linear;
  position: relative;
  opacity: 0;
}

.home .banner .swiper-slide-active img {
  transform: scale(1.2);
  transition: transform 10s linear, opacity 0s linear;
  opacity: 1;
}

.home .banner .swiper-button-prev {
  background-image: url(../images/banner-prev.png);
}

.home .banner .swiper-button-next {
  background-image: url(../images/banner-next.png);
}

.home .banner .scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #fff;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes jump {
  from {
    margin-bottom: 0px;
  }

  to {
    margin-bottom: 10px;
  }
}
.home .banner .scroll .txt {
  margin-bottom: 0;
  animation: jump .5s ease-in-out infinite alternate;
  
}
.home .banner .scroll .line {
  margin-top: 10px;
  display: inline-block;
  width: 1px;
  height: 35px;
  background-color: #fff;
}

.home .home-about {
  position: relative;
  padding: 84px 0 134px;
  background: #f8f8fa url(../images/home-ab-bg.png) no-repeat left bottom;
  background-size: 100%;
}

.home .home-about .h-ab-intro {
  margin-top: 115px;
}

.home .home-about .h-ab-intro .txt {
  max-width: 740px;
  line-height: 2;
  color: #666666;
}

.home .home-about .h-ab-intro a {
  display: inline-block;
  margin-top: 60px;
}

.home .home-about .h-ab-intro .h-ab-car {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 40%;
  text-align: right;
}

.home .home-superiority {
  padding: 100px 0 140px;
  position: relative;
  /* 默认文字 */
  /* 展开后的文字 */
  /* 背景 */
}

.home .home-superiority .accordion {
  max-width: 1400px;
  margin: 100px auto 0;
  position: relative;
  display: flex;
  overflow: hidden;
}

.home .home-superiority .accordion-item {
  height: 450px;
  width: 25%;
  position: relative;
  transition: 0.3s all;
  border: 2px solid #eee;
  overflow: hidden;
}

.home .home-superiority .accordion-item .defaultOpen {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 80px 10px 10px 30px;
  font-size: 16px;
  color: #eee;
  transition: 0.3s all;
}

.home .home-superiority .accordion-item .open {
  height: 100%;
  position: absolute;
  padding: 50px 10px 10px 30px;
  color: #ffff;
  opacity: 0;
  transition: 0.3s all;
  top: 0;
  left: 0;
  /* border: 1px solid #eee; */
}

.home .home-superiority .accordion-item .open h2 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.home .home-superiority .accordion-item p {
  margin: 5px 0;
  font-size: 16px;
}

.home .home-superiority .accordion-item .open p {
  font-size: 14px;
}

.home .home-superiority .accordion-item .default-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.home .home-superiority .accordion-item .default-bg img {
  width: 600px;
  height: 100%;
}

.home .home-superiority .accordion-item .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.home .home-superiority .accordion-item .bg img {
  width: 600px;
  height: 100%;
}

.home .home-superiority .accordion-item .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(13, 70, 158, 0.5);
}

.home .home-superiority .accordion-item .mask-open {
  background-color: rgba(0, 0, 0, 0.5);
}

.home .home-news {
  padding: 95px 0 80px;
  background: #182d7d url(../images/home-news-bg.png) no-repeat;
  background-size: 100%;
}

.home .home-news .home-title h3 {
  color: #fff;
}

.home .home-news .home-title .bg-world {
  color: #263d8b;
}

.home .home-news .home-title .btns {
  position: relative;
  margin-top: 30px;
  z-index: 10;
}

.home .home-news .home-title .btns a {
  display: inline-block;
  padding: 15px 60px;
  border-radius: 40px;
  background-color: #ffffff;
  color: #13499c;
  margin: 0 10px;
  transition: background-color 0.3s, color 0.3s;
}

.home .home-news .home-title .btns a:hover {
  background-color: #ff7900;
  color: #fff;
  cursor: pointer;
}

.home .home-news .home-title .btns a.cur {
  background-color: #ff7900;
  color: #fff;
}

.home .home-news .h-news-list {
  margin-top: 94px;
}

.home .home-news .h-news-list figure {
  width: 39%;
}

.home .home-news .h-news-list article {
  width: 56%;
}

.home .home-news .h-news-list article .col {
  display: block;
  color: #fff;
  padding: 32px 0;
  border-bottom: 1px solid #fff;
  opacity: 0.6;
  transition: opacity .3s;
}

.home .home-news .h-news-list article .col .news-til {
  font-size: 20px;
}

.home .home-news .h-news-list article .col .news-intro {
  margin-top: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.home .home-news .h-news-list article .col:hover {
  opacity: 1;
}

.home .home-news .h-news-list article .col:first-child {
  padding-top: 0;
}

.home .home-news .h-news-list article .more {
  display: inline-block;
  margin-top: 55px;
}

.home .home-news .h-news-list .compnews {
  display: none;
}

.home .home-history {
  padding: 80px 0 130px;
  background: #ffffff url(../images/home-his-bg.png) no-repeat;
  background-size: auto;
  /* 时间轴 */
}

.home .home-history .timeAxis {
  margin-top: 40px;
  user-select: none;
  cursor: pointer;
}

.home .home-history .timeAxis-nav {
  padding: 15px;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.home .home-history .timeAxis-nav .btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #0d469e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.home .home-history .swiper-slide {
  text-align: center;
  font-size: 18px;
}

.home .home-history .swiper-slide .year {
  height: 110px;
  border-bottom: 1px solid #333;
  position: relative;
  text-align: left;
  font-size: 80px;
  font-weight: 600;
  color: #333;
  font-family: alternate-gothic;
}

.home .home-history .swiper-slide .active {
  color: #0d469e;
}

.home .home-history .swiper-slide .year .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #333;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(0, 50%);
}

.home .home-history .swiper-slide .year .dot-active {
  background-color: #0d469e;
}

.home .home-history .swiper-slide .detail {
  padding: 20px 20px 20px 0;
  font-size: 16px;
  text-align: left;
  color: #555;
  transition: font-size .3s;
}
.home .home-history .swiper-slide:hover .detail {
  font-size: 18px;
}

.home .home-history .swiper-slide .detail p {
  margin: 5px;
}

.home .home-partner {
  padding: 100px 0;
  background-color: #f8f8fa;
}

.home .home-partner ul {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
}

.home .home-partner ul li {
  width: 20%;
  text-align: center;
  margin-bottom: 90px;
  transition: transform .3s;
}
.home .home-partner ul li:hover {
  transform: translateY(-10px);
}

.help {
  background-color: #f8f8fa;
}

.help .banner img {
  width: 100%;
}

.help .top {
  padding: 120px 0 80px;
}

.help .top .swiper-slide {
  display: flex;
  align-items: center;
  background-color: #ffffff;
}

.help .top .swiper-slide figure,
.help .top .swiper-slide a {
  width: 50%;
  overflow: hidden;
}
.help .top .swiper-slide figure img {
  transition: transform .3s;
}
.help .top .swiper-slide figure:hover img {
  transform: scale(1.1);
}

.help .top .swiper-slide a {
  display: block;
  padding: 0 60px;
}

.help .top .swiper-slide a .time {
  color: #989898;
}

.help .top .swiper-slide a h4 {
  margin-top: 22px;
  font-size: 20px;
  color: #221815;
  transition: transform .3s;
}
.help .top .swiper-slide a h4:hover {
  transform: translateY(-10px);
}

.help .top .swiper-slide a .intro {
  color: #666666;
  margin-top: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}

.help .top .swiper-slide a .more {
  color: #989898;
  margin-top: 100px;
}

.help .top .swiper-slide a .more i {
  margin-left: 10px;
}

.help .top .swiper-slide a .more i img {
  vertical-align: baseline;
}

.help .top .swiper-button-next,
.help .top .swiper-button-prev {
  width: 9px;
  height: 16px;
  background-size: 9px 16px;
  top: auto;
  bottom: 10%;
  margin-top: 0;
}

.help .top .swiper-button-prev {
  left: auto;
  right: 12%;
  background-image: url(../images/help-top-prev.png);
}

.help .top .swiper-button-next {
  right: 5.5%;
  background-image: url(../images/help-top-next.png);
}

.help .top .swiper-pagination {
  bottom: 10%;
  width: auto;
  right: 8%;
  left: auto;
}

.help .top .swiper-pagination .swiper-pagination-current {
  color: #ff7900;
}

.help .help-news-container {
  padding: 74px 0;
  background-color: #fff;
}

.help .help-news-container ul {
  display: flex;
  flex-wrap: wrap;
}

.help .help-news-container ul li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
  background-color: #f8f8fa;
  border-radius: 4px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  transition: background-color 0.3s, box-shadow 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.help .help-news-container ul li:nth-child(4n) {
  margin-right: 0;
}

.help .help-news-container ul li figure img {
  width: 100%;
}

.help .help-news-container ul li>a {
  display: block;
  padding: 25px 20px;
}

.help .help-news-container ul li>a .time {
  color: #989898;
}

.help .help-news-container ul li>a h4 {
  margin-top: 22px;
  font-size: 16px;
  color: #221815;
}

.help .help-news-container ul li>a .more {
  color: #989898;
  margin-top: 50px;
}

.help .help-news-container ul li>a .more i {
  margin-left: 10px;
}

.help .help-news-container ul li>a .more i img {
  vertical-align: baseline;
}
.help .help-news-container ul li>a .more i img:last-child {
  display: none;
}

.help .help-news-container ul li:hover {
  background-color: #f08200;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
}

.help .help-news-container ul li:hover a>* {
  color: #fff;
}
.help .help-news-container ul li:hover a> .more i img:first-child {
  display: none;
} 
.help .help-news-container ul li:hover a> .more i img:last-child {
  display: inline-block;
} 
.more .banner img {
  width: 100%;
}

.more .title {
  text-align: center;
}

.more .title h4 {
  font-size: 28px;
  color: #4e494b;
}

.more .title .world {
  color: #e7e6e8;
  font-size: 32px;
  margin-top: 12px;
  text-transform: uppercase;
}

.more .rental {
  padding: 90px 0 110px;
}

.more .rental .ques-list {
  margin-top: 90px;
  position: relative;
  border-bottom: 1px solid #bfbfbf;
}

.more .rental .ques-list::before {
  content: '';
  width: 11px;
  height: 5px;
  background-color: #0543a2;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.more .rental .ques-list dl {
  border-top: 1px solid #bfbfbf;
  position: relative;
}

.more .rental .ques-list dl::before {
  content: '';
  width: 11px;
  height: 5px;
  background-color: #0543a2;
  position: absolute;
  left: 0;
  top: -3px;
}

.more .rental .ques-list dl dt {
  padding: 18px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.more .rental .ques-list dl dt .ques-icon {
  width: 95px;
}

.more .rental .ques-list dl dt .ques-til {
  flex: 1;
  color: #221815;
  font-size: 18px;
}

.more .rental .ques-list dl dt .ques-togg {
  width: 65px;
  cursor: pointer;
  transition: transform .3s;
}

.more .rental .ques-list dl dd {
  padding-left: 125px;
  padding-right: 125px;
  margin-bottom: 25px;
  overflow: hidden;
  display: none;
}

.more .rental .ques-list dl:hover .ques-togg {
  transform: rotateX(180deg);
}

.more .feedback {
  padding: 120px 0;
  background: url(../images/more-bg.png) no-repeat;
  background-size: 100% 100%;
}

.more .feedback .form {
  margin-top: 60px;
}

.more .feedback .form form {
  width: 50%;
  background-color: rgba(7, 60, 144, 0.7);
  padding: 50px 90px;
  border-radius: 4px;
}

.more .feedback .form form .col {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.more .feedback .form form .col label {
  font-size: 16px;
  color: #fff;
}

.more .feedback .form form .col input,
.more .feedback .form form .col textarea {
  color: #fff;
  margin-top: 20px;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid #fff;
  resize: none;
}

.more .feedback .form form .col input::-webkit-input-placeholder,
.more .feedback .form form .col textarea::-webkit-input-placeholder {
  opacity: .6;
}

.more .feedback .form form .col textarea {
  height: 90px;
}

.more .feedback .form form button {
  padding: 20px 60px;
  color: #fff;
  background-color: #f08200;
}

.news .banner img {
  width: 100%;
}

.news .news-container {
  padding: 120px 0 100px;
}

.news .news-container ul {
  display: flex;
  flex-wrap: wrap;
}

.news .news-container ul li {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 3.5%;
  border-radius: 4px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  transition: box-shadow 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.news .news-container ul li figure img {
  width: 100%;
}

.news .news-container ul li a {
  display: block;
  padding: 25px 20px;
}

.news .news-container ul li a .time {
  color: #989898;
}

.news .news-container ul li a h4 {
  margin-top: 22px;
  font-size: 16px;
  color: #221815;
  transition: color .3s;
}

.news .news-container ul li a .more {
  color: #989898;
  margin-top: 50px;
}

.news .news-container ul li a .more i {
  margin-left: 10px;
}

.news .news-container ul li a .more i img {
  vertical-align: baseline;
}

.news .news-container ul li:nth-child(3n) {
  margin-right: 0;
}

.news .news-container ul li:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
}

.news .news-container ul li:hover h4 {
  color: #ee8219;
}

.details .crumbs {
  padding: 40px;
  display: flex;
}

.details .crumbs a,
.details .crumbs span,
.details .crumbs i {
  color: #989898;
  margin: 0 2px;
}

.details .details-container {
  margin-top: 20px;
}

.details .details-container .top {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}

.details .details-container .top .news-til {
  font-size: 26px;
  color: #221815;
  text-align: center;
}

.details .details-container .top .times {
  color: #989898;
  margin-top: 40px;
}

.details .details-container .news-content {
  padding: 20px 0;
  line-height: 1.8;
  font-size: 16px;
  color: #666;
}

.details .foot-btns {
  background-color: #f2f4f7;
  align-items: center;
  padding: 25px 50px;
  margin-top: 100px;
  margin-bottom: 20px;
}

.details .foot-btns a:hover {
  color: #f08200;
  transition: color .3s;
}

.about .banner {
  position: relative;
}

.about .banner figure img {
  width: 100%;
}

.about .banner article {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.about .banner article .til {
  font-size: 38px;
}

.about .banner article ul {
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
  width: 1000px;
}

.about .banner article ul li span {
  font-size: 28px;
  margin-right: 10px;
}

.about .banner article ul li p:last-child {
  margin-top: 20px;
}

.about .title h4 {
  font-size: 28px;
  color: #4e494b;
}

.about .title .world {
  color: #e7e6e8;
  font-size: 32px;
  text-transform: uppercase;
}

.about .company {
  display: flex;
  align-items: center;
  background-color: #f8f8fa;
}

.about .company figure {
  width: 40%;
}

.about .company article {
  width: 60%;
  padding: 0 8%;
}

.about .company article .content {
  margin-top: 60px;
}

.about .company article .content h3 {
  font-size: 18px;
  color: #4e494b;
  margin-bottom: 5px;
}

.about .company article .content h4 {
  font-size: 16px;
  color: #4e494b;
  margin-bottom: 40px;
}

.about .company article .content p,
.about .shareholder article .content p {
  color: #666666;
  line-height: 2;
  margin-top: 30px;
}

.about .shareholder {
  background-color: #f7f8f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .shareholder article {
  width: 50%;
  padding-left: 8%;
}

.about .shareholder article .content {
  margin-top: 80px;
}

.about .shareholder figure {
  width: 50%;
  text-align: right;
}

.about .plate {
  padding: 90px 0 220px;
  background: url(../images/about-plate-bg.png) no-repeat;
  background-size: 100%;
}

.about .plate .title {
  text-align: center;
}

.about .plate .swiper {
  max-width: 1500px;
  margin: 60px auto 0;
  position: relative;
}

.about .plate .swiper .swiper-container {
  padding: 50px 0;
  width: 92%;
}

.about .plate .swiper .swiper-slide {
  position: relative;
  transition: transform .3s;
}

.about .plate .swiper .swiper-slide:hover {
  transform: scale(1.1);
  z-index: 9;
}

.about .plate .swiper .swiper-slide:hover figure img:first-child {
  display: none;
}

.about .plate .swiper .swiper-slide:hover figure img:last-child {
  display: block;
}

.about .plate .swiper .swiper-slide:hover article {
  color: #4e494b;
}

.about .plate .swiper .swiper-slide:hover article .line {
  background: #0d469e;
}

.about .plate .swiper figure {
  margin-left: -2px;
}

.about .plate .swiper figure img {
  width: 100%;
}

.about .plate .swiper figure img:last-child {
  display: none;
}

.about .plate .swiper article {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
  color: #fff;
  transition: color .3s;
}

.about .plate .swiper article .til1 {
  font-size: 22px;
}

.about .plate .swiper article .til2 {
  font-size: 18px;
  margin-top: 6px;
}

.about .plate .swiper article .line {
  width: 50px;
  height: 2px;
  background-color: #fff;
  margin: 15px auto;
  transition: background-color 0.3s;
}

.about .plate .swiper article .intro-wrap .intro:last-child {
  display: none;
}

.about .plate .swiper .swiper-slide:hover .intro-wrap .intro:first-child {
  display: none;
}

.about .plate .swiper .swiper-slide:hover .intro-wrap .intro:last-child {
  display: block;
}

.about .corporate {
  padding: 90px 0 130px;
  background: url(../images/about-corporate-bg.png) no-repeat;
  background-size: 100% 100%;
}

.about .corporate .title {
  text-align: center;
}

.about .corporate .center {
  position: relative;
}

.about .corporate .center>figure {
  text-align: center;
}

.about .corporate .center .small {
  position: absolute;
}

.about .corporate .center .small .txt {
  position: absolute;
  top: 70px;
}

.about .corporate .center .small .txt .til {
  color: #0d469e;
  font-size: 24px;
}

.about .corporate .center .small .txt p {
  margin-top: 10px;
  white-space: nowrap;
}

.about .corporate .center .small.small-1 {
  left: 30%;
  top: 4%;
  text-align: right;
}

.about .corporate .center .small.small-1 .txt {
  right: 90px;
}

.about .corporate .center .small.small-2 {
  right: 31%;
  top: 4%;
  text-align: left;
}

.about .corporate .center .small.small-2 .txt {
  left: 70px;
}

.about .corporate .center .small.small-3 {
  left: 30%;
  bottom: 0;
  text-align: right;
}

.about .corporate .center .small.small-3 .txt {
  right: 90px;
}

.about .corporate .center .small.small-4 {
  right: 28%;
  bottom: 5%;
}

.about .corporate .center .small.small-4 .txt {
  left: 70px;
}

.contact .title {
  text-align: center;
}

.contact .title h4 {
  font-size: 28px;
  color: #4e494b;
}

.contact .title .world {
  color: #e7e6e8;
  font-size: 32px;
  margin-top: 12px;
  text-transform: uppercase;
}

.contact .banner img {
  width: 100%;
}

.contact .recruitment {
  padding: 100px 0 200px;
}

.contact .recruitment table {
  margin-top: 50px;
  width: 100%;
  border-top: 5px solid #0543a2;
}

.contact .recruitment table td {
  padding: 20px 0;
  border-bottom: 1px solid #dadada;
  padding-left: 50px;
}

.contact .recruitment table thead td {
  font-weight: bold;
  font-size: 18px;
}

.contact .recruitment table tbody tr.table__row {
  cursor: pointer;
}

.contact .recruitment table tbody tr.table__row td {
  transition: background .3s;
}

.contact .recruitment table tbody tr.table__row:hover>td {
  background: #dfe6f1;
}

.contact .recruitment table tbody tr:not(.table__row) {
  display: none;
}

.contact .recruitment .post-content {
  padding: 30px 0;
}

.contact .recruitment .post-content a {
  display: inline-block;
  padding: 20px 40px;
  background-color: #f08200;
  color: #fff;
  margin-top: 55px;
}

.contact .contact-us {
  position: relative;
}

.contact .contact-us .bg-img {
  width: 100%;
}

.contact .contact-us .title {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
}

.contact .contact-us .title h4 {
  color: #fff;
}

.contact .contact-us .title .world {
  color: #e7e6e8;
}

.contact .contact-us .company-intro {
  position: absolute;
  left: 15%;
  top: 40%;
  background-color: rgba(5, 67, 162, 0.3);
  padding: 60px 40px;
  border-radius: 5px;
  color: #fff;
  width: 600px;
  line-height: 2;
}

.service {
  /* 默认文字 */
  /* 展开后的文字 */
  /* 背景 */
}

.service .banner {
  position: relative;
}

.service .banner figure img {
  width: 100%;
}

.service .banner figure p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 38px;
}

.service .banner div {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 20px;
}

.service .banner div p {
  margin-bottom: 10px;
}

.service .title {
  text-align: center;
}

.service .title h4 {
  font-size: 28px;
  color: #4e494b;
}

.service .title .world {
  color: #e7e6e8;
  font-size: 32px;
  margin-top: 12px;
  text-transform: uppercase;
}

.service .business {
  padding: 100px 0;
  background-color: #f8f8fa;
}

.service .business .wrap2 {
  max-width: 875px;
  margin: 0 auto;
}

.service .business .pic-txt-intro {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service .business .pic-txt-intro .title2 {
  text-align: center;
}

.service .business .pic-txt-intro .title2 h5 {
  font-size: 24px;
  color: #0d469e;
  font-weight: bold;
}

.service .business .pic-txt-intro .title2 .txt {
  margin-top: 25px;
}

.service .business .txt-intro {
  margin-top: 30px;
  line-height: 2;
  color: #666;
}

.service .dvantage {
  margin-top: 100px;
}

.service .accordion {
  max-width: 1400px;
  margin: 100px auto;
  position: relative;
  display: flex;
  overflow: hidden;
}

.service .accordion-item {
  height: 300px;
  width: 25%;
  position: relative;
  transition: 0.3s all;
  border: 2px solid #eee;
  overflow: hidden;
}

.service .accordion-item .defaultOpen {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 80px 10px 10px 30px;
  font-size: 16px;
  color: #eee;
  transition: 0.3s all;
}

.service .accordion-item .open {
  height: 100%;
  position: absolute;
  padding: 50px 10px 10px 30px;
  color: #ffff;
  opacity: 0;
  transition: 0.3s all;
  top: 0;
  left: 0;
  /* border: 1px solid #eee; */
}

.service .accordion-item .open h2 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.service .accordion-item p {
  margin: 5px 0;
  font-size: 16px;
}

.service .accordion-item .open p {
  font-size: 14px;
}

.service .accordion-item .default-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.service .accordion-item .default-bg img {
  width: 600px;
  height: 100%;
}

.service .accordion-item .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.service .accordion-item .bg img {
  width: 600px;
  height: 100%;
}

.service .accordion-item .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(13, 70, 158, 0.5);
}

.service .accordion-item .mask-open {
  background-color: rgba(0, 0, 0, 0.5);
}

.service .pattern .til {
  text-align: center;
  font-size: 30px;
  color: #0d469e;
  padding: 10px 0;
  position: relative;
}

.service .pattern .til::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #0d469e;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
}

.service .pattern ul {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service .pattern ul li {
  text-align: center;
  padding: 25px 50px;
  border-right: 1px solid #d6d6d6;
  cursor: pointer;
}

.service .pattern ul li .img {
  max-width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.service .pattern ul li:hover .img {
  transform: translateY(-15px);
}

.service .pattern ul li:last-child {
  border-right: 0;
}

.service .pattern ul li p {
  margin-top: 20px;
}

.service .pattern ul li:last-child {
  border-right: 0;
}

.service .pattern .txt-intro {
  margin-top: 50px;
  padding: 100px 110px;
  line-height: 2;
  background: #e6ecf5 url(../images/service-3.png) no-repeat;
  background-position: 22px 35px;
  color: #666;
}

.service .risk {
  margin-top: 90px;
  padding: 110px 0 110px;
  background: url(../images/service-4.png) no-repeat;
  background-size: 100% 100%;
}

.service .risk .swiper {
  margin-top: 60px;
}

.service .risk .swiper .swiper-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service .risk .swiper .swiper-btns a {
  display: inline-block;
  border-radius: 50%;
  margin: 0 12px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 18px;
  transition: all .3s ease;
}

.service .risk .swiper .swiper-btns a.active {
  text-align: center;
  line-height: 100px;
  background-color: #f08200;
  color: #fff;
  font-size: 30px;
}

.service .risk .swiper .swiper-btns .line {
  border: 1px dashed #4e494b;
  flex: 1;
  height: 1px;
}

.service .risk .swiper-container {
  margin-top: 40px;
}

.service .risk .swiper-slide {
  padding: 70px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
}

.service .risk .swiper-slide h4 {
  color: #f08200;
  font-size: 26px;
}

.service .risk .swiper-slide p {
  margin-top: 40px;
}

footer {
  background-color: #403f45;
}

footer .foot-top {
  padding-top: 60px;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
}

footer .foot-top .foot-nav {
  display: flex;
}

footer .foot-top .foot-nav dl {
  margin-right: 80px;
}

footer .foot-top .foot-nav dl dt {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

footer .foot-top .foot-nav dl dd {
  margin-bottom: 8px;
}

footer .foot-top .foot-nav dl dd a {
  color: #fff;
}

footer .foot-top .foot-nav dl:last-child {
  margin-right: 0;
}

footer .foot-bottom {
  background-color: #36353b;
  padding: 40px 0;
  text-align: center;
  color: #fff;
}
footer .foot-bottom a {
  color: #fff;
}

footer .foot-bottom .company-info {
  display: flex;
  justify-content: center;
}

footer .foot-bottom .company-info p {
  margin: 0 20px;
}

footer .foot-bottom .copyright {
  margin-top: 10px;
}

@media screen and (max-width: 1600px) {
  .about .corporate .center>figure img {
    width: 35%;
  }

  .about .corporate .center .small.small-1 {
    left: 26%;
  }

  .about .corporate .center .small.small-2 {
    right: 26%;
  }

  .about .corporate .center .small.small-3 {
    left: 26%;
  }

  .about .corporate .center .small.small-4 {
    right: 27%;
  }
}

@media screen and (max-width: 1440px) {
  .about .plate .swiper article .til2 {
    font-size: 14px;
  }
  header .header {
    padding: 0 20px;
  }

  header .header .ul>li>a {
    padding: 0 15px;
  }

  .wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .wrap2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-title .bg-world {
    font-size: 80px;
    top: -35px;
  }

  .home-title h3 {
    font-size: 24px;
  }

  .home .home-about .h-ab-intro {
    margin-top: 75px;
  }

  .home .home-superiority .accordion {
    padding: 0 20px;
  }

  .home .home-history .timeAxis {
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home .home-history .timeAxis .swiper-container {
    padding: 0;
  }

  .about .corporate .center .small .pic {
    width: 70%;
    margin: 0 auto;
  }

  .about .corporate .center .small .txt {
    top: 50px;
  }

  .contact .contact-us .company-intro {
    left: 10%;
    width: 500px;
  }
}

@media screen and (max-width: 1200px) {
  .header-menu {
    display: none;
  }

  header .logo {
    width: 30%;
  }

  header .header {
    height: 60px;
    padding-right: 0;
  }

  .about .banner figure img {
    height: 40vh;
  }


  .about .banner article .til {
    font-size: 28px;
    margin-top: 20px;
  }

  .about .banner article ul {
    width: 100%;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .about .banner article ul li {
    width: 50%;
    margin-bottom: 40px;
  }

  .about .company {
    flex-direction: column-reverse;
  }

  .about .company article,
  .about .company figure {
    width: 100%;
  }

  .about .company article {
    padding: 20px;
  }

  .about .company article .content {
    margin-top: 40px;
  }

  .about .title h4 {
    font-size: 24px;
  }

  .about .title .world {
    font-size: 28px;
  }

  .about .shareholder {
    margin-top: 40px;
    flex-direction: column;
  }

  .about .shareholder article,
  .about .shareholder figure {
    width: 100%;
  }
  .home-title {
    padding: 0 20px;
  }
  .about .shareholder article {
    padding: 20px;
  }

  .about .shareholder article .content {
    margin-top: 40px;
  }

  .about .shareholder figure {
    display: none;
  }

  .about .plate {
    padding: 45px 0;
  }

  .about .plate .swiper-button-prev,
  .about .plate .swiper-button-next {
    display: none;
  }

  .about .corporate {
    padding: 45px 0;
    background: #f7f8f9;
  }

  .about .corporate .img {
    margin-top: 40px;
  }

  .about .corporate .center>figure {
    display: none;
  }

  .about .corporate .center .small {
    position: relative;
    margin-bottom: 20px;
    left: auto !important;
    right: auto !important;
  }

  .about .corporate .center .small .pic {
    text-align: center;
  }

  .about .corporate .center .small .txt {
    text-align: center !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    right: auto !important;
  }

  .contact .banner img {
    height: 40vh;
  }

  .contact .recruitment {
    padding: 50px 0;
  }

  .contact .title h4 {
    font-size: 24px;
  }

  .contact .title .world {
    font-size: 28px;
  }

  .contact .recruitment {
    overflow-x: auto;
  }

  .contact .recruitment .table {
    overflow-x: auto;
  }

  .contact .recruitment .table table {
    width: 1200px;
  }
  .contact .contact-us {
    margin-bottom: 20px;
  }
  .contact .contact-us .bg-img,
  .contact .contact-us .point{
    display: none;
  }

  .contact .contact-us .title {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

  .contact .contact-us .title h4 {
    color: #4e494b;
  }

  .contact .contact-us .company-intro {
    margin-top: 20px;
    position: inherit;
    width: 100%;
    left: 0;
    padding: 40px 20px;
  }

  .details .crumbs {
    padding: 30px 20px;
  }

  .details .details-container {
    margin-top: 40px;
  }

  .details .details-container .top .news-til {
    font-size: 18px;
  }

  footer .foot-top {
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  footer .foot-top .foot-logo {
    display: none;
  }

  footer .foot-top .foot-nav {
    display: none;
  }

  footer .foot-bottom {
    padding: 20px;
  }

  footer .foot-bottom .company-info {
    flex-direction: column;
  }

  footer .foot-bottom .company-info p {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .help .banner img {
    height: 40vh;
  }

  .help .top {
    padding: 50px 0 40px;
  }

  .help .top .swiper-slide {
    flex-direction: column;
  }

  .help .top .swiper-slide figure,
  .help .top .swiper-slide a {
    width: 100%;
  }

  .help .top .swiper-slide a {
    padding: 20px;
  }

  .help .top .swiper-slide a h4 {
    font-size: 18px;
  }

  .help .top .swiper-slide a .intro {
    margin-top: 20px;
  }

  .help .top .swiper-slide a .more {
    margin-top: 40px;
  }

  .help .top .swiper-button-next,
  .help .top .swiper-button-prev {
    bottom: 42px;
  }

  .help .top .swiper-button-prev {
    right: 25%;
  }

  .help .top .swiper-pagination {
    right: 12%;
    bottom: 40px;
  }

  .help .help-news-container {
    padding: 20px 0;
  }

  .help .help-news-container ul li {
    width: 100%;
    margin-right: 0 !important;
  }

  .home .home-about {
    padding: 54px 0 84px;
  }

  .home .home-about .h-ab-intro {
    margin-top: 45px;
  }

  .home-title .bg-world {
    font-size: 50px;
    top: -24px;
  }

  .home-title h3 {
    font-size: 21px;
  }

  .home .home-superiority .accordion {
    flex-direction: column;
    padding: 0;
    margin-top: 40px;
  }

  .home .home-superiority .accordion-item {
    width: 100% !important;
  }

  .home .home-superiority .accordion-item p {
    font-size: 18px;
  }

  .home .home-superiority .accordion-item .open h2 {
    font-size: 18px;
  }

  .home .home-superiority .accordion-item .open p {
    font-size: 14px;
    margin-top: 10px;
  }

  .home .home-news {
    padding: 45px 0 30px;
  }

  .home .home-news .home-title .btns a {
    padding: 10px 30px;
  }

  .home .home-news .h-news-list {
    margin-top: 30px;
  }

  .home .home-news .h-news-list .flex-between {
    flex-direction: column;
  }

  .home .home-news .h-news-list figure,
  .home .home-news .h-news-list article {
    width: 100%;
  }

  .home .home-news .h-news-list article {
    margin-top: 25px;
  }

  .home .home-news .h-news-list article .col .news-til {
    font-size: 16px;
  }

  .home .home-history .timeAxis {
    margin-top: 40px;
  }

  .home .home-history .timeAxis .swiper-container {
    padding: 0 !important;
  }

  .home .home-partner {
    padding: 50px 0;
  }

  .home .home-partner ul {
    justify-content: space-between;
  }

  .home .home-partner ul li {
    width: 48%;
    margin-bottom: 20px;
  }
  .home .home-partner ul li img{
    width: 80%;
  }
  .about .plate .swiper {
    margin-top: 0;
  }
  .more .banner img {
    height: 40vh;
  }

  .more .rental {
    padding: 45px 0 60px;
  }

  .more .title h4 {
    font-size: 24px;
  }

  .more .title .world {
    font-size: 28px;
  }

  .more .rental .ques-list {
    margin-top: 40px;
  }

  .more .rental .ques-list dl dt .ques-icon,
  .more .rental .ques-list dl dt .ques-togg {
    width: 30px;
  }

  .more .rental .ques-list dl dt .ques-til {
    margin: 0 10px;
  }

  .more .rental .ques-list dl dd {
    padding: 0;
  }

  .more .feedback {
    padding: 50px 0;
  }

  .more .feedback .form form {
    width: 100%;
    padding: 30px 20px;
  }

  .more .feedback .form form button {
    padding: 10px 40px;
  }

  .service .banner figure img {
    height: 40vh;
  }

  .news .banner img {
    height: 40vh;
  }
  .news .news-container {
    padding: 40px 0 20px;
  }
  .news .news-container ul li {
    width: 100%;
  }

  .service .banner div {
    position: inherit;
    transform: none;
    left: auto;
    bottom: auto;
    color: #221815;
    padding: 20pX;
  }

  .service .business {
    padding: 40px 0;
  }

  .service .business .pic-txt-intro {
    flex-direction: column;
    margin-top: 40px;
  }

  .service .business .pic-txt-intro .m-img {
    margin: 20px 0;
    text-align: center;
  }
  .service .business .pic-txt-intro .m-img img {
    width: 80%;
  }

  .service .dvantage {
    margin-top: 40px;
  }

  .service .accordion {
    flex-direction: column;
    padding: 0;
    margin-top: 40px;
  }

  .service .accordion-item {
    width: 100% !important;
  }

  .service .accordion-item p {
    font-size: 18px;
  }

  .service .accordion-item .open h2 {
    font-size: 18px;
  }

  .service .accordion-item .open p {
    font-size: 14px;
    margin-top: 10px;
  }

  .service .pattern ul {
    flex-wrap: wrap;
  }

  .service .pattern ul li {
    width: 50%;
  }
  .service .pattern ul li:nth-child(2n) {
    border-right: none;
  }

  .service .pattern .txt-intro {
    padding: 20px;
    background-size: 40px;
  }

  .service .risk {
    padding: 50px 0 60px;
  }

  .service .risk .swiper .swiper-btns a.active {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }

  .service .risk .swiper-slide {
    padding: 20px;
  }

  .service .risk .swiper-slide h4 {
    font-size: 18px;
  }

  .service .risk .swiper-slide p {
    margin-top: 20px;
  }

  .xs-hidden {
    display: none !important;
  }

  .xs-visible {
    display: block !important;
  }

  header #open_menu {
    opacity: none;
    visibility: hidden;
  }
  .about .banner article {
    display: none;
  }
}

.m {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20000;
  padding-top: 53px;
  background: #fff;
  top: 0;
  left: 100%;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5vh;
}

.m.act {
  left: 0;
}

.m .title {
  margin: 35px 20% 15px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.m .title span {
  width: 45%;
  text-align: center;
  padding: 10px 0;
  font-size: 1.6rem;
  border-bottom: 1px solid transparent;
  color: #a4a2a2;
}

.m .title:after {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #282828;
}

.m .title span.cur {
  border-bottom-color: #282828;
  color: #282828;
}

.m .list {
  margin: 50px 10% 0;
  font-size: 14px;
}

.m .list>ul>li {
  line-height: 3;
  font-size: 16px;
  color: #fff;
}

.m .list>ul>li.dp {
  background: url(../images/jia.png) no-repeat right 15px top 13px;
  background-size: 15px 15px;
}

.m .list>ul>li.open {
  background-image: url(../images/jian.png);
}

.m .list>ul>li a {
  color: #282828;
  display: inline-block;
}

.m .list>ul>li:last-child>a {
  /*  background: url(../images/tmall.png) no-repeat center top;*/
  no-repeat center top;
}

.m .list>ul>li li {
  font-size: 14px;
  line-height: 2.2;
}

.m .list>ul>li li a {
  color: #a4a2a2;
}

.m .list>ul ul {
  margin-bottom: 15px;
  display: none;
}

#site-navigation {
  margin-left: auto;
  position: fixed;
  top: 19px;
  right: 3%;
  z-index: 20002;
}

#site-navigation .menu-toggle {
  cursor: pointer;
  width: 25px;
  z-index: 120;
  position: relative;
}

#site-navigation .menu-toggle span {
  transition: all 300ms ease-in-out;
  width: 20px;
  height: 2px;
  display: block;
  margin-bottom: 5px;
  background: #fff;
}

#site-navigation .menu-toggle div {
  font-weight: bold;
  font-size: 14px;
  color: #282828;
  margin-top: 10px;
}

.m #site-navigation .menu-toggle span {
  background: #282828;
}

.m #site-navigation .menu-toggle div {
  color: #282828;
}
#site-navigation .menu-toggle.active span {
  background-color: #282828;
}
#site-navigation .menu-toggle.active span:first-of-type {
  transform: translate(0, 7px) rotate(45deg);
}

#site-navigation .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

#site-navigation .menu-toggle.active span:last-of-type {
  transform: translate(0, -7px) rotate(-45deg);
}

#site-navigation .menu-main_menu-container {
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-in-out;
  position: fixed;
  background: #c2da68;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  transform: scale(0.9);
}

#site-navigation .menu-main_menu-container.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

#site-navigation .menu-main_menu-container ul {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

#site-navigation .menu-main_menu-container ul li {
  width: 100%;
  display: block;
  text-align: center;
}

#site-navigation .menu-main_menu-container ul li a {
  margin: 0 auto;
  display: inline-block;
  text-align: center;
  color: #30163c;
  font-weight: 300;
  font-size: 30px;
  line-height: 60px;
  text-transform: uppercase;
}

#site-navigation .menu-main_menu-container ul li a:hover {
  color: #eb2961;
  text-decoration: none;
  font-weight: 900;
}

#site-navigation .menu-main_menu-container ul li div a {
  display: block;
  font-size: 2.1rem;
  line-height: 50px;
}

.pager {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
}

.pager a,
.pager span {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 0 14px;
  background: #f0f4fc;
  color: #333;
}

.pager a.current,
.pager a:hover,
.pager .active span {
  color: white;
  background: #f08200;
}

.pager li {
  display: inline-block;
}
