/**
 * 文章底部版权信息样式
 * 包含三种不同的样式供用户选择
 */

/* 通用样式 */
.zibll-copyright {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    clear: both;
}

.zibll-copyright p {
    margin: 5px 0;
}

.zibll-copyright a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 样式1：简约蓝色 */
.zibll-copyright-style1 {
    padding: 15px;
    border-top: 2px solid #3399FF;
    background-color: #f8f9fa;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.zibll-copyright-style1 a {
    color: #3399FF;
    border-bottom: 1px dotted #3399FF;
}

.zibll-copyright-style1 a:hover {
    color: #1177dd;
    border-bottom-color: #1177dd;
}

/* 样式2：卡片式 */
.zibll-copyright-style2 {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zibll-copyright-style2 .copyright-icon {
    font-size: 24px;
    color: #FF6B6B;
    margin-right: 15px;
}

.zibll-copyright-style2 .copyright-content {
    flex: 1;
}

.zibll-copyright-style2 a {
    color: #FF6B6B;
    font-weight: 500;
}

.zibll-copyright-style2 a:hover {
    color: #ff4040;
    text-decoration: underline;
}

/* 样式3：带边框 */
.zibll-copyright-style3 {
    position: relative;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fafafa;
}

.zibll-copyright-style3 .copyright-title {
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: #6c5ce7;
    color: #fff;
    padding: 2px 15px;
    font-size: 12px;
    border-radius: 15px;
}

.zibll-copyright-style3 .copyright-content {
    margin-top: 5px;
}

.zibll-copyright-style3 a {
    color: #6c5ce7;
    font-weight: 500;
}

.zibll-copyright-style3 a:hover {
    opacity: 0.8;
    text-decoration: underline;
} 