body {
    background-color: #f6f6f6;
}

main {
    min-height: calc(100vh - 260px);
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    overflow-x: clip;
    min-width: 1248px;
}

.banner {
    margin-top: 120px;
    width: 100%;
    height: 360px;
    background-color: #050624;
}

.community-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
    margin-top: -320px;
    position: relative;
    z-index: 2;
}

.c-detail-card {
    width: 1248px;
    border-radius: 24px;
    padding-bottom: 26px;
}

.c-detail-card .card-top {
    position: relative;
}

.c-detail-card .card-top .img-mask {
    background-color: #050624;
    border-radius: 0 0 48px 48px;
}

.c-detail-card .card-top img {
    width: 1248px;
    height: 640px;
    display: block;
    border-radius: 48px;
}

.card-top .head-profile {
    position: absolute;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .45);
    border-radius: 48px;
    top: 80%;
    left: 6%;
}

.card-top .head-profile img {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 44px;
}

.c-detail-card .card-bottom {
    display: flex;
    flex-direction: column;
    padding: 0 60px;
}

.c-detail-des {
    margin-top: 100px;
    padding-left: 12px;
}

.c-detail-des .c-detail-title {
    display: flex;
    justify-content: space-between;
}

.c-detail-title .view-online {
    color: #0BD58A;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 4px;
    margin-top: 8px;
}

.c-detail-title .view-num::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #0BD58A;
    border-radius: 50%;
    margin-right: 7px;
    vertical-align: baseline;
    transform: translateY(-5px);
}

.c-detail-title h2 {
    font-size: 48px;
    font-weight: 550;
}

.c-detail-des p {
    margin-top: 14px;
    font-size: 24px;
    color: #666;
    letter-spacing: 1px;
}

.c-detail-invite {
    margin-top: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-detail-invite .invite-left {
    position: relative;
}

.c-detail-invite .invite-left .img-base {
    width: 582px;
}

.invite-left .img-p1,
.invite-left .img-p2 {
    position: absolute;
}

.invite-left .img-p1 {
    outline: 2px solid #169268;
    outline-offset: 2px;
    width: 50px;
    top: 16%;
    left: 28px;
    border-radius: 14px;
}

.invite-left .img-p2 {
    left: 17%;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .65);
    width: 290px;
}

.invite-right .btn-invite {
    cursor: pointer;
    border: none;
    width: 192px;
    height: 68px;
    background-color: #050624;
    border-radius: 34px;
    font-size: 28px;
    color: #f6f6f6;

    transition: opacity .3s ease;
}

.btn-invite:hover {
    opacity: 0.8;
}

/* 蒙层 */
.blur-mask {
    width: 100%;
    position: absolute;
    inset: 0;
    display: none;
    /* pointer-events: none; */
    z-index: 9999;
    justify-content: center;
}

/* 底层：背景图+高斯模糊 */
.blur-mask::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url(../assets/c1@2x.webp) center/cover no-repeat;
    background-attachment: fixed;
    filter: blur(16px);
    transform: scale(1.05);
    pointer-events: none;
}

.blur-mask::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
}

.blur-mask.show {
    display: block;
    height: 100vh;
    overflow-y: auto;
}

.pop-wrapper {
    pointer-events: auto;
    /* 内容需要点按钮 */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 480px;
    margin: 80px auto;
}

.pop-wrapper .pop-logo {
    width: 94px;
}

.pop-card {
    margin-top: 80px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.pop-card .p-card-top {
    display: flex;
    flex-direction: column;
    position: relative;
}

.p-card-top .pop-img {
    width: 480px;
    height: 246px;
    border-radius: 24px 24px 0px 0px;
}

.p-card-top .pop-profile {
    position: absolute;
    width: 120px;
    outline: 4px solid #fff;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .65);
    left: 39%;
    top: 75%;
}

.p-card-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f6f6;
    border-radius: 0 0 24px 24px;
}

.p-card-bottom .p-bottom-text {
    font-size: 14px;
    margin-top: 78px;
    width: 200px;
}

.p-card-bottom .p-card-people {
    display: flex;
    justify-content: space-around;
    color: #666;
    margin-top: 9px;
    margin-bottom: 24px;
}

.p-card-people .view-num::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #0BD58A;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: baseline;
    transform: translateY(-2px);
}

.view-offline .view-num::before {
    background: #999;
}

.pop-invite .pop-user {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 39px;
}

.pop-invite .pop-user img {
    border-radius: 50%;
    width: 48px;
}

.pop-invite .pop-button {
    width: 360px;
    height: 56px;
    background-color: #0bd58a;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    color: #f6f6f6;
    cursor: pointer;
    margin-bottom: 30px;

    transition: opacity .3s ease;
}

.pop-button:hover {
    opacity: 0.8;
}