.one-line {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.highlight {
  color: #f1d101 !important;
}
.warning-text {
  border: dashed 1px #f00;
  color: #f00 !important;
  padding: 8px 12px;
  margin: 12px;
  border-radius: 8px;
  font-size: 14px;
}
.popup-container {
  position: fixed;
  z-index: 100;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  display: none;
}
.popup-content {
  background-color: rgb(0, 0, 0);
  overflow: hidden;
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.popup-content-header {
  height: 44px;
  position: relative;
}
.popup-content-header .title {
  text-align: center;
  line-height: 44px;
  font-weight: bold;
  color: #b3b3b3;
}
.popup-content-main {
  flex: 1;
  overflow-y: auto;
}
.popup-content-main:after {
  content: "";
  display: block;
  width: 100%;
  height: 88px;
}
.popup-content-main iframe {
  background-color: transparent;
}
.close-button {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.close-button:before,
.close-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 10.5px;
  height: 24px;
  width: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.close-button:before {
  transform: rotate(45deg);
}
.close-button:after {
  transform: rotate(-45deg);
}
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.65);
  animation: overlayShow 0.3s forwards;
}
.popup-overlay-show {
  display: block;
}
@keyframes overlayShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.custom-button {
  position: absolute;
  bottom: 36px;
  left: 50%;
  padding: 10px 20px;
  background-image: linear-gradient(to right, #ff8a00, #e52e71);
  color: #fff;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
.finger-button {
  position: absolute;
  bottom: 18px;
  left: 65%;
  width: 50px;
  height: 50px;
  background-image: url("/images/finger.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  outline: none;
  animation: fingerHandle 1s ease infinite both;
}
@keyframes fingerHandle {
  0% {
    transform: none;
  }
  70% {
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    transform: none;
  }
}
.sticky-element {
  position: sticky;
  top: 0;
  height: 44px;
  z-index: 100;
  background-color: #121212;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sticky-element::-webkit-scrollbar {
  display: none;
}
.tabs {
  display: flex;
  align-items: center;
}
.tab {
  padding: 0 12px;
  font-size: 14px;
  line-height: 44px;
  cursor: pointer;
  color: #b3b3b3;
}
.tab-active {
  line-height: 41px;
  font-size: 16px;
  font-weight: bold;
  color: #f1d101;
}
.tab-active:after {
  content: " ";
  width: 32px;
  height: 3px;
  background-color: #f1d101;
  border-radius: 3px;
  display: block;
  position: relative;
  left: 50%;
  transform: translateY(-100%);
  transform: translateX(-50%);
}
.guide-container {
  color: #b3b3b3;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}
.guide-container h3,
.guide-container h4 {
  margin: 0;
  padding: 10px;
  line-height: 1.5;
}
.guide-container h3,
.guide-container .forever_url {
  text-align: center;
}
.guide-container h3 {
  color: #b3b3b3;
  font-size: 16px;
}
.guide-container h4 {
  color: #b3b3b3;
  font-size: 14px;
}
.guide-container a {
  color: #b620e0;
}
.guide-container p {
  padding: 5px 10px 10px;

  line-height: 1.6;
  margin: 0;
  color: #b3b3b3;
}
.guide-container p img {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.guide-container .grid-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.guide-container .step-img-box {
  margin: 5px 10px 10px;
}
.step-img-box img {
  width: 100%;
}
@media (min-width: 768px) {
  .popup-container {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    right: 50%;
    top: 0;
    margin-right: -500px;
  }
  .popup-show {
    right: 0 !important;
  }
  .popup-content {
    width: 100%;
    height: 100%;
  }
  .custom-button {
    width: 450px;
    transform: translateX(-225px);
  }
}
@media (max-width: 767px) {
  .footer {
    width: 100%;
    margin-top: 60px;
    background-color: #fff;
    position: static; /* 取消定位，元素遵循正常文档流 */
    top: auto; /* 清除偏移属性 */
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
  }
  .mdhide{
    display: none!important;
}

  .mdShow {
        display: block !important;
        float: right;
        margin-right: 10px;
    }
  .header {
    height: 175px;
  }
  .header .layout-lr .nav ul {
    margin-left: 20px;
  }
      .layout-left {
        float: left;
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid #ffffff1f;
    }
  .header .layout-lr .layout-left .logo img {
    width: 140px;
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
  }
  .site-contact {
    width: 90% !important;
    margin: 0 auto;
  }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Helvetica, Arial, sans-serif;
    background: #eee;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-size: auto;
    color: #222222;
    font-size: 16px;
    margin: 0;
  }
  .footercss {
    width: 90% !important;
    margin: 0 auto;
    padding-bottom: 40px;
    margin-top: 20px;
  }
  .footercss p {
    margin-top: 10px;
  }
  .app-container ul li .containerHea .conLeft img {
    margin-left: 36%;
    margin-bottom: 10px;
  }
  .conRight {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 20px;
    font-size: 16px;
  }
  .btnDown {
    margin-top: 20px;
    width: 140px;
  }
  .app-container ul li .containerHea .conLeft {
    margin-left: 0px;
    width: 100%;
  }
  .app-container ul li .containerHea .conLeft .textTit {
    text-align: center;
    width: 100%;
  }
  .app-container ul li {
    height: 270px;
    background: #fff;
    justify-content: space-between;
    width: calc(50% - 20px);
    margin: 10px;
    box-sizing: border-box;
  }
  .header .layout-lr {
    display: block;
  }
  .app-container ul li .containerHea {
    margin-top: 30px;
  }
  .title1 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 10px;
    margin-left: 20px;
  }
  .container {
    width: 100%;
  }
  .popup-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .popup-show {
    bottom: 0 !important;
  }
  .popup-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 90%;
    transform: translateX(-50%);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .custom-button {
    width: 50%;
    transform: translateX(-50%);
  }
}
