/* 全站底部红条表单 + 页脚（与 Home/View/Homepage/index.html 一致，PC 基准样式） */
.red-form-container {
    background-color: rgba(207, 58, 43, 1);
    padding: 12px 0;
    position: relative;
}
.red-form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4px 20px;
    position: relative;
}
.red-form-character {
    position: absolute;
    bottom: 0;
    left: calc(45% - 500px);
}
.red-form-character img {
    height: 160px;
}
.red-form-inputs {
    display: flex;
    gap: 20px;
    margin-left: 140px;
    margin-right: 30px;
}
.red-form-input {
    padding: 5px 15px;
    border: 1px solid #fff;
    border-radius: 32px;
    background-color: transparent;
    color: #fff;
    width: 180px;
}
.red-form-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.red-form-btn {
    padding: 10px 30px;
    background-color: #fff;
    color: #e63946;
    border: none;
    border-radius: 32px;
    font-weight: bold;
    cursor: pointer;
}
.home-footer {
    min-width: 1200px;
}
.home-footer .content_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 48px 0;
}
.home-footer .index_join {
    width: 220px;
    flex: 0 0 220px;
}
.home-footer .index_about {
    width: 360px;
    flex: 0 0 360px;
}
.home-footer-record {
    width: 100%;
    height: 45px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-footer-record .wrap_copyright {
    color: #999;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}
.home-footer-record .wrap_copyright span {
    color: #999;
}
.home-footer-qrs {
    margin: 16px 0 0 56px;
    display: flex;
    gap: 42px;
    flex: 0 0 auto;
}
.home-footer-qr-item {
    text-align: center;
    color: #fff;
}
.home-footer-qr-item img {
    width: 82px;
    height: 82px;
    display: block;
    margin: 0 auto 8px;
    background: #fff;
    padding: 3px;
    box-sizing: border-box;
}
.home-footer-qr-item p {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
}
.footer-phone a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    .red-form-content {
        flex-direction: column;
        gap: 20px;
    }
    .red-form-inputs {
        flex-wrap: wrap;
        justify-content: center;
        margin-right: 0;
    }
    .red-form-input {
        width: 120px;
    }
}
