.flex-s{
    display: flex;
}
.flex-s-s{
    display: flex;
    align-items: center;
}
.flex-s-s-left{
    min-width: 200px;
}
.flex-s-s-right{
    margin-left: 15px;
}
.flex-s-s-img{
    margin-right: 8px;
    display: flex;
    align-items: center;
}
.choose-img-o{
    padding-top: 30px;
    margin-bottom: 20px;
}
.choose-content-o{
    margin-top: 10px;
    margin-bottom: 30px;
    line-height: 22px;
    min-height: 130px;
}
.choose-all-div{
    background-color: white;
    border-radius: 16px !important;
}
.phone-img{
    text-align: right;

}
.phone-img img{
    height: 450px;
}
.process-list{
    margin-left: 50px;
    background-color: #F5F6FC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 18px;
    width: 80%;
}
.process-num{
    background-color: white;
    border-radius: 64px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A3692F;
    margin-right: 10px;
    font-weight: 600;
}
.process-info-title{
    color: #A3692F;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-o-div{
    min-height: 300px;
}
.contact-o-div-left{
    background-color: #FFF8EF;
}
.contact-o-div-right{
    background-color: white;
}
.contact-info{
    padding-left: 30px;
}
.contact-info-title{
    padding-top: 25px;
    color: #1C1C1C;
    font-weight: 600;
    font-size: 24px;
}
.contact-info-content-s{
    color: #1C1C1C;
    font-weight: 600;
    margin-top: 5px;
}
.eligibility-img img{
    width: 50px;
}
.eligibility-title{
    font-weight: 600;
    color: #1C1C1C;
    margin: 10px 0;
}
/* 样式17：简约黑白下划线表单 */
.form-underline-basic {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-underline-basic .form-group label {
    color: #333;
    font-weight: 600;
}

.form-underline-basic .form-input,
.form-underline-basic .form-textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    border-radius: 0;
    color: #333;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.form-underline-basic .form-input:focus,
.form-underline-basic .form-textarea:focus {
    border-bottom-color: #D87817;
    box-shadow: none;
    padding-bottom: 12px;
}

.form-underline-basic .form-button {
    background: #8F5419;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.form-underline-basic .form-button:hover {
    background:#D87817;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    color: rgba(255,255,255,0.6);
    margin-bottom: 60px;
    text-align: center;
    font-size: 1.1em;
}

.form-section {
    margin-bottom: 120px;
    position: relative;
}

.form-title {
    color: #fff;
    font-size: 2em;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #48dbfb, #ff9ff3);
    border-radius: 2px;
}

/* 通用表单容器样式 */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* 通用输入框样式 */
.form-group {
   /* margin-bottom: 30px;*/
    position: relative;
}

.form-group label {
    display: block;
  /*  margin-bottom: 10px;*/
    color: #fff;
    font-weight: 500;
    font-size: 0.95em;
}

.form-input {
    width: 100%;
   /* padding: 15px 20px;*/
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-textarea {
    width: 100%;
   /* min-height: 150px;*/
    padding: 20px;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    outline: none;
}

.form-button {
    width: 100%;
    padding: 5px 18px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
   /* text-transform: uppercase;*/
    letter-spacing: 1px;
    font-family: inherit;
}
/* 弹窗样式 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal.success .modal-content {
    border-left: 5px solid #10ac84;
}

.modal.error .modal-content {
    border-left: 5px solid #ff6b6b;
}

.modal-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.modal.success .modal-icon {
    color: #10ac84;
}

.modal.error .modal-icon {
    color: #ff6b6b;
}

.modal-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.modal.success .modal-title {
    color: #10ac84;
}

.modal.error .modal-title {
    color: #ff6b6b;
}

.modal-message {
    color: #666;
    margin-bottom: 25px;
}

.modal-button {
    padding: 12px 30px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
}

.modal-button:hover {
    background: #555;
    transform: translateY(-2px);
}
