/* ========== 关注服务号按钮样式（与原订阅按钮样式一致） ========== */
/* 关注服务号按钮基本样式，与 #subscribe-btn 保持一致 */
#follow-wechat {
    display: block;       
    width: 450px;         
    max-width: 100%;
    height: 5.5rem;
    padding: 14px 0;      
    margin: 1.5rem 0 0.5rem auto; 
    color: white;
    border-radius: 8px;
    border: none;
    text-align: center;
    outline: none;
    transition: all 0.25s ease;
    font-size: 3rem;    
    font-weight: bold;
    line-height: 1;
    background-color: #009999 !important;      /* 激活状态的背景色，与原订阅按钮激活状态保持一致 */
    box-shadow: 0 4px 12px rgba(0, 153, 153, 0.2) !important;
    cursor: pointer;
}

/* 关注服务号按钮悬停效果（与原订阅按钮激活悬停一致） */
#follow-wechat:hover {
    background-color: #008080 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 153, 153, 0.3) !important;
}

/* 关注服务号按钮按下效果 */
#follow-wechat:active {
    transform: scale(0.96);
}

/* 关注服务号按钮禁用状态（与原订阅按钮禁用状态一致） */
#follow-wechat:disabled {
    background-color: #e0e0e0 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    color: #999999 !important;
    transform: none !important;
}

/* 手机端适配：关注服务号按钮尺寸调整（与原订阅按钮手机端样式一致） */
@media (max-width: 768px) {
    #follow-wechat {
        width: 100%;
        margin: 1rem 0 1.5rem 0;
        font-size: 2rem;
        height: 5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}