a {
  text-decoration: none;
}
.mac-btn {
  position: relative;
}
.J_mac_module {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  width: 268px;
  height: 70px;
  border-radius: 6px;
  background-color: #EA4B3D;
  box-sizing: border-box;
}
.J_mac_module .mac-btn-a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.J_mac_module_B {
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0px 8px 20px 0px #EA4B3D33;
}
.mac-btn .J_mac_module:first-child .mac-btn-a::after {
  content: '';
  position: absolute;
  left: -15px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(229, 186, 182, 0.5);
  pointer-events: none;
  animation: mac-btn-ani 1.5s infinite;
}
.mac-btn .J_mac_module_B:first-child .mac-btn-a::after {
  background-color: rgba(0, 0, 0, 0.05);
}
@keyframes mac-btn-ani {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.J_intel {
  position: absolute;
  left: calc(50% - 134px);
  display: none;
  margin-top: 4px;
  padding-right: unset;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
.J_apple .mac-btn-a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.J_mac_module .mac-btn-a .mac-icon {
  margin-right: 8px;
  background: url("/images/pdf/pdf-apple-icon-white.svg") no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
}
.J_mac_module_B .mac-btn-a .mac-icon {
  background: url("/images/pdf/pdf-apple-icon-blue.svg") no-repeat;
  background-size: 100%;
  
}
.J_mac_module .mac-btn-a span {
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  color: #FFFFFF;
}
.J_mac_module_B .mac-btn-a span {
  color: #407DEB;
}
.J_mac_module .mac-btn-b .mac-icon {
  margin-right: 8px;
  background: url("../../images/pdf/pdf-mac-icon-blue.png") no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
}
.J_mac_module .mac-btn-b span {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #407DEB;
}
.J_mac_module .line {
  margin-right: 13px;
  width: 1px;
  height: 32px;
  border-left: 1px solid #ee6f64
}
.J_mac_module_B .line {
  border-left: 1px solid #d9e5fb
}
.J_mac_module .arrow-icon {
  background: url("../../images/pdf/arrow-white.png") no-repeat;
  background-size: 100%;
  width: 12px;
  height: 6px;
  cursor: pointer;
  transform: rotate(180deg);
}
.J_mac_module_B .arrow-icon {
  background: url("../../images/pdf/arrow-blue.png") no-repeat;
  background-size: 100%;
}
.J_mac_module .popover {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  width: 44px;
  height: 16px;
  font-size: 12px;
  font-weight: 400;
  background-color: #D31609;
  color: #FFFFFFE5;
  border-bottom-left-radius: 8px;
}
.J_mac_module_B .popover {
  color: #1963E8;
  background-color: #CBDDFF;
}
.J_mac_module .arrow-icon-rotate {
  animation: arrowRotate 0.3s linear forwards;
}

@keyframes arrowRotate {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}