/* 公告栏样式 */
.goods-list-notice {
    background: #fff;
    border: 1px solid #e8f4fd;
    /* border-left: 4px solid #6a5acd; */
    border-radius: 8px;
    padding: 3px 7px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 2px 12px rgba(106, 92, 255, 0.08);
}

.goods-list-notice::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    /* background: linear-gradient(180deg, #6a5acd 0%, #8bb4e8 100%); */
    border-radius: 8px 0 0 0 8px;
}

.goods-list-notice * {
    max-width: 100%;
    box-sizing: border-box;
}

.goods-list-notice p {
    margin: 0 0 12px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

.goods-list-notice p:last-child {
    margin-bottom: 0;
}

/* 富文本内容样式 */
.goods-list-notice h1,
.goods-list-notice h2,
.goods-list-notice h3,
.goods-list-notice h4,
.goods-list-notice h5,
.goods-list-notice h6 {
    margin: 16px 0 8px 0;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
}

.goods-list-notice h1 { font-size: 18px; }
.goods-list-notice h2 { font-size: 17px; }
.goods-list-notice h3 { font-size: 16px; }
.goods-list-notice h4 { font-size: 15px; }
.goods-list-notice h5 { font-size: 14px; }
.goods-list-notice h6 { font-size: 13px; }

.goods-list-notice ul,
.goods-list-notice ol {
    margin: 12px 0;
    padding-left: 20px;
}

.goods-list-notice li {
    margin: 6px 0;
    color: #4a5568;
    line-height: 1.6;
}

.goods-list-notice a {
    color: #6a5acd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.goods-list-notice a:hover {
    color: #5a8bbe;
    text-decoration: underline;
}

.goods-list-notice strong,
.goods-list-notice b {
    color: #2c3e50;
    font-weight: 600;
}

.goods-list-notice em,
.goods-list-notice i {
    color: #6a5acd;
    font-style: normal;
}

.goods-list-notice code {
    background: #f1f5f9;
    color: #e83e8c;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.goods-list-notice blockquote {
    margin: 12px 0;
    padding: 12px 16px;
    background: #f8f9fa;
    border-left: 4px solid #6a5acd;
    border-radius: 0 6px 6px 0;
    color: #4a5568;
    font-style: italic;
}

.goods-list-notice table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 13px;
}

.goods-list-notice th,
.goods-list-notice td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.goods-list-notice th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.goods-list-notice img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 8px 0;
}
/* 图片高斯模糊 */
.blur {-webkit-filter: blur(10px);-moz-filter: blur(10px);-ms-filter: blur(10px);filter: blur(10px);filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false);}
