@charset "utf-8";

/* 公共底部样式 */
.footer {
    background: #2c2c2c;
    padding: 60px 0 0;
    color: #a5a5a5;
}

.footer .section_title h1 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 30px;
}

/* Newsletter */
.newsletter {
    padding-bottom: 50px;
    border-bottom: 1px solid #3c3c3c;
}

.newsletter_form_container {
    max-width: 600px;
}

.newsletter_form {
    display: flex;
    gap: 10px;
}

.newsletter_email {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: #3c3c3c;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.newsletter_submit_btn {
    padding: 15px 30px;
    background: #1e5799;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter_submit_btn:hover {
    background: #ffcc00;
}

/* Footer Content */
.footer_content {
    padding: 50px 0;
}

.footer_about_text {
    margin-top: 20px;
    line-height: 1.8;
}

.footer_column_title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer_column_content ul {
    list-style: none;
    padding: 0;
}

.footer_list_item {
    margin-bottom: 10px;
}

.footer_list_item a {
    color: #a5a5a5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_list_item a:hover {
    color: #ffcc00;
}

.footer_contact_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #a5a5a5;
}

.footer_contact_icon {
    margin-right: 10px;
    width: 20px;
}

.footer_contact_icon img {
    width: 100%;
}

/* Footer Bar */
.footer_bar {
    padding: 20px 0;
    border-top: 1px solid #3c3c3c;
}

.footer_copyright {
    color: #a5a5a5;
    font-size: 14px;
}

.footer_social {
    display: flex;
}

.menu_social {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_social_item a {
    color: #a5a5a5;
    font-size: 16px;
    transition: color 0.3s ease;
}

.menu_social_item a:hover {
    color: #ffcc00;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .newsletter_form {
        flex-direction: column;
    }
    
    .footer_col {
        margin-bottom: 30px;
    }
}
