/* 内联样式提取 */

/* Logo标题样式 */
.logo-title {
    color: #ff6600;
    font-size: 18px;
    margin: 0;
    line-height: 1.2;
}

/* 居中标题样式 */
.section-title-center {
    text-align: center;
    color: #ff6600;
}

/* 居中段落样式 */
.text-center-desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
}

/* 行间距 */
.margin-top-40 {
    margin-top: 40px;
}

.margin-top-30 {
    margin-top: 30px;
}

/* 卡片样式 */
.card-box {
    border: 2px solid #ff6600;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.card-box-nocenter {
    border: 2px solid #ff6600;
    padding: 20px;
    border-radius: 8px;
}

/* 橙色文字 */
.text-orange {
    color: #ff6600;
}

/* 橙色粗体 */
.text-orange-bold {
    color: #ff6600;
    font-weight: bold;
}

/* 灰色背景框 */
.bg-gray-box {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* 联系信息框 */
.contact-box {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

/* 产品卡片 */
.product-card {
    border: 2px solid #ff6600;
    padding: 20px;
    border-radius: 8px;
}

/* 表格样式 */
.table-bordered-custom {
    width: 100%;
    border-collapse: collapse;
}

.table-bordered-custom th,
.table-bordered-custom td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.table-bordered-custom th {
    background-color: #ff6600;
    color: white;
}
