
/* 全局样式 - 适配Ueeshop默认主题 */
.product-kit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}
.kit-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    border-left: 5px solid #0066cc;
    padding-left: 15px;
}
.kit-section {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.kit-section h2 {
    font-size: 18px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.kit-section h2::before {
    content: "■";
    margin-right: 8px;
    color: #0066cc;
}
.kit-list {
    padding-left: 20px;
}
.kit-list li {
    margin-bottom: 8px;
    font-size: 15px;
}
/* 参数表格样式 */
.param-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.param-table tr:nth-child(odd) {
    background: #fff;
}
.param-table tr:nth-child(even) {
    background: #f2f2f2;
}
.param-table td {
    padding: 10px 15px;
    border: 1px solid #eee;
    font-size: 15px;
}
.param-table td:first-child {
    font-weight: bold;
    width: 40%;
}
/* 功能标签样式 */
.function-tag {
    display: inline-block;
    background: #e6f2ff;
    color: #0066cc;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 5px 5px 0;
    font-size: 14px;
}
/* 联系方式样式 */
.contact-box {
    background: #0066cc;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
}
.contact-box a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}
/* 移动端适配 */
@media (max-width: 768px) {
    .kit-title {
        font-size: 20px;
    }
    .param-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}
