.product-title{

    font-size: 3.75rem;
    padding: 2rem 0;

}

.new-product-container{
    padding: 0rem 0 3rem;
}

.new-product-title{
    font-size: 2.25rem;
    font-weight: 500;
    padding: 0rem 0 1rem;
}

.card-switch-item{
    position: absolute;
    top: -10%;
    left: 40%;
    width: 50%;
    z-index: 0;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .6);
    border-radius: 5%;
    transition: all 0.3s ease-in-out;
}

.card-switch-active{
    z-index: 1;
    left: 0;
    top: 0;
}

.card-switch-item img{
    width: 100%;
}
/* banner文本 */
.product-content {
    top: 23%;
    width: 100%;
    padding-left: 13.8%;
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.main-title {
    font-weight: 400;
    font-size: 4rem;
    color: #000;
}

.sub-title {
    font-weight: 300;
    font-size: 1.5rem;
    color: #666;
}

.detail-btn {
    color: #FFF;
    font-weight: 300;
    font-size: 1rem;
    background-color: #4BA9E0;
    width: 7rem;
    height: 2.5rem;
    border-radius: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/* 图片效果 */
.img-container{
    overflow: hidden;
}
.haverimg {
    transition: transform 0.5s ease;
}
.haverimg:hover {
    transform: scale(1.10);
}
