.screenRecorderDialog {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.32);
  z-index: 99999;
}
.screenRecorderDialog-container {
  overflow: hidden;
  width: auto;
}
.screenRecorderDialog-body {
  position: relative;
  display: flex;
  background: linear-gradient(177deg, #fff 2.52%, #e6fcf4 97.48%);
  padding: 65px 122px 41px;
  border-radius: 16px;
  overflow: hidden;
}
.screenRecorderDialog-body::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url('../../img/downDialog/background.png');
  background-size: contain;
  z-index: 2;
}
.screenRecorderDialog-body_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 33px;
  z-index: 8;
}
.screenRecorderDialog-body_img {
  width: 162px;
  height: 162px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 28px;
}
.screenRecorderDialog-body_img.M1{
  background-image: url('../../img/downDialog/M1.png');
}
.screenRecorderDialog-body_img.Intel{
  background-image: url('../../img/downDialog/Intel.png');
}
.screenRecorderDialog-body_title {
  font-size: 16px;
  color: #46B874;
  margin-bottom: 28px;
}
.screenRecorderDialog-body_btn {
  overflow: hidden;
  position: relative;
  width: 154px;
  height: 49px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border-color: transparent;
  cursor: pointer;
}
.screenRecorderDialog-body_item.Intel .screenRecorderDialog-body_btn {
  color: #46B874;
  border: 2px solid #46B874;
  width: 150px;
  height: 45px;
}
.screenRecorderDialog-body_btn::before {
  content: '下載';
  display: flex;
  align-items: center;
  height: 23px;
  text-indent: 32px;
  background-position: left center;
  background-image: url('../../img/downDialog/iphone-icon.svg');
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
.screenRecorderDialog-body_item.Intel .screenRecorderDialog-body_btn::before {
  background-image: url('../../img/downDialog/iphone-icon-green.svg');
}
.screenRecorderDialog-body_btn::after {
  content: '';
  height: 25px;
  width: 25px;
  background-position: center center;
  background-image: url('../../img/downDialog/download.svg');
  transform: translate(-50%, -200%);
  position: absolute;
  top: 50%;
  left: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
.screenRecorderDialog-body_item.Intel .screenRecorderDialog-body_btn::after {
  background-image: url('../../img/downDialog/download-green.svg');
}
.screenRecorderDialog-body_btn:hover::before {
  transform: translate(-50%, 200%);
}
.screenRecorderDialog-body_btn:hover::after {
  transform: translate(-50%, -50%);
}
.screenRecorderDialog-bottom {
  width: 31px;
  height: 31px;
  background-size: contain;
  background-image: url('../../img/downDialog/close.svg');
  margin: 20px auto;
  cursor: pointer;
}
.screenRecorderDialog-bottom:hover {
  background-image: url('../../img/downDialog/close2.svg');
}
@media screen and (max-width: 768px) {
  .screenRecorderDialog-container {
    width: 95%;
  }
  .screenRecorderDialog-body {
    flex-direction: column;
    padding: 0 65px 33px;
  }
  .screenRecorderDialog-body_item {
    margin: 33px;
  }
}
.screenRecorderDialog-body_btn:focus {
  outline: none;
  color: #fff;
}