@charset "UTF-8";
/*渐变文字*/
@import url("font_2954419_ebsqwzv19gu.css");

.gradient-text,
.page-header .top-nav .center-box .nav-box .gradual a {
  display: inline-block;
  width: auto;
  color: #ff316c;
  background-image: linear-gradient(-90deg, #ff316c 0%, #44D7F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*盒子布局*/
/*单行省略*/
/*多行省略*/
* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  font-size: 12px;
  -webkit-overflow-scrolling: touch;
}

body {
  color: #333;
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial Tahoma, Arial, Roboto, "Droid Sans", "Droid Sans Fallback", "Heiti SC", sans-self;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

div,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hide {
  display: none;
}

.tr {
  text-align: right;
}

.tl {
  text-align: left;
}

.tc {
  text-align: center;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.col-1 {
  width: 100%;
  float: left;
}

.col-2 {
  width: 50%;
  float: left;
}

.col-3 {
  width: 33.33%;
  float: left;
}

.col-4 {
  width: 25%;
  float: left;
}

.col-5 {
  width: 20%;
  float: left;
}

.col-6 {
  width: 16.66%;
  float: left;
}

.btn {
  display: block;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.btn.btn-red {
  width: 220px;
  height: 50px;
  background: #ff316c;
  color: #fff;
}

.btn.btn-red:hover {
  background: #e32d61;
  color: #fff;
}

.icon {
  display: inline-block;
}

/*去除浮动*/
.clearfix {
  *height: 1%;
}

.clearfix:after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
}

/*css去掉iPhone、iPad的默认按钮样式*/
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}

/*去除Chrome等浏览器文本框默认发光边框*/
input:focus,
textarea:focus {
  outline: none;
}

input:focus {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-modify: read-write-plaintext-only;
}

a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
}

img,
a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background: none;
  text-decoration: none;
}

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

/*更多按钮*/
.more-btn {
  display: inline-block;
  font-size: 14px;
  color: #2B2B2B;
  position: relative;
  padding-bottom: 2px;
}

.more-btn::after {
  content: '';
  width: 0;
  height: 1px;
  background-color: #2B2B2B;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
  -ms-transition: all 0.3s;
  /* IE 9 */
  -moz-transition: all 0.3s;
  /* Firefox */
  -webkit-transition: all 0.3s;
  /* Safari  Chrome */
  -o-transition: all 0.3s;
  /* Opera */
}

.more-btn:hover {
  color: #000000;
}

.more-btn:hover::after {
  width: 100%;
}

/*自定义轮播按钮*/
.custom-swiper-pagination {
  bottom: 30px !important;
}

.custom-swiper-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 2px;
  background: #A2A2A2;
  opacity: 1;
  border-radius: 0;
  transition: all 0.3s;
  -ms-transition: all 0.3s;
  /* IE 9 */
  -moz-transition: all 0.3s;
  /* Firefox */
  -webkit-transition: all 0.3s;
  /* Safari  Chrome */
  -o-transition: all 0.3s;
  /* Opera */
}

.custom-swiper-pagination .swiper-pagination-bullet-active {
  width: 82px;
  height: 2px;
  background: #fff;
}

/*自定义轮博箭头*/
.custom-swiper-btn {
  width: 50px;
  height: 50px;
  color: #fff;
  background: none;
  cursor: pointer;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.custom-swiper-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.custom-swiper-btn i {
  font-size: 28px;
}

.custom-swiper-btn.custom-swiper-btn-prev {
  left: 5%;
}

.custom-swiper-btn.custom-swiper-btn-next {
  right: 5%;
}

.pre-tit {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #1c1c1c;
  padding: 50px 0 45px 0;
}

/*顶部导航*/
.page-header {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
}

.page-header.fixed-header {
  position: fixed;
  z-index: 1000;
}

.page-header .top-nav {
  width: 100%;
  height: 140px;
  background-color: #222222;
}

.page-header .top-nav .center-box {
  height: 100%;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */
}

.page-header .top-nav .center-box .nav-box {
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */
}

.page-header .top-nav .center-box .nav-box .menus1,
.page-header .top-nav .center-box .nav-box .language-switch {
  margin-left: 50px;
}

.page-header .top-nav .center-box .nav-box a,
.page-header .top-nav .center-box .nav-box p,
.page-header .top-nav .center-box .nav-box div {
  color: #A2A2A2;
}

.page-header .top-nav .center-box .nav-box a,
.page-header .top-nav .center-box .nav-box p {
  display: block;
  height: 14px;
  line-height: 14px;
  font-size: 22px;
  color: #fff;
}

.page-header .top-nav .center-box .nav-box a:hover,
.page-header .top-nav .center-box .nav-box p:hover {
  color: #fff;
}

.page-header .top-nav .center-box .nav-box a img,
.page-header .top-nav .center-box .nav-box p img {
  display: block;
  height: 100%;
  width: auto;
}

.page-header .top-nav .center-box .nav-box .active a,
.page-header .top-nav .center-box .nav-box .active p {
  color: #fff;
}

.page-header .top-nav .center-box .language-switch {
  height: 14px;
}

.page-header .top-nav .center-box .language-switch a {
  display: inline-block;
  height: 100%;
}

.page-header .top-nav .center-box .language-switch a.active {
  color: #fff;
}

.page-header .top-nav .center-box .language-switch a:first-child {
  padding-right: 8px;
  position: relative;
}

.page-header .top-nav .center-box .language-switch a:first-child::after {
  content: '';
  width: 1px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: 0;
  background-color: #A2A2A2;
}

.page-header .top-nav .center-box .language-switch a:last-child {
  padding-left: 5px;
}

.page-header .drop-down {
  width: 100%;
  height: auto;
  position: absolute;
  top: 140px;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  overflow: hidden;
  z-index: 999;
}

.page-header .drop-down .center-box {
  position: relative;
}

.page-header .drop-down .menus2 {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 13px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  display: none;
}

.page-header .drop-down .menus2[data-link="fwzx"],
.page-header .drop-down .menus2[data-link="xwzx"] {
  text-align: right;
}

.page-header .drop-down .menus2 a,
.page-header .drop-down .menus2 p {
  color: #fff;
  text-align: center;
}

.page-header .drop-down .menus2 a {
  display: inline-block;
  padding: 30px 40px;
  max-width: 80px;
  text-align: center;
}

.page-header .drop-down .menus2 a:hover {
  background-color: #0b0a2e;
}

.page-header .drop-down .menus2 a img {
  display: block;
  width: auto;
  height: 50px;
  margin: 0 auto 10px;
}

/*底部*/
.page-footer .footer-box {
  width: 100%;
  color: #989898;
  padding: 125px 0;
  background-color: #222222;
}

.page-footer .footer-box .center-box {
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: flex-start;
  -ms-align-items: flex-start;
  /* IE 9 */
  -moz-align-items: flex-start;
  /* Firefox */
  -webkit-align-items: flex-start;
  /* Safari  Chrome */
  -o-align-items: flex-start;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */
}

.page-footer .footer-box .media-box {
  width: 520px;
}

.page-footer .footer-box .media-box .media-list {
  padding-top: 40px;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: flex-start;
  -ms-align-items: flex-start;
  /* IE 9 */
  -moz-align-items: flex-start;
  /* Firefox */
  -webkit-align-items: flex-start;
  /* Safari  Chrome */
  -o-align-items: flex-start;
  /* Opera */
  justify-content: flex-start;
  -ms-justify-content: flex-start;
  /* IE 9 */
  -moz-justify-content: flex-start;
  /* Firefox */
  -webkit-justify-content: flex-start;
  /* Safari  Chrome */
  -o-justify-content: flex-start;
  /* Opera */
}

.page-footer .footer-box .media-box .media-list li {
  position: relative;
}

.page-footer .footer-box .media-box .media-list li:not(:last-child) {
  margin-right: 20px;
}

.page-footer .footer-box .media-box .media-list i {
  font-size: 20px;
  cursor: pointer;
}

.page-footer .footer-box .media-box .media-list i:hover {
  color: #fff;
}

.page-footer .footer-box .media-box .media-list img {
  display: none;
  width: 110px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.page-footer .footer-box .media-box .media-list img.show {
  display: block;
}

/* .page-footer .footer-box .logo-box {
  width: 100px;
} */

.page-footer .footer-box .logo-box a {
  color: #989898;
}

.page-footer .footer-box .logo-box a:hover {
  color: #fff;
}

.page-footer .footer-box .logo-box i {
  font-size: 24px;
}

.page-footer .footer-box .footer-nav-list {
  flex: 1;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: flex-start;
  -ms-align-items: flex-start;
  /* IE 9 */
  -moz-align-items: flex-start;
  /* Firefox */
  -webkit-align-items: flex-start;
  /* Safari  Chrome */
  -o-align-items: flex-start;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */
}

.page-footer .footer-box .footer-nav-list dl dt {
  padding-bottom: 30px;
  color: #fff;
  font-size: 18px;
}

.page-footer .footer-box .footer-nav-list dl dt a,
.page-footer .footer-box .footer-nav-list dl dt p {
  color: #fff;
}

.page-footer .footer-box .footer-nav-list dl dd:not(:last-child) {
  padding-bottom: 15px;
}

.page-footer .footer-box .footer-nav-list dl dd a,
.page-footer .footer-box .footer-nav-list dl dd p {
  color: #989898;
  font-size: 16px;
}

.page-footer .footer-box .footer-nav-list dl dd a:hover {
  color: #fff;
}

.page-footer .footer-box .footer-nav-list dl dd .txt {
  font-size: 30px;
  font-weight: bold;
  margin-top: 10px;
}

.page-footer .copyright {
  height: 60px;
  color: #989898;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.page-footer .copyright .copyright-left {
  color: #989898;
  padding-right: 10px;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.page-footer .copyright .copyright-left img {
  width: auto;
  height: 20px;
  padding-right: 10px;
}

/*页面标题*/
.page-tit {
  position: relative;
}

.page-tit img {
  width: 100%;
  display: block;
}

.page-tit .page-tit-content {
  width: 990px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari  Chrome */
  -o-transform: translateX(-50%);
  /* Opera */
}

.page-tit .tit-content {
  font-size: 33px;
  color: #181818;
  position: absolute;
  top: 50%;
  left: 0;
}

/*页面tab*/
.page-tab-box {
  width: 100%;
  height: 110px;
  border-bottom: 1px solid #A2A2A2;
  box-sizing: border-box;
}

.page-tab-box .page-tab-content {
  height: 100%;
  width: 1140px;
  margin: 0 auto;
}

.page-tab-box .tab-list {
  width: 100%;
  height: 100%;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.page-tab-box .tab-list li {
  font-size: 20px;
  color: #A2A2A2;
  padding: 0 35px;
}

.page-tab-box .tab-list li a {
  color: #A2A2A2;
}

.page-tab-box .tab-list li.active {
  color: #A2A2A2;
}

.page-tab-box .tab-list li.active a {
  color: #000000;
}

/*页面列表*/
.page-list-box .page-list-content {
  width: 1140px;
  margin: 0 auto;
}

.page-list-box .page-list-content .list-wrap {
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: flex-start;
  -ms-align-items: flex-start;
  /* IE 9 */
  -moz-align-items: flex-start;
  /* Firefox */
  -webkit-align-items: flex-start;
  /* Safari  Chrome */
  -o-align-items: flex-start;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */
  flex-wrap: wrap;
}

.page-list-box .page-list-content .list-wrap .item-wrap {
  display: block;
  width: 355px;
  margin-bottom: 30px;
}

.page-list-box .page-list-content .list-wrap .item-wrap img {
  display: block;
  width: 100%;
}

.page-list-box .page-list-content .list-wrap::after {
  content: '';
  width: 355px;
  height: 0;
}

/*双栏布局*/
.double-column .double-column-content {
  width: 100%;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: flex-start;
  -ms-align-items: flex-start;
  /* IE 9 */
  -moz-align-items: flex-start;
  /* Firefox */
  -webkit-align-items: flex-start;
  /* Safari  Chrome */
  -o-align-items: flex-start;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */
}

.double-column .double-column-content.fixed-content {
  padding-left: 155px;
}

.double-column .double-column-content .left-nav {
  width: 155px;
  padding: 60px 50px 0 0;
  box-sizing: border-box;
}

.double-column .double-column-content .left-nav .nav-list .nav-item {
  width: 100%;
  height: 66px;
  color: #A2A2A2;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */
}

.double-column .double-column-content .left-nav .nav-list .nav-item:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #A2A2A2;
  position: absolute;
  left: 0;
  bottom: 0;
}

.double-column .double-column-content .left-nav .nav-list .nav-item i {
  font-size: 12px;
  color: #A2A2A2;
}

.double-column .double-column-content .left-nav .nav-list .nav-item.active {
  font-size: 25px;
  color: #000000;
}

.double-column .double-column-content .left-nav .nav-list .nav-item.active i {
  display: none;
}

.double-column .double-column-content .left-nav .nav-list .nav-item:hover {
  color: #000000;
}

.double-column .double-column-content .left-nav .nav-list .nav-item:hover i {
  color: #000000;
}

.double-column .double-column-content .left-nav.fixed-nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-600px);
}

.double-column .double-column-content .right-content {
  width: calc(100% - 155px);
  flex: 1;
}

.double-column .double-column-content .right-content .list-wrap {
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: flex-start;
  -ms-align-items: flex-start;
  /* IE 9 */
  -moz-align-items: flex-start;
  /* Firefox */
  -webkit-align-items: flex-start;
  /* Safari  Chrome */
  -o-align-items: flex-start;
  /* Opera */
  justify-content: space-between;
  -ms-justify-content: space-between;
  /* IE 9 */
  -moz-justify-content: space-between;
  /* Firefox */
  -webkit-justify-content: space-between;
  /* Safari  Chrome */
  -o-justify-content: space-between;
  /* Opera */
  flex-wrap: wrap;
}

.double-column .double-column-content .right-content .list-wrap .item-wrap {
  display: block;
  width: 338px;
  margin-bottom: 15px;
}

.double-column .double-column-content .right-content .list-wrap .item-wrap img {
  display: block;
  width: 100%;
}

.double-column .double-column-content .right-content .list-wrap::after {
  content: '';
  width: 338px;
  height: '';
}

/*了解更多*/
.learn-more-box {
  padding: 95px 0;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.learn-more-box .learn-more-btn {
  font-size: 15px;
  padding: 16px 70px;
  color: #858585;
  letter-spacing: 5px;
  border: 1px solid #858585;
  position: relative;
  cursor: pointer;
}

.learn-more-box .learn-more-btn::after {
  content: '';
  width: 0;
  height: 100%;
  background-color: #EEEEEE;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.2s;
  -ms-transition: all 0.2s;
  /* IE 9 */
  -moz-transition: all 0.2s;
  /* Firefox */
  -webkit-transition: all 0.2s;
  /* Safari  Chrome */
  -o-transition: all 0.2s;
  /* Opera */
}

.learn-more-box .learn-more-btn:hover {
  color: #000000;
}

.learn-more-box .learn-more-btn:hover::after {
  width: 100%;
}

/*pc端loading*/
.loading-box {
  padding: 30px 0;
  text-align: center;
}

.loading-box .pc-loading {
  margin: 0 auto;
}

.loading-box p {
  color: #A2A2A2;
  margin-top: 20px;
  font-size: 15px;
}

/*pc端loading*/
.pc-loading {
  width: 90px;
  height: 90px;
  position: relative;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.pc-loading .face {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  animation: loading-ani 2s linear infinite;
  -ms-animation: loading-ani 2s linear infinite;
  /* IE 9 */
  -moz-animation: loading-ani 2s linear infinite;
  /* Firefox */
  -webkit-animation: loading-ani 2s linear infinite;
  /* Safari  Chrome */
  -o-animation: loading-ani 2s linear infinite;
  /* Opera */
}

.pc-loading .face:nth-child(1) {
  width: 100%;
  height: 100%;
  color: #44D7F6;
  border-color: currentColor transparent transparent currentColor;
  border-width: 0.2em 0.2em 0em 0em;
  --deg: -45deg;
  animation-direction: normal;
}

.pc-loading .face:nth-child(2) {
  width: 70%;
  height: 70%;
  color: #ff316c;
  border-color: currentColor currentColor transparent transparent;
  border-width: 0.2em 0em 0em 0.2em;
  --deg: -135deg;
  animation-direction: reverse;
}

.pc-loading .face .circle {
  position: absolute;
  width: 50%;
  height: 0.1em;
  top: 50%;
  left: 50%;
  background-color: transparent;
  transform: rotate(var(--deg));
  transform-origin: left;
}

.pc-loading .face .circle::before {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  content: '';
  width: 1em;
  height: 1em;
  background-color: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0.5em, 0 0 1em, 0 0 1.5em, 0 0 2em, 0 0 2.5em, 0 0 0 0.5em rgba(255, 255, 0, 0.1);
}

/*右侧悬浮导航*/
.tool-bar-box {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 1000;
}

.tool-bar-box .tool-item {
  position: relative;
}

.tool-bar-box .tool-item .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.tool-bar-box .tool-item .icon-box>i {
  font-size: 28px;
}

.tool-bar-box .tool-item:not(:first-child) {
  margin-top: 20px;
}

.tool-bar-box .tool-item.company-info {
  transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  /* IE 9 */
  -moz-transition: all, 0.3s;
  /* Firefox */
  -webkit-transition: all, 0.3s;
  /* Safari  Chrome */
  -o-transition: all, 0.3s;
  /* Opera */
}

.tool-bar-box .tool-item.company-info .icon-box>i {
  color: #44D7F6;
}

.tool-bar-box .tool-item.go-top .icon-box>i {
  color: #ff316c;
}

.tool-bar-box .tool-item .second-tool-box {
  width: 400px;
  position: absolute;
  top: 50%;
  right: 60px;
  z-index: 900;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: space-around;
  -ms-justify-content: space-around;
  /* IE 9 */
  -moz-justify-content: space-around;
  /* Firefox */
  -webkit-justify-content: space-around;
  /* Safari  Chrome */
  -o-justify-content: space-around;
  /* Opera */
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -moz-transform: translateY(-50%);
  /* Firefox */
  -webkit-transform: translateY(-50%);
  /* Safari  Chrome */
  -o-transform: translateY(-50%);
  /* Opera */
  transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  /* IE 9 */
  -moz-transition: all, 0.5s;
  /* Firefox */
  -webkit-transition: all, 0.5s;
  /* Safari  Chrome */
  -o-transition: all, 0.5s;
  /* Opera */
}

.tool-bar-box .tool-item .second-tool-box.fadeOut {
  opacity: 0;
  transform: translate(2000px, -50%);
  -ms-transform: translate(2000px, -50%);
  /* IE 9 */
  -moz-transform: translate(2000px, -50%);
  /* Firefox */
  -webkit-transform: translate(2000px, -50%);
  /* Safari  Chrome */
  -o-transform: translate(2000px, -50%);
  /* Opera */
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item {
  width: 50%;
  height: 250px;
  position: relative;
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item .code-box {
  width: 170px;
  height: 200px;
  font-size: 13px;
  text-align: center;
  color: #000000;
  background-color: #fff;
  margin: 0 auto;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item .code-box .code-info-box {
  height: 46px;
  font-weight: bold;
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item .code-box img {
  display: block;
  width: 120px;
  margin: 0 auto;
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item .code-icon-box {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari  Chrome */
  -o-transform: translateX(-50%);
  /* Opera */
  display: flex;
  -ms-display: flex;
  /* IE 9 */
  -moz-display: flex;
  /* Firefox */
  -webkit-display: flex;
  /* Safari  Chrome */
  -o-display: flex;
  /* Opera */
  align-items: center;
  -ms-align-items: center;
  /* IE 9 */
  -moz-align-items: center;
  /* Firefox */
  -webkit-align-items: center;
  /* Safari  Chrome */
  -o-align-items: center;
  /* Opera */
  justify-content: center;
  -ms-justify-content: center;
  /* IE 9 */
  -moz-justify-content: center;
  /* Firefox */
  -webkit-justify-content: center;
  /* Safari  Chrome */
  -o-justify-content: center;
  /* Opera */
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item .code-icon-box>i {
  font-size: 28px;
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item .code-icon-box>i.icon-weixin {
  color: #00d969;
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item .code-icon-box>i.icon-xinlangweibo {
  color: #da282d;
}

.tool-bar-box .tool-item .second-tool-box .second-tool-item .code-icon-box>i.icon-heartbeat {
  color: #44D7F6;
}

/*pc端no-more*/
.pc-no-more {
  font-size: 16px;
  color: #989898;
  padding: 30px 0;
  text-align: center;
}

.pc-no-more-img {
  width: 480px;
  text-align: center;
  margin: 0 auto;
}

.pc-no-more-img img {
  display: block;
  width: 100%;
  margin: 40px 0;
}

.pc-no-more-img p {
  font-size: 20px;
  color: #989898;
}

.pc-no-more-img .learn-more-box {
  padding: 40px 0;
}

/*404页面*/
.not-found-page .center-box {
  padding-top: 60px;
}

.not-found-page .center-box img {
  display: block;
  width: 830px;
  margin: 0 auto;
}

.not-found-page .center-box .error-info {
  font-size: 20px;
  color: #A2A2A2;
  text-align: center;
  padding-top: 40px;
}

.not-found-page .learn-more-box {
  padding: 40px 0;
}

/*自定义搜索功能*/
.custom-search-box {
  height: 36px;
  font-size: 15px;
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-search-box .custom-drop-box {
  position: relative;
  width: 100px;
  height: 36px;
  margin-right: 10px;
  z-index: 10;
}

.custom-search-box .custom-drop-box .selected-item {
  width: 100%;
  height: 100%;
  background-color: #A2A2A2;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-sizing: border-box;
  cursor: pointer;
}

.custom-search-box .custom-drop-box .selected-item i {
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease;
}

.custom-search-box .custom-drop-box .selected-item span {
  display: inline-block;
  width: 70px;
  color: #fff;
  text-align: center;
}

.custom-search-box .custom-drop-box .drop-down-content {
  width: 100%;
  color: #A2A2A2;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #A2A2A2;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
  display: none;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-search-box .custom-drop-box .drop-down-content li {
  padding: 10px 0;
  cursor: pointer;
}

.custom-search-box .custom-drop-box .drop-down-content li.active,
.custom-search-box .custom-drop-box .drop-down-content li:hover {
  color: #2B2B2B;
}

.custom-search-box .custom-drop-box .drop-down-content li:not(:last-child) {
  border-bottom: 1px solid #A2A2A2;
}

.custom-search-box .custom-drop-box.open {
  font-size: 15px;
}

.custom-search-box .custom-drop-box.open .drop-down-content {
  display: block;
  height: auto;
}

.custom-search-box .custom-drop-box.open .selected-item i {
  transform: rotate(180deg);
}

.custom-search-box .custom-search-input-box {
  width: 365px;
  height: 100%;
  border: 1px solid #A2A2A2;
  border-radius: 20px;
  padding: 0 5px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.custom-search-box .custom-search-input-box i {
  color: #A2A2A2;
}

.custom-search-box .custom-search-input-box input {
  flex: 1;
  height: 100%;
  font-size: 14px;
  border: none;
  padding: 0 10px;
  box-sizing: border-box;
}

.custom-search-box .custom-search-input-box button {
  border: none;
  width: 60px;
  height: 28px;
  border-radius: 20px;
  color: #fff;
  background-color: #ff316c;
  cursor: pointer;
}

.custom-search-box .custom-search-input-box button:hover {
  opacity: 0.8;
}

/**/
@media screen and (min-width: 751px) {
  body {
    width: 100%;
    height: 100%;
    min-width: 1200px;
    overflow-x: auto;
  }

  .m-wrap {
    display: none;
  }

  .pc-wrap {
    width: 100%;
    min-width: 1200px;
  }

  .center-box {
    width: 1320px;
    margin: 0 auto;
  }
}

.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}

@media screen and (min-width: 1px) and (max-width: 750px) {
  .pc-wrap {
    display: none;
  }

  html,
  body {
    width: 100%;
    height: 100%;
    font-family: "Helvetica Neue", "Microsoft YaHei", Helvetica, Arial, sans-serif;
    font-size: 20px;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: touch;
  }

  body {
    overflow-x: hidden;
    position: relative;
  }
}

/*loading动画*/
@keyframes loading-ani {
  to {
    transform: rotate(1turn);
  }
}
