/* 常见问题页面样式 */
.page-main {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.page-question {
    margin-bottom: 30px;
}

.page-columnname {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.fliter-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.search-box {
    margin-bottom: 15px;
}

.search-box .text-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.search-box .ti {
    color: #666;
    margin-right: 10px;
    min-width: 60px;
}

.search-box .text {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.search-box .text:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
    outline: none;
}

.search-box .btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box .btn:hover {
    background: #0056b3;
}

.filter .ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter .ul li {
    margin-bottom: 15px;
}

.filter .ti {
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.filter .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter .options .all {
    display: inline-block;
}

.filter .options .dl {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter .options .dl dd {
    margin: 0;
}

.filter .options a {
    display: inline-block;
    padding: 6px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.filter .options a:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.filter .options .active a {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.data-list .ul {
    list-style: none;
    padding: 0;
}

.data-list .ul li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.data-list .ul li:hover {
    background: #f8f9fa;
}

.data-list .ul li.li-even {
    background: #f8f9fa;
}

.data-list .a-ti {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: color 0.3s;
}

.data-list .a-ti:hover {
    color: #007bff;
}

.hotkeysbox {
    margin-top: 10px;
}

.hotkeyswrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hotkeyswrap a {
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 15px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.hotkeyswrap a:hover {
    background: #007bff;
    color: white;
} 