.contact-form {
    width: 100%;
    margin-top: 0.3rem;
    display: flex;
    flex-direction: column;
}
.contact-form > .form-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contact-form > .form-item > .lable {
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.3rem;
    text-transform: capitalize;
}
.contact-form > .form-item > .form-input {
    width: 100%;
    padding: 0.15rem 0.2rem;
    height: 0.51rem;
    background: #f5f8fc;
    border-radius: 0.08rem;
    margin: 0.1rem 0 0.2rem;
}
.contact-form > .form-item > .form-input.form-textarea {
    height: auto;
}
.contact-form > .form-item > .form-input > input,
.contact-form > .form-item > .form-input > textarea {
    height: 100%;
    width: 100%;
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.3rem;
    outline: none;
    background-color: transparent;
    border: none;
}
.contact-form > .form-item > .form-input > input::-moz-placeholder,
.contact-form > .form-item > .form-input > textarea::-moz-placeholder {
    color: #98a6c7;
}
.contact-form > .form-item > .form-input > input::placeholder,
.contact-form > .form-item > .form-input > textarea::placeholder {
    color: #98a6c7;
}
.contact-form > .tips {
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.3rem;
}
.contact-form > .submit-btn {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 3rem;
    height: 0.42rem;
    background: linear-gradient(180deg, #507afc 0%, #441dd5 100%);
    border-radius: 0.04rem;
    font-size: 0.18rem;
    font-family: Helvetica Neue;
    font-weight: bold;
    line-height: 0.3rem;
    color: #ffffff;
    margin: 0.3rem 0 0.6rem;
}
.partner-container {
    width: 100%;
    margin: 0 auto;
    background: #f5f8fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0.3rem;
    padding-bottom: 0.53rem;
}
.partner-container > .contact-messenger {
    font-size: 0.42rem;
    font-family: Helvetica Neue;
    font-weight: bold;
    color: #131d38;
}
.partner-container > .subtitle {
    margin: 0.1rem 0 0.4rem;
    font-size: 0.18rem;
    font-weight: 400;
    color: #666666;
}
.partner-container > .contact-way {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.2rem;
}
.partner-container > .contact-way > .way-item {
    width: calc(25% - 0.2rem);
    height: 0.6rem;
    background: #ffffff;
    border-radius: 0.08rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.2rem;
    cursor: pointer;
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.4);
}
.partner-container > .contact-way > .way-item:last-child {
    margin-right: 0;
}
.partner-container > .contact-way > .way-item > img {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0;
    margin-right: 0.1rem;
}
.partner-container > .contact-way > .way-item > span {
    font-size: 0.18rem;
    font-weight: 400;
    color: #131d38;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .contact-form {
        width: 100%;
    }
    .partner-container > .contact-way {
        flex-wrap: wrap;
        justify-content: space-around;
    }
}
