a {
  text-decoration: none;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", "Microsoft Yahei", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body > section.content {
  min-height: calc(100vh - 3.4375rem - 22.875rem);
}
/* 滚动动画关键帧 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* 滚动触发动画 */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}
.animate-delay-2 {
  transition-delay: 0.2s;
}
.animate-delay-3 {
  transition-delay: 0.3s;
}

ul,
ol {
  list-style: none;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.wrap {
  max-width: 93.75rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

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

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-baseline {
  align-self: baseline;
}

.self-stretch {
  align-self: stretch;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.relative {
  position: relative;
}

/*header Start*/
header {
  background-image: linear-gradient(0deg, #0000001a 0%, #0000007d 56%, #000000cc 100%);
  height: 4.75rem;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

header.hide {
  height: 0;
}

header .wrap {
}

header .siteLogo {
  height: 2.1875rem;
}

header .menu {
  height: 4.75rem;
}

header .menu .menuItem {
  position: relative;
  margin-left: 0.9375rem;
  height: 4.75rem;
  display: flex;
  align-items: center;
}

header .menu .menuItem.Child {
  margin-left: 0;
  height: auto;
}

header .menu .menuItem .menuLink {
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  padding: 0.375rem 0.625rem;
  white-space: nowrap;
  display: block;
  position: relative;
  z-index: 5;
  min-width: 4rem;
  text-align: center;
}

header .menu .menuItem .menuLink::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  width: 0;
  height: 4px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 4px;
}

header .menu .menuItem .menuLink.Child {
}

header .menu .menuItem .menuLink.hover::after,
header .menu .menuItem .menuLink:hover::after {
  width: 100%;
}

header .menu .menuChildrenHide {
  display: none !important;
}

header .menu .menuChildren {
  position: absolute;
  left: 50%;
  top: 100%;
  width: auto;
  background-color: #0a0b13;
  z-index: -1;
  padding: 0.3125rem 0.625rem;
  border-top: 0.0625rem solid #2c2f3c;
  border-bottom: 0.0625rem solid #2c2f3c;
  box-shadow: 0 0.125rem 0.3125rem #7a7a7a33;
  transition: all 0.5s ease;
  transform: translateX(-50%) rotateY(-0deg) rotateX(-90deg);
  overflow: hidden;
  border-radius: 0.3125rem;
  opacity: 0;
  transform-style: preserve-3d;
}

header .menu .menuItem:hover .menuChildren {
  opacity: 1;
  box-shadow: 0 0.125rem 0.3125rem 0rem #b5b5b533;
  z-index: 2;
  transform: translateX(-50%) rotateY(0deg) rotateX(0deg);
}

/*header End*/

/*footer Start*/
footer {
  width: 100%;
  min-height: 24rem;
  background-color: #000000;
  overflow: visible;
  transition: all 0.3s;
}

footer > div {
  padding: 4rem 0 0;
}

footer.hide {
  height: 0;
}

footer .content {
}

footer .content .list {
  width: 10.9375rem;
}

footer .content .title {
  font-size: 1.25rem;
  letter-spacing: 0.1875rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

footer .content .list .item a {
  letter-spacing: 0.1875rem;
  color: #8d9299;
  font-size: 1.125rem;
  line-height: 2.125rem;
  display: inline-block;
}

footer .content .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

footer .content .right .title {
  text-align: right;
}

footer .content .right .phone .text {
  font-size: 1.75rem;
  letter-spacing: 0.3125rem;
  color: #ffffff;
}

footer .content .right .wechat-qrcode {
  margin-top: 1.25rem;
}

footer .content .right .wechat-qrcode img {
  max-width: 6rem;
  max-height: 6rem;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.25rem;
}

footer .copyright {
  min-height: 5rem;
  margin-top: 3.5rem;
  padding: 1.25rem 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

footer .copyright .left {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

footer .copyright .left .logo {
  height: 2.25rem;
}

footer .copyright .left .logo img {
  height: 100%;
}

footer .copyright .left .text {
  border-left: 0.0625rem solid #232323;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
}

footer .copyright .right {
}

footer .copyright .right .iconList {
  display: flex;
  align-items: center;
}

footer .copyright .right .iconList .item {
  margin: 0 0.375rem;
}

footer .copyright .right .iconList .item a {
  height: 0.75rem;
  display: block;
}

footer .copyright .right .iconList .item img {
  height: 100%;
}

/*footer End*/

/*title.unify  Start*/
.title.unify {
  position: relative;
  padding: 5rem 0 3.125rem 0;
  width: 100%;
  height: 13rem;
}

.title.unify .backName {
  font-size: 2.875rem;
  letter-spacing: 0.4375rem;
  color: #352d50;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5.9375rem;
  font-weight: bold;
}

.title.unify .name {
  font-size: 2.25rem;
  letter-spacing: 0.3125rem;
  color: #ffffff;
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

.title.unify .line {
  width: 4.9375rem;
  height: 0.3125rem;
  background-color: #4b33b5;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3.125rem;
}
.title.unify.left {
  padding: 0rem 0 3.125rem 0;
  height: 6.5rem;
}
.title.unify.left .line,
.title.unify.left .name,
.title.unify.left .backName {
  left: 0px;
  transform: translateX(0);
}
.title.unify.left .line {
  bottom: 1rem;
  left: 2%;
}
.title.unify.left .name {
  top: 0;
  line-height: 1;
  left: 1%;
}
.title.unify.left .backName {
  top: 0;
}
/*title.unify  End*/
