﻿/* 基础样式 */
td{font-size:9pt;line-height:160%} 
body{font-size:9pt;line-height:160%} 

a:link       { color: #0033CC; text-decoration: none }
a:visited    { color: #0033CC; text-decoration: none }
a:active     { color: #FF0000; text-decoration: none }
a:hover      { color: #000000; text-decoration: underline}

.subbtn{ padding:3px 12px; background:#04B5AF; color:#fff; border-radius:3px; box-shadow:0 1px 1px #ddd;cursor:pointer;border:0px;border-bottom-style:none;border-top-style:none;border-left-style:none;border-right-style:none;}

/* 弹窗样式 */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 1000;
    width: 400px;
    display: none;
    border: 3px solid #582a0f;
}

.popup-header {
    background: #582a0f;
    color: white;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    margin: -20px -20px 20px -20px;
}

.popup-body {
    font-size: 14px;
    line-height: 1.6;
}

.popup-footer {
    text-align: center;
    margin-top: 20px;
}

.close-btn {
    background: #582a0f;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

/* 修复文字居中问题 - 移除原有的文字容器 */
.qiangjie-btn-text {
    /* 保留这个类但调整样式 */
    display: block;
    text-align: center;
    width: 100%;
    position: relative;
    top: -2px; /* 微调垂直位置 */
}

/* 修复阴影样式 */
.qiangjie-shadow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    filter: blur(8px);
    transition: all 0.3s ease;
    z-index: -1;
}

.qiangjie-btn:hover + .qiangjie-shadow {
    width: 140px;
    height: 30px;
    filter: blur(10px);
    opacity: 0.5;
}

.qiangjie-btn:active + .qiangjie-shadow, 
.qiangjie-btn.active + .qiangjie-shadow {
    width: 100px;
    height: 20px;
    filter: blur(5px);
    opacity: 0.3;
}

/* 冷却指示器位置调整 */
.cooling-indicator {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: rgba(0,0,0,0.7);
    padding: 5px 0;
    border-radius: 10px;
    display: none;
    font-weight: bold;
    text-shadow: 0 0 3px #000;
}