/*.foot-container {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    background-color: #363636;*/
/*}*/

/*.foot-content {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    width: 100%;*/
/*    max-width: 1600px;*/
/*    height: 100%;*/
/*    margin: 0 auto;*/
/*    padding: 50px 0;*/
/*    border: 1px solid #f1132d;*/

/*}*/

/*底部样式 */
.foot-container {
    background-color: #363636;
    color: #fff;
    padding: 30px 0;
}

.foot-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    /*border: 1px solid #f1132d;*/
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
    /*margin-bottom: 20px;*/
}

.footer-left {
    width: 40%;
    padding: 0 20px;
    margin-left: 20px;
}

.footer-right {
    flex: 1;
    padding: 0 20px;
}


.footer-left p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.footer-right h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-item {
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-item:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #999;
}

 .footer-info a {
     color: #999;
     text-decoration: none;
 }
