.head_black_friday_wrapper {
    width: 100%;
    height: 100px;
    color: #fff;
    padding: 10px 0;
}
.head_bf_container {
    position: relative;
    background: linear-gradient(45deg, #253d5d, #1c266c);
    border-radius: 16px;
    padding: 16px;
    margin: auto;
    max-width: 720px;
    width: calc(100% - 32px);
    overflow: hidden;
}
.head_bf_left {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 268px);
}
.head_bf_right {
    display: inline-block;
    vertical-align: middle;
    width: 260px;
}
.head_bf_right > .button {
    margin: 0;
    float: right;
}

.black_friday_wrapper {
    width: 100%;
    max-width: 273px;
    margin: 36px auto 18px;
}
.black_friday_wrapper p {
    margin: 0;
}
.bf_text {
    font-size: 26px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}
.bf_discount {
    display: inline-block;
    font-size: 32px;
}
.bf_text_bg {
    position: relative;
    padding: 8px;
    text-align: center;
}
.bf_text_bg::before {
    content: "";
    position: absolute;
    display: block;
    width: 78px;
    height: 78px;
    top: -54px;
    left: 14px;
    border: 26px solid #dae5fc;
    border-radius: 50%;
    z-index: 1;
}
.bf_t_top {
    position: relative;
    padding-left: 24px;
    font-weight: bold;
    z-index: 2;
}
.bf_date {
    width: 100%;
    padding-right: 24px;
    text-align: right;
    font-weight: bold;
}

.bf_discount_button {
    position: relative;
}
.bf_discount_button:hover::after {
    transform: scale(1) rotate(16deg);
}
.bf_discount_button::after {
    content: "-25%";
    position: absolute;
    top: -18px; right: -24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: red;
    padding: 10px 2px;
    box-sizing: border-box;
    font-weight: bold;
    transform: scale(0.8) rotate(0deg);
    transition: all 300ms ease-in-out;
    box-shadow: 0 4px 8px rgb(128 0 0 / 40%);
}

.bf_discount_special {
    position: relative;
}
.bf_discount_special:hover::after {
    transform: scale(1) rotate(16deg);
}
.bf_discount_special::after {
    content: attr(data-discount);
    position: absolute;
    top: -18px; right: -16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: red;
    color: white;
    padding: 10px 2px;
    box-sizing: border-box;
    font-weight: bold;
    transform: scale(0.8) rotate(0deg);
    transition: all 300ms ease-in-out;
    box-shadow: 0 4px 8px rgb(128 0 0 / 40%);
}

.bf_block_left {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 174px);
}
.bf_block_right {
    display: inline-block;
    vertical-align: middle;
    width: 164px;
}
.bf_block_right img {
    width: calc(100% - 16px);
    margin: 8px;
}

@media (max-width: 1280px) {
    .head_bf_left {
        width: calc(100% - 248px);
    }
    .head_bf_right {
        width: 240px;
    }
}

@media (max-width: 600px) {
    .head_black_friday_wrapper {
        height: 160px;
    }
    .head_bf_left {
        width: 100%;
    }
    .head_bf_right {
        width: 100%;
    }
    .head_bf_right > .button {
        margin-top: 16px!important;
        float: none;
    }
    .bf_block_left {
        width: 100%;
    }
    .bf_block_right {
        display: block;
        margin: auto;
    }
    #sp_orderBtn {
        margin: auto;
        display: block;
        width: 224px;
    }
}