.banner{
    width: 100%;
    height: 660px;
    background-color: #dfdfdf;
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 0.1em;
}

.banner .title{
    margin-top: 200px;
    font-size: 132.72rem;
    font-weight: 600;
}

.banner .tip{
    margin-top: 50px;
    color: #565656;
    font-size: 56.53rem;
}


.content{
    width: 100%;
    background-color:#f6f6f6;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    letter-spacing: 0.1em;
}
.content-container{
    width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: #fff;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 50px 20px 100px;
    align-items: center;
}


.title-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.title-box .title{
    font-size: 40.33rem;
    font-weight: 600;
}

.title-box .price{
    margin-top: 20px;
    color: var(--active-color)
}

.content-box{
    width: 100%;
    font-weight: 300;
    line-height: 50px;
}

.extra-box{
    width: 100%;
    flex-direction: column;
}

.icon-box{
    display: flex;
    gap: 100px;
}

.icon-item{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: var(--tip-color);
    font-weight: 200;
}


.extra-box .extra-item{
    margin-top: 20px;
    color:#989898;
    font-weight: 300;
}

.statement .title{
    font-weight: 600;
}

.statement .title.active{
    color: var(--active-color);
}

.statement .content-detail{
    margin-top: 20px;
    color: var(--tip-color);
    font-weight: 300;
}
.button{
    cursor: pointer;
    height: 60px;
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--active-color);
    color: #fff;
    border-radius: 20px;
    letter-spacing: 0.1em;
    font-size: 26.88rem;
    font-weight: 300;
}


