/* 文章内容提示插件样式 */
.acn-notice {
    padding: 15px;
    margin: 15px 0;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.acn-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transition: background-color 0.3s ease;
}

.acn-notice p {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
}

.acn-notice p:after {
    content: '';
    display: block;
    clear: both;
}

/* 超过一行长度时左对齐 */
.acn-notice p {
    text-align: left;
    max-width: 100%;
    white-space: normal;
}

/* 鼠标悬停效果 - 边框变色 */
.acn-notice:hover {
    border-color: rgba(0,0,0,0.3);
}

/* 不同类型提示的样式 */
.acn-type-info {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.acn-type-info::before {
    background-color: #2196f3;
}

.acn-type-info:hover::before {
    background-color: #0d47a1;
}

.acn-type-warning {
    background-color: #fff3e0;
    color: #e65100;
}

.acn-type-warning::before {
    background-color: #ff9800;
}

.acn-type-warning:hover::before {
    background-color: #e65100;
}

.acn-type-success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.acn-type-success::before {
    background-color: #4caf50;
}

.acn-type-success:hover::before {
    background-color: #2e7d32;
}

.acn-type-error {
    background-color: #ffebee;
    color: #b71c1c;
}

.acn-type-error::before {
    background-color: #f44336;
}

.acn-type-error:hover::before {
    background-color: #b71c1c;
}    