/* ==========================================================================
   基础按钮样式（全站共用）
   .button_1 是历史上遗留下来、被18个页面直接引用的通用按钮类，这里保留它的
   类名不变（避免要改一遍所有引用），但把颜色换成不透明的深青绿色，
   保证白字在上面对比度稳定达标，不再受叠加背景影响而看不清。
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: consolas;
}

.button_1 {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent-teal, #0d9488);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    animation: pulse 2s infinite;
    position: relative;
    transition: all 0.3s ease;
}

.button_1:hover {
    background: var(--accent-teal-dark, #0b7a70);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 148, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0);
    }
}
