/* Hero Section */
.hero {
    padding:116px 0 60px;
    position: relative;
}

.hero-content {
    margin: 0 120px;
    color:#000000;
    animation: slideIn 1s ease-out 0.3s forwards;
    opacity: 0; /* 可选：初始完全透明 */
    border-bottom: 1px solid #FBD9BE;
    padding-bottom: 30px;
}
.hero-content .container{
    padding:0;
}
/* 定义滑入动画关键帧 */
@keyframes slideIn {
    from {
        transform: translateX(-100%); /* 起点：左侧视口外 */
        opacity: 0;
    }
    to {
        transform: translateX(0); /* 终点：原始位置 */
        opacity: 1;
    }
}
.hero-content h1{
    color:#000000;
    font-size:60px;
    font-weight: 600;
    margin-bottom: 128px;
    line-height: 72px;
    text-align: center;
}
.hero-content .hero-content-item{
    display: flex;
    justify-content: center;
    gap: 1px;
}
.hero-content .hero-content-item .item{
    width: 315px;
    height: 315px;
    text-align: center;
    color: #000000;
}
.hero-content .hero-content-item .line{
    background: #FBD9BE;
    width: 1px;
    height: 220px;
    margin-top:28px
}

.hero-content .hero-content-item .item ._icon{
    padding: 14px 0 56px;
}
.hero-content .hero-content-item .item ._icon img{
    width: 60px;
    margin:0 auto;
    display: block;
}
.hero-content .hero-content-item .item ._title{
    font-size:26px;
    font-weight: bold;
    margin-bottom: 52px;
    text-align: center;
    color:#000000;
    height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-content .hero-content-item .item ._title p{
    line-height: 31px;
}
.hero-content .hero-content-item .item ._method{
    font-size:20px;
    white-space: normal; /* 自动换行 */
    word-break: break-all; /* 长单词强制换行 */
    overflow-wrap: break-word; /* 优化单词内换行 */
    color:#999999;
    line-height: 30px;
    padding: 0 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.hero-des{
    margin-top:25px;
    text-align: center;
    color:#999999;
    font-size:20px;
    line-height: 24px;
    margin-bottom: 34px;
}
@media (max-width: 768px) {
    .hero{
        flex-flow: column-reverse;
        margin-top: 0;
        align-items: center;
        padding:0;
    }
    .hero-content h1{
        font-size:20px;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .hero-content .hero-content-item .line{
        display: none;
    }
    .hero-content{
        margin:30px 20px 0;
        width: calc(100% - 40px);
        border-bottom: 0;
        padding-bottom: 0;
    }
    .hero-images{
        width: 80%;
        margin:0;
    }
    .hero-des p{
        display: inline-block;
    }
    .hero-des{
        font-size:16px;
    }
    .hero-content .hero-content-item{
        display: block;
    }
    .hero-content .text-1{
        font-size:20px;
        margin-bottom: 10px;
        line-height: 30px;
        padding:0;
    }
    .hero-content .hero-content-item .item{
        width: 100%;
        margin-right:0;
        margin-top:20px;
        height: auto;
        padding: 25px 0;
        border-bottom: 1px solid #FBD9BE;
    }
    .hero-content .hero-content-item .item ._icon{
        padding: 0 0 20px;
    }
    .hero-content .hero-content-item .item ._icon img{
        width: 48px;
    }
    .hero-content .hero-content-item .item ._title{
        font-size: 18px;
        margin-bottom: 25px;
        height: auto;
    }
    .hero-content .hero-content-item .item ._method{
        font-size:18px;
        padding:0;
    }
}