/*会议列表页*/
.zwl-conference-list {
    background-color: #F7F7F7;
    padding-bottom: 48px;
    box-sizing: border-box;
}
.conference-list-banner {
    width: 100%;
    height: 100vh;
    background-color: #e8eef8;
    overflow: hidden;
}
.conference-list-banner a,
.conference-list-banner img {
    display: block;
    width: 100%;
    height: 100%;
}
.conference-list-banner img {
    object-fit: cover;
}
.conference-list-banner .swiper-wrapper,
.conference-list-banner .swiper-slide {
    height: 100%;
}
.conference-list-banner .swiper-pagination {
    bottom: 24px;
}
.conference-list-banner .swiper-pagination-bullet {
    width: 18px;
    height: 4px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, .75);
    opacity: 1;
}
.conference-list-banner .swiper-pagination-bullet-active {
    width: 28px;
    background-color: #fff;
}
.zwl-conference-list .w {
    padding-top: 30px;
}
.zwl-conference-list .meeting-classify {
    display: flex;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #fff;
}
.zwl-conference-list .meeting-classify .classify-title {
    font-weight: bold;
    font-size: 14px;
    line-height: 30px;
    padding: 0 10px;
}
.zwl-conference-list .meeting-classify .classify-list {
    display: flex;
    flex: 1;
    width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 10px;
}
.zwl-conference-list .meeting-classify .item {
    display: inline-flex;
    align-items: center;
    height: 30px;
    font-size: 13px;
    padding: 0 10px;
    color: #333;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
}
.zwl-conference-list .meeting-classify .active {
    color: #0fb892;
    border: 1px solid #0fb892;
    background-color: #00B08C30;
}
.zwl-conference-list .conference-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.zwl-conference-list .conference-item {
    width: calc((100% - 60px) / 4);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.zwl-conference-list .conference-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}
.zwl-conference-list .conference-img {
    display: block;
    width: 100%;
    aspect-ratio: 23 / 15;
    overflow: hidden;
}
.zwl-conference-list .conference-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zwl-conference-list .conference-info {
    padding: 20px 20px 18px;
}
.zwl-conference-list .conference-title {
    height: 52px;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    color: #333;
}
.zwl-conference-list .conference-title a {
    color: inherit;
}
.zwl-conference-list .conference-title:hover {
    color: #0fb892;
}
.zwl-conference-list .conference-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
    color: #666;
}
.zwl-conference-list .conference-meta span {
    min-width: 0;
}

@media screen and (max-width: 1200px) {
    .zwl-conference-list {
        min-width: 1200px;
    }
}

/*会议详情页*/
.zwl-conference-detail {
    min-width: 1200px;
    padding-bottom: 56px;
    background-color: #f5f7fb;
    color: #1f2933;
    box-sizing: border-box;
}
.zwl-conference-detail a {
    color: inherit;
}
.zwl-conference-detail .w {
    padding-top: 24px;
}
.zwl-conference-detail .conference-detail-top-banner {
    width: 100%;
    margin-bottom: 6px;
    background-color: #081530;
    overflow: hidden;
}
.zwl-conference-detail .conference-detail-top-banner img {
    display: block;
    width: 100%;
}
.zwl-conference-detail .conference-detail-hero {
    width: 100%;
    /* height: 288px; */
    background-color: #e8eef8;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27, 48, 95, .08);
}
.zwl-conference-detail .conference-detail-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zwl-conference-detail .conference-detail-body {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}
.zwl-conference-detail .conference-detail-main {
    width: 820px;
}
.zwl-conference-detail .conference-detail-sidebar {
    position: sticky;
    top: 20px;
    width: 360px;
    max-height: calc(100vh - 40px);
    padding: 0 4px 6px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-detail-sidebar::-webkit-scrollbar {
    display: none;
}
.zwl-conference-detail .conference-info-panel,
.zwl-conference-detail .conference-content-panel,
.zwl-conference-detail .conference-side-panel {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(22, 34, 51, .06);
    box-sizing: border-box;
}
.zwl-conference-detail .conference-info-panel {
    padding: 28px 32px 30px;
}
.zwl-conference-detail .conference-detail-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    padding: 0 18px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(22, 34, 51, .06);
    box-sizing: border-box;
}
.zwl-conference-detail .conference-detail-tab {
    position: relative;
    flex: 1;
    height: 56px;
    border: 0;
    border-radius: 0;
    font-size: 17px;
    font-weight: bold;
    line-height: 56px;
    text-align: center;
    color: #263244;
    background-color: transparent;
    cursor: pointer;
    transition: color .2s ease;
}
.zwl-conference-detail .conference-detail-tab:hover {
    color: #0fb892;
}
.zwl-conference-detail .conference-detail-tab.active {
    color: #0fb892;
}
.zwl-conference-detail .conference-detail-tab.active:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 3px;
    background-color: #0fb892;
    transform: translateX(-50%);
}
.zwl-conference-detail .conference-detail-tab-content {
    display: none;
}
.zwl-conference-detail .conference-detail-tab-content.active {
    display: block;
}
.zwl-conference-detail .conference-info-panel h1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 42px;
    color: #172033;
}
.zwl-conference-detail .conference-meta-list {
    margin-top: 22px;
}
.zwl-conference-detail .conference-meta-item {
    display: flex;
    align-items: flex-start;
    margin-top: 18px;
}
.zwl-conference-detail .conference-meta-item:first-child {
    margin-top: 0;
}
.zwl-conference-detail .conference-meta-item .meta-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 14px;
    border-radius: 50%;
    color: #0fb892;
    background-color: #e9f8f4;
    box-sizing: border-box;
}
.zwl-conference-detail .meta-icon:before,
.zwl-conference-detail .meta-icon:after {
    content: '';
    position: absolute;
    box-sizing: border-box;
}
.zwl-conference-detail .icon-time:before {
    width: 17px;
    height: 17px;
    border: 2px solid #0fb892;
    border-radius: 50%;
}
.zwl-conference-detail .icon-time:after {
    left: 16px;
    top: 10px;
    width: 7px;
    height: 9px;
    border-left: 2px solid #0fb892;
    border-bottom: 2px solid #0fb892;
}
.zwl-conference-detail .icon-address:before {
    left: 11px;
    top: 7px;
    width: 12px;
    height: 17px;
    border: 2px solid #0fb892;
    border-radius: 8px 8px 8px 0;
    transform: rotate(-45deg);
}
.zwl-conference-detail .icon-address:after {
    left: 15px;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #0fb892;
}
.zwl-conference-detail .icon-topic:before {
    left: 10px;
    top: 9px;
    width: 16px;
    height: 15px;
    border: 2px solid #0fb892;
    border-radius: 3px;
    transform: rotate(45deg);
}
.zwl-conference-detail .icon-topic:after {
    left: 15px;
    top: 12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #0fb892;
}
.zwl-conference-detail .meta-text {
    flex: 1;
    width: 0;
}
.zwl-conference-detail .meta-text span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #7b8594;
}
.zwl-conference-detail .meta-text p {
    margin-top: 4px;
    font-size: 18px;
    line-height: 28px;
    color: #263244;
}
.zwl-conference-detail .conference-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.zwl-conference-detail .conference-signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 52px;
    border-radius: 26px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #10c997;
    box-shadow: 0 8px 20px rgba(16, 201, 151, .26);
    transition: background-color .2s ease, box-shadow .2s ease;
}
.zwl-conference-detail .conference-signup-btn:hover {
    color: #fff;
    background-color: #0fb892;
    box-shadow: 0 10px 24px rgba(15, 184, 146, .32);
}
.zwl-conference-detail .conference-signup-btn.disabled,
.zwl-conference-detail .conference-signup-btn.disabled:hover {
    color: #fff;
    background-color: #aeb6c2;
    box-shadow: none;
    cursor: default;
}
.zwl-conference-detail .conference-content-panel {
    margin-top: 20px;
    padding: 28px 32px 34px;
}
.zwl-conference-detail .conference-rich-text {
    max-width: 100%;
    overflow-x: auto;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.zwl-conference-detail .conference-rich-text * {
    max-width: 100%;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-rich-text [style*="width"] {
    max-width: 100% !important;
}
.zwl-conference-detail .conference-rich-text p,
.zwl-conference-detail .conference-rich-text div,
.zwl-conference-detail .conference-rich-text span,
.zwl-conference-detail .conference-rich-text li {
    font-size: 15px;
    line-height: 28px;
}
.zwl-conference-detail .conference-rich-text p {
    margin-top: 12px;
    color: #4b5668;
    text-align: justify;
}
.zwl-conference-detail .conference-rich-text p:first-child {
    margin-top: 0;
}
.zwl-conference-detail .conference-rich-text h1,
.zwl-conference-detail .conference-rich-text h2,
.zwl-conference-detail .conference-rich-text h3,
.zwl-conference-detail .conference-rich-text h4,
.zwl-conference-detail .conference-rich-text h5,
.zwl-conference-detail .conference-rich-text h6 {
    margin-top: 22px;
    margin-bottom: 12px;
    font-weight: bold;
    line-height: 1.45;
    color: #172033;
}
.zwl-conference-detail .conference-rich-text h1,
.zwl-conference-detail .conference-rich-text h2 {
    font-size: 22px;
}
.zwl-conference-detail .conference-rich-text h3 {
    font-size: 20px;
}
.zwl-conference-detail .conference-rich-text h4,
.zwl-conference-detail .conference-rich-text h5,
.zwl-conference-detail .conference-rich-text h6 {
    font-size: 17px;
}
.zwl-conference-detail .conference-rich-text img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    margin: 16px auto 0;
}
.zwl-conference-detail .conference-rich-text video,
.zwl-conference-detail .conference-rich-text iframe {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 360px;
    margin: 16px 0 0;
}
.zwl-conference-detail .conference-rich-text table {
    width: 100% !important;
    max-width: 100%;
    margin-top: 16px;
    border-collapse: collapse;
    table-layout: auto;
}
.zwl-conference-detail .conference-rich-text th,
.zwl-conference-detail .conference-rich-text td {
    min-width: 80px;
    padding: 10px;
    border: 1px solid #e5eaf0;
    font-size: 14px;
    line-height: 22px;
    color: #4b5668;
}
.zwl-conference-detail .conference-rich-text ul,
.zwl-conference-detail .conference-rich-text ol {
    margin-top: 12px;
    padding-left: 24px;
}
.zwl-conference-detail .conference-rich-text ul li {
    list-style-type: disc;
}
.zwl-conference-detail .conference-rich-text ol li {
    list-style-type: decimal;
}
.zwl-conference-detail .conference-rich-text blockquote {
    margin-top: 16px;
    padding: 12px 16px;
    border-left: 4px solid #0fb892;
    color: #4b5668;
    background-color: #f7fbfa;
}
.zwl-conference-detail .conference-rich-text pre {
    max-width: 100%;
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    color: #4b5668;
    background-color: #f5f7fa;
    white-space: pre-wrap;
    overflow-x: auto;
}
.zwl-conference-detail .conference-section-title,
.zwl-conference-detail .conference-side-panel h3 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    color: #172033;
}
.zwl-conference-detail .conference-section-title {
    padding-left: 12px;
}
.zwl-conference-detail .conference-section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-sponsor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}
.zwl-conference-detail .conference-sponsor-item {
    display: block;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(31, 45, 61, .08);
    transition: box-shadow .2s ease, transform .2s ease;
}
.zwl-conference-detail .conference-sponsor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 45, 61, .14);
}
.zwl-conference-detail .conference-sponsor-item img {
    display: block;
    width: 100%;
    height: auto;
}
.zwl-conference-detail .conference-intro {
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fbfcfe;
    font-size: 15px;
    line-height: 28px;
    color: #4b5668;
    text-align: justify;
}
.zwl-conference-detail [data-detail-content="intro"] .conference-intro p {
    text-indent: 2em;
}
.zwl-conference-detail .conference-intro p + p {
    margin-top: 8px;
}
.zwl-conference-detail .conference-report-card {
    margin-top: 18px;
    padding: 28px 30px;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    background-color: #fbfcfe;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-report-info h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 34px;
    color: #172033;
}
.zwl-conference-detail .conference-report-summary {
    margin-top: 18px;
    font-size: 15px;
    line-height: 30px;
    color: #4b5668;
    text-align: justify;
}
.zwl-conference-detail .conference-report-summary p {
    text-indent: 2em;
}
.zwl-conference-detail .conference-report-summary p + p {
    margin-top: 8px;
}
.zwl-conference-detail .conference-report-more {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    line-height: 22px;
    color: #d71920;
}
.zwl-conference-detail .conference-report-more:hover {
    text-decoration: underline;
}
.zwl-conference-detail .conference-supply {
    margin-top: 18px;
}
.zwl-conference-detail .conference-supply-block {
    padding: 20px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fbfcfe;
}
.zwl-conference-detail .conference-supply-block + .conference-supply-block {
    margin-top: 18px;
}
.zwl-conference-detail .conference-supply-block h3 {
    position: relative;
    padding-left: 14px;
    font-size: 21px;
    font-weight: bold;
    line-height: 30px;
    color: #172033;
}
.zwl-conference-detail .conference-supply-block h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 16px;
    border-radius: 4px;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-supply-item {
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid #dceee9;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(22, 34, 51, .04);
    box-sizing: border-box;
}
.zwl-conference-detail .conference-supply-item h4,
.zwl-conference-detail .conference-supply-value h4 {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 17px;
    font-weight: bold;
    line-height: 26px;
    color: #172033;
}
.zwl-conference-detail .conference-supply-item h4 span {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-supply p,
.zwl-conference-detail .conference-supply li {
    font-size: 15px;
    line-height: 28px;
    color: #4b5668;
    text-align: justify;
}
.zwl-conference-detail .conference-supply p {
    margin-top: 10px;
}
.zwl-conference-detail .conference-supply-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}
.zwl-conference-detail .conference-supply-tags li {
    position: relative;
    min-height: 48px;
    padding: 10px 12px 10px 28px;
    border-left: 2px solid #0fb892;
    border-radius: 4px;
    line-height: 24px;
    background-color: #f3fbf8;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-supply-tags li:before {
    content: '';
    position: absolute;
    left: 13px;
    top: 21px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-supply-tags li:nth-child(5) {
    grid-column: span 2;
}
.zwl-conference-detail .conference-supply-value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}
.zwl-conference-detail .conference-supply-value {
    padding: 16px 18px 18px;
    border: 1px solid #dceee9;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(22, 34, 51, .04);
    box-sizing: border-box;
}
.zwl-conference-detail .conference-supply-value-full {
    grid-column: span 2;
}
.zwl-conference-detail .conference-supply-value ul {
    margin-top: 10px;
}
.zwl-conference-detail .conference-supply-value li {
    position: relative;
    padding-left: 16px;
}
.zwl-conference-detail .conference-supply-value li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-detail-img {
    margin-top: 24px;
    border-radius: 8px;
    background-color: #f0f3f8;
    overflow: hidden;
}
.zwl-conference-detail .conference-detail-img img {
    display: block;
    width: 100%;
    height: auto;
}
.zwl-conference-detail .conference-highlight-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}
.zwl-conference-detail .conference-highlight-item {
    border: 1px solid #dceee9;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 14px rgba(22, 34, 51, .08);
    overflow: hidden;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-highlight-img {
    position: relative;
    height: 186px;
    background-color: #edf2f7;
    overflow: hidden;
}
.zwl-conference-detail .conference-highlight-img:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}
.zwl-conference-detail .conference-highlight-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zwl-conference-detail .conference-highlight-info {
    min-height: 196px;
    padding: 20px 22px 24px;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-highlight-info h3 {
    position: relative;
    padding-bottom: 14px;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: #172033;
}
.zwl-conference-detail .conference-highlight-info h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 4px;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-highlight-info p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 26px;
    color: #5c6675;
    text-align: justify;
}
/* 会议亮点轮播（每页两个，仅作用于会议详情页） */
.zwl-conference-detail .conference-highlight-carousel {
    position: relative;
    margin-top: 18px;
}
.zwl-conference-detail .conference-highlight-viewport {
    overflow: hidden;
}
.zwl-conference-detail .conference-highlight-list.conference-highlight-track {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 18px;
    margin-top: 0;
    transition: transform .45s ease;
    will-change: transform;
}
.zwl-conference-detail .conference-highlight-track .conference-highlight-item {
    flex: 0 0 calc(50% - 9px);
    max-width: calc(50% - 9px);
    min-width: 0;
}
.zwl-conference-detail .conference-highlight-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}
.zwl-conference-detail .conference-highlight-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #dceee9;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 14px rgba(22, 34, 51, .12);
    cursor: pointer;
    transition: border-color .2s, background-color .2s;
}
.zwl-conference-detail .conference-highlight-nav:hover {
    border-color: #0fb892;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-highlight-nav i {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #5c6675;
    border-right: 2px solid #5c6675;
    transition: border-color .2s;
}
.zwl-conference-detail .conference-highlight-nav:hover i {
    border-color: #fff;
}
.zwl-conference-detail .conference-highlight-prev i {
    margin-left: 3px;
    transform: rotate(-135deg);
}
.zwl-conference-detail .conference-highlight-next i {
    margin-right: 3px;
    transform: rotate(45deg);
}
.zwl-conference-detail .conference-highlight-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.zwl-conference-detail .conference-highlight-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #cfd8e3;
    cursor: pointer;
    transition: width .2s, background-color .2s;
}
.zwl-conference-detail .conference-highlight-dot.active {
    width: 20px;
    border-radius: 4px;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-topic-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 22px;
    margin-top: 18px;
}
.zwl-conference-detail .conference-topic-item {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 12px 16px;
    border-left: 2px solid #0fb892;
    border-radius: 4px;
    font-size: 14px;
    line-height: 22px;
    color: #263244;
    background-color: #f7f9fc;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-agenda-wrap {
    margin-top: 18px;
    padding: 22px 22px 18px;
    border-radius: 8px;
    color: #0fb892;
    background: linear-gradient(180deg, #eaf8f4 0%, #f7fcfa 100%);
    box-sizing: border-box;
}
.zwl-conference-detail .conference-agenda-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.zwl-conference-detail .conference-agenda-tab {
    flex: 1 1 0;
    max-width: calc((100% - 28px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 116px;
    padding: 14px 14px 15px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 8px;
    color: #0fb892;
    background: rgba(255, 255, 255, .36);
    box-shadow: inset 0 0 0 1px rgba(15, 184, 146, .16);
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-agenda-tab:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(15, 184, 146, .22), 0 8px 18px rgba(15, 184, 146, .12);
}
.zwl-conference-detail .conference-agenda-tab.active {
    color: #fff;
    background: linear-gradient(135deg, #0fb892 0%, #44d6b4 100%);
    box-shadow: 0 8px 20px rgba(15, 184, 146, .24);
}
.zwl-conference-detail .conference-agenda-tab strong {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 28px;
}
.zwl-conference-detail .conference-agenda-tab span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 7px;
    overflow: hidden;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
}
.zwl-conference-detail .conference-agenda-title {
    margin-top: 30px;
    font-size: 24px;
    font-weight: bold;
    line-height: 34px;
    text-align: center;
    color: #0fb892;
}
.zwl-conference-detail .conference-agenda-title font {
    display: block;
    margin-top: 8px;
    font-weight: bold;
    line-height: 30px;
    color: #0fb892;
}
.zwl-conference-detail .conference-agenda-table {
    margin-top: 28px;
}
.zwl-conference-detail .conference-agenda-head,
.zwl-conference-detail .conference-agenda-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 210px;
    column-gap: 26px;
}
.zwl-conference-detail .conference-agenda-head {
    padding-bottom: 22px;
    border-bottom: 1px solid #bfe8dd;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
    color: #0fb892;
}
.zwl-conference-detail .conference-agenda-row {
    align-items: center;
    min-height: 74px;
    padding: 16px 0;
    border-bottom: 1px solid #bfe8dd;
    box-sizing: border-box;
}
.zwl-conference-detail .agenda-time {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #0fb892;
}
.zwl-conference-detail .agenda-topic {
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
    color: #202a3a;
}
.zwl-conference-detail .agenda-speaker strong {
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #202a3a;
}
.zwl-conference-detail .agenda-speaker span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 20px;
    color: #697386;
}
.zwl-conference-detail .conference-agenda-note {
    margin-top: 18px;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    color: #4f5f7a;
}
.zwl-conference-detail .conference-speaker-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 14px;
    margin-top: 18px;
}
.zwl-conference-detail .conference-speaker-card {
    position: relative;
    border-radius: 8px;
    background-color: #f6f9fb;
    box-shadow: 0 4px 12px rgba(22, 34, 51, .06);
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.zwl-conference-detail .conference-speaker-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 34, 51, .12);
}
.zwl-conference-detail .conference-speaker-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-height: 58px;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 18px;
    font-size: 15px;
    font-weight: bold;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, #2ed8b2 0%, #0fb892 100%);
    box-shadow: 0 8px 18px rgba(5, 118, 94, .28), inset 0 1px 0 rgba(255, 255, 255, .28);
    box-sizing: border-box;
    writing-mode: vertical-rl;
    letter-spacing: 2px;
}
.zwl-conference-detail .conference-speaker-tag:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 9px;
    height: 9px;
    border-right: 1px solid rgba(255, 255, 255, .58);
    border-bottom: 1px solid rgba(255, 255, 255, .58);
    background-color: #0fb892;
    transform: translateX(-50%) rotate(45deg);
}
.zwl-conference-detail .conference-speaker-head {
    padding: 14px 12px 16px;
    color: #fff;
    text-align: center;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-speaker-avatar {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background-color: #eaf8f4;
    overflow: hidden;
}
.zwl-conference-detail .conference-speaker-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zwl-conference-detail .conference-speaker-head strong {
    display: block;
    font-size: 19px;
    font-weight: bold;
    line-height: 26px;
}
.zwl-conference-detail .conference-speaker-head p {
    margin-top: 3px;
    font-size: 12px;
    line-height: 17px;
}
.zwl-conference-detail .conference-speaker-body {
    padding: 12px 14px 18px;
}
.zwl-conference-detail .conference-speaker-body > p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    min-height: 60px;
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    color: #263244;
}
.zwl-conference-detail .conference-speaker-topic {
    margin: 12px -14px 0;
    padding: 12px 14px 14px;
    background-color: #f0fbf8;
}
.zwl-conference-detail .conference-speaker-download {
    margin: 0 -14px -18px;
    padding: 0 14px 16px;
    text-align: center;
    background-color: #f0fbf8;
}
.zwl-conference-detail .conference-speaker-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    height: 28px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #10c997;
    box-shadow: 0 4px 10px rgba(16, 201, 151, .24);
    transition: background-color .2s ease, box-shadow .2s ease;
}
.zwl-conference-detail .conference-speaker-download-btn:hover {
    color: #fff;
    background-color: #0fb892;
    box-shadow: 0 8px 18px rgba(15, 184, 146, .32);
}
.zwl-conference-detail .conference-speaker-topic span {
    display: block;
    font-size: 12px;
    line-height: 20px;
    color: #0fb892;
}
.zwl-conference-detail .conference-speaker-topic b {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 4px;
    overflow: hidden;
    font-size: 13px;
    font-weight: bold;
    line-height: 20px;
    color: #0fb892;
}
.zwl-conference-detail .conference-company-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}
.zwl-conference-detail .conference-company-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 8px 12px;
    border: 1px solid #edf1f5;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(22, 34, 51, .04);
    box-sizing: border-box;
}
.zwl-conference-detail .conference-company-item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.zwl-conference-detail .conference-review-wrap {
    margin-top: 18px;
}
.zwl-conference-detail .conference-review-years {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.zwl-conference-detail .conference-review-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 28px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    font-size: 15px;
    line-height: 28px;
    color: #263244;
    background-color: #f0f2f5;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.zwl-conference-detail .conference-review-year.active {
    color: #fff;
    background-color: #0fb892;
    box-shadow: 0 6px 12px rgba(15, 184, 146, .2);
}
.zwl-conference-detail .conference-review-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 18px;
    margin-top: 20px;
}
.zwl-conference-detail .conference-review-card {
    display: block;
    border: 1px solid #edf1f5;
    border-radius: 4px;
    color: #172033;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(22, 34, 51, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}
.zwl-conference-detail .conference-review-card:hover {
    color: #172033;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 34, 51, .1);
}
.zwl-conference-detail .conference-review-img {
    display: block;
    height: 142px;
    background-color: #eef3f8;
    overflow: hidden;
}
.zwl-conference-detail .conference-review-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zwl-conference-detail .conference-review-card strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 46px;
    padding: 12px 12px 10px;
    overflow: hidden;
    border-bottom: 1px dashed #e7ebf0;
    font-size: 14px;
    font-weight: bold;
    line-height: 23px;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-review-meta {
    position: relative;
    display: block;
    padding: 0 12px 0 34px;
    font-size: 13px;
    line-height: 26px;
    color: #263244;
}
.zwl-conference-detail .conference-review-meta:before {
    content: '';
    position: absolute;
    left: 13px;
    top: 7px;
    width: 12px;
    height: 12px;
    border: 1px solid #263244;
    border-radius: 50%;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-review-meta:after {
    content: '';
    position: absolute;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-review-meta.meta-date {
    margin-top: 8px;
}
.zwl-conference-detail .conference-review-meta.meta-date:after {
    left: 19px;
    top: 9px;
    width: 4px;
    height: 5px;
    border-left: 1px solid #263244;
    border-bottom: 1px solid #263244;
}
.zwl-conference-detail .conference-review-meta.meta-place {
    padding-bottom: 10px;
}
.zwl-conference-detail .conference-review-meta.meta-place:before {
    border-radius: 8px 8px 8px 0;
    transform: rotate(-45deg);
}
.zwl-conference-detail .conference-review-meta.meta-place:after {
    left: 18px;
    top: 11px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #263244;
}
.zwl-conference-detail .conference-scene-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.zwl-conference-detail .conference-scene-item {
    display: block;
    height: 118px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f3f8;
    cursor: pointer;
}
.zwl-conference-detail .conference-scene-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.zwl-conference-detail .conference-scene-item:hover img {
    transform: scale(1.05);
}
.zwl-conference-detail .conference-scene-more {
    margin-top: 22px;
    text-align: center;
}
.zwl-conference-detail .conference-scene-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 38px;
    border: 1px solid #0fb892;
    border-radius: 19px;
    font-size: 14px;
    color: #0fb892;
    background-color: #fff;
    box-sizing: border-box;
    transition: color .2s ease, background-color .2s ease;
}
.zwl-conference-detail .conference-scene-more a:hover {
    color: #fff;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-influence-img,
.zwl-conference-detail .conference-welfare-img {
    margin-top: 18px;
}
.zwl-conference-detail .conference-influence-img img,
.zwl-conference-detail .conference-welfare-img img {
    display: block;
    width: 100%;
    height: auto;
}
.zwl-conference-detail .conference-influence-desc {
    margin-top: 18px;
    font-size: 17px;
    line-height: 28px;
    text-align: center;
    color: #111827;
}
.zwl-conference-detail .conference-influence-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 52px;
}
.zwl-conference-detail .conference-influence-item {
    min-height: 170px;
    padding: 22px 20px;
    border: 2px solid #0fb892;
    border-left-width: 4px;
    border-top-color: transparent;
    border-radius: 20px 8px 62px 8px;
    background: linear-gradient(90deg, #e9f8f4 0%, #fbfdff 100%);
    box-shadow: -14px 44px 0 -42px #cdebe2;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-influence-item:nth-child(2),
.zwl-conference-detail .conference-influence-item:nth-child(4) {
    margin-top: 60px;
}
.zwl-conference-detail .conference-influence-item h3 {
    position: relative;
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-size: 19px;
    font-weight: normal;
    line-height: 26px;
    text-align: left;
    color: #172033;
}
.zwl-conference-detail .conference-influence-item h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-influence-item p {
    font-size: 14px;
    line-height: 26px;
    text-align: left;
    color: #142333;
}
.zwl-conference-detail .conference-influence-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
    padding: 14px 0;
    border-radius: 54px;
    background-color: #0fb892;
}
.zwl-conference-detail .conference-influence-data-item {
    min-height: 72px;
    padding: 4px 14px;
    border-right: 1px solid rgba(255, 255, 255, .75);
    text-align: center;
    box-sizing: border-box;
}
.zwl-conference-detail .conference-influence-data-item:last-child {
    border-right: 0;
}
.zwl-conference-detail .conference-influence-data-item strong {
    display: block;
    font-size: 34px;
    font-weight: bold;
    line-height: 42px;
    color: #fff;
}
.zwl-conference-detail .conference-influence-data-item strong em {
    margin-left: 2px;
    font-size: 18px;
    font-style: normal;
}
.zwl-conference-detail .conference-influence-data-item span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}
.zwl-conference-detail .conference-influence-enterprise {
    margin-top: 48px;
}
.zwl-conference-detail .conference-influence-enterprise h3 {
    margin-bottom: 28px;
    font-size: 26px;
    font-weight: normal;
    line-height: 34px;
    text-align: center;
    color: #222b38;
}
.zwl-conference-detail .conference-influence-enterprise-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.zwl-conference-detail .conference-influence-enterprise-col {
    min-height: 286px;
    padding: 20px 18px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 2px 14px rgba(22, 34, 51, .12);
    box-sizing: border-box;
}
.zwl-conference-detail .conference-influence-enterprise-col span {
    display: block;
    margin-top: 11px;
    font-size: 13px;
    line-height: 20px;
    color: #111827;
}
.zwl-conference-detail .conference-influence-enterprise-col span:first-child {
    margin-top: 0;
}
.conference-image-preview {
    position: fixed;
    z-index: 10020;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px;
    box-sizing: border-box;
}
.conference-image-preview-mask {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .72);
}
.conference-image-preview img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 90vw;
    max-height: 86vh;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
    object-fit: contain;
}
.conference-image-preview-close {
    position: absolute;
    z-index: 2;
    right: 36px;
    top: 30px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .18);
    cursor: pointer;
}
.conference-image-preview-close:before,
.conference-image-preview-close:after {
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
}
.conference-image-preview-close:before {
    transform: rotate(45deg);
}
.conference-image-preview-close:after {
    transform: rotate(-45deg);
}
.zwl-conference-detail .conference-side-panel {
    padding: 22px 24px 24px;
}
.zwl-conference-detail .conference-side-panel + .conference-side-panel {
    margin-top: 16px;
}
.zwl-conference-detail .conference-side-panel h3 {
    font-size: 20px;
}
.zwl-conference-detail .conference-side-info-list {
    margin-top: 18px;
}
.zwl-conference-detail .conference-side-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #edf1f5;
}
.zwl-conference-detail .conference-side-info-list li:first-child {
    padding-top: 0;
}
.zwl-conference-detail .conference-side-info-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.zwl-conference-detail .conference-side-info-icon {
    position: relative;
    flex: none;
    width: 36px;
    height: 36px;
    margin-top: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f8f4 0%, #d7f3ec 100%);
    box-shadow: inset 0 0 0 1px rgba(15, 184, 146, .16);
    box-sizing: border-box;
}
.zwl-conference-detail .conference-side-info-icon:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.zwl-conference-detail .conference-side-info-text {
    flex: 1;
    width: 0;
}
.zwl-conference-detail .conference-side-info-list span {
    display: block;
    font-size: 13px;
    line-height: 20px;
    color: #7b8594;
}
.zwl-conference-detail .conference-side-info-list b {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    color: #263244;
}
.zwl-conference-detail .info-icon-time:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230fb892' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v4l3 2'/%3E%3C/svg%3E");
}
.zwl-conference-detail .info-icon-place:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230fb892' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21c4-4.5 6-7.8 6-10.5A6 6 0 0 0 6 10.5C6 13.2 8 16.5 12 21z'/%3E%3Ccircle cx='12' cy='10' r='2'/%3E%3C/svg%3E");
}
.zwl-conference-detail .info-icon-people:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230fb892' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 20c0-3.3 2.7-5 6-5s6 1.7 6 5'/%3E%3Cpath d='M16 5.5a3 3 0 0 1 0 5.8'/%3E%3Cpath d='M17.5 15.2c2.3.5 3.5 2.2 3.5 4.8'/%3E%3C/svg%3E");
}
.zwl-conference-detail .info-icon-industry:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230fb892' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='7' height='7' rx='1.5'/%3E%3Crect x='13' y='4' width='7' height='7' rx='1.5'/%3E%3Crect x='4' y='13' width='7' height='7' rx='1.5'/%3E%3Crect x='13' y='13' width='7' height='7' rx='1.5'/%3E%3C/svg%3E");
}
.zwl-conference-detail .conference-side-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    margin-top: 20px;
    border-radius: 23px;
    font-size: 16px;
    font-weight: bold;
    line-height: 46px;
    color: #fff;
    background: linear-gradient(135deg, #0fb892 0%, #35d2ae 100%);
    box-shadow: 0 8px 18px rgba(15, 184, 146, .24);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.zwl-conference-detail .conference-side-signup:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 184, 146, .32);
}
.zwl-conference-detail .conference-side-signup.disabled,
.zwl-conference-detail .conference-side-signup.disabled:hover {
    color: #fff;
    background: #aeb6c2;
    box-shadow: none;
    transform: none;
    cursor: default;
}
.conference-float-actions {
    position: fixed;
    right: 22px;
    top: 50%;
    z-index: 999;
    width: 50px;
    padding: 12px 0;
    border: 1px solid #edf1f5;
    border-radius: 26px;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(22, 34, 51, .12);
    transform: translateY(-50%);
    box-sizing: border-box;
}
.conference-float-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 58px;
    color: #7b8594;
    background-color: transparent;
    transition: color .2s ease, transform .2s ease;
}
.conference-float-item + .conference-float-item {
    margin-top: 4px;
}
.conference-float-item:hover {
    color: #0fb892;
    transform: translateY(-1px);
}
.conference-float-item.disabled,
.conference-float-item.disabled:hover {
    color: #aeb6c2;
    transform: none;
    cursor: default;
}
.conference-float-item i {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ed8b2 0%, #0fb892 100%);
    box-shadow: 0 4px 8px rgba(15, 184, 146, .18);
    box-sizing: border-box;
}
.conference-float-item i:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.conference-float-item span {
    display: block;
    width: 24px;
    font-size: 12px;
    font-weight: normal;
    line-height: 15px;
    text-align: center;
    word-break: break-all;
}
.conference-float-item.float-signup i:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h4'/%3E%3C/svg%3E");
}
.conference-float-item.float-share i:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='5' r='2.5'/%3E%3Ccircle cx='6' cy='12' r='2.5'/%3E%3Ccircle cx='18' cy='19' r='2.5'/%3E%3Cpath d='M8.2 10.8 15.8 6.2'/%3E%3Cpath d='M8.2 13.2 15.8 17.8'/%3E%3C/svg%3E");
}
.conference-float-item.float-top i:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V6'/%3E%3Cpath d='M6 11l6-6 6 6'/%3E%3C/svg%3E");
}
.conference-float-qr {
    position: absolute;
    right: 60px;
    top: 50%;
    display: none;
    width: 148px;
    padding: 12px 12px 10px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(22, 34, 51, .16);
    transform: translateY(-50%);
    box-sizing: border-box;
}
.conference-float-qr:after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 1px solid #edf1f5;
    border-right: 1px solid #edf1f5;
    background-color: #fff;
    transform: translateY(-50%) rotate(45deg);
}
.conference-float-qr:before {
    content: '';
    position: absolute;
    right: -18px;
    top: 0;
    width: 18px;
    height: 100%;
}
.conference-float-qr img {
    display: block;
    width: 124px;
    height: 124px;
}
.conference-float-qr p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #5c6675;
}
.conference-float-item.float-share:hover .conference-float-qr {
    display: block;
}
.zwl-conference-detail .organization-main {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.zwl-conference-detail .organization-logo {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-right: 14px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}
.zwl-conference-detail .organization-logo img {
    display: block;
    max-width: 60px;
    max-height: 44px;
    object-fit: contain;
}
.zwl-conference-detail .organization-info {
    flex: 1;
    width: 0;
}
.zwl-conference-detail .organization-info span {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #8a94a3;
}
.zwl-conference-detail .organization-info strong {
    display: block;
    margin-top: 4px;
    font-size: 20px;
    line-height: 28px;
    color: #172033;
}
.zwl-conference-detail .organization-info p {
    margin-top: 4px;
    font-size: 13px;
    line-height: 20px;
    color: #5e6878;
}
.zwl-conference-detail .organization-list {
    margin-top: 20px;
    border-top: 1px solid #edf1f5;
}
.zwl-conference-detail .organization-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 42px;
    padding: 11px 0;
    border-bottom: 1px solid #edf1f5;
    font-size: 14px;
    box-sizing: border-box;
}
.zwl-conference-detail .organization-list span {
    line-height: 22px;
    color: #8a94a3;
}
.zwl-conference-detail .organization-list b {
    font-weight: normal;
    line-height: 22px;
    color: #263244;
}
.zwl-conference-detail .organization-media-list {
    line-height: 22px;
    text-align: center;
}
/*会议报名弹窗*/
.conference-signup-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.conference-signup-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, .48);
    backdrop-filter: blur(3px);
}
.conference-signup-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    max-height: 86vh;
    padding: 22px 24px 24px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
    box-shadow: 0 18px 48px rgba(18, 34, 50, .22);
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    overflow-y: auto;
}
.conference-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background-color: #f3f6f8;
    cursor: pointer;
}
.conference-popup-close:before,
.conference-popup-close:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 14px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #8a94a3;
}
.conference-popup-close:before {
    transform: rotate(45deg);
}
.conference-popup-close:after {
    transform: rotate(-45deg);
}
.conference-popup-close:hover {
    background-color: #e9f8f4;
}
.conference-popup-close:hover:before,
.conference-popup-close:hover:after {
    background-color: #0fb892;
}
.conference-signup-head {
    padding-right: 36px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf1f5;
}
.conference-signup-head h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: #172033;
}
.conference-signup-head p {
    margin-top: 2px;
    font-size: 14px;
    line-height: 20px;
    color: #6b7480;
}
.conference-signup-form .signup-form-item {
    margin-top: 12px;
}
.conference-signup-form .signup-form-item:first-child {
    margin-top: 14px;
}
.conference-signup-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 18px;
    color: #000;
}
.conference-signup-form label span {
    color: #f00;
}
.conference-signup-form input {
    display: block;
    width: 100%;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d7dde4;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #fbfcfe;
    box-sizing: border-box;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.conference-signup-form input:focus {
    border-color: #0fb892;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(15, 184, 146, .12);
}
.signup-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}
.signup-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 172px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 22px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #10c997, #0fb892);
    box-shadow: 0 8px 18px rgba(16, 201, 151, .24);
    cursor: pointer;
    transition: box-shadow .2s ease, transform .2s ease;
}
.signup-submit-btn:hover {
    box-shadow: 0 10px 22px rgba(15, 184, 146, .32);
    transform: translateY(-1px);
}

/*会议报名成功弹窗*/
.conference-success-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
.conference-success-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, .48);
    backdrop-filter: blur(3px);
}
.conference-success-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 360px;
    padding: 34px 28px 28px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 18px 48px rgba(18, 34, 50, .22);
    text-align: center;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}
.conference-success-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background-color: #f3f6f8;
    cursor: pointer;
}
.conference-success-close:before,
.conference-success-close:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 13px;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background-color: #8a94a3;
}
.conference-success-close:before {
    transform: rotate(45deg);
}
.conference-success-close:after {
    transform: rotate(-45deg);
}
.conference-success-close:hover {
    background-color: #e9f8f4;
}
.conference-success-close:hover:before,
.conference-success-close:hover:after {
    background-color: #0fb892;
}
.conference-success-icon {
    position: relative;
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10c997, #0fb892);
    box-shadow: 0 8px 20px rgba(16, 201, 151, .24);
}
.conference-success-icon:after {
    content: '';
    position: absolute;
    left: 16px;
    top: 15px;
    width: 20px;
    height: 12px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
}
.conference-success-dialog h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: #172033;
}
.conference-success-dialog p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #6b7480;
}
.conference-success-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.success-action-btn {
    min-width: 128px;
    height: 38px;
    border-radius: 19px;
    font-size: 14px;
    cursor: pointer;
}
.success-action-btn.plain {
    border: 1px solid #d7dde4;
    color: #4b5668;
    background-color: #fff;
}
.success-action-btn.primary {
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(135deg, #10c997, #0fb892);
}
.success-action-btn:hover {
    box-shadow: 0 6px 14px rgba(18, 34, 50, .12);
}

/*会议嘉宾详情弹窗*/
.conference-speaker-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
.conference-speaker-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, .42);
}
.conference-speaker-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    width: 860px;
    min-height: 360px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(232, 248, 244, .9) 0%, rgba(255, 255, 255, 0) 42%),
        #fff;
    box-shadow: 0 18px 50px rgba(18, 34, 50, .24);
    overflow: hidden;
    transform: translate(-50%, -50%);
}
.conference-speaker-dialog:before,
.conference-speaker-dialog:after {
    content: '';
    position: absolute;
    right: 36px;
    top: 48px;
    width: 310px;
    height: 42px;
    border-radius: 28px;
    background-color: rgba(15, 184, 146, .12);
    transform: rotate(-42deg);
}
.conference-speaker-dialog:after {
    right: -38px;
    top: 148px;
    width: 440px;
    height: 68px;
    background-color: rgba(15, 184, 146, .1);
}
.conference-speaker-close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 4;
    width: 28px;
    height: 28px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
.conference-speaker-close:before,
.conference-speaker-close:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 13px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background-color: #263244;
}
.conference-speaker-close:before {
    transform: rotate(45deg);
}
.conference-speaker-close:after {
    transform: rotate(-45deg);
}
.conference-speaker-pop-info {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 46px 34px 42px 38px;
    box-sizing: border-box;
}
.conference-speaker-pop-info h3 {
    position: relative;
    padding-bottom: 18px;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    color: #30343a;
}
.conference-speaker-pop-info h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background-color: #0fb892;
}
.conference-speaker-pop-subtitle {
    margin-top: 16px;
    font-size: 16px;
    line-height: 28px;
    color: #30343a;
}
.conference-speaker-pop-desc {
    margin-top: 18px;
    max-height: 150px;
    overflow-y: auto;
    font-size: 15px;
    line-height: 28px;
    color: #30343a;
}
.conference-speaker-pop-actions {
    margin-top: 22px;
}
.conference-speaker-pop-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 34px;
    padding: 0 20px;
    border-radius: 17px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-color: #10c997;
    box-shadow: 0 6px 14px rgba(16, 201, 151, .24);
    transition: background-color .2s ease, box-shadow .2s ease;
}
.conference-speaker-pop-download:hover {
    color: #fff;
    background-color: #0fb892;
    box-shadow: 0 10px 24px rgba(15, 184, 146, .32);
}
.conference-speaker-pop-img {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    width: 330px;
    height: 330px;
    margin-right: 36px;
    overflow: hidden;
    mix-blend-mode: darken;
}
.conference-speaker-pop-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*会议组团页*/
.zwl-conference-group {
    min-width: 1200px;
    padding-bottom: 56px;
    background-color: #f5f7fb;
    color: #1f2933;
    box-sizing: border-box;
}
.zwl-conference-group .w {
    padding-top: 24px;
}
.conference-group-hero {
    width: 100%;
    /* height: 286px; */
    border-radius: 8px;
    background-color: #e8eef8;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27, 48, 95, .08);
}
.conference-group-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.conference-group-hero-swiper .swiper-wrapper,
.conference-group-hero-swiper .swiper-slide {
    height: auto;
}
.conference-group-hero-swiper .swiper-pagination {
    bottom: 14px;
}
.conference-group-hero-swiper .swiper-pagination-bullet {
    width: 18px;
    height: 4px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, .75);
    opacity: 1;
}
.conference-group-hero-swiper .swiper-pagination-bullet-active {
    width: 28px;
    background-color: #fff;
}
.conference-group-head {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding: 26px 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(22, 34, 51, .06);
    box-sizing: border-box;
}
.conference-group-title {
    flex: 1;
    width: 0;
}
.conference-group-label {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #0b8f75;
    background-color: #e9f8f4;
}
.conference-group-title h1 {
    margin-top: 12px;
    font-size: 30px;
    font-weight: bold;
    line-height: 42px;
    color: #172033;
}
.conference-group-title p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 24px;
    color: #6b7480;
}
.conference-group-summary {
    display: flex;
    align-items: center;
    width: 430px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fbfcfe;
}
.conference-group-summary .summary-item {
    flex: 1;
    min-width: 0;
    padding: 16px 10px;
    text-align: center;
    border-left: 1px solid #edf1f5;
    box-sizing: border-box;
}
.conference-group-summary .summary-item:first-child {
    border-left: 0;
}
.conference-group-summary strong {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    color: #0fb892;
}
.conference-group-summary span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 18px;
    color: #8a94a3;
}
.conference-group-tabs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(22, 34, 51, .06);
}
.group-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    height: 38px;
    border: 1px solid #d7dde4;
    border-radius: 6px;
    font-size: 15px;
    color: #4b5668;
    background-color: #fff;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.group-tab.active,
.group-tab:hover {
    color: #0b8f75;
    border-color: #0fb892;
    background-color: #e9f8f4;
}
.conference-group-body {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}
.conference-group-main {
    width: 820px;
}
.conference-group-side {
    width: 360px;
}
.group-section-panel,
.group-side-panel {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(22, 34, 51, .06);
    box-sizing: border-box;
}
.group-section-panel {
    min-height: 552px;
    padding: 26px 30px 30px;
}
.group-section-panel + .group-section-panel,
.group-side-panel + .group-side-panel {
    margin-top: 20px;
}
.group-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.group-section-head h2,
.group-side-panel h3,
.group-rule-list h3 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    color: #172033;
}
.group-section-head h2:before,
.group-side-panel h3:before,
.group-rule-list h3:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    margin-right: 8px;
    border-radius: 2px;
    vertical-align: -3px;
    background-color: #0fb892;
}
.group-section-head p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 22px;
    color: #6b7480;
}
.group-text-btn {
    height: 34px;
    padding: 0 14px;
    border: 1px solid #d7dde4;
    border-radius: 17px;
    font-size: 14px;
    color: #4b5668;
    background-color: #fff;
    cursor: pointer;
}
.group-text-btn:hover {
    color: #0b8f75;
    border-color: #0fb892;
    background-color: #e9f8f4;
}
.group-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    margin-top: 22px;
    border: 1px dashed #cbd6df;
    border-radius: 8px;
    background-color: #fbfcfe;
}
.group-add-btn {
    width: 78px;
    height: 78px;
    border: 3px solid #e9f8f4;
    border-radius: 50%;
    font-size: 46px;
    line-height: 70px;
    color: #fff;
    background-color: #172033;
    box-shadow: 0 0 0 3px rgba(15, 184, 146, .28), 0 8px 18px rgba(23, 32, 51, .16);
    cursor: pointer;
}
.group-add-btn:hover {
    background-color: #0fb892;
}
.group-empty-state p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 22px;
    color: #172033;
}
.group-my-team {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid #dceee9;
    border-radius: 8px;
    background: linear-gradient(180deg, #fbfffd 0%, #f4fbf8 100%);
    box-sizing: border-box;
}
.my-team-info,
.join-team-top,
.group-member-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.team-leader-avatar {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #10c997, #0fb892);
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(15, 184, 146, .22);
    box-sizing: border-box;
}
.team-leader-avatar.blue {
    background: linear-gradient(135deg, #4a90e2, #2f70f4);
}
.team-leader-avatar.orange {
    background: linear-gradient(135deg, #ffb451, #ff7a45);
}
.team-leader-avatar.small {
    width: 36px;
    height: 36px;
    font-size: 15px;
}
img.team-leader-avatar {
    display: block;
}
.team-leader-info,
.join-team-info {
    flex: 1;
    width: 0;
}
.team-title-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.team-leader-info span,
.join-team-info span {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #8a94a3;
}
.team-leader-info .team-title-line span {
    display: inline-flex;
}
.team-success-tip {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 9px;
    border-radius: 11px;
    font-size: 12px;
    font-style: normal;
    color: #0b8f75;
    background-color: #e9f8f4;
}
.team-success-tip:before {
    content: "√";
    margin-right: 4px;
    font-weight: bold;
}
.team-leader-info strong,
.join-team-info strong {
    display: block;
    margin-top: 3px;
    font-size: 17px;
    font-weight: bold;
    line-height: 24px;
    color: #172033;
}
.team-status-badge {
    flex: none;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 12px;
}
.team-status-badge.recruiting {
    color: #0b8f75;
    background-color: #e9f8f4;
}
.team-status-badge.success {
    color: #0b8f75;
    background-color: #e9f8f4;
}
.team-status-badge.wait {
    color: #b66b00;
    background-color: #fff4df;
}
.team-status-badge.muted {
    color: #718096;
    background-color: #eef1f5;
}
.team-left-text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 24px;
    color: #6b7480;
}
.team-left-text b {
    color: #0fb892;
    font-size: 18px;
    font-weight: bold;
}
.team-progress-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}
.team-progress-text {
    flex: none;
    width: 132px;
}
.team-progress-text strong {
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: #0fb892;
}
.team-progress-text span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    line-height: 18px;
    color: #6b7480;
}
.team-progress-bar {
    position: relative;
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background-color: #edf1f5;
    overflow: hidden;
}
.team-progress-bar span,
.team-progress-bar i {
    display: block;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #10c997, #0fb892);
}
.team-slot-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.team-slot-avatar {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid #0fb892;
    border-radius: 50%;
    object-fit: cover;
    background-color: #e9f8f4;
    box-sizing: border-box;
}
.team-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px dashed #cbd6df;
    border-radius: 50%;
    font-size: 20px;
    color: #8a94a3;
    background-color: #fff;
}
.team-add-slot {
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.team-add-slot:hover {
    color: #0b8f75;
    border-color: #0fb892;
    background-color: #e9f8f4;
}
.team-slot.filled {
    border-style: solid;
    border-color: #0fb892;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background-color: #0fb892;
}
.team-countdown {
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
    color: #6b7480;
}
.team-countdown b,
.join-team-bottom b {
    color: #0fb892;
}
.group-action-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 26px;
}
.group-primary-btn,
.group-outline-btn,
.join-team-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 21px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}
.group-primary-btn {
    min-width: 150px;
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(135deg, #10c997, #0fb892);
    box-shadow: 0 8px 18px rgba(16, 201, 151, .22);
}
.group-outline-btn {
    min-width: 150px;
    border: 1px solid #0fb892;
    color: #0b8f75;
    background-color: #fff;
}
.group-primary-btn:hover,
.group-outline-btn:hover,
.join-team-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(18, 34, 50, .12);
}
.join-team-list {
    margin-top: 22px;
}
.join-team-item {
    padding: 20px 0;
    border-top: 1px solid #edf1f5;
}
.join-team-item:first-child {
    padding-top: 0;
    border-top: 0;
}
.join-team-item.disabled {
    opacity: .72;
}
.join-team-progress {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}
.join-team-progress span {
    flex: none;
    width: 150px;
    font-size: 14px;
    line-height: 22px;
    color: #4b5668;
}
.join-team-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 14px;
    line-height: 22px;
    color: #6b7480;
}
.join-team-btn {
    min-width: 104px;
    height: 34px;
    border: 1px solid transparent;
    color: #fff;
    background-color: #10c997;
}
.join-team-btn.disabled {
    color: #8a94a3;
    background-color: #eef1f4;
    cursor: not-allowed;
}
.group-benefit-banner {
    padding: 24px 26px;
    border-radius: 8px;
    color: #172033;
    background: linear-gradient(135deg, #e9f8f4 0%, #f8fbff 100%);
    box-sizing: border-box;
}
.group-benefit-banner span {
    display: block;
    font-size: 28px;
    font-weight: bold;
    line-height: 38px;
    color: #0b8f75;
}
.group-benefit-banner strong {
    display: block;
    margin-top: 8px;
    font-size: 17px;
    line-height: 26px;
}
.group-benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}
.group-benefit-item {
    position: relative;
    width: calc((100% - 14px) / 2);
    min-height: 118px;
    padding: 20px 118px 18px 20px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fff;
    box-sizing: border-box;
}
.group-benefit-item h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    color: #0fb892;
}
.group-benefit-item p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #4b5668;
}
.group-benefit-item strong {
    position: absolute;
    right: 20px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 46px;
    border-radius: 6px;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, #ffb451, #ff5c35);
    box-shadow: 0 8px 16px rgba(255, 122, 69, .22);
    transform: translateY(-50%);
}
.group-rule-list {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #edf1f5;
}
.group-rule-list p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #4b5668;
}
.group-side-panel {
    padding: 24px 24px 26px;
}
.group-meeting-card {
    margin-top: 18px;
}
.group-meeting-card img {
    display: block;
    width: 100%;
    height: 136px;
    border-radius: 8px;
    object-fit: cover;
}
.group-meeting-card strong {
    display: block;
    margin-top: 14px;
    font-size: 17px;
    font-weight: bold;
    line-height: 26px;
    color: #172033;
}
.group-meeting-card p {
    margin-top: 4px;
    font-size: 13px;
    line-height: 20px;
    color: #6b7480;
}
.group-status-list {
    margin-top: 14px;
}
.group-status-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #edf1f5;
    font-size: 14px;
    line-height: 22px;
    color: #6b7480;
}
.group-status-list li:first-child {
    border-top: 0;
}
.group-status-list b {
    color: #172033;
}
.group-benefit-picture {
    margin-top: 18px;
    padding: 10px;
    border: 1px solid #dceee9;
    border-radius: 8px;
    background-color: #f4fbf8;
}
.group-benefit-picture img {
    display: block;
    width: 100%;
    border-radius: 6px;
}
.conference-group-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
.group-modal-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, .48);
    backdrop-filter: blur(3px);
}
.group-modal-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    padding: 28px 28px 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 18px 48px rgba(18, 34, 50, .22);
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}
.group-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background-color: #f3f6f8;
    cursor: pointer;
}
.group-modal-close:before,
.group-modal-close:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 13px;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background-color: #8a94a3;
}
.group-modal-close:before {
    transform: rotate(45deg);
}
.group-modal-close:after {
    transform: rotate(-45deg);
}
.group-modal-close:hover {
    background-color: #e9f8f4;
}
.group-modal-close:hover:before,
.group-modal-close:hover:after {
    background-color: #0fb892;
}
.group-modal-dialog h3 {
    padding-right: 36px;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: #172033;
}
.group-modal-dialog > p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #6b7480;
}
.group-share-preview {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding: 12px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fbfcfe;
}
.group-share-preview img {
    flex: none;
    width: 116px;
    height: 76px;
    border-radius: 6px;
    object-fit: cover;
}
.group-share-preview div {
    flex: 1;
    width: 0;
}
.group-share-preview strong {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #172033;
}
.group-share-preview span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 20px;
    color: #6b7480;
}
.group-share-link {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 20px;
    color: #4b5668;
    background-color: #f3f6f8;
    word-break: break-all;
}
.group-share-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 16px;
    text-align: center;
}
.group-share-qrcode-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 166px;
    height: 166px;
    padding: 8px;
    margin: 0 auto;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fff;
}
.group-share-qrcode-img img,
.group-share-qrcode-img canvas {
    display: block;
    width: 150px !important;
    height: 150px !important;
    margin: 0 auto;
}
.group-share-qrcode-img table,
.group-share-qrcode-img svg {
    margin: 0 auto;
}
.group-share-qrcode p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 20px;
    color: #6b7480;
}
.group-modal-action {
    display: flex;
    width: 160px;
    margin: 18px auto 0;
}
.group-member-list {
    margin-top: 18px;
}
.group-member-item {
    padding: 12px 0;
    border-top: 1px solid #edf1f5;
}
.group-member-item:first-child {
    border-top: 0;
}
.group-member-item strong {
    display: block;
    font-size: 15px;
    line-height: 22px;
    color: #172033;
}
.group-member-item p {
    margin-top: 2px;
    font-size: 13px;
    line-height: 20px;
    color: #6b7480;
}
.group-modal-rules {
    margin-top: 16px;
}
.group-modal-rules p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #4b5668;
}
.conference-group-toast {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10001;
    max-width: 360px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    background-color: rgba(23, 32, 51, .88);
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 28px rgba(17, 24, 39, .18);
}

/*我的参会/组团列表*/
.zwl-conference-my-list {
    min-width: 1200px;
    padding-bottom: 56px;
    background-color: #f5f7fb;
    color: #1f2933;
    box-sizing: border-box;
}
.zwl-conference-my-list a {
    color: inherit;
}
.zwl-conference-my-list .w {
    padding-top: 24px;
}
.conference-my-head {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(22, 34, 51, .06);
    box-sizing: border-box;
}
.conference-my-head > div:first-child {
    flex: 1;
    width: 0;
}
.conference-my-label {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #0b8f75;
    background-color: #e9f8f4;
}
.conference-my-head h1 {
    margin-top: 12px;
    font-size: 30px;
    font-weight: bold;
    line-height: 42px;
    color: #172033;
}
.conference-my-head p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 24px;
    color: #6b7480;
}
.conference-my-summary {
    display: flex;
    align-items: center;
    width: 430px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fbfcfe;
}
.conference-my-summary .summary-item {
    flex: 1;
    min-width: 0;
    padding: 16px 10px;
    text-align: center;
    border-left: 1px solid #edf1f5;
    box-sizing: border-box;
}
.conference-my-summary .summary-item:first-child {
    border-left: 0;
}
.conference-my-summary strong {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    color: #0fb892;
}
.conference-my-summary span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 18px;
    color: #8a94a3;
}
.conference-my-body {
    margin-top: 20px;
}
.conference-my-list-panel {
    padding: 26px 30px 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(22, 34, 51, .06);
    box-sizing: border-box;
}
.conference-my-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.conference-my-section-title h2 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    color: #172033;
}
.conference-my-section-title h2:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    margin-right: 8px;
    border-radius: 2px;
    vertical-align: -3px;
    background-color: #0fb892;
}
.conference-my-section-title a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    height: 34px;
    padding: 0 14px;
    border: 1px solid #0fb892;
    border-radius: 17px;
    font-size: 14px;
    color: #0b8f75;
    background-color: #fff;
    box-sizing: border-box;
}
.conference-my-section-title a:hover {
    color: #0b8f75;
    background-color: #e9f8f4;
}
.conference-my-card {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.conference-my-card:hover {
    border-color: #dceee9;
    box-shadow: 0 8px 24px rgba(22, 34, 51, .08);
    transform: translateY(-2px);
}
.conference-my-cover {
    flex: none;
    display: block;
    width: 210px;
    height: 136px;
    border-radius: 8px;
    background-color: #f0f3f8;
    overflow: hidden;
}
.conference-my-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.conference-my-info {
    flex: 1;
    width: 0;
    min-width: 0;
    padding: 2px 0;
}
.conference-my-info h3 {
    min-height: 58px;
    font-size: 22px;
    font-weight: bold;
    line-height: 29px;
    color: #172033;
}
.conference-my-info h3:hover {
    color: #0fb892;
}
.conference-my-meta {
    margin-top: 14px;
}
.conference-my-meta p {
    display: flex;
    min-width: 0;
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #4b5668;
}
.conference-my-meta p:first-child {
    margin-top: 0;
}
.conference-my-meta span {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 22px;
    margin-right: 10px;
    border-radius: 11px;
    font-size: 12px;
    color: #8a94a3;
    background-color: #f3f6f8;
}
.conference-my-status {
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 188px;
    padding-left: 20px;
    border-left: 1px solid #edf1f5;
    box-sizing: border-box;
}
.conference-my-status-cell {
    margin-top: 12px;
}
.conference-my-status-cell:first-child {
    margin-top: 0;
}
.conference-my-status-cell > span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 18px;
    color: #8a94a3;
}
.zwl-conference-my-list .status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 26px;
    padding: 0 10px;
    border-radius: 13px;
    font-size: 13px;
    font-style: normal;
    line-height: 26px;
    box-sizing: border-box;
}
.zwl-conference-my-list .status-pill.success {
    color: #0b8f75;
    background-color: #e9f8f4;
}
.zwl-conference-my-list .status-pill.wait,
.zwl-conference-my-list .status-pill.recruiting {
    color: #b66b00;
    background-color: #fff4df;
}
.zwl-conference-my-list .status-pill.pending {
    color: #2f70f4;
    background-color: #edf4ff;
}
.zwl-conference-my-list .status-pill.muted {
    color: #7b8594;
    background-color: #eef1f4;
}
.conference-my-load-more {
    padding: 20px 0 4px;
    color: #8a8f99;
    font-size: 14px;
    text-align: center;
}
.conference-my-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 34px;
    margin-top: 16px;
    border: 1px solid #0fb892;
    border-radius: 17px;
    font-size: 14px;
    color: #0b8f75;
    background-color: #fff;
    box-sizing: border-box;
}
.conference-my-action:hover {
    color: #fff;
    background-color: #0fb892;
}
/* 我的参会/组团列表 —— 列表项右侧状态区重设计 */
.conference-my-attend .conference-my-status,
.conference-my-group .conference-my-status {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    gap: 16px 18px;
    width: 300px;
    padding-left: 24px;
}
.conference-my-attend .conference-my-status-cell,
.conference-my-group .conference-my-status-cell {
    margin-top: 0;
}
.conference-my-attend .conference-my-status-cell > span,
.conference-my-group .conference-my-status-cell > span {
    margin-bottom: 8px;
}
.conference-my-attend .conference-my-action,
.conference-my-group .conference-my-action {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
}
