/* Footer Section */
.footer-section {
    background-image: url('../images/part4_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    padding-top: 0px;
}

.footer-row {
    justify-content: space-between;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
}
.index-footer .footer-row{
    display: flex;
}
.index-footer .footer-content{
    padding-top: 40px;
}
.footer-column {
    flex: 1;
}

.footer-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 26px;
}

.footer-text {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    display: block;
}

.footer-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    /*height: 40px;*/
    width: 100%;
}

.footer-icon {
    /*width: 220px;*/
    /*height: 46px;*/
    width: auto;
    height: 40px;
}

.partner-grid {
    display: flex;
    /*align-items: center;*/
    justify-content: flex-start;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 8px 15px;
    max-width: 76px;
    box-sizing: border-box;

}
.partner-item:not(:nth-child(3n)) {
    margin-right: 16px;
}

.partner-icon {
    width: 60px;
    height: 60px;
}

.partner-text {
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
}

.contact-text {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: left;
    line-height: 20px;
}

/* Footer 第二行样式 */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
    box-sizing: border-box;
}

.copyright {
    font-size: 14px;
    color: #fff;
    /*margin-bottom: 10px;*/
}

.icp {
    font-size: 16px;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .footer-content {
        padding: 0 1rem 0!important;
    }
    .footer-bottom {
        padding: 16px 0;
    }
    .copyright {
        font-size: 14px;
        /*margin-bottom: 8px;*/
    }
    .icp {
        font-size: 14px;
    }
}
