/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
img{
    display: block;
}
body {
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
}
.container {
    width: 1570px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq .container,.privacy .container,.personal .container,.delete .container,.contact .container,.company .container,.company-head .container,.home .container,.features-box .container,.steps-box .container,.loan-suitable-box .container{
    max-width: 1200px;
}

h1{
    font-size:48px;
    line-height: 56px;
}
h2{
    font-size:32px;
    line-height: 38px;
}
h3{
    font-size:24px;
    line-height: 28px;
}
/* 导航栏样式 */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(#FFAE00 0%, #FFFFFF 100%);
    width: 100%;
    min-width: 1570px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
}
.logo img{
    height: 64px;
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 50px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    color:#FFAE00;
}

.nav-links .active{
    color:#FFAE00;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    background-color: #ff9900;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #FFAE00;
}

/* 页面特定样式 */
/* 首页样式 */
.hero {
    position: relative;
    width: 100%;
}
.hero .hero-tip{
    position: absolute;
    top:10.92%;
    width: 90%;
}
.hero .hero-tip .containers .tips{
    padding: 0 25px;
    width: 500px;
}
.hero h1 {
    margin-bottom: 25px;
}
.hero p {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin: 10px 0 55px;
}
.hero .btn {
    color: white;
    padding: 0 32px;
    height: 75px;
    line-height: 75px;
    font-size: 25px;
    border-radius: 12px;
}
.features-box{
    margin-top:70px;
    background-color: #FFFDF5;
    padding: 140px 0;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 80px;
    gap:35px;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    padding: 66px 17px 88px;
    text-align: center;
    background-color: #F2F2F2;
    border-radius: 5px;
}
.feature-box img{
    display: inline-block;
    width: 110px;
}
.feature-box h3{
    margin-top:35px;
}
.feature-box p{
    margin-top:8px;
    font-size:15px;
    line-height: 20px;
    color:#5D5D5D;
}

.loan-container{
    margin-top:145px;
}

.loan-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    margin-top:60px;
}

.loan-type {
    flex: 1;
    min-width: 200px;
    text-align: center;
}
.loan-type img{
    width: 100%;
}
.loan-type h3{
    margin-top:20px;
}
.loan-type p{
    font-size:14px;
    line-height: 17px;
    color:#999999;
    margin-top:12px;
    padding:0 18px;
    min-height: 140px;
}

.loan-type .btn {
    color: #FFFFFF;
    padding: 0 32px;
    height: 60px;
    line-height: 60px;
    font-size:24px;
    border-radius: 12px;
}

.steps-box{
    background-color: #FFFBFC;
    padding:75px 0;
}

.steps {
    margin-top:50px;
}

.step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.step ._item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 350px);
}
.step ._item img{
    width: 80px;
    margin-right: 15px;
}
.step ._item h3{
    font-size:18px;line-height: 22px;
}
.step ._item p{
    font-size:14px;
    line-height: 17px;
    margin-top:15px;
}
.step .btn{
    padding:0;
    color: #FFFFFF;
    width: 210px;
    height: 60px;
    line-height: 60px;
    font-size:20px;
}

.loan-suitable-box{
    background-color: #FDFFFF;
    padding:75px 0;
}

.loan-suitable-container .loan-suitable{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top:85px;
}
.loan-suitable-container .loan-suitable img{
    width: 550px;
}
.loan-suitable-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 35px;
    width: calc(100% - 585px);
}
.loan-suitable-content ._item{
    background: #FFEABD;
    padding:40px 0 60px;
    width: calc(50% - 17.5px);
    text-align: center;
    border-radius: 16px;
}
.loan-suitable-content ._item p{
    font-size:14px;
    margin-top:18px;
    line-height: 24px;
}

/** about us**/
#company .container .company-content{
    position: relative;
    background: #F6F9FB;
    margin-top:-60px;
    z-index: 1;
    border-radius: 16px;
    padding:59px 64px;
}
#company .container h2{
    text-align: center;
}
#company .container .company-profile{
    margin:22px 0 97px;
    font-size:16px;
}
#company .container .company-profile p{
    margin-bottom: 20px;
}
#company .container .core-values{
    margin: 30px 0;
}
#company .container .core-values .value-item{
    display: flex;
    margin-bottom: 10px;
}
#company .container .core-values .value-item img{
    width: 40px;
    margin-right: 15px;
}
#company .container .core-values .value-item h3{
    line-height: 36px;
    font-size:16px;
}
#company .container .core-values .value-item p{
    font-size:16px;
    line-height: 24px;
    margin-top:10px;
}

.address-info{
    padding:65px 0;
}
.address-info h3{
    font-size:20px;
}
.address-info p{
    margin-top:10px;
    color:#999999;
    font-size:16px;
}

/* 账户删除页样式 */
.delete-account {
    text-align: center;
    margin: 30px 0;
}
.delete-account p{
    font-size:16px;
    line-height: 19px;
}
.delete-account .des{
    margin-top:20px;
}
.warning-icon img{
    width: 398px;
    display: inline-block;
    margin:55px 0;
}

.delete-options {
    display: flex;
    justify-content: space-between;
    margin: 44px 0;
}
.delete-options .btn {
   width: 49%;
    height: 60px;
    line-height: 60px;
    font-size:26px;
    font-weight: 600;
}
.delete-options .yes-btn {
    background: #FFFFFF;
    color:#FFAE00;
    margin-right: 120px;
    border:1px solid #FFAE00;
}
.delete-options .no-btn {
    background: #FFAE00;
    color:#FFFFFF;
    border:1px solid #FFAE00;
}

.delete-tips{
    margin-top:165px;
}

.delete-form {
    margin: 0 30px;
}

.delete-form ._content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:45px 100px 100px;
}
.delete-form ._content ._line{
    width: 15px;
}
.delete-form ._content ._line img{
    width: 100%;
}
.delete-form ._content ._input{
    width: calc(100% - 95px);
}
.delete-form ._content ._input .form-group{
    margin-bottom: 55px;
}
.delete-form ._content ._input .form-group:last-child{
    margin-bottom: 0;
}
.delete-form ._content ._input label{
    display: block;
    line-height: 30px;
    font-size:24px;
    margin-bottom: 16px;
    color:#333333;
    text-align: left;
}
.delete-form ._content ._input input{
    height: 50px;
    background: #FFEABD;
    width: 100%;
    border-radius: 10px;
    padding:0 20px;
    font-size:16px;
    /* 基础边框样式（必须设置 border-style 才会显示边框，如 solid/dashed 等） */
    border: 1px solid #FFEABD; /* 宽度 2px、实线、灰色 #ccc */
    /* 可选：去除默认外边框（部分浏览器会自带） */
    outline: none;
}
.delete-form .submit-btn{
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #FFAE00;
    color:#FFFFFF;
    font-size:28px;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
}
.delete-form ._btn:hover {
    background: #e56d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.5);
}

/** faq **/
.fap-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 110px;
}
.fap-head img{
    width: 663px;
}
.faq-content  h2{
    margin:55px 0 30px;
}
.faq-content .content{
    font-size:18px;
}
.faq-content .content .faq-item{
    margin-bottom: 16px;
    background: rgb(255,234,189,41%);
    border: 0.5px solid #E2E9EA;
    border-radius: 6px;
}
.faq-content .content .faq-item ._title {
    cursor: pointer;
    position: relative;
    font-size: 18px;
    padding: 13.5px 12px;
    font-weight: 600;
    line-height: 21px;
    display: flex;
    align-items: center;
}
.faq-content .content .faq-item ._title::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s
    ease;
}
.faq-content .content .faq-item article{
    padding:12px 12px 24px;
    color:rgba(22,80,90,0.6);
    font-size:15px;
    border-top:0.5px solid #E2E9EA;
    display: none;
}
.faq-content .content .faq-item.active article{
    display: block;
}
.faq-content .content .faq-item.active ._title::after {
    transform: translateY(-50%) rotate(45deg);
}

/* 隐私政策页样式 */
.privacy h1 {
    margin: 45px 0;
    text-align: center;
    font-size:40px;
}
.privacy .privacy-content {
    font-size:18px;
}

/** personal **/
.personal-head{
    margin:82px 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.personal-head img{
    width: 256px;
}
.personal-head .personal-head-des{

    left:0;
}
.personal-head .personal-head-des h2{
    margin:16px 0 22px;
}
.personal-head .personal-head-des p{
    font-size:18px;
}
.personal-head .personal-head-des .btn{
    font-size:26px;
    margin-top:35px;
    background: #FFAE00;
    border-radius: 12px;
    box-shadow: 0 4px 4px 0 rgba(74, 62, 62, 0.25);
    height: 60px;
    line-height: 60px;
    width: 197px;
    text-align: center;
    color: #FFFFFF;
    font-weight: 600;
}
.loan-calculator h1{
    text-align: center;
}
.loan-calculator ._input_group{
    margin-top:70px;
    display: flex;
    justify-content: space-between;
}
.loan-calculator ._input_group .form-group{
    width: 48%;
}
.loan-calculator ._input_group .form-group label{
    display: block;
    font-size:24px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 15px;
}
.loan-calculator ._input_group .form-group input{
    width: 100%;
    height: 60px;
    background: #FFEABD;
    border-radius: 12px;
    padding:0 25px;
    font-size:14px;
    /* 基础边框样式（必须设置 border-style 才会显示边框，如 solid/dashed 等） */
    border: 1px solid #FFEABD; /* 宽度 2px、实线、灰色 #ccc */
    /* 可选：去除默认外边框（部分浏览器会自带） */
    outline: none;
    box-shadow: 0 4px 4px 0 rgba(74, 62, 62, 0.25);
}
.loan-calculator .loan-purpose{
    margin-top:45px;
    background: #FFEABD;
    border-radius: 12px;
    box-shadow: 0 4px 4px 0 rgba(74, 62, 62, 0.25);
    padding:42px 13px 55px;
}
.loan-purpose-title{
    font-size:24px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
}
.loan-purpose-item{
    display: flex;
    justify-content: space-between;
    margin-top:35px;
}
.loan-purpose-item p{
    width: 216px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #FFAE00;
    color:#FFFFFF;
    font-size:18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
}
.loan-btn{
    margin-top:50px;
    background: #FFEABD;
    border-radius: 50px;
    box-shadow: 0 4px 4px 0 rgba(74, 62, 62, 0.25);
    padding:24px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.loan-btn p{
    font-size:18px;
}
.loan-btn .btn{
    background: #FFAE00;
    border-radius: 16px;
    height: 60px;
    line-height: 60px;
    color:#FFFFFF;
    width: 258px;
    font-size:26px;
}
.loan-steps{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:180px 0 0 70px;
}
.load-steps-logo{
    position: relative;
}
.load-steps-logo p{
    font-size:28px;
    font-weight: 600;
    line-height: 34px;
}
.text-steps{
    position: absolute;
    left: 50px;
    top: -10px;
}
.text-loan{
    position: absolute;
    left: -10px;
    top: 22px;
}
.load-steps-logo img{
    width: 190px;
}
.loan-steps .steps-content{
    width: calc(100% - 372px);
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}
.loan-steps .steps-content .step-item{
    position: relative;
}
.loan-steps .steps-content .step-item h3{
    color:#FFAE00;
    margin-bottom: 16px;
}
.loan-steps .steps-content .step-item p{
    font-size:16px;
    line-height: 22px;
}
.loan-steps .steps-content ._bg{
    position: absolute;
    width: 653px;
    right:0;
    bottom: -15px;
}

/* contact */
.contact .container{
    padding: 0 15px 0 45px;
}
.contact .contact-content{
    display: flex;
    align-items: center;
}
.contact .contact-content ._item{
    width: 50%;
}
.contact .contact-content ._item img{
    width: 100%;
}
.contact .contact-content ._item h3{
    padding-right: 55px;
    text-align: center;
    margin-bottom: 35px;
}
.contact-method{
    margin:125px 40px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size:16px;
}
.contact-method p{
    line-height: 30px;
}
.contact-method b{
    margin-right: 5px;
}
._item ._important-notes h2{
    margin-bottom: 35px;
    text-align: center;
}
._item ._important-notes p{
    font-size:16px;
    line-height: 22px;
    margin-bottom: 24px;
    margin-left:60px;
}
/* 工具 */
._tool{
    position: fixed;
    top:30%;
    right: 20px;
    z-index:9999;
}
._tool ._contact{
    background: #FFEABD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding:25px 10px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    cursor: pointer;
}
._tool a{
    text-decoration: none;
    color:#000000;
}
._tool ._contact ._item{
    text-align: center;
}
._tool ._contact img{
    width: 40px;
    display: inline-block;
}
._tool p{
    font-size:15px;
}
._tool ._top{
    background: #FFEABD;
    border-radius: 8px;
    margin-top:15px;
    text-align: center;
    padding:3px 0 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    cursor: pointer;
}
/* 按钮悬停效果 */
._tool ._top:hover {
    transform: scale(1.1);
}
._tool ._top p{
    font-weight: 600;
}
._tool ._top img{
    width: 38px;
    display: inline-block;
}
/* 页脚样式 */
.footer {
    margin-top:180px;
    background-color: #FFAE00;
    color: white;
    padding: 72px 0 59px;
    width: 100%;
    min-width: 1570px;
}
.footer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .container p{
    color:rgb(255, 255, 255, 76%);
    font-size:20px;
}
.footer .container ._logo img{
    height: 95px;
    margin-right:64px;
}
.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links li {
    margin-left:118px;
    font-size:18px;
    font-weight: 600;
    line-height: 22px;
}
.footer-links li:first-child {
    margin-left:0;
}
.footer-links li:nth-child(2) {
    margin-left:35px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.footer-links ._title a {
    text-decoration: grey;
}

.footer-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.footer-links div {
    text-align: left;
    margin-bottom: 10px;
}

/* 页面容器 */
.page {
    min-height: calc(100vh - 150px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    h1{font-size:22px;line-height: 28px;}
    h2{font-size:20px;line-height: 26px;}
    h3{font-size:18px;line-height: 24px;}
    .navbar,.hero{
        min-width: 100%;
    }
    .container {
        width: 100%;
    }
    .navbar-container {
        flex-direction: row;
        align-items: center;
        height: 75px;
    }
    .logo img{
        height: 45px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .hero .hero-tip .containers .tips{
        width: 100%;
        max-width: 375px;
        padding: 0 10px;
    }
    .hero h1{
        font-size:18px;
        line-height: 22px;
        margin-bottom: 15px;
    }
    .hero p{
        font-size:16px;
        line-height: 20px;
        margin-bottom: 25px;
    }
    .hero .btn{
        font-size: 15px;
        padding: 0 12px;
        height: 45px;
        border-radius: 8px;
        line-height: 45px;
    }

    .features-box{
        margin-top: 40px;
        padding:5px 0 30px;
    }
    .features-container,.loan-container,.steps-container,.loan-suitable-container{
        margin-top: 45px;
    }
    .features,.loan-types,.steps{
        margin-top: 15px;
        gap: 15px;
    }
    .feature-box{
        padding: 25px 15px 30px;
    }
    .feature-box img{
        width: 70px;
    }
    .feature-box h3 {
        margin-top: 5px;
    }
    .feature-box p{
        margin-top:15px;
        font-size:14px;
    }

    .loan-container h2{
        text-align: left;
    }
    .loan-type {
        background: #F2F2F2;
        border-radius: 5px;
    }
    .loan-type h3{
        margin-top:10px;
    }
    .loan-type p{
        margin-top:7px;
        font-size:14px;
        min-height:auto;
    }
    .loan-type .btn,.step .btn{
        padding: 0;
        width: 100%;
        font-size: 16px;
        height: 45px;
        line-height: 45px;
        margin: 10px 0 26px;
    }
    .loan-type .btn{
        margin: 10px 0 0;
    }

    .steps-box{
        padding:5px 0;
    }
    .step{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .step ._item{
        width: 100%;
        align-items: flex-start;
        margin-bottom: 0;
    }
    .step ._item img{
        width: 50px;
        margin-right: 15px;
    }
    .step ._item p{
        font-size:14px;
    }
    .loan-suitable-box{
        padding: 5px 0;
    }
    .loan-suitable-container .loan-suitable{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 15px;
    }
    .loan-suitable-container .loan-suitable img{width: 100%;}
    .loan-suitable-content{
        margin-top: 15px;
        width: 100%;
        gap: 15px;
    }
    .loan-suitable-content ._item{
        width: 100%;
        padding: 30px 0 38px;
    }
    .loan-suitable-content ._item p{
        font-size:14px;
        line-height: 20px;
        margin-top:5px;
    }
    .nav-links a {
        display: block;
        padding: 10px;
        width: 100%;
        font-size:18px;
    }

    /**about Us**/
    #company .container{
        margin:0;
        padding:0;
    }
    #company .container .company-content{
        margin-top: -20px;
        padding: 30px 15px;
    }
    #company .container .company-profile{
        margin:30px 0 45px;
        font-size:16px;
    }
    #company .container .company-profile p{
        margin-bottom: 15px;
    }
    #company .container .core-values .value-item img{
        width: 30px;
    }
    #company .container .core-values .value-item h3{
        line-height: 30px;
        font-size:18px;
    }
    #company .container .core-values .value-item p{
        font-size:16px;
    }

    /** account delete**/
    .delete-account p{
        font-size:16px;
        line-height: 22px;
    }
    .delete-account .des{
        margin-top:20px;
    }
    .warning-icon img{
        width: 160px;
        margin:0 0 30px;
    }
    .delete-options {
        margin: 25px 0 35px;
        flex-direction: column;
    }

    .delete-options .btn {
        width: 100%;
        height: 45px;
        line-height: 45px;
        font-size:20px;
        font-weight: 600;
    }
    .delete-options .yes-btn {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .delete-tips{
        margin-top: 45px;
        text-align: left;
    }
    .delete-form {
        margin: 0;
    }
    .delete-form ._content{
        padding:25px 0 50px;
    }
    .delete-form ._content ._line{
        width: 10px;
    }
    .delete-form ._content ._input{
        width: calc(100% - 35px);
    }
    .delete-form ._content ._input .form-group{
        margin-bottom: 25px;
    }
    .delete-form ._content ._input .form-group:last-child{
        margin-bottom: 0;
    }
    .delete-form ._content ._input label{
        line-height: 24px;
        font-size:18px;
        margin-bottom: 8px;
    }
    .delete-form ._content ._input input{
        height: 45px;
        font-size:16px;
        padding: 0 12px;
    }
    .delete-form .submit-btn{
        height: 45px;
        line-height: 45px;
        font-size:18px;
        border-radius: 8px;
    }

    /** faq **/
    .fap-head{
        margin-bottom: 55px;
    }
    .fap-head img{
        width: 45%;
    }
    .faq-content  h2{
        margin:35px 0 15px;
    }

    .faq-content .content .faq-item ._title {
        font-size: 16px;
    }

    .faq-content .content .faq-item article{
        font-size:15px;
    }

    /* 隐私政策页样式 */
    .privacy h1 {
        margin: 30px 0;
    }
    .privacy .privacy-content {
        font-size:15px;
    }

    /** personal **/
    .personal-head{
        margin:30px 0 0;
        position: relative;
        justify-content:flex-end;
    }
    .personal-head,.loan-calculator{
        margin:45px 0 0;
    }
    .personal-head img{
        width: 160px;
    }
    .personal-head .personal-head-des{
        position: absolute;
        top:0;
        left:0;
    }
    .personal-head .personal-head-des h1{
        font-size:20px;
        line-height: 26px;
    }
    .personal-head .personal-head-des h2{
        font-size:16px;
        line-height: 20px;
        margin:5px 0 15px;
    }
    .personal-head .personal-head-des p{
        font-size:16px;
        line-height: 20px;
    }
    .personal-head .personal-head-des .btn {
        font-size:16px;
        margin-top: 15px;
        height: 40px;
        line-height: 40px;
        width: 160px;
        color: #FFFFFF;
    }

    .loan-calculator ._input_group{
        margin-top:25px;
        flex-direction: column;
    }
    .loan-calculator ._input_group .form-group{
        width: 100%;
        margin-bottom: 15px;
    }
    .loan-calculator ._input_group .form-group label{
        font-size:16px;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .loan-calculator ._input_group .form-group input{
        height: 45px;
        border-radius: 8px;
        padding:0 12px;
        font-size:14px;
    }
    .loan-calculator .loan-purpose{
        margin-top:35px;
        padding:30px 20px 30px;
    }
    .loan-purpose-title{
        font-size:22px;
        font-weight: 600;
        line-height: 28px;
        text-align: center;
    }
    .loan-purpose-item{
        flex-direction: column;
        margin-top:25px;
    }
    .loan-purpose-item p{
        width: 100%;
        height: 40px;
        line-height: 40px;
        border-radius: 8px;
        font-size:15px;
        margin-bottom: 12px;
    }
    .loan-btn{
        margin-top:30px;
        padding:25px 20px;
        flex-direction: column;
        border-radius: 12px;
    }
    .loan-btn p{
        font-size:16px;
        line-height: 22px;
    }
    .loan-btn .btn{
        width: 100%;
        height: 44px;
        line-height: 44px;
        font-size:16px;
        border-radius: 8px;
        margin-top:5px;
    }
    .loan-steps{
        flex-direction: column;
        margin:50px 0 0;
    }
    .load-steps-logo{

    }
    .load-steps-logo p{
        font-size: 20px;
        line-height: 24px;
    }
    .text-steps {
        left: 35px;
        top: -8px;
    }
    .text-loan {
        left: -8px;
        top: 15px;
    }
    .load-steps-logo img{
        width: 130px;
    }
    .loan-steps .steps-content{
        margin-top:15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .loan-steps .steps-content .step-item h3{
        color:#FFAE00;
        margin-bottom: 5px;
    }
    .loan-steps .steps-content .step-item p{
        font-size:16px;
        line-height: 20px;
    }
    .loan-steps .steps-content ._bg{
        display: none;
    }

    /* contact */
    .contact .container{
        padding: 0 15px;
    }
    .contact .contact-content1{
        flex-direction: column-reverse;
    }
    .contact .contact-content2{
        flex-direction: column;
    }
    .contact .contact-content ._item{
        width: 100%;
    }

    .contact .contact-content1 ._item:first-child{
        margin-top:35px;
    }
    .contact .contact-content ._item h3{
        padding: 0;
        text-align: left;
        margin-bottom: 15px;
    }
    .contact-method{
        margin:35px 0;
        gap: 15px;
    }
    .contact-method p{
        line-height: 22px;
    }
    .contact-method b{
        font-size:16px;
    }
    .contact-method span{
        font-size:15px;
    }
    ._item ._important-notes{
        margin-top:35px;
    }
    ._item ._important-notes h1{
        margin-bottom: 20px;
        text-align: left;
    }
    ._item ._important-notes p{
        font-size:15px;
        line-height: 20px;
        margin-bottom: 15px;
        margin-left:0;
    }

    /**tool**/
    ._tool{
        top:25%;
        right: 0;
    }
    ._tool ._contact{
        background: #FFEABD;
        gap: 20px;
        padding: 10px 3px;
    }
    ._tool ._contact img{
        width: 22px;
    }
    ._tool ._top{
        padding:5px 0 0;
    }
    ._tool p{
        font-size:11px;
    }
    ._tool ._top img{
        width: 20px;
    }
    /* 按钮悬停效果 */
    ._tool ._top:hover {
        transform: scale(1);
    }
    .footer{
        min-width: 100%;
        padding:35px 0 40px;
        margin-top: 50px;
    }
    .footer .container{
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
    }
    .footer .container ._logo img{
        height: 50px;
    }
    .footer-links {
        margin-top:30px;
        flex-direction: column;
    }

    .footer-links li {
        margin: 0;
        display: flex;
        font-size:16px;
    }
    .footer-links li:nth-child(2){
        margin:0;
    }
    .footer-links a {
        display: block;
        padding: 0;
        margin-right: 15px;
    }
    .footer .container p{
        font-size:16px;
    }
}