/* five-style.css */
a{
    text-decoration: none;
    /*color: white;*/
}
.five-footer {
    width: 100%;
    background-color: black; /* 添加背景色以便区分 */
    color:white;
}

.five-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 确保子元素在一行内水平分布 */
    width: 100%;
    padding: 20px;
    /*border: 2px solid #007bff;*/
}

.five-left-section, .five-right-section {
    flex: 1; /* 让两个部分等宽并占据可用空间 */
    padding: 10px;
    min-width: 300px; /* 设置最小宽度以防止过窄 */
}

.five-logo {
    margin-bottom: 20px;
}

.footer-logo {
    width: 210px;
    height: 50px;
}

.five-company-description {
    padding-top: 5px;
    margin-bottom: 20px;
}

.five-qrcodes {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    width: 400px;
    /*border: 2px solid white;*/
}

.qrcode {
    width: 25%;
    height: 90px;
    margin: 0 5px;
}

.five-right-section {
    display: flex;
    flex-direction: column;
}

.five-nav-columns {
    flex: 1;
    display: flex;
    gap: 80px;
    /* justify-content: space-between; */
    /* border: 2px solid white; */
}

.five-column {
    text-align: center;
    margin-left: 110px;
}

.five-column-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.five-column-links {
    list-style-type: none;
    padding: 0;
}

.five-column-links li {
    margin: 25px 0;
}
.five-column-links li a{
    color: white;
}
.five-copyright {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background: url('../../static/new_img/首页/背景.jpg') no-repeat center center; /* 设置高清背景图 */
    background-size: cover; /* 确保背景图覆盖整个区域 */
    background-color:black; 
}

.five-record-number {
    margin: 0;
}