.product-title{
    font-size: 3.75rem;
    padding: 1.5rem 0;
}

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

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

.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: 8%;
    width: 100%;
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.main-title {
    font-weight: 400;
    font-size: 4rem;
    color: #000;
    text-align: center;
}

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

.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);
}
