﻿/* 页脚核心样式 */
footer {
    width: 100%;
    /* 渐变上边框效果 - 核心样式 */
    border-top: 3px solid;
    border-image: linear-gradient(90deg, transparent, #2c3e50, transparent) 1;
    margin-top: 50px;
    padding-top: 20px;
}

/* 页脚内容容器 */
.footer-content {
    max-width: 1200px;
    margin: 0 auto; /* 容器整体居中 */
    text-align: center; /* 所有文字水平居中 */
    color: #666;
    font-size: 14px;
    line-height: 1.8; /* 行间距，提升可读性 */
}

/* 各行文字的细微样式区分 */
.copyright {
    margin-bottom: 5px;
    font-weight: 500;
    color: #999;
}

.address {
    margin-bottom: 5px;
}

.phone {
    color: #444;
    margin-bottom: 5px;
}

.icp {
    margin-bottom: 5px;
}

/* 响应式适配 - 移动端调整 */
@@ media (max-width: 768px) {
    footer {
        padding: 30px 15px;
    }

    .footer-content {
        font-size: 13px;
    }
}
