#loading-mask {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  user-select: none;
  z-index: 9999;
  overflow: hidden;
}

.loading-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
}

.loading-dot {
  animation: antRotate 1.2s infinite linear;
  transform: rotate(45deg);
  position: relative;
  display: inline-block;
  font-size: 64px;
  width: 64px;
  height: 64px;
  box-sizing: border-box;
}

.loading-dot i {
  width: 22px;
  height: 22px;
  position: absolute;
  display: block;
  background-color: #1890ff;
  border-radius: 100%;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
}

.loading-dot i:nth-child(1) {
  top: 0;
  left: 0;
}

.loading-dot i:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading-dot i:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.loading-dot i:nth-child(4) {
  bottom: 0;
  left: 0;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@-webkit-keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

.error-box {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 50px;
  color: #aaa;
}

.error-box img {
  width: 50px;
}

.el-loading-mask {
  position: fixed;
  z-index: 2;
  background-color: hsla(0, 0%, 100%, 0.9);
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.3s;
}

.el-loading-spinner {
  top: 50%;
  margin-top: -21px;
  width: 100%;
  text-align: center;
  position: absolute;
}

.el-loading-spinner .circular {
  height: 42px;
  width: 42px;
  animation: loading-rotate 2s linear infinite;
}

@keyframes loading-rotate {
  100% {
    transform: rotate(360deg);
  }
}

.el-loading-spinner .path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #409eff;
  stroke-linecap: round;
}

@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}

.el-loading-spinner .el-loading-text {
  color: #409eff;
  margin: 3px 0;
  font-size: 14px;
}

* {
  line-height: 1;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.page {
  width: 100%;
  /* height: 100vh; */
  /* background-image: url("./bg.png"); */
  background-size: cover;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bgImg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -100;
}

.page .container {
  /* height: 100vh; */
  max-width: 1440px;
  padding: 30px;
  margin: 0 auto;
}

.container .container_right {
  margin-top: 168px;
}

.container_left {
  width: 48.8vw;
  margin-top: 10vh;
}

.container_left .title_main {
  font-size: 42px;
  font-weight: bold;
  color: #333333;
  position: relative;
}

.title_main > img {
  /* width: 25.8vw;
    height: 7.6vh; */
  height: 105px;
  margin-bottom: 34px;
}

.title_main > .title {
  font-family: SimSong;
  font-size: 54px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  background: linear-gradient(90deg, #a58aea 1%, #819aeb 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.title_main > .sub_title {
  font-family: SimSong;
  font-size: 20px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #6c6c6c;
  margin-top: 24px;
  padding-bottom: 24px;
}

.container_left .title_sub {
  opacity: 0.7;
  font-size: 18px;
  font-weight: 400;
  /* #333 */
  color: #333333;
}

.container_left .btns {
  /* width: 700px; */
}

.container_left .btns .btn {
  width: 24vw;
  height: 33.8vh;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.btn_logo {
  width: 3.439vw;
  height: 3.439vw;
  margin-bottom: 8px;
}

.btn_title {
  text-align: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  font-style: normal;
  text-transform: none;
}

.btn_title .btn_text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333333;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.btn_title .btn_tip {
  font-size: 14px;
  color: #6a6a6a;
}

.example {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 39px;
  padding-left: 32px;
}

.example .mac {
  text-decoration: underline;
  color: #0b84e6;
}

.bottomTab {
  min-width: 402px;
  width: 33.282vw;
  height: 6.405vh;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 438px 438px 438px 438px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  margin-left: 34vw;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #6473ef;
  line-height: 18px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.bottomTab .tabText {
  padding: 10px 24px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  min-width: fit-content;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 18px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.middleText {
  text-align: center;
  border-radius: 0px 0px 0px 0px;
  padding: 0 23px !important;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

.iframBox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background-color: #fff;
}

.iconImg {
  width: 1.25vw;
  height: 1.25vw;
  display: inline-block;
  background-size: cover;
  margin-right: 8px;
}

.videoIcon {
  background-image: url('./imgs/icon_video@2x.png');
}

.descIcon {
  background-image: url('./imgs/icon_descrip@2x.png');
}

.macOs {
  background-image: url('./imgs/icon_play@2x.png');
}

.logIcon {
  background-image: url('./imgs/icon_log@2x.png');
}

.mac > span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qiuyeIcon {
  /* width: 160px; */
  height: 32px;
  aspect-ratio: 160/66;
  background-image: url('../imgs/logo@2x.png');
  background-size: cover;
  position: absolute;
  top: 6.4vh;
  left: 4.3vw;
  z-index: 1000;
}

.download-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
}

.download-bg {
  border-radius: 8px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  padding: 10px;
  flex: 1;
}

/* .download-bg:first-child {
  margin-right: 38px;
} */

.download-top {
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(92deg, #c7c0ff82 0%, #a5c3ff8c 98%);
  text-align: center;
  padding: 10px;
  position: relative;
}

.download-top img {
  margin: 24px auto;
  width: 70%;
}

.download-content {
  font-family: PingFang SC;
  font-size: 14px;
  color: #666666;
  padding: 2px;
}

.download-type {
  position: absolute;
  top: 0;
  left: 0;
}

.download-type span {
  display: inline-block;
  border-radius: 4px 0px 12px 0px;
  /* AA第二版主色 */
  background: #6473ef;

  font-size: 14px;
  line-height: 17px;
  text-align: center;
  /* 纯白 */
  color: #ffffff;
  padding: 4px 10px;
}

.download-bottom {
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
  margin-top: 12px;
}

.download-item {
  text-align: center;
}

.download-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

.win-title {
  font-family: PingFang SC;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  /* #333 */
  color: #333333;
}

#macguidevideo {
  width: 48.8vw;
}

@media only screen and (max-width: 768px) {
  /* 在这里添加手机版样式 */
  .title_main {
    zoom: 0.8;
  }
  .container_left,
  .videos > video {
    width: 100% !important;
  }
  .container_left {
    margin-top: 50px;
  }
  #macguidevideo {
    padding: 0 30px;
    width: 100% !important;
  }
  .qiuyeIcon {
    height: 32px;
    top: 30px;
    left: 30px;
  }
  .videos {
    margin-top: 40px !important;
  }
  .videos > p {
    margin-bottom: 16px !important;
  }
}
