/* === Product Notice Module - 产品注意事项模块 === */
.product-notice-module.product-module {
    padding-bottom: 0;
}

.notice-section {
    padding: 0 !important;
}

.notice-section .section-header {
    padding: 0;
}

.notice-compact-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    background: #fff;
}

.notice-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    transition: background-color 0.2s ease;
}

.notice-list-item:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.notice-list-item:hover {
    background-color: #f8fafc;
}

.notice-item-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.notice-item-icon svg {
    width: 18px;
    height: 18px;
}

.notice-item-text {
    font-size: 20px;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
    font-family: var(--normal-font);
}

/* Responsive adjustment for compact list */
@media (max-width: 600px) {
    .notice-list-item {
        padding: 12px 16px;
    }
}
