* {
  margin: 0 auto;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background: url("../image/connectbg.webp") no-repeat;
  background-size: cover;
  overflow: hidden;
}

.connecting {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.connecting-innner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.connecting-innner .right {
  width: 160px;
  height: 120px;
  margin: 40px 20px;
}
.connecting-innner .left {
  width: 146px;
  height: 123px;
  margin: 39px 27px 38.315px 27px;
}
.connecting-innner svg {
  width: 100%;
  height: 100%;
}
.connecting-innner .medium {
  margin-left: 12px;
  margin-right: 12px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.connecting-innner .progress {
  width: 300px;
  height: 4px;
  flex-shrink: 0;
  background: #aecbee;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin: 16px 0;
}
.connecting-innner .progress-bar {
  position: absolute;
  top: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(42, 135, 255, 0) 0%,
    #3389ff 50.52%,
    rgba(44, 129, 255, 0) 100%
  );
  box-shadow: 4px 1px 12px rgba(76, 154, 255, 0.4);
  border-radius: 2px;
  animation: progress-bar 2s linear infinite;
}
.connecting-innner .title {
  color: #1e1e33;
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
}
.connecting-innner .tips {
  color: #1e1e33;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  line-height: 100%; /* 14px */
}
.connecting-mobile {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.connecting-mobile .container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -200px;
}
.connecting-mobile .title {
  color: #1e1e33;
  font-size: 1.6rem;
  line-height: 100%;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.connecting-mobile .logo {
  z-index: 1;
  width: 10rem;
  height: 7.5rem;
}

.connecting-mobile .container::before,
.connecting-mobile .container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(154, 207, 255, 0.25) inset;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background-color: rgba(220, 231, 242, 0.7);
  animation: ripple 1s ease-out infinite;
}

.connecting-mobile .container::after {
  animation-delay: 1s;
}

.expire {
  display: none;
  width: 586px;
  flex-direction: column;
}
.expire .icon {
  width: 200px;
  height: 150px;
}
.expire .icon img {
  width: 100%;
  height: 100%;
}
.expire .t1 {
  color: #1e1e33;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 36px;
}
.expire .t2 {
  color: #1e1e33;
  font-size: 16px;
  line-height: 22px;
  margin-top: 18px;
}
.expire .btn {
  width: 112px;
  height: 44px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  border-radius: 4px;
  background-color: #1d80ff;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}
.expire .btn:hover {
  background-color: #459cff;
}
.expire .btn:active {
  background-color: #0d5ed9;
}
/* 当屏幕宽度大于768px时的样式 */
@media screen and (min-width: 768px) {
  .connecting-mobile {
    display: none;
  }
}
/* 当屏幕宽度小于768px时的样式 */
@media screen and (max-width: 768px) {
  .connecting-innner {
    display: none;
  }
}
@keyframes progress-bar {
  0% {
    left: -198px;
  }

  100% {
    left: 380px;
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(10);
    opacity: 0;
  }
}
