@media (min-width: 840px) {
  .help-modal__dialog {
    font-size: 1.25rem;
    max-width: 500px;
  }
}
.help-modal__header {
  font-size: 1.75em;
  text-transform: uppercase;
  text-align: center;
}
.help-modal__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1em 0;
  padding: 1em 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}
.help-modal__close-btn {
  flex-shrink: 0;
  outline: none;
  border: none;
  border-radius: 2px;
  padding: 0.25em 0.75em;
  margin-top: 0.36em;
  font-family: "Russo One", arial, sans-serif;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s, background-color 0.3s;
}
.help-modal__close-btn:hover, .help-modal__close-btn:active, .help-modal__close-btn:focus {
  color: #FFF;
  background-color: #09F;
}
.help-modal.active {
  visibility: visible;
  transition-duration: 0.4s;
}
.help-modal.active .help-modal__overlay {
  opacity: 1;
  transition-timing-function: ease-out;
  transition-duration: 0.4s;
}
.help-modal.active .help-modal__dialog {
  opacity: 1;
  transform: scale(1, 1);
  transition-timing-function: ease-out;
  transition-duration: 0.4s;
}
   .div_btn {
            position: fixed;
            cursor: pointer;  
            width: 35px; 
            height: 35px;
            border: 2px solid white;
            border-radius: 50%; 
            font-size: 0.8em;
            line-height: 35px;
            text-align: center; 
            z-index:999;
        } 
        	#div_music {
		right: 30px;
	}
	
        	#img_music_wap {
position: fixed;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 0.8em;
    line-height: 30px;
    text-align: center;
    z-index: 999;
    top: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    right: 24px;
	}
	.right-buttons {
    position: fixed;
    right: 20px; /* 调整距离右侧的间距 */
    display: flex;
    flex-direction: column; /* 垂直排列按钮 */
    gap: 20px; /* 按钮之间的间距 */
}
	
	.right-buttons a {
    text-decoration: none; /* 删除下划线 */
    color: white; /* 文字颜色设为白色 */
    text-shadow: 
        -1px -1px 0 #000, /* 上左 */
        1px -1px 0 #000,  /* 上右 */
        -1px 1px 0 #000,  /* 下左 */
        1px 1px 0 #000;   /* 下右 */
}


body {
    background-color: #f1d5da; /* 浅粉色 */
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%; /* 适应手机屏幕宽度 */
    max-width: 500px; /* 最大宽度限制 */
}

#mainImage {
    width: 100%; /* 图片宽度自适应容器 */
    max-width: 200px; /* 最大宽度限制 */
    transition: all 0.3s ease;
}

h1 {
    font-size: 5vw; /* 字体大小根据视口宽度变化 */
    color: #68495b;
    margin: 20px 0; /* 增加上下间距 */
}

button {
    font-size: 4vw; /* 字体大小根据视口宽度变化 */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease;
}

#yes {
    background-color: #d4818e; /* 粉色 */
    color: white;
}

#no {
    background-color: #6784b1; /* 蓝色 */
    color: white;
    position: relative;
}

.yes-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffdae0; /* 粉色 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.yes-text {
    font-size: 7vw; /* 字体大小根据视口宽度变化 */
}

.yes-image {
    width: 50%; /* 图片宽度自适应容器 */
    max-width: 300px; /* 最大宽度限制 */
}

/* 电脑端样式优化 */
@media (min-width: 768px) {
    body {
        display: block;
    }

    .container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        max-width: none;
    }

    #mainImage {
        width: 200px; /* 固定图片宽度 */
    }

    h1 {
        font-size: 28px; /* 固定字体大小 */
        margin: 20px 0;
    }

    button {
        font-size: 18px; /* 固定字体大小 */
    }

    .yes-text {
        font-size: 36px; /* 固定字体大小 */
    }

    .yes-image {
        width: 300px; /* 固定图片宽度 */
    }
}
