/* 公共样式 */
@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}
body {
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Microsoft YaHei;
  font-size: 16px;
}
body.overflow-hidden {
  overflow: hidden;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
}
input {
  outline: none;
}

/* 菜单栏 */
.menu-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgb(233, 233, 233);
  background-color: #fff;
  z-index: 999;
}
.menu-background .menu {
  width: 1260px;
}
.menu-background .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
  box-sizing: border-box;
}
.menu-background .menu .menu-left {
  display: flex;
  align-items: center;
}
.menu-background .menu .menu-left > img {
  height: 50px;
}
.menu-background .menu .menu-right {
  display: flex;
}
.menu-background .menu .menu-right .menus {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 42px;
  font-size: 16px;
  color: #666;
  margin-right: 36px;
  background-color: transparent;
}
.menu-background .menu .menu-right .menus .active {
  position: relative;
  color: #14a9a9;
}
.menu-background .menu .menu-right .menus .active > a {
  color: #14a9a9;
}
.menu-background .menu .menu-right .menus .active::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 15px;
  border: 1px solid #14a9a9;
  width: 20px;
}
.menu-background .menu .menu-right .menus a {
  color: #666;
}
.menu-background .menu .menu-right .menus a:hover {
  color: #000;
}
.menu-background .menu .menu-right .menus li {
  cursor: pointer;
  height: 70px;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.menu-background .menu .menu-right .menus li:hover {
  color: black;
}
.menu-background .menu .menu-right .menus li > a {
  font-size: 16px;
  padding: 0;
}

/* 轮播区域 */
.swiper-box {
  height: 500px;
  width: 100%;
  margin-top: 70px;
  background-color: #f7f8fa;
  display: flex;
  justify-content: center;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-slide a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination {
  position: absolute;
  top: 535px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.swiper-pagination span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5 !important;
}
.swiper-pagination span + span {
  margin-left: 8px;
}
.swiper-pagination span.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  opacity: 1 !important;
}

/* 模块标题公用 */
.activity-title {
  text-align: center;
}
.activity-title > div:nth-child(2) {
  color: #222;
  font-size: 30px;
  font-weight: 800;
  transform: translateY(-20px);
}
.activity-title > div:nth-child(1) {
  color: #ebeff6;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(to bottom, #ebeff6, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 平台授权 */
.authorization {
  width: 1260px;
  margin: 0 auto 88px;
}
.authorization .activity-title {
  margin: 97px 0 56px 0 !important;
}
.authorization .platform-box {
  display: flex;
  flex-wrap: wrap;
}
.platform-box > .platform-item {
  width: 160px;
  height: 56px;
  border-radius: 8px;
  border: solid 1px #f1f1f1;
  margin: 12px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.platform-box > .platform-item .platform-image-box {
  height: 36px;
  width: 128px;
}
.platform-box > .platform-item .platform-image-box > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* 信赖选择 */
.select {
  background-color: #f7f8fa;
  margin: 0 auto;
}
.select .activity-title {
  padding: 78px 0 69px 0 !important;
}
.select .seller-box {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 15px;
  padding-bottom: 69px;
  justify-content: center;
}
.select .seller-box {
  width: 1260px;
}
.select .seller-box-item {
  width: 410px;
  height: 120px;
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.select .seller-box-item-image {
  width: 70px;
  height: 70px;
  margin-left: 30px;
}
.select .seller-box-item-number {
  color: #14a9a9;
  font-size: 55px;
  margin: 0 10px 0 20px;
}
.select .seller-box-item-top {
  color: #14a9a9;
  font-size: 20px;
}
.select .seller-box-item-bottom {
  font-size: 14px;
  margin-top: 4px;
}

/* 集成管理 */
.integrated-management {
  background-color: #fff;
  margin-bottom: 80px;
}
.integrated-management .activity-title {
  padding: 78px 0 69px 0 !important;
}
.integrated-management .module-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.integrated-management .module-box {
  width: 1260px;
}
.integrated-management .module-box .module {
  position: relative;
  padding: 20px;
  width: 400px;
  height: 286px;
  background-color: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  margin: 0 30px 50px 0;
  overflow: hidden;
  box-shadow: 0 8px 20px 0 rgba(180, 189, 221, 0.26);
}
.integrated-management .module-box .module:nth-child(3n) {
  margin: 0;
}
.integrated-management .module-box .module .icon {
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
}
.integrated-management .module-box .module .icon img {
  width: 100%;
  height: 100%;
}
.integrated-management .module-box .module .title {
  font-size: 22px;
  color: #333;
}
.integrated-management .module-box .module .text {
  width: 338px;
  height: 80px;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}
.integrated-management .module-box .module::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  background-color: #ff7733;
  transition: 0.2s linear all 0.2s;
}
.integrated-management .module-box .module:hover::after {
  width: 99%;
  transition: 0.3s linear all 0.3s;
}

/* 免费使用盒子 */
@-webkit-keyframes free-button-animation {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(15);
  }
}
@-moz-keyframes free-button-animation {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(15);
  }
}
@-o-keyframes free-button-animation {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(15);
  }
}
@keyframes free-button-animation {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(15);
  }
}
.free-box {
  height: 290px;
  background-image: url("free-box-bg.png");
  background-size: 100% 100%;
  color: #fff;
  text-align: center;
  padding: 58px 0 54px 0;
  box-sizing: border-box;
}
.free-box > div:nth-child(1) {
  font-size: 34px;
}
.free-box > div:nth-child(2) {
  font-size: 20px;
  margin: 13px 0 34px 0;
}
.free-box .free-box-button {
  margin: 0 auto;
  width: 250px;
  height: 60px;
  background-color: #fe7f40;
  border-radius: 30px;
  border: solid 2px #fff;
  line-height: 60px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  position: relative;
}
.free-box .free-box-button::after {
  position: absolute;
  z-index: 1;
  content: "";
  top: 30%;
  left: 48%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0.5;
  animation: free-button-animation 1.3s ease-out infinite;
  pointer-events: none;
}
.free-box .free-box-button span {
  position: relative;
  line-height: 20px;
  font-size: 20px;
  color: #fff;
  z-index: 9;
}
.free-box .free-box-button span::after {
  content: "";
  display: inline-block;
  border-top: 8px solid transparent;
  border-right: 8px solid #fff;
  border-bottom: 8px solid transparent;
  border-radius: 3px;
  transform: rotate(180deg) translateX(-5px);
}

/* 底部的地址栏 */
.address-box {
  box-sizing: border-box;
  height: 150px;
  background-color: #242933;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 25px;
  text-align: center;
  font-size: 14px;
  color: #999;
  width: 100%;
}
.address-box .top > div,
.address-box .conter > div,
.address-box .bottom > div {
  margin-left: 10px;
}
.address-box .top > div > a,
.address-box .bottom > div > a {
  font-size: 14px;
  color: #999;
}
.address-box .top {
  display: flex;
  justify-content: center;
}
.address-box .conter {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}
.address-box .conter div {
  display: flex;
  justify-content: center;
}
.address-box .bottom {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}
