.banner {
    margin-top: 9.0625rem;
    box-sizing: border-box;
    width: 100%;
    height: 37.5rem;
    background: url("../assets/img/productPrice/banner.png") no-repeat;
    background-size: 100% 100%;
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.content-title {
    margin-bottom: 1.75rem;
    font-weight: 800;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 5rem;
    background: linear-gradient(90deg, #DE12B6 0%, #F34C67 53.9794921875%, #FF9712 98.779296875%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-sub-title {
    margin-bottom: 6.25rem;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
}

.sub-title {
    margin: 0 0.75rem;
}

.content-sub-title .sub-title-line {
    width: 3.0625rem;
    height: 0.0625rem;
    background: #FFFFFF;
}

.content-price {
    display: flex;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.content-price .price {
    font-size: 6.25rem;
    line-height: 6.25rem;
}

.price-desc {
    font-size: 30px;
}

.content-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
    color: #FFFFFF;
    width: 12.625rem;
    height: 4.375rem;
    background: linear-gradient(90deg, #FD3B50 0%, #FA1D53 52%, #FD5294 100%);
    border-radius: 2.1875rem;
}

.use-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 6.25rem 15.375rem;
    background: #000;
    perspective: 1000px;
}

.use-list .list-item {
    box-sizing: border-box;
    width: 16.8125rem;
    height: 20.625rem;
    padding-top: 1.5rem;
    padding-left: 1.3125rem;
    background: linear-gradient(0deg, #1F1F21 0%, #121213 100%);
    border-radius: 0.625rem;
    border: 0.0625rem solid #393939;
    transition: all 0.4s ease;
    transform: translateY(3.125rem);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.use-list .list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.use-list .list-item::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 1;
}

.use-list .list-item:hover {
    transform: translateY(-0.625rem) scale(1.05);
    box-shadow: 0 0.9375rem 1.875rem rgba(253, 59, 80, 0.2);
    border-color: rgba(253, 59, 80, 0.3);
    background: linear-gradient(0deg, #262628 0%, #1a1a1c 100%);
    z-index: 2;
}

.use-list .list-item:hover::before {
    opacity: 1;
}

.use-list .list-item:hover::after {
    top: 100%;
    left: 100%;
}

.use-list .list-item:hover .item-title {
    color: #FD3B50;
    transform: translateY(-0.3125rem);
}

.use-list .list-item:hover .item-detail {
    opacity: 1;
    transform: translateY(-0.3125rem);
}

.use-list .list-item:hover .item-img {
    transform: translateY(-0.3125rem) scale(1.1);
}

.use-list .list-item:nth-child(n+6) {
    margin-top: 1.25rem;
}

.use-list .list-item .item-img {
    width: 5rem;
    height: 3.875rem;
    transition: transform 0.4s ease;
}

.use-list .list-item .item-img img {
    width: 100%;
    height: 100%;
}

.use-list .list-item .item-title {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.use-list .list-item .item-detail {
    width: 13.9375rem;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.6;
    transition: all 0.4s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(3.125rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}