[v-cloak] {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:Microsoft YaHei,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
}
html {
  font-size: 16px;
  color: #333333;
}
a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: #fa5130;
}
h1{
  font-size: 18px;
}
.orange {
  color: #fa5130;
}
.gray {
  color: #666666;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.bold {
  font-weight: bold;
}
.pt-50 {
  padding-top: 50px;
}
.text-center {
  text-align: center;
}
.img-responsive {
  width: 100%;
  vertical-align: bottom;
}
.visible-xs {
  display: none;
}
.section-container {
  display: flex;
  padding-top: 80px;
}
.section-item-title {
  padding: 10px 0;
  font-size: 1.2rem;
}
.container-text {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.section-padding {
  padding: 80px 0 100px 0;
}
.section-title {
  position: relative;
  color: #333333;
  font-size: 1.7rem;
  text-align: center;
  font-weight: bold;
}
.section-title::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  height: 4px;
  width: 60px;
  background-color: #fa5130;
}
.show-loading .loading-wrapper {
  display: flex;
}
.loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 9;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-wrapper svg {
  animation: loading 2s linear infinite;
}
@keyframes alert {
  0% {
    top: translateY(-100%);
    opacity: 0;
  }
  5% {
    top: 0%;
    opacity: 0;
  }
  20% {
    top: 5%;
    opacity: 1;
  }
  80% {
    top: 5%;
    opacity: 1;
  }
  95% {
    top: 0%;
    opacity: 0;
  }
  100% {
    top: translateY(-100%);
    opacity: 0;
  }
}
.alert {
  position: fixed;
  left: 50%;
  top: -100%;
  z-index: 3;
  transform: translateX(-50%);
  width: 80%;
  max-width: 300px;
  text-align: center;
  font-size: 13px;
  animation: alert 3s ease;
  padding: 9px 12px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.show-alert {
  top: 10%;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track-piece {
  background-color: transparent;
  -webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical {
  height: 6px;
  background-color: #fa5130;
  -webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:horizontal {
  width: 6px;
  background-color: #fa5130;
  -webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
  background-color: #fa5130;
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .section-item-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .hidden-xs {
    display: none;
  }
  .visible-xs {
    display: block;
  }
  .section-container {
    flex-direction: column;
    padding-top: 30px;
  }
  .section-padding {
    padding: 40px 0 50px 0;
  }
  .pt-50 {
    padding-top: 20px;
  }
  h1{
    font-size: 13px;
  }
}
/* .container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
} */
