/************************************************************
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
** 否则页面将无法正常显示                                  **
************************************************************/

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
}

body * {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p,
ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration-line: none;
}

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

.ellipsis-2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ellipsis-3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 80%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

.fade-in-up {
  animation-name: fade-in-up;
}

@keyframes fade-in-up-min {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

.fade-in-up-min {
  animation-name: fade-in-up-min;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-in {
  animation-name: fade-in;
}

@keyframes slide-in-up {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    transform: translateZ(0);
  }
}

.slide-in-up {
  animation-name: slide-in-up;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fade-out {
  animation-name: fade-out;
}

@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoom-in {
  animation-name: zoom-in;
}

@keyframes bg-height-scale {
  0% {
    background-size: auto 120%;
  }
  100% {
    background-size: auto 130%;
  }
}

@keyframes bg-width-scale {
  0% {
    background-size: 120% auto;
  }
  100% {
    background-size: 130% auto;
  }
}

.img-box {
  font-size: 0;
}

/* 垂直居中 */
.y-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-center {
  display: flex;
  justify-content: center;
}
.flex-align-center {
  display: flex;
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-shrink {
  flex-shrink: 0;
}
.flex-1 {
  flex: 1;
}
.letter-spacing {
  letter-spacing: 3px;
}
.position-relative {
  position: relative;
}

.btn-big-box {
  width: 150px;
  padding: 12px 0;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 100px;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn-middle-box {
  padding: 5px 19px;
  gap: 4px;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  border-radius: 100px;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn-small-box {
  padding: 1px 8px;
  gap: 4px;
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  border-radius: 100px;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  border: 1px solid rgba(255, 100, 0, 0.5);
  color: #fff;
  background: #ff730a;
}

.btn-primary:hover {
  border: 1px solid rgba(255, 134, 41, 0.5);
  background: #ff8629;
}

.btn-primary:active {
  border: 1px solid rgb(255, 100, 0, 0.5);
  background: #d94f00;
}

.btn-default {
  border: 1px solid rgb(255, 100, 0, 0.5);
  color: #ff730a;
}
.btn-default:hover {
  background: #ff8629;
  color: #fff;
}
.btn-default:active {
  background: #d94f00;
  color: #fff;
}

.btn-primary-white {
  background: #fff;
  color: #ff730a;
}
.btn-primary-white:hover {
  background: rgba(255, 255, 255, 0.8);
}
.btn-primary-white:active {
  background: rgba(255, 255, 255, 0.7);
}

.btn-default-black {
  border: 1px solid rgba(51, 51, 51, 0.5);
  color: #333;
}
.btn-default-black:active {
  border: 1px solid rgba(255, 134, 41, 0.5);
  color: #ff730a;
}
.btn-default-black:hover {
  border: 1px solid rgba(255, 134, 41, 0.5);
  color: #ff8629;
}
