/* Reset所有元素的外边距和内边距 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 清除所有链接的下划线 */
a {
  text-decoration: none;
}

/* 移除按钮的默认样式 */
button,
input,
textarea,
select {
  border: none;
  outline: none;
  background: none;
  font: inherit;
}

/* 表格的边框清除 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
i {
  font-style: normal; /* 取消斜体 */
  font-weight: normal; /* 取消加粗 */
  color: inherit; /* 继承父元素的字体颜色 */
}
/* 图片的默认边距清除 */
img {
  display: block;
  max-width: 100%;
}
html,
body {
  width: 100%;
  height: 100%;
}
/* 隐藏滚动条（仅在支持的浏览器中） */
.page-box {
  overflow: scroll; /* 保留滚动功能 */
}

.page-box::-webkit-scrollbar {
  display: none; /* 隐藏滚动条 */
}

.page-box {
  width: 100%;
  height: 100%;
}
.page-pc {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: no-repeat center;
  background-size: cover;
  padding: 2%;
  padding-top: 0px;
  box-sizing: border-box;
}
.page-h5 {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: 100%;
  overflow: auto;
}

/* 屏幕宽度大于 768px 时 */
@media (min-width: 970px) {
  .page-pc {
    display: flex;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: row;
  }
  .page-h5 {
    display: none;
  }
}
.logo-box {
  width: 100%;
  padding-top: 4%;
}
.logo-box img {
  width: 48%;
  margin: 0 auto;
  margin-bottom: 4%;
  display: block;
}
.banner-box {
  width: 90%;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  margin-bottom: 4%;
}
.banner-box img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.link-box {
  width: 78%;
  margin: 0 auto;
  border-radius: 15px;
  border: 2px solid #fbf086;
}
.title-box {
  width: 70%;
  margin: 0 auto;
  margin-top: -3.7%;
  z-index: 99;
}
.title-box img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.link-list {
  width: 98%;
  margin: 0 auto;
}
.link-li {
  width: 100%;
  height: 30px;
  margin: 10px 0;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: nowrap;
}
.link-li span {
  width: 20%;
  height: 100%;
  float: left;
  border: 1px solid #f2c957;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 28px;
}
.link-li .arrow {
  height: 30px;
  float: left;
  margin: 0 0 0 0;
}
.link-li p {
  width: 30%;
  height: 100%;
  float: left;
  border: 1px solid #f2c957;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
  border-radius: 5px;
}
.link-btn {
  height: 30px;
  float: left;
  margin: 0 0 0 0;
}
.link-btn img {
  height: 100%;
  display: block;
  margin: 0 auto;
}
.btn-box {
  width: 50%;
  display: block;
  margin: 20px auto;
}
.btn-box img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.cooperate-box {
  width: 100%;
  margin: 20px auto;
}
.cooperate-box img {
  width: 90%;
  margin: 0px auto;
  display: block;
}
.page-h5 .bottom-text{
  font-size: 14px;
}
.pc-box {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
.page-left {
  width: 48%;
  float: left;
  margin-top: 4%;
}
.page-right {
  width: 48%;
  float: right;
  margin-top: 4%;
}
.bottom-text {
  width: 100%;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  float: left;
  margin: 2% 0;
}
.pc-box .logo-box {
  padding: 0% 0;
  padding-top: 0%;
}
.pc-box .link-li {
  height: 50px;
  margin: 20px 0;
}
.pc-box .link-li span {
  font-size: 22px;
  line-height: 48px;
}
.pc-box .link-li p {
  font-size: 22px;
  line-height: 48px;
}
.pc-box .link-li .arrow {
  height: 50px;
}
.pc-box .link-btn img {
  height: 50px;
}
.page-right .banner-box {
  margin-top: 10%;
}
.page-right .cooperate-box {
  margin: 0% auto;
}

@keyframes xing {
  0% {
      transform: scale(0.9);
  }
  25% {
      transform: scale(1);
  }
  50% {
      transform: scale(0.9);
  }
  75% {
      transform: scale(1);
  }
  100% {
      transform: scale(0.9);
  }
}
.my_xing {
  -webkit-animation-name: xing;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
}