/* 全局样式 */  
html {  
    -webkit-tap-highlight-color: transparent;  
    -ms-text-size-adjust: 100%;  
    -webkit-text-size-adjust: 100%;  
    line-height: 1.6;  
    /*font-size: 13px;*/  
}  
body {  
    margin: 0;  
    padding: 0;  
    font-family: Arial, sans-serif; /* 可选字体 */  
}  
/* 弹出框样式 */  
.popup {  
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.1);  
    padding: 0 30px;  
    background: #fff;  
    width: 370px;  
    position: fixed;  
    top: 50%;  
    left: 50%;  
    z-index: 999999;  
    transform: translateX(-50%) translateY(-50%);  
    border-radius: 18px;  
}  
/* 字体大小 */  
.popup p,  
.popup a {  
    font-size: 16px; /* 根据需要调整 */  
    line-height: 1.5; /* 行高，使文本更易读 */  
}  
/* 标题居中 */  
.popup-header h3.popup-title {  
    text-align: center; /* 水平居中 */  
}  
/* 底部按钮栏 */  
.popup-footer {  
    padding: 10px 0 30px;  
    text-align: center;  
}  
.popup-footer p {  
    margin-top: 10px;  
}  
/* 按钮样式 */  
.popup-btn {  
    display: inline-block; /* 允许按钮并排（如果需要） */  
    font-weight: 700;  
    border-radius: 50px;  
    padding: 0 111px; /* 添加内边距以适应文本 */  
    line-height: 40px;
    font-size: 16px;
    width: auto; /* 宽度自动，或者根据需要设置 */  
    cursor: pointer;  
    text-decoration: none; /* 移除下划线（如果按钮是链接） */  
    color: #fff;  
    background: #ff2a14;  
    transition: background 0.3s ease; /* 可选过渡效果 */  
}  
.popup-btn:hover {  
    background: #e0230f; /* 鼠标悬停时改变背景色 */  
}  
/* 清除默认的链接样式（如果需要） */  
.popup a {  
    color: #FF0000; /* 保持红色（但请注意，这可能会被.popup-btn的样式覆盖） */  
}  
/* 图标样式 */  
.popup-icon {  
    display: flex; /* 使用Flexbox进行垂直居中 */  
    justify-content: center; /* 水平居中 */  
    align-items: center; /* 垂直居中 */  
    height: 200px;  
    margin-bottom: 20px; /* 使用margin而不是margin-top进行垂直间距 */  
    margin: -75px 0 0;
}  
  
.popup-icon img {  
    max-height: 100%; /* 图片最大高度为容器高度 */  
    width: auto; /* 保持图片的原始宽高比 */  
}  
.popup::after {
    content: '';
    height: 80px;
    width: 100%;
    background: #e6e8e9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 18px 18px 0 0;
}  
/* 其他可选样式... */

.popup-main {
    margin-top: -40px;
}
/* 位移40像素... */
.popup-icon h1 {
    font-size: 40px;  /* 设置文字大小为40像素 */
    margin-top: 25px;  /* 向下移动25像素 */
}