* {
  padding: 0 auto;
  margin: 0 auto;
}

#canvas-wrap {
  padding: 0;
  margin: 0;
  position: relative;
  margin-bottom: 4px;
  width: 1920px;
  height: 1080px;
}

#page-title {
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  margin: auto;
}

#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#unity-container.unity-mobile {
  width: 100% !important;
  height: 100% !important;
}

body {
  padding: 0;
  margin: 0;
}
#unity-container {
  position: absolute;
}
#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#unity-container.unity-mobile {
  width: 100%;
  height: 100%;
}
#unity-canvas {
  background: #231f20;
  display: block;
}
.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}
#unity-loading-bar {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  display: none;
}
.unity-loading-bar_1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.unity-loading-bar-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.unity-loading-bar_mask {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: absolute;
  bottom: 0;
  left: 0;
}
.loadings {
  text-align: center;
  margin-top: -20px;
}
.loading {
  display: inline-block;
  position: relative;
  font-size: 28px;
  color: #fff;
  font-family: 思源黑体;
  font-weight: 500;
  text-align: center;
}

.loading::after {
  content: "";
  width: 3px;
  height: 3px;
  background: currentColor;
  position: absolute;
  bottom: 6px;
  right: -5px;
  animation: loading-animation 1s linear infinite;
}

@keyframes loading-animation {
  0% {
    box-shadow: 10px 0 rgba(255, 255, 255, 0), 20px 0 rgba(255, 255, 255, 0);
  }

  50% {
    box-shadow: 10px 0 #ddd, 20px 0 rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 10px 0 #ddd, 20px 0 #ddd;
  }
}

#unity-progress-bar-empty {
  width: 150px;
  height: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
}
.loading_ring {
  width: 100%;
  height: 100%;
  animation: rotate 5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.unity-progress-box {
  width: 60%;
  height: 60%;
  background: rgba(0, 102, 255, 0.6);
  box-shadow: inset 0px 4px 10px 0px #00e5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 思源黑体;
  font-weight: 700;
}
.unity-progress-box_1 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#unity-progress-num {
  font-size: 40px;
  line-height: 40px;
}
.unity-progress-unit {
  font-size: 16px;
}
#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  width: 0px;
  border-radius: 4px;
  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.7)
  );
  background-size: 600% 600%;
  animation: gradientBG 2s ease infinite;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.link_box {
  width: 100%;
  height: 14px;
  position: relative;
  /* overflow: hidden; */
}

.link_1 {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 51%,
    rgba(255, 255, 255, 0) 100%
  );
}

.link_2 {
  margin-top: 10px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 51%,
    rgba(255, 255, 255, 0) 100%
  );
}

.progress-box {
  height: 10px;
  width: 100%;
  position: absolute;
  top: 2px;
  left: 0;
  /* background: red; */
  display: flex;
  align-items: center;
}

.progress {
  width: 1%;
  height: 100%;
  /* filter: blur(2px); */
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    270deg,
    rgba(0, 212, 255, 0) 0%,
    #00d4ff 20%,
    #00d4ff 79%,
    rgba(0, 212, 255, 0) 100%
  );
  margin: 0px;
}

.progressBut {
  width: 73px;
  height: 30px;
  z-index: 10;
  margin: 0;
}
/* #unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
} */
#unity-logo {
  width: 422px;
  object-fit: cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 65px;
}
/* #unity-progress-bar-empty {
  width: 400px;
  height: 18px;
  margin-top: 10px;
  background: url("progress-bar-empty-dark.png") no-repeat center;
} */
/* #unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url("progress-bar-full-dark.png") no-repeat center;
} */
#unity-footer {
  position: relative;
}
.unity-mobile #unity-footer {
  display: none;
}
#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background: url("ccmg-logo-light.png") no-repeat center;
}
#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
}
#unity-fullscreen-button {
  float: right;
  width: 38px;
  height: 38px;
  background: url("fullscreen-button.png") no-repeat center;
}
#unity-mobile-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
.filings_box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  bottom: 15px;
  left: 50%;
  backdrop-filter: saturate(180%) blur(20px);
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  font-size: 14px;
  border-radius: 4px;
}
.copyright {
  margin-right: 20px;
}
.filings_item {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
}
#filings_19,
#filings_20 {
  margin-left: 20px;
}
