/* 底部样式 */
.footer {
    background: #1E1E1E;
    color: #fff;
    padding-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
    display: flex;
    gap: 60px;
    flex: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: normal;
    white-space: nowrap;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
}

.footer-info {
    flex: 1;
    padding-left: 40px;
    display: flex;
}

.company-info {
    display: flex;
    gap: 10px;
}

.company-info-item {
    margin-left: 20px;
}
.company-info-text{
    white-space: nowrap;
}
.company-info-text h3 {
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
}

.company-info-text p {
    opacity: 0.75;
    font-family: AlibabaPuHuiTi-Regular;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
}
.company-info-text-top{
    margin-top: 5px;
}
.company-info-text-item{
    display: flex;
    align-items: center;
}
.company-info-text-item img{
    width: 16px;
    height: 16px;
    /* opacity: .34; */
}
.company-info-text-item span{
    margin-right: 5px;
    opacity: 0.35;
    color: #FFFFFF;
    margin-left: 5px;
    font-size: 16px;
}
.company-info-text-item p{
    margin-left: 10px;
    color: #FFFFFF;
    font-size: 16px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 5px 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 两列布局 */
        gap: 20px;
        padding: 0 15px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 0;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-column ul {
        margin: 0;
    }

    .footer-column ul li {
        margin-bottom: 8px;
        text-align: center;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    /* 联系信息列占满整行 */
    .footer-column.contact {
        grid-column: 1 / -1;  /* 从第一列跨到最后一列 */
    }

    .footer-info {
        padding: 0;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .company-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-info-item {
        margin-left: 0;
        margin-top: 20px;
    }

    .company-info-text {
        text-align: center;
    }

    .footer-bottom-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 15px;
        padding: 0 10px;
    }

    .footer-column h4 {
        font-size: 15px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-info {
        padding: 0;
        flex-direction: column;
        /* align-items: center; */
        gap: 30px;
    }

    .company-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-info-item {
        margin-left: 0;
        margin-top: 20px;
    }

    .company-info-text {
        text-align: center;
    }

    .footer-bottom-container {
        flex-direction: column;
    }
	
	.company-info-text-item p{
		white-space: break-spaces;
		text-align: left;
	}
	.company-info-text h3{
		white-space: break-spaces;
	}
} 