* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*dark : 浅色*/
/* @media (prefers-color-scheme: light) { */
html {
    --bg-color1: #e9eef9;
    --bg-color2: #e9eef9;
    --bg-color3: #fff;
    --bg-color4: #fff;
    --bg-color5: #E0E7F5;
    --bg-color6: #e8eefa;
    --bg-color7: #fff;
    --bg-color8: #C0F2DA;
    --bg-color9: #ffffff;
    --bg-color10: #f5f8ff;

    --text-color1: #FFFFFFCC;
    --text-color2: #849448;
    --text-color3: #000000B2;
    --text-color4: #333;
    --text-color5: #6C7892;
    --text-color6: #888888;
    --text-color7: #000000CC;
    --text-color8: #00000099;

    --text-color9: #333333;
    --text-color10: #000000E5;
    --text-color11: #00000066;
    --text-color12: #666;
    --text-color13: #666;
    --text-color14: #000000CC;
    --text-color15: #00000099;
    --text-color16: #66709F;
    --text-color17: #3258CE;
    --text-color18: #888888;
}

/* } */
/*dark : 深色*/
/* @media (prefers-color-scheme: dark) { 
    html {
        --bg-color1:#202023;
    --bg-color2:#282f4a;
    --bg-color3:#171B2A;
    --bg-color4:#2e313c;
    --bg-color5:#464B5C;
    --bg-color6:#3a3e4a;
    --bg-color7:#2e313c;
    --bg-color8:#2E313C;
    --bg-color9:#2e313c;
    --bg-color10:#323644;

    --text-color:#FFFFFFCC;
    --text-color2:#CED8AB;
    --text-color3:#FFFFFFCC;
    --text-color4:#FFFFFF;
    --text-color5:#B8C3EE;
    --text-color6:#FFFFFF80;

    --text-color8:#FFFFFF99;

    --text-color9:#FFFFFFCC;
    --text-color10:#FFFFFFE5;
    --text-color11:  #FFFFFF66;
    --text-color12: #FFFFFFB2;
    --text-color13: #FFFFFFCC;
    --text-color14: #FFFFFFCC;
    --text-color15: #FFFFFFCC;
    --text-color16: #8996C7;
    --text-color17:#d2d3d6;
    --text-color18:#FFFFFF99;
    }
} */
/* .dark-mode{
       --bg-color1:#202023;
    --bg-color2:#282f4a;
    --bg-color3:#171B2A;
    --bg-color4:#2e313c;
    --bg-color5:#464B5C;
    --bg-color6:#3a3e4a;
    --bg-color7:#2e313c;
    --bg-color8:#2E313C;
    --bg-color9:#2e313c;
    --bg-color10:#323644;

    --text-color:#FFFFFFCC;
    --text-color2:#CED8AB;
    --text-color3:#FFFFFFCC;
    --text-color4:#FFFFFF;
    --text-color5:#B8C3EE;
    --text-color6:#FFFFFF80;

    --text-color8:#FFFFFF99;

    --text-color9:#FFFFFFCC;
    --text-color10:#FFFFFFE5;
    --text-color11:  #FFFFFF66;
    --text-color12: #FFFFFFB2;
    --text-color13: #FFFFFFCC;
    --text-color14: #FFFFFFCC;
    --text-color15: #FFFFFFCC;
    --text-color16: #8996C7;
    --text-color17:#d2d3d6;
    --text-color18:#FFFFFF99;
} */
.my4 {
    margin-top: .08rem;
    margin-bottom: .08rem;
}

html {
    width: 100%;
}

body {
    font-size: 16px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    color: #FFFFFFCC;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, Microsoft YaHei, Arial, sans-serif;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;

    /* Replace image with gradient */
    background: radial-gradient(circle at top left, #fff9e6, transparent 60%),
                radial-gradient(circle at top right, #b8ecff, transparent 60%),
                radial-gradient(circle at bottom left, #f9d5c0, transparent 60%),
                radial-gradient(circle at bottom right, #ffffff, transparent 60%),
                #f6f2ff;
}
#app {
    font-size: .24rem;
    position: relative;
    height: 100%;
    min-height: 100vh;
}

.my-sticky {
    position: sticky;
    top: 0;
    padding: 0 .16rem;
    z-index: 999;
    /* background:white; */
    background: linear-gradient(90deg, #fff9e6, #b8ecff, #f9d5c0, #ffffff);
}

.load-img {
    width: 2rem;
    height: auto;
}

.marquee-wrap {
    padding: .08rem 0;
}

.marquee-box {
    display: flex;
    align-items: center;
    height: .72rem;
    padding: .1rem;
    background-color: var(--bg-color3);
    color: var(--text-color2);
    border-radius: .35rem
}

.marquee-box .container-main {
    flex: 1;
    margin: 0 .15rem;
    font-size: .2rem;
    overflow: hidden
}

.marquee-box p {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    font-size: .28rem;
    animation: vMarquee 10s linear infinite
}


@keyframes vMarquee {
    0% {
        transform: translate3d(0, 0, 0)
    }

    100% {
        transform: translate3d(-100%, 0, 0)
    }
}

.notif {
    margin-left: .28rem;
}

.swiper-banner,
#swiper-banner {
    margin-top: .04rem;
    margin-bottom: .06rem;
}

.swiper-banner .swiper-slide {
    text-align: center;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
}

.swiper-banner .swiper-slide-next .banner-img,
.swiper-banner .swiper-slide-prev .banner-img {
    transform: scale(0.9);
    opacity: 0.7;
}

.swiper-banner .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
}

.swiper-banner .swiper-pagination-bullet-active {
    width: .16rem !important;
    border-radius: .16rem;
    background-color: #aba0a6 !important;
}

.banner-img {
    width: 100%;
    aspect-ratio: 64 / 35;
    border-radius: .2rem;
}

.hidden {
    display: none;
}


.ml12 {
    margin-left: .24rem;
}

.flex {
    display: flex;
}

.flex-middle {
    align-items: center
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-1 {
    flex: 1;
}


a:hover,
a:focus,
a:active {
    text-decoration: none
}

a {
    text-decoration: none;
    color: var(--text-color4);
}


.cover {
    overflow: hidden
}



.mb-4 {
    margin-bottom: .08rem;
}

.pb0 {
    padding-bottom: 0 !important;
}


img {
    /* object-fit: cover; */
    object-fit: fill;
}

.mb8 {
    margin-bottom: 8px;
}



.nav-c {
    display: flex;
    justify-content: space-between;
    height: .88rem;
    align-items: center;
    z-index: 100;
}

.nav-c .item {
    font-size: .28rem;
    color: var(--text-color3);
    font-weight: 600;
    height: .56rem;
    line-height: .56rem;
    padding: 0 .2rem;
    border-radius: .68rem;
}

.nav-c .item.active {
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(90deg, #F38400 0%, #00EAE1 100%), #AA64FF;
}

.swiper-c,
.swiper-container,
.zp-swper {
    overflow: hidden;
}

.body-container {
    padding: 8px;
}

.ad-item-wrap {
    border-radius: 10px;
    overflow: hidden;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}

.ad-item-conter {
    padding: 12px 0px;
}

.grid-cols-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 0.24rem;
    column-gap: 0.1rem;
}

.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 0.24rem;
    column-gap: 0.1rem;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0.24rem;
    column-gap: 0.1rem;
}

.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.grid-item img {
    width: 1.28rem;
    min-height: 1.28rem;
    max-height: 1.28rem;
    border-radius: .2rem;
}

.grid-item .text {
    text-align: center;
    font-size: .24rem;
}

.text {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
}

.jgg-load {
    display: none;
    width: 1.08rem;
    height: .48rem;
    line-height: .48rem;
    background-color: var(--bg-color5);
    text-align: center;
    font-size: .28rem;
    border-radius: .24rem;
    color: var(--text-color5);
}


.lf-g-load {
    color: var(--text-color6);
}






.ad-text-wrap {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ad-text-icon {
    margin-right: .05rem;
}

.ad-text-item {
    background-color: var(--bg-color8);
    color: var(--text-color9);
    height: .64rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border-radius: 5px;
}

.ad-text-item.h {
    color: #FF4366;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    column-gap: 16px;
}

.gap8 {
    row-gap: 8px;
    column-gap: 4px;
}

.ad2-item {
    display: flex;
    align-items: center;
}

.ad2-item-img {
    width: .88rem;
    height: .88rem;
    margin-right: .16rem;
    border-radius: 5px;
}

.ad2-item-info {
    flex: 1;
    max-width: 2.18rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
}

.ad2-name {
    color: var(--text-color4);
    font-weight: 700;
    font-size: .28rem;

}

.ad2-sub-text {
    color: var(--text-color6);
}


.s-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .2rem;
    padding-top: .24rem;
    padding-bottom: .2rem;
}

.s-wrap .lf-g {
    border-radius: .2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.lf-g .lf-g-img {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 10px;
    margin-right: 0.16rem;
    position: relative;
    z-index: 99;
}

.s-wrap .ad-name {
    font-weight: 700;
    font-size: .28rem;
    color: var(--text-color4);
}

.go-icon {
    display: none;
    position: absolute;
    top: .24rem;
    right: 0;
}

.item-s4 {
    padding: .22rem;
    margin-bottom: .2rem;
    background: var(--bg-color9);
    border-radius: .2rem
}

.item-s4 .header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-s4 .header .cover {
    width: 1.34rem;
    height: 1.34rem;
    border-radius: 50%
}

.cover img {
    width: 100%;
    height: 100%;
}

.item-s4 .header .name {
    font-size: .4rem;
    font-weight: 600;
}

.item-s4 .header .btn-detail {
    width: 2rem;
    height: .68rem;
    line-height: .68rem;
    text-align: center;
    font-size: .28rem;
    color: #fff;
    font-weight: 700;
    border-radius: .33rem;
    background: linear-gradient(90deg, #F38400 0%, #00EAE1 100%), linear-gradient(90deg, #4800FF 0%, #F06 100%), linear-gradient(90deg, #F1FF2F 0%, #24DD6E 100%), linear-gradient(90deg, #FF512F 0%, #F09819 100%);
}

.item-s4 .text {
    margin-top: .35rem;
    align-items: flex-start
}

.item-s4 .more-preview {
    display: grid;
    gap: .2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: .28rem
}

.item-s4 .more-preview img {
    width: 2rem;
    height: 2.68rem;
    border-radius: .13rem
}

.address {
    border: 1px solid #39B09933;
    height: .44rem;
    border-radius: .14rem;
    padding: 0 10px;
    width: 2rem;
    margin-top: 8px;
    white-space: nowrap;
}

.live-wrap .live-item {
    width: 100%;
}


.live-item {
    display: block;
    width: 100%;
    position: relative;
}

.hot-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.live-wrap .live-item-img {
    width: 100%;
    height: 5.2rem;
    border-radius: 10px;
}

.live-item-img {
    width: 100%;
    height: 4.54rem;
    border-radius: 10px;
}

.bt-back {
    padding: 2px;
    border-radius: 27px;
    background: linear-gradient(90deg, #4800FF 0%, #F06 100%), #FFF;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    border-radius: .62rem;
    height: .72rem;
    line-height: .72rem;
    color: #fff;
    padding: 0 .24rem;
    white-space: nowrap;
    background: linear-gradient(90deg, #FF8B00 0%, #00FFF5 100%), #000;
}

.bt-info {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    height: .8rem;
    padding: 0 4px;
    overflow: hidden;
    color: #fff;
    font-size: .24rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom-left-radius: .2rem;
    border-bottom-right-radius: .2rem;
}

.bt-infoa {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: .8rem;
    padding: 0 4px;
    overflow: hidden;
    color: #fff;
    font-size: .24rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom-left-radius: .2rem;
    border-bottom-right-radius: .2rem;
}

.bt-info img {
    width: 0.24rem;
    height: 0.24rem;
    margin-right: 0.08rem;
}

.bt-info-left {
    color: #fff;
    display: flex;
    align-items: center;
}

.bt-info-left .dian {
    width: .08rem;
    height: .08rem;
    border-radius: 50%;
    background-color: #48FF54;
    margin-right: .04rem;
}

.bt-info-left .online-num {
    color: #48FF54;
}

.bt-t {
    display: flex;
    align-items: center;
}


.qq-item {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 6px;
    background-color: var(--bg-color6);
}

.qq-img {
    border-radius: 10px;
    width: 3.1rem;
    height: 3.1rem;
}

.qq-title {
    margin: 8px 0;
    font-size: .36rem;
    font-weight: 700;
    color: var(--text-color8);
}

.qq-info {
    display: flex;
    justify-content: space-between;
    font-size: .24rem;
}

.qq-pic {
    font-size: .28rem;
    color: #00ABA3F9;
}


.qq-wrap,
.live-wrap,
.zp-s-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .22rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.qq-wrap .qq-item {
    background-color: var(--bg-color7);
    width: 100%;
}

.qq-wrap .qq-img {
    width: 3.24rem;
    height: 3.24rem;
}


.flow-text-wrap {
    padding: 8px;
}

.flow-img-wrap {
    position: relative;
}

.flow-ab {
    position: absolute;
    width: 100%;
    padding: 0 8px;
    bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFFCC;
}

.sound {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: .82rem;
    height: .4rem;
    display: flex;
    align-items: center;
    padding: 0 3px;
}

.praise {
    border-radius: .82rem;
    height: .4rem;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0 3px;
}

.sound img,
.praise img {
    margin-right: 3px;
}

.flow-img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    min-height: 3.26rem;
}

.flow-text1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flow-name {
    flex: 0 0 auto;
    width: 1.92rem;
    font-size: .28rem;
    font-weight: 700;
    color: var(--text-color10);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.flow-add {
    font-size: .2rem;
    color: var(--text-color11);

}

.flow-tips {
    width: 100%;
    display: flex;
}

.flow-tips div {
    margin-right: 4px;
    background-color: #00FF001A;
    color: #428942;
    border-radius: 30px;
    height: 16px;
    padding: 0 4px;
    margin: 6px 0;
}

.flow-text2 {
    color: var(--text-color12);
    line-height: 16px;
}

.live-tab {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .14rem;
    margin-bottom: 8px;
}

.live-tab-item {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top left;
    padding: .12rem;
    color: #FFFFFFCC;
    font-size: .2rem;
}

.live-tab-title {
    font-size: .24rem;
    font-weight: 700;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
}

.live-tab-title span {
    max-width: .96rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex: 0 0 auto;
}

.avatar1 {
    width: 1.22rem;
    height: .28rem;
}

.live-count {
    color: #2AFF00;
}

.fc-text {
    margin-bottom: 8px;
    /*color: #666;*/
    /*line-height: 25px;*/
    /*font-size: .24rem;*/
}

.fc-item {
    background-color: var(--bg-color10);
    color: var(--text-color13);
    padding: 8px;
    margin-bottom: 4px;
    border-radius: 4px;

}

.fc-title {
    color: #7E86A4;
    margin-right: 4px;
}

.fc-flex {
    display: flex;
    margin-bottom: 8px;
}

.fc-flex:last-child {
    margin-bottom: 0;
}

.fc-flex div {
    flex: 1;
    width: 100%;
    margin-right: 4px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.fc-flex div:last-child {
    margin-right: 0;
}

.no-wrap {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.zone1-item {
    display: flex;
    padding-bottom: .24rem;
    position: relative;
    border-bottom: 1px solid #FFFFFF0D;
}

.tc-wrap:last-child .zone1-item {
    border-bottom: 0;
}

.zone1-item-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zone1-item-col {
    display: flex;
}

.like-wrap,
.add-wrap {
    width: 1.6rem;
    height: .36rem;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFFCC;
}

.like-wrap img,
.add-wrap img {
    width: .2rem;
    margin-right: 2px;
}

.like-wrap {
    background: url("../../img/abcd/g-left.svg") center/100% 100% no-repeat;
}

.add-wrap {
    background: url("../../img/abcd/g-right.svg") center/100% 100% no-repeat;
}

.zone1-item-left {
    flex-grow: 1;
    height: 100%;
    margin-top: .38rem;
}

.zone1-item-left .zone-item-btn {
    margin-top: .14rem;
}

.zone1-text-wrap {
    font-size: .24rem;
    text-align: left;
}

.zone1-item-name-wrap {
    font-size: .32rem;
}

.zone1-item-name {
    color: var(--text-color14);
}

.light-mode .zone1-item-name {
    color: #000000CC;
}

.zone1-item-img {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: .16rem;
    margin-right: .24rem;
    flex: 0 0 auto;
}

.zone1-item-color1 {
    color: var(--text-color16);
    margin-right: 4px;
}

.zone1-item-name {
    margin-right: 4px;
}

.zone1-item-t {
    font-size: .32rem;
    font-weight: 600;
}

.zone1-item-color2 {
    color: var(--text-color17);
}

.zone1-item-color3 {
    color: var(--text-color18);
}

.zone-item-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: .64rem;
    background: linear-gradient(270deg, #FF2D54 0%, #FF2DA1 100%);
    border-radius: 5px;
    color: #fff;
}

.lf-g-d {
    padding: 10px 0px 10px 30px;
    position: relative;
    left: -30px;
    width: 80%;
    height: 1.2rem;
    flex-shrink: 0;
}

.lf-g-mf {
    padding: 10px 0px 10px 30px;
    position: relative;
    left: -30px;
    width: 79%;
    height: 1.2rem;
    flex-shrink: 0;
    border-radius: 10px;
    background-blend-mode: overlay, normal;
}

.lf-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: contain;
}

.ad-item4 {
    display: flex;
    height: 32px;
    padding: 7px 4px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    border-radius: 5px;
    background: #FFF;
    color: #000;
}

.hotbtn {
    width: 12px;
    height: 12px;
}

.inner-name {
    color: #FFF;
    font-family: "PingFang SC";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bt-imgBox-img {
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
    border-radius: 4px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.bt-imgBox {
    display: flex;
    gap: 4px;
    padding: 0 5px;
}

.bt-all {
    position: absolute;
    bottom: -10px;
    width: 100%;
}

.cb-txt {
    margin: 0 4px;
    display: flex;
    padding: 1px 6px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    background: #DBFFFD;
    color: #008A81;
    font-family: "PingFang SC";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contentBox {
    display: flex;
    margin-top: 15px;
}

.ad-ad {
    color: #E17C60;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--Fonts-Name-Default, Roboto);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 12px;
}

.ad-time {
    color: #06DD55;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--Fonts-Name-Default, Roboto);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ad-box {
    display: flex;
    margin-top: 8px;
}

.ad-content {
    color: rgba(0, 0, 0, 0.80);
    font-family: "PingFang SC";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 0;
}

.ad-bt {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.40);
    font-family: "DIN Alternate";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.zrrzbox {
    background: #FFFFFF;
    border-radius: 10px;
}

.bc-3 {
    display: flex;
    padding: 8px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #FFF;
    position: relative;
}

.bc-3-img {
    color: rgba(0, 0, 0, 0.80);
    text-align: center;
    font-family: "PingFang SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 10px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.bc-txt {
    color: #999;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bc-bq {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px 0 0 0;
}

.title-image{
    margin-top:20px;
}

.of-cover{
    object-fit: cover !important;
}