/* 
 * 云南震序律师事务所网站页脚样式
 * 包含：页脚区域的样式定义
 */

/* 底部样式 */
.footer {
    background-color: #f4ad03; /* 黄色背景 */
    padding: 40px 0;
    position: relative;
}

/* 底部内容布局 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 底部Logo区域 */
.footer-logo {
    width: 20%;
}

.footer-logo h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
    letter-spacing: 0;
    line-height: 1.4;
}

.footer-logo p {
    font-size: 12px;
    color: #000000;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 1.4;
}

/* 底部导航菜单 */
.footer-nav {
    display: flex;
    flex-direction: row;
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
    border-left: 1px solid #000000; /* 左侧黑色边框 */
    border-right: 1px solid #000000; /* 右侧黑色边框 */
    height: 100%;
    width: 25%;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 2%;
}

/* 创建两列布局 */
.footer-nav-column {
    display: flex;
    flex-direction: column;
    width: 48%;
    justify-content: flex-start;
    align-items: center;
}

/* 中间的竖线 */
.footer-nav-divider {
    width: 1px;
    background-color: #000000; /* 黑色分隔线 */
    align-self: stretch;
    margin: 0;
}

/* 底部导航链接样式 */
.footer-nav a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.footer-nav a:last-child {
    margin-bottom: 0;
}

.footer-nav a:hover {
    color: #000000;
    text-decoration: none;
}

/* 底部联系信息区域 */
.footer-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 55%;
}

/* 联系信息容器 */
.contact-wrapper {
    width: 65%;
    display: flex;
    flex-direction: column;
}

/* 联系方式表格样式 */
.contact-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 10px;
}

.contact-table td {
    padding: 0;
    line-height: 1.4;
}

.contact-table .phone-icon {
    width: 24px;
    height: auto;
    margin-right: 8px;
    display: block;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 3px;
}

.contact-phone {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.contact-email, .contact-address {
    font-size: 14px;
    color: #000000;
    line-height: 1; /* 增加行高 */
}

/* 电话图标 */
.phone-icon {
    width: 28px;
    height: auto;
    margin-right: 10px;
}

/* 二维码容器 */
.qrcode-container {
    display: flex;
    width: 35%;
    justify-content: flex-end;
    align-items: center;
}

/* 二维码项 */
.qrcode-item {
    margin-right: 15px;
    text-align: center;
}

.qrcode-item:last-child {
    margin-right: 0;
}

/* 二维码图片 */
.qrcode-item .qrcode {
    width: 80px;
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    border-radius: 2px;
    overflow: hidden;
}

.qrcode-item .qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 二维码说明文字 */
.qrcode-item p {
    font-size: 11px;
    color: #000000;
    text-align: center;
    margin: 5px 0 0 0;
    line-height: 1.4;
}

/* 底部版权区域 */
.footer-bottom {
    background-color: #002b70; /* 蓝色背景 */
    padding: 40px 0; /* 控制蓝色区域的高度 */
}

/* 版权内容布局 */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 左右版权信息 */
.copyright-left, .copyright-right {
    display: flex;
    align-items: center;
}

.copyright-left span, .copyright-right span {
    font-size: 12px;
    color: #fff;
    margin-right: 5px;
}

/* 分隔符 */
.copyright-left .divider, .copyright-right .divider {
    margin: 0 10px;
    color: #fff;
}

.copyright-right span {
    margin-left: 0;
}

/* 底部链接样式 */
.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #f4ad03; /* 悬停时为黄色 */
    text-decoration: none;
}

/* 回到顶部 */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: #002b70;
    border-radius: 3px;
    cursor: pointer;
    z-index: 99999;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.to-top::before {
    content: "↑";
    display: block;
    color: white;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
}

.to-top:hover {
    background-color: #f4ad03;
}

/* 以下是响应式样式，已移至template/zhenxulaw/css/responsive/foot.css */
