:root {
    --module-width: 78.12rem;
    --module2-width: 71.8rem;
    --body-bg: #212830;
    --default-font-color: #303030;
}

html, body {
    margin: 0;
    padding: 0;
    color: var(--default-font-color);
    font-family: PingFang SC;
    font-weight: 400;
    background: var(--body-bg);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--default-font-color);
    cursor: pointer;
}

img {
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

input {
    background: none;
    outline: none;
    border: 0px;
}

input:focus {
    outline: none;
}

input[type=radio] {
    display: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
    border: 0;
    outline: none;
}

textarea {
    background: none;
    outline: none;
    border: 0px;
}

textarea:focus {
    outline: none;
}

h1, h2, h3 {
    margin: 0;
}


@font-face {
    font-family: 'Bronova-Bold';
    src: url('https://files.weelv.com/font/Bronova-Bold.otf')
}

@font-face {
    font-family: 'Bronova-Regular';
    src: url('https://files.weelv.com/font/Bronova-Regular.otf')
}

.font-bron-bold {
    font-family: 'Bronova-Bold';
    margin-top: 0.3rem;
}

.font-bron-regular {
    font-family: 'Bronova-Regular';
    margin-top: 0.3rem;
}

header {
    width: 100%;
    position: relative;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    z-index: 1;
}

.btn {
    background: linear-gradient(135deg, #f1a980, #f73e72);
    height: 36px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
}

.win {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
    display: none;
}

.win .win_con {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 20px;
    width: 300px;
    height: 240px;
    margin-left: -150px;
    margin-top: -120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.win .win_con .win_logo {
    width: 100%;
    margin: 1.5rem 0 1rem 0;
    text-align: center;
}

.win .win_con .win_logo img {
    width: 2rem;
    height: 2rem;
}

.win .win_con .win_tips {
    font-size: 0.875rem;
    text-align: center;
    padding: 0 1.5625rem;
    line-height: 1.5rem;
}

.win .win_con .win_btn {
    width: 13.75rem;
    line-height: 2.875rem;
    text-align: center;
    border-radius: 1.4375rem;
    background: linear-gradient(135deg, #f1a980, #f73e72);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 1.5625rem;
    border: 0;
    outline: none;

}

.win .win_con #foo {
    width: 100%;
    height: 0.625rem;
    color: #fff;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    background: #fff;

}


.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 4rem;
    overflow-x: hidden;
}

.data-line-sum,
.data-line-sum .pv,
.data-line-sum .love {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 500;
}

.data-line-sum .pv .img,
.data-line-sum .love .img {
    width: 2rem;
    height: 2rem;
    margin-right: 0.3rem;
}

.data-line-sum .love .img {
    width: 2rem;
    height: 2rem;
    margin-right: 0.1rem;
}

.mg-t10 {
    margin-top: 0.5rem;
}

.mg-t20 {
    margin-top: 1rem;
}

.mg-t30 {
    margin-top: 1.5rem;
}

.mg-t32 {
    margin-top: 1.6rem;
}

.mg-t40 {
    margin-top: 2rem;
}

.mg-t50 {
    margin-top: 2.5rem;
}

.mg-t60 {
    margin-top: 3rem;
}

.mg-b10 {
    margin-bottom: 0.5rem;
}

.mg-b60 {
    margin-bottom: 3rem;
}

.mg-l5 {
    margin-left: 0.25rem;
}

.mg-l6 {
    margin-left: 0.3rem;
}

.mg-l10 {
    margin-left: 0.5rem;
}

.mg-l40 {
    margin-left: 2rem;
}

/* flex通用样式 */
.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-jc-center {
    justify-content: center;
}

.flex-jc-start {
    justify-content: flex-start;
}

.flex-jc-end {
    justify-content: flex-end;
}

.flex-jc-sb {
    justify-content: space-between;
}

.flex-jc-sa {
    justify-content: space-around;
}

.flex-al-center {
    align-items: center;
}

.flex-al-start {
    align-items: flex-start;
}

.flex-al-end {
    align-items: flex-end;
}

.w-all {
    width: 100%;
}

.f20 {
    font-size: 1rem;
}

.f22 {
    font-size: 1.1rem;
}

.f24 {
    font-size: 1.2rem;
}

.f26 {
    font-size: 1.3rem;
}

.f28 {
    font-size: 1.4rem;
}

.f30 {
    font-size: 1.5rem;
}

.f32 {
    font-size: 1.6rem;
}

.f32 {
    font-size: 1.6rem;
}

.f34 {
    font-size: 1.7rem;
}

.f36 {
    font-size: 1.8rem;
}

.f38 {
    font-size: 1.9rem;
}

.f40 {
    font-size: 2rem;
}

.f48 {
    font-size: 2.4rem;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.colffffff {
    color: #ffffff;
}

.col999999 {
    color: #999999;
}

.bg-colffffff {
    background: #ffffff;
}

.bg-colFFB8E7 {
    background: #FFB8E7;
}

.lh-40 {
    line-height: 2rem;
}

.lh-56 {
    line-height: 2.8rem;
}

.ls-4 {
    letter-spacing: 0.2rem;
}

.ls-6 {
    letter-spacing: 0.3rem;
}

.ls-8 {
    letter-spacing: 0.4rem;
}

.ls-10 {
    letter-spacing: 0.5rem;
}

.ls-12 {
    letter-spacing: 0.6rem;
}

/* 中划线 */
.td-through {
    text-decoration: line-through;
}

/* 下划线 */
.td-underline {
    text-decoration: underline;
}

/* 英文字母换行 */
.break-all {
    word-break: break-all;
}

.beyond-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beyond-2 {
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.beyond-3 {
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pub-hd {
    width: calc(100% - 4rem);
    height: 4rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pub-hd .logo {
    height: 2.4rem;
    margin-right: 1rem;
}

.pub-hd .shop-img {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.3rem;
}

.pub-hd .arr-r {
    width: 1rem;
    height: 1rem;
    margin-left: 0.1rem;
}

/* 划到底部加载更多 */
.loading-more {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-more .loading-more-quan {
    width: 1rem;
    height: 1rem;
    border: 0.1rem solid #999999;
    position: relative;
    animation: loadMore 1s linear infinite;
    border-radius: 50%;
}

.loading-more .loading-more-quan .loading-more-dian {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #999999;
    position: absolute;
    top: 0.6rem;
    right: -0.3rem;
}

@keyframes loadMore {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pub-float-ad{
    /* position: fixed;
    top: 0;
    left: 0; */
    position: relative;
    width: 100%;
    height: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #dddddd38;
}
.pub-float-ad .jinli{
    position: fixed;
    right:1rem;
    bottom: 13rem;
    height: 14rem;
    z-index: 999;
}
