.flexCenter {
    display: flex;
    align-items: center;
    justify-content: center
}

.textNowrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.hiddenScrollbar {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.hiddenScrollbar::-webkit-scrollbar {
    display: none
}

body,html {
    font-style: normal;
    height: 100%;
    width: 100%;
    font-size: 3.077vw;
    width: 100%!important
}

*,body,html {
    padding: 0;
    margin: 0;
    font-family: PingFang SC
}

* {
    outline: 0 none;
    box-sizing: border-box;
    word-break: break-all;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

input {
    user-select: auto
}

ol,ul {
    list-style: none;
    list-style-type: none;
    margin-bottom: 0
}

a {
    border: none;
    text-decoration: none
}

a,a:hover {
    transition: all .3s ease-out 0s
}

a:focus {
    text-decoration: none
}

h1,h2,h3,h4,h5,h6 {
    font-size: 1.5em;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0
}

img {
    border: none;
    vertical-align: middle
}

#__next {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    min-height: 100%
}

p {
    margin-bottom: 0
}

::-webkit-scrollbar {
    width: 0
}

::-webkit-scrollbar:horizontal {
    height: 0
}

/* 弹窗遮罩层 */
.firstScreen_container__5PUki > div .firstScreen_content__2FIIR .firstScreen_modalOverlay__popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* 弹窗内容 */
.firstScreen_container__5PUki > div .firstScreen_content__2FIIR .firstScreen_modalOverlay__popup .firstScreen_modalContent__popup {
  background: white;
  padding: 5vw;
  border-radius: 4vw;
  width: 80vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 1.282vw 3.077vw rgba(159, 177, 191, 0.3);
}

/* 关闭按钮 */
.firstScreen_modalContent__popup .firstScreen_closeBtn__popup {
  position: absolute;
  top: 2vw;
  right: 3vw;
  font-size: 6vw;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #888;
}

/* 联系客服按钮 */
.firstScreen_modalContent__popup .firstScreen_contactBtn__popup {
  background-color: #0089fb;
  color: #fff;
  font-size: 4.2vw;
  padding: 2.5vw 6vw;
  border-radius: 3vw;
  text-decoration: none;
  margin-top: 5vw;
}

/* PC 端优化 */
@media (min-width: 768px) {
  .firstScreen_modalContent__popup {
    width: 400px;
    padding: 30px;
    border-radius: 16px;
  }

  .firstScreen_closeBtn__popup {
    font-size: 24px;
    top: 12px;
    right: 12px;
  }

  .firstScreen_contactBtn__popup {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 8px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gradient-text {
  font-size: 65px;
  font-weight: bold;
  background: linear-gradient(to right, #ff7e5f, #feb47b, #86e3ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}