.content-full{margin-left: -30px!important;margin-right: -30px!important;}


.mt-10{margin-top: 10px !important;}
.mt-20{margin-top: 20px !important;}
.mt-30{margin-top: 30px !important;}
.mt-40{margin-top: 40px !important;}
.mt-50{margin-top: 50px !important;}
.mt-60{margin-top: 60px !important;}
.mt-70{margin-top: 70px !important;}
.mt-80{margin-top: 80px !important;}
.mt-90{margin-top: 90px !important;}
.mt-100{margin-top: 100px !important;}
.mb-10{margin-bottom: 10px !important;}
.mb-20{margin-bottom: 20px !important;}
.mb-30{margin-bottom: 30px !important;}
.mb-40{margin-bottom: 40px !important;}
.mb-50{margin-bottom: 50px !important;}
.mb-60{margin-bottom: 60px !important;}
.mb-70{margin-bottom: 70px !important;}
.mb-80{margin-bottom: 80px !important;}
.mb-90{margin-bottom: 90px !important;}
.mb-100{margin-bottom: 100px !important;}

.pb-10{padding-bottom: 10px !important;}
.pb-20{padding-bottom: 20px !important;}
.pb-30{padding-bottom: 30px !important;}
.pb-40{padding-bottom: 40px !important;}
.pb-50{padding-bottom: 50px !important;}
.pb-60{padding-bottom: 60px !important;}
.pb-70{padding-bottom: 70px !important;}
.pb-80{padding-bottom: 80px !important;}
.pb-90{padding-bottom: 90px !important;}
.pb-100{padding-bottom: 100px !important;}


.bb-1{border-bottom: solid 1px #ededed !important;}
.goods-cover{width: 120px !important;height: 120px !important;}




/* 规格 */
.multi-spec-editor {
    margin-bottom: 15px;
}
.multi-spec-editor .specs-container {
    margin-bottom: 10px;
}
.multi-spec-editor .spec-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
    transition: box-shadow 0.2s ease;
}
.multi-spec-editor .spec-item:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.multi-spec-editor .spec-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}
.multi-spec-editor .spec-item-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.multi-spec-editor .btn-remove-spec {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s ease;
}
.multi-spec-editor .btn-remove-spec:hover {
    background: #c0392b;
}
.multi-spec-editor .spec-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.multi-spec-editor .spec-field {
    margin-bottom: 10px;
}
.multi-spec-editor .spec-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
    font-size: 13px;
}
.multi-spec-editor .spec-field input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.multi-spec-editor .spec-field input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}
.multi-spec-editor .spec-controls {
    text-align: center;
    margin-top: 15px;
}
.multi-spec-editor .btn-add-spec {
    background: #3498db;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}
.multi-spec-editor .btn-add-spec:hover {
    background: #2980b9;
}
/* 响应式调整 */
@media (max-width: 768px) {
    .multi-spec-editor .spec-fields {
        grid-template-columns: 1fr;
    }
}