@font-face {
    font-family: "DouyinSansBold";
    src: url('../font/DouyinSansBold.otf') format('truetype');
}
.sectionBox {
    width: 1320px;
    margin: 56px auto 0;
    &>h1 {
        padding: 100px 0 64px;
    }
}
.text-align {
    word-spacing: 0.01em;
    letter-spacing: 0.05em; 
    text-align: left;
    /* hyphens: auto; */
}
h1 {
    font-family: "DouyinSansBold";
}
.purpleGradientText {
    background: linear-gradient(0.25turn, #9900ff, #9d00ff, #8400ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.bodyBackground {
    background: radial-gradient(circle at 100px 100px, #E5FAFF 0, rgba(0,0,0,0) 500px), 
    radial-gradient(circle at 100% 500px, #E5F0FF 0, rgba(0,0,0,0) 500px), 
    radial-gradient(circle at 100% 0px, #E6FBF0 0, rgba(0,0,0,0) 500px);
}
.afloat {
    transition: all .3s;
}
.afloat:hover {
    transform: translateY(-0.6rem);
}

/* 导航栏 */
.navbar {
    height: 60px;
}
.nav-item:has(.nav-link.active) {
    position: relative;
}
.nav-link.active::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--purple);
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* 首屏banner样式 */
.bannerBox {
    height: 600px;
    width: 1320px;
    display: flex;
    padding-top: 15%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}
.bannerWordBox {
    width: 500px;
    &>.title {
        font-weight: bolder;
        font-size: 52px;
    }
    &>.subtitle {
        font-weight: bolder;
        font-size: 32px;
        text-transform: capitalize;
    }
}
.bannerImgBox {
    position: relative;
    width: 600px;
}
.bannerImg {
    width: 600px;
    position: absolute;
    right: 0%;
    top: -30%;
    &.amazon {
        width: 180px;
        position: absolute;
        left: -10%;
        top: 45%;
    }
    &.ebay {
        width: 180px;
        position: absolute;
        right: -10%;
        top: -24%;
        animation-delay: 700ms;
    }
}
.s-ranking {
	animation: float-vertical 8s infinite linear;
 }
@keyframes float-vertical {
    0% {
      transform: translate3d(0, 0%, 0);
    }
    25% {
      transform: translate3d(0, 20%, 0);
    }
    75% {
      transform: translate3d(0, -20%, 0);
    }
    100% {
      transform: translate3d(0, 0%, 0);
    }
}

/* 卖点信息 */
.featureBox {
    gap: 96px;
}
.pointBox {
    .wordBox {
        width: 40%;
    }
    .imgBox {
        width: 500px;
        img {
            width: 100%;
        }
    }
}
    
/* 业务步骤 */
.setupList {
    cursor: pointer;
    p {
        transition: all .3s ease-in-out;
    }
    &.active {
        flex-grow: 1;
    }
    .title {
        transform: all .3s ease-in-out;
    }
    &.active span {
        height: 100%;
    }
    &:hover .title{
        color: var(--purple);
    }
    &:not(.active) span {
        height: 0%;
        opacity: 0;
        margin-bottom: 0;
        overflow: hidden;
    }
    .title img {
        width: 36px;
    }
    .stupDot {
        border: 2px solid var(--purple);
        border-radius: 50%;
        width: 10px;
        height: 10px;
    }
    .stupLine {
        width: 2px;
        background: var(--mist);
        flex-grow: 1;
    }
}
.setupListImgBox {
    height: 500px;
}

/* offerBox */
.offerBox {
    padding: 0 32px 32px 32px;
    background: linear-gradient( #fff 100px, #f9fbfd 100px, #f9fbfd);
}
.offerCard {
    flex: 1;
    .offerCardHead {
        background: var(--purple-10);
    }
    .offerPrice {
        font-size: 36px;
    }
    &.highLightCard {
        .offerCardHead {
            background: var(--purple-75);
            color: white;
            height: 140px;
            position: relative;
            &::before {
                content: "";
                position: absolute;
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
                bottom: -8px;
                width: 16px;
                height: 16px;
                background: var(--purple-75);
            }
        }
        .offerPrice {
            font-size: 64px;
        }
        li {
            padding: 20px 0;
        }
    }
    ul {
        margin-top: 16px;
        list-style: none;
        padding: 0 24px;
        color: var(--secondary);
        li {
            font-size: 14px;
            padding: 16px 0;
            &:not(:last-child) {
                border-bottom: 1px solid var(--mist);
            }
            i {
                margin-right: 8px;
            }
        }
    }
}
.cutedNumber {
    padding: 0 8px;
    position: relative;
    &::after {
        content: "";
        height: 2px;
        width: 20px;
        background-color: var(--purple);
        position: absolute;
        left: 50%;
        bottom: 40%;
        transform: translateX(-50%) rotate(-20deg);
    }
}

/* customerfeedbacks */
.customerCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    border: 1px solid var(--grey);
    border-radius: .5rem;
    flex: 1;
    .customerCardHead {
        margin-bottom: 16px;
        background-color: var(--mist);
    }
}

/* accordion */
.accordion-button {
    box-shadow: none;
    font-weight: bolder;
    font-size: 20px;
}
.accordion-button:not(.collapsed) {
    color: var(--purple);
    box-shadow: none;
    background-color: var(--light);
}
.accordion-button:not(.collapsed)::after {
    color: var(--purple);
}