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

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

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


.content .split{
    border: 1px solid #dfdfdf;
    width: 1070px;
}
.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-top: 50px;
    padding-bottom: 100px;
    padding-left: 20px;
    align-items: center;
}

.content-item{
    display: flex;
    justify-content: space-between;
    width: 1100px;
    align-items: center;
}

.content-item .left{
    display: flex;
}
.content-item .left .title{
    margin-left: 20px;
}


.content-item .price{
    color: var(--active-color)
}

.button-box{
    display: flex;
    gap: 50px;
}

.button{
    cursor: pointer;
    height: 46px;
    width: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--active-color);
    color: #fff;
    border-radius: 8px;
    letter-spacing: 0.1em;
    font-size: 26.88rem;
    font-weight: 300;
}


