/* Hero Section */
.container{
    padding:0;
}
.hero {
    margin:0 auto;
    padding:142px 0;
}
._border-line{
    width: 96%;
    margin:0 auto;
    min-width: 1200px;
    border-bottom: 1px solid rgba(153,153,153,0.6);
}
.hero-content {
    flex: 1;
    color:#000000;
    animation: slideIn 1s ease-out 0.3s forwards;
    opacity: 0; /* 可选：初始完全透明 */
}
@media (max-width: 1320px) {
    ._border-line{
        width: 100%;
    }
}
/* 定义滑入动画关键帧 */
@keyframes slideIn {
    from {
        transform: translateX(-100%); /* 起点：左侧视口外 */
        opacity: 0;
    }
    to {
        transform: translateX(0); /* 终点：原始位置 */
        opacity: 1;
    }
}
.hero-content .text-1{
    font-size:30px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
}

.form ._content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:100px 130px 80px;
}
.form ._content ._line{
    width: 18px;
}
.form ._content ._line img{
    width: 100%;
}
.form ._content ._input{
    width: calc(100% - 95px);
}
.form ._content ._input ._item{
    margin-bottom: 55px;
}
.form ._content ._input ._item:last-child{
    margin-bottom: 0;
}
.form ._content ._input .text-20{
    line-height: 40px;
    font-size:32px;
    margin-bottom: 30px;
    color:#333333;
    font-weight: 600;
}
.form ._content ._input input{
    height: 60px;
    background: #FFE8D5;
    width: 100%;
    border-radius: 10px;
    padding:0 25px;
    font-size:20px;
    /* 基础边框样式（必须设置 border-style 才会显示边框，如 solid/dashed 等） */
    border: 1px solid #FFE8D5; /* 宽度 2px、实线、灰色 #ccc */
    /* 可选：去除默认外边框（部分浏览器会自带） */
    outline: none;
}
.form ._btn{
    width: 100%;
    background: #FB8A2E;
    height: 70px;
    line-height: 70px;
    margin-bottom: 200px;
    text-align: center;
    color:#FFFFFF;
    font-size:32px;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
}
.form ._btn:hover {
    background: #e56d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.5);
}
@media (max-width: 768px) {
    ._border-line{
        min-width: 100%;
    }
    .hero{
        padding: 45px 20px;
    }
    .hero-content .text-1{
        font-size:20px;
    }
    .form ._content{
        padding:40px 20px 30px;
    }
    .form ._content ._line{
        width: 12px;
    }
    .form ._content ._input ._item{
        margin-bottom:25px;
    }
    .form ._content ._input{
        width: calc(100% - 40px);
    }
    .form ._content ._input .text-20{
        line-height: 30px;
        font-size: 20px;
        margin-bottom: 20px;
    }
    .form ._content ._input input{
        height: 44px;
        font-size:17px;
        padding:0 15px;
    }
    .form ._btn{
        margin:0 20px 50px;
        width: calc(100% - 40px);
        height:50px;
        line-height: 50px;
        font-size:20px;
    }
    .faq{
        border-radius: 0;
        padding: 30px 20px;
    }
    .faq h1 {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 25px;
    }
    .faq .content .faq-item ._title{
        font-size: 16px;
    }
    .faq-last{
        margin-bottom: 50px;
    }
}