.index .banner{
    width: 100%;
    position: relative;
}

.index .banner video{
    width: 100%;
    aspect-ratio: 2.34 / 1;
    background: black;
}

.index .inner-wrap{
    max-width:1560px;
    width: 100%;
    margin: 0 auto;
    padding: 112px 60px 188px;
    display: flex;
    flex-direction: column;
    gap: 192px;
}

.index .inner-wrap .introduce{
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.index .inner-wrap .introduce strong{
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
}

.index .inner-wrap .introduce small{
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
}

.index .inner-wrap .introduce a{
    margin-top: 36px;
    color: var(--white);
    background: var(--brand-green);
    border-radius: 6px;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    padding: 0 20px;
    box-shadow: 0 1px 3px 0 rgba(16,25,40,.1);
}

.index .inner-wrap .news{
    display: flex;
    gap: 56px;
    flex-direction: column;
}

.index .inner-wrap .news h2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-800);
}

.index .inner-wrap .news h2 a{
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    color: var(--brand-green);
}

.index .inner-wrap .news .list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}

.index .inner-wrap .news .list .card{
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(16,25,40,.1);
}

.index .inner-wrap .news .list .card a{

}

.index .inner-wrap .news .list .card .thumb{
    width: 100%;
    padding-bottom:calc((300 / 455) * 100%);
}

.index .inner-wrap .news .list .card .info{
    padding:20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--gray-600);
}

.index .inner-wrap .news .list .card .info strong{
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.index .inner-wrap .news .list .card .info p{
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    height:42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index .inner-wrap .news .list .card .info small{
    margin-top: 10px;
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 14px;
    font-weight: 300 ;
    color: var(--brand-green);
}