/* 端午活动首页弹窗 */
.dw-activity-popup {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.65);
}

.dw-activity-popup.is-hidden {
  display: none;
}

.dw-activity-popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  width: 413px;
}

.dw-activity-popup-close {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.dw-activity-popup-close img {
  width: 100%;
  height: 100%;
  display: block;
}

.dw-activity-popup-link {
  display: block;
  width: 100%;
  line-height: 0;
  cursor: pointer;
}

.dw-activity-popup-link picture,
.dw-activity-popup-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media screen and (max-width: 480px) {
  .dw-activity-popup-inner {
    width: 72vw;
  }
  .dw-activity-popup-close{
    width: 32px;
    height: 32px;
  }
}
