/* 基础样式 */

.main {
    margin: auto;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.ttt {
    
}
.detect-area {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.detect-area li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detect-area li:last-child {
    border-bottom: none;
}

.detect-area span {
    font-weight: bold;
}

/* 结果样式 */
.result-y {
    color: #27ae60;
}

.result-n {
    color: #e74c3c;
}

/* 按钮样式 */
.btn-redetect {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-redetect:hover {
    background: #2980b9;
    text-decoration: none;
}

.info {
    background-color: #FFF9DB;
    border: 1px solid #FFD600;
}
