/**
 * @Author: liuying
 * @Crtime: 2026-06-29 10:00:00
 * @ModifyUser: liuying
 * @ModifyTime: 2026-06-29 14:30:00
*/

/* .member-container {
    width: 1400px;
    margin: 30px auto;
    padding: 40px 0;
} */

/* 暂无数据样式 */
.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
    border-radius: 8px;
    margin: 20px 0;
}

.no-data-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-data-text {
    font-size: 16px;
    color: #666;
}

/* 飞入动画 */
@keyframes flyInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flyInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 初始隐藏状态 */
.join-guide-card.fly-in-left-init {
    opacity: 0;
    transform: translateX(-50px);
}

.join-guide-card.fly-in-right-init {
    opacity: 0;
    transform: translateX(50px);
}

.member-definition-section.fade-in-init {
    opacity: 0;
}

/* 动画执行类 */
.join-guide-card.fly-in-left {
    animation: flyInLeft 0.6s ease-out forwards;
}

.join-guide-card.fly-in-right {
    animation: flyInRight 0.6s ease-out forwards;
}

.member-definition-section.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* 搜索框 */
.search-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 950px;
    margin: 130px  auto;
    border: 1px solid #ccc;
    background: #f5f5f5;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 20px;
    outline: none;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-button {
    background: linear-gradient(90deg, #0066cc 0%, #00cc99 100%);
    color: #FCFBFB;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
}

.search-button:hover {
    opacity: 0.9;
}

/* 会员名录按钮 */
.member-directory-btn {   
    color: #fff;
    padding: 13px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-directory-btn .dir-icon {
    width: 20px;
    height: 20px;
}

 

/* 筛选区域 */
.filter-section {
    font-size: 20px;
    color: #fff;
    margin:0 50px 30px;
}

/* 分类筛选 */
.category-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.filter-label {
    font-weight: 400;
    position: relative;
}

.filter-label::after {
    content: '|';
    margin-left: 15px;
    color: #738298;
}

.filter-items {
    display: flex;
    gap: 35px;
}

.filter-item {
    text-decoration: none;
    color: #fff;
    /* font-size: 14px; */
    padding: 6px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.filter-item:hover,
.filter-item.active {
    /* font-weight: 500; */
    /* background-color: #0066cc; */
    padding: 10px 27px;
    background: linear-gradient(94.4277deg, rgb(14, 128, 233) 2%, rgb(69, 223, 66) 176%);
}

/* 字母筛选 */
.alphabet-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
}

.alphabet-items {
    display: flex;
    /* gap: 25px; */
    flex-wrap: wrap;
}

.alphabet-item {
    text-decoration: none;
    color: #fff;
    /* font-size: 14px; */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.alphabet-item:hover,
.alphabet-item.active {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(94.4277deg, rgb(14, 128, 233) 2%, rgb(69, 223, 66) 176%);
}


/* 会员类型卡片 */
.member-type-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.member-type-card.active {
    background: linear-gradient(-73.0257572665025deg, rgba(255, 217, 157, 1) -12%, rgba(242, 114, 42, 1) 118%);
}

.member-type-card.active h3,
.member-type-card.active p {
    color: white;
}

/* 合作伙伴会员 - 橙色 hover */
.member-type-card:first-child:hover {
    background: linear-gradient(-73.0257572665025deg, rgba(255, 217, 157, 1) -12%, rgba(242, 114, 42, 1) 118%);
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}

.member-type-card:first-child:hover h3,
.member-type-card:first-child:hover p {
    color: white;
}

.member-type-card:hover::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.3)'%3E%3Cpath d='M17 20h5v-2h-5v-5h2v-5h-2v-5h-5v2h5v5h-2v5h2v5z'/%3E%3C/svg%3E"); */
    background-size: 80px;
    background-repeat: no-repeat;
}

/* 伙伴会员 - 蓝色 hover */
.member-type-card.card-partner:hover {
    background: linear-gradient(-64.2534042846108deg, rgba(143, 229, 246, 1) -2%, rgba(67, 123, 207, 1) 138%);
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}

.member-type-card.card-partner:hover h3,
.member-type-card.card-partner:hover p {
    color: white;
}

/* .member-type-card.card-partner:hover::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.3)'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
    background-size: 80px;
    background-repeat: no-repeat;
} */

/* 联系会员 - 绿色 hover */
.member-type-card.card-contact:hover {
    background: linear-gradient(129.714553250617deg, rgba(128, 168, 4, 1) -38%, rgba(233, 254, 175, 1) 110%);
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}

.member-type-card.card-contact:hover h3,
.member-type-card.card-contact:hover p {
    color: white;
}

/* .member-type-card.card-contact:hover::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.3)'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-size: 80px;
    background-repeat: no-repeat;
} */

/* 观察员 - 蓝灰色 hover */
.member-type-card.card-observer:hover {
    background: linear-gradient(-19.6538240580534deg, rgba(203, 220, 225, 1) 12%, rgba(64, 133, 157, 1) 116%);
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}

.member-type-card.card-observer:hover h3,
.member-type-card.card-observer:hover p {
    color: white;
}

/* .member-type-card.card-observer:hover::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.3)'%3E%3Cpath d='M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E");
    background-size: 80px;
    background-repeat: no-repeat;
} */

.card-icon {
    width: 80px;
    height: 80px;
    /* background: rgba(200, 200, 200, 0.3); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon img {
    /* filter: brightness(0) saturate(0) opacity(0.4); */
}

/* .member-type-card.active .card-icon,
.member-type-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
} */

.member-type-card.active .card-icon img,
.member-type-card:hover .card-icon img {
    filter: brightness(0) invert(1);
}

.card-content {
    flex: 1;
    padding-right: 20px;
}

.member-type-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0;
}

.member-type-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 内容区域样式 */
.content-section {
    display: none;
    margin: 0 auto;
    max-width: 1960px;
}

.content-section.active {
    display: block;
    margin: 100px  auto  400px;
}

/* 标题包装器 */
.wtcf-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.wtcf-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* 会员权利义务模块 */
.rights-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rights-image-left {
    transform: translateX(-50px);
}

.rights-image-right {
    transform: translateX(50px);
}

.rights-image-left.animate {
    animation: flyInLeft 0.6s ease-out forwards;
}

.rights-image-right.animate {
    animation: flyInRight 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

.rights-img {
    width: 100%;
}


.overview-title-zh {
    font-size: 42px;
    font-weight: 700;
    color: #00275E;
    margin: 0;
}

/* 新闻容器 */
.member-container {
    position: relative;
    /* max-width: 960px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* 入会须知内容 */
.join-guide-content {
    color: #333;
    line-height: 1.8;
}

.join-guide-content h3 {
    color: #00275E;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.join-guide-content h3:first-child {
    margin-top: 0;
}

.join-guide-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.join-guide-content ol {
    margin: 0;
    padding-left: 20px;
}

.join-guide-content li {
    margin-bottom: 10px;
}

/* 会员列表区域 */
.list-section {
    margin-top: 160px;
    padding-top: 20px;
    position: relative;
}

.list-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

/* 筛选标签 */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.filter-tab {
    padding: 10px 60px;
    font-size: 20px;
    color: #fff;
    background: transparent;
    border: 0;
    font-weight: 700;
    /* border-radius: 30px; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active {
    background: #64B4FF;
    color: #fff;
    border-color: #fff;
}

.filter-tab:hover:not(.active) {
    border-color: #fff;
}

/* 轮播容器 */
.member-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    perspective: 1000px;
}

/* 轮播箭头 */
.carousel-arrow {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    font-size: 70px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #fff;
    transform: scale(1.1);
}

 
/* 轮播内容容器 */
.member-carousel-container {
    width: 1560px;
    /* overflow: hidden; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 20px 0;
    opacity: 1;
    gap: 20px;
}

.member-carousel-item {
    flex: 0 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    opacity: 1;
    transform: scale(1);
    display: block;
}
.membercarousel .member-carousel-item {
    display: block;
}

.member-carousel-item.active {
    display: block;
}

/* 普通图 - 第1,2,4,5个 */
.carousel-item-small {
    width: 340px;
    z-index: 1;
    opacity: 0.8;
}

/* 大图 - 第三个 */
.carousel-item-large {
    width: 380px;
    z-index: 2;
}

/* 中等尺寸 - 数据不足5个时使用 */
.member-carousel-item-medium {
    width: 350px;
    z-index: 2;
    margin: 0 10px;
}

.carousel-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.carousel-img:hover {
    transform: scale(1.1);
    z-index: 2;
}

.carousel-item-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 8px 10px;
    font-size: 18px;
    text-align: center;
}



.partner-member-filter-tab {
    padding: 10px 30px;
    font-size: 18px;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-member-filter-tab.active {
    background: #fff;
    color: #0066cc;
    border-color: #fff;
}

.partner-member-filter-tab:hover:not(.active) {
    border-color: #fff;
}

/* 伙伴会员轮播容器 */
.partner-member-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.partner-member-carousel-container {
    width: 100%;
    overflow: hidden;
}

.partner-member-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    align-items: flex-start;
}

/* 伙伴会员项 */
.partner-member-item {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 110px);
    position: relative;
}

/* 奇数项（第1、3张）靠上 */
/* .partner-member-item:nth-child(4n+1),
.partner-member-item:nth-child(4n+3) {
    margin-top: 0;
} */

/* 偶数项（第2、4张）靠下 */
/* .partner-member-item:nth-child(4n+2),
.partner-member-item:nth-child(4n+4) {
    margin-top: 40px;
} */

.partner-member-img {
    width: 100%;
    height: 300px;
    aspect-ratio: 3 / 4; 
    display: block;
}

.partner-member-item-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 15px;
    font-size: 18px;
    text-align: center;
}

/* 伙伴会员分页指示器 */
.partner-member-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.partner-member-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-member-dot.active {
    width: 30px;
    border-radius: 6px;
    background: #fff;
}

/* 联系会员筛选标签 */
.contact-member-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-member-filter-tab {
    padding: 10px 30px;
    font-size: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-member-filter-tab.active {
    background: #fff;
    color: #0066cc;
    border-color: #fff;
}

.contact-member-filter-tab:hover:not(.active) {
    border-color: #fff;
}

/* 联系会员轮播容器 */
.contact-member-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 1;
}



/* 联系会员内容容器 */
.contact-member-carousel-container {
    width: 1960px;
    /* overflow: hidden; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-member-carousel {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    padding: 20px 0;
    width: 100%;
}

/* 会员名录 Tab 切换 */
.member-map-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.member-map-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #e8e8e8;
}

.member-map-tab {
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    background: #f5f5f5;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
    letter-spacing: 1px;
    border-radius: 6px 6px 0 0;
}

.member-map-tab:hover {
    color: #0066cc;
    background: #eef4ff;
}

.member-map-tab.active {
    color: #fff;
    background: #0066cc;
    border-bottom-color: #00cc99;
}

.member-map-panel {
    display: none;
}

.member-map-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.member-map-scroll {
    display: flex;
    justify-content: center;
    max-height: 800px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.member-map-scroll::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .member-map-wrapper {
        padding: 20px 12px;
    }
    .member-map-tab {
        padding: 10px 24px;
        font-size: 16px;
    }
}

.contact-member-item {
    flex: 1;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.contact-member-img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.contact-member-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.2);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-member-btns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-member-item:hover .contact-member-mask,
.contact-member-item:hover .contact-member-btns {
    opacity: 1;
    visibility: visible;
}

.contact-member-btn {
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: 26px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact-member-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-member-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 30px 15px 15px;
    font-size: 18px;
    text-align: center; 
}

/* 入会须知模块 */
.join-guide-section {
    padding: 40px 0;
    /* background: linear-gradient(180deg, #004A8B 0%, #0066CC 100%); */
    position: relative;
    overflow: hidden;
}

/* .join-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 40%;
    opacity: 0.1;
    z-index: 0;
} */

/* 会员定义部分 */
.member-definition-section {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    text-align: center;
}

.member-definition-title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.member-definition-list {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.member-definition-list li {
    color: #fff;
    font-size: 22px;
    line-height: 2;
    padding-left: 15px;
    position: relative; 
    font-weight: 350;
    font-style: normal;
    text-align: justify;
    text-justify: inter-word;
    line-height: 56px;
    /* list-style: none; */
}

/* .member-definition-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #fff;
} */

/* 四个卡片区域 */
.join-guide-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1460px;
    margin: 0 auto 200px;
    padding: 20px;
     word-wrap: break-word;
    text-shadow: 0px 0px 5px rgba(31, 60, 87, 0.647058823529412);
}

.join-guide-card {
    padding: 30px;
}

.join-guide-card-title {

    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px; 
    font-weight: 700;
    font-style: normal;
    font-size: 42px;
    color: #FFFFFF;
}

.join-guide-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background: #FFFFFF;
}

.join-guide-card-content { 
    font-weight: 350;
    font-style: normal;
    font-size: 18px;
    color: #FFFFFF;
    text-align: justify;
    text-justify: inter-word;
    line-height: 40px;
    line-height: 2;

}

.join-guide-card-content p { 
    font-size: 22px;
}

.join-guide-card-content p:last-child {
    margin-bottom: 0;
}

/* 观察员模块 */
.observer-section {
    margin-top: 60px;
    padding: 40px 0;
    /* background: linear-gradient(180deg, rgba(232, 244, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); */
}

.observer-title {
    font-size: 36px;
    font-weight: 600;
    color: #00275E;
    text-align: center;
    margin-bottom: 30px;
}

/* 观察员筛选标签 */
.observer-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.observer-filter-tab {
    padding: 10px 30px;
    font-size: 18px;
    color: #333;
    background: transparent;
    border: 2px solid #64B4FF;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.observer-filter-tab.active {
    background: #64B4FF;
    color: #fff;
    border-color: #64B4FF;
}

.observer-filter-tab:hover:not(.active) {
    border-color: #0066cc;
}

/* 观察员轮播容器 */
.observer-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.observer-carousel-container {
    width: 100%;
    overflow: hidden;
}

.observer-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

/* 观察员项 */
.observer-item {
    flex: 0 0 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
    position: relative;
}

.observer-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.observer-item-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    text-align: center;
}

/* 城市主题游模块 */
.theme-section {
    margin-top: 50px;
}


.theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.theme-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.theme-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.theme-card-content {
    padding: 20px;
}

.theme-card-title {
    color: #000000;
    margin-bottom: 12px; 
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.theme-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    padding-bottom: 15px;
    border-bottom: 1.5px dashed #ddd;
}

.theme-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.theme-card-item {
    padding: 6px 0;
    padding-left: 15px;
    position: relative; 
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #333333;
    line-height: 38px;
}

.theme-card-item::before {
    content: '|';
    position: absolute;
    left: 0;
    color: #0066cc;
}

.theme-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.theme-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-dot.active {
    background: #fff;
}

/* 当季游玩模块 */
.seasonal-section {
    margin-top: 40px;
    padding: 40px ;
    border-radius: 8px;
}

.seasonal-title {
    color: #fff;
    text-align: center;
    margin-bottom: 30px; 
    font-weight: 700;
    font-style: normal;
    font-size: 44px;
}

.seasonal-content {
    display: flex;
    gap: 30px;
    width: 100%;
}

.seasonal-left {
    flex: 3;
    min-width: 0;
}

.seasonal-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.seasonal-banner {
    position: relative;
    width: 100%;
    padding-bottom: 66%; /* 3:2 比例 */
    height: 0;
    overflow: hidden;
}

.seasonal-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seasonal-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
}

.seasonal-banner-pagination {
    position: absolute;
    bottom: 25px;
    right: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.seasonal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.seasonal-dot.active {
    background: #fff;
    width: 20px;
    border-radius: 5px;
}

.seasonal-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 15px 0;
}

.seasonal-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); 
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seasonal-item:last-child {
    border-bottom: none;
}

/* 移除链接下划线 */
.seasonal-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex: 1;
    overflow: hidden;
}

.seasonal-item a:hover {
    text-decoration: none;
}

.seasonal-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* 当季游玩底部区域 */
.seasonal-footer {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

/* 查看更多按钮 */
.seasonal-more-btn {
    padding: 14px 40px;
    background: #003366;
    color: #fff;
    border: none; 
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.seasonal-more-btn:hover {
    background: linear-gradient(135deg, #0066aa, #00aa88);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 170, 0.4);
}
.seasonal-text {
    color: #fff;
}

/* 观察员分页指示器 */
.observer-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.observer-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.observer-dot.active {
    width: 30px;
    border-radius: 6px;
    background: #0066cc;
}

.festival-carousel {
    margin-top: 20px;
}

.festival-container {
    overflow: hidden;
    position: relative;
}

.festival-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.festival-card {
    flex: 0 0 calc(33.333% - 14px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.festival-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.festival-card-content {
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease;
}

.festival-card-title {
    padding-bottom: 30px;
    font-size: 28px;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.festival-card-date {
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}

/* 鼠标悬停状态 */
.festival-card:hover .festival-card-content {
    background: linear-gradient(135deg, #0066aa, #00aa88);
}

.festival-card:hover .festival-card-title,
.festival-card:hover .festival-card-date {
    color: #fff;
}

/* 世界节庆分页 */
.festival-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.festival-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.festival-dot.active {
    background: #0066aa;
}

/* 标题样式 */
.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #00275E;
    margin-bottom: 20px;
}

/* 分隔线样式 */
.title-divider {
    border: none;
    height: 3px;
    background-color: #00A0E9;
    margin-bottom: 30px;
}

/* 入会须知内容样式 */
.join-content {
    line-height: 1.8;
    color: #333;
}

.join-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* 入会流程样式 */
.process-content {
    padding-top: 20px;
}

.process-title {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.process-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #00A0E9;
}

.process-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.process-step.vertical {
    margin-bottom: 0;
}

.process-step.with-side {
    max-width: 800px;
}

.process-step.last-step {
    margin-bottom: 0;
}

.process-box {
    width: 100%;
    max-width: 400px;
    height: 116px;
    background: #fff;
    border: 1px solid #0059DE;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.process-box.main-box {
    background: #fff;
    border-color: #0059DE;
}

.process-box.final-box {
    background: linear-gradient(-71.6582300454645deg, rgba(46, 155, 255, 1) 0%, rgba(113, 141, 255, 1) 69%);;
    border-color: transparent;
}

.process-box.final-box h3,
.process-box.final-box p {
    color: #fff;
}

.process-box h3 {
    font-size: 22px;
    font-weight: 500;
    color: #00275E;
    margin-bottom: 8px;
    text-align: center; 
    font-style: normal;
}

.process-box p {
    margin: 0; 
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #00275E;
    text-align: center;
}

/* 侧边框 */
.side-box {
    position: absolute;
    width: 180px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 0 15px;
}

.side-box.gray-side {
    left: -410px;
    top: 50%;
    transform: translateY(-50%);
    background: #E8E8E8;
    border: 1px solid #D0D0D0;
}

.side-box h4 {
    font-size: 22px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
    text-align: center;
}

.side-box p {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin: 0;
}

.side-box.green-side h4 {
    color: #00275E;
}


/* 连接器 */
.process-connector {
    position: relative;
    width: 2px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.connector-line {
    width: 0;
    flex: 1;
    border-left: 2px dashed #0b265b;
    background: transparent;
    position: relative;
    z-index: 1;
}

.connector-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0b265b;
    border: 1px solid #fff;
    /* box-shadow: 0 0 0 2px #0b265b; */
    margin-top: -8px;
    position: relative;
    z-index: 2;
}

/* 入会流程主布局 */
.process-flow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: left;
    padding: 20px 0;
}

/* 左侧独立步骤 */
.process-step.left-step {
    position: relative;
    margin-right: 0;
}

.process-step.left-step .process-box {
    position: relative;
    top: 0;
}

/* 右侧主流程列 */
.process-main-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* 水平箭头连接 */
.process-arrow.horizontal-arrow-left {
    position: absolute;
    top: 58px;
    left: -70px;
    display: flex;
    align-items: center;
}

.arrow-line {
    width: 50px;
    height: 0;
    border-top: 2px dashed #0059DE;
    background: transparent;
}

.arrow-head {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0b265b;
    /* border: 4px solid #fff; */
    /* box-shadow: 0 0 0 2px #0059DE; */
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-head::after {
    content: '＞';
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

/* 连接器圆点样式 */
.process-connector .connector-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0b265b;
    border: 1px solid #fff;
    /* box-shadow: 0 0 0 2px #0b265b; */
    margin-top: -9px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-connector .connector-dot::after {
    content: '∨';
    color: #fff;
    font-size:12px;
    line-height: 1;
}

/* 主步骤样式 */
.process-step.vertical.main-step {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 0;
}

.process-step.vertical.main-step.last-step {
    margin-bottom: 0;
}

/* 带左侧侧框的步骤 */
.process-step.vertical.main-step.with-left-side {
    position: relative;
}

/* 带右侧侧框的步骤 */
.process-step.vertical.main-step.with-right-side {
    position: relative;
}

/* 侧边框 */
.side-box {
    position: absolute;
    width: 260px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 0 15px;
}

.side-box.gray-side {
    right: calc(100% + 40px);
    top: 50%;
    transform: translateY(-50%);
    background: #E8E8E8;
    border: 1px solid #D0D0D0;
}

.side-box.green-side {
    left: calc(100% + 140px);
    top: 40%;
    transform: translateY(-50%);
    background: #E6F7EE;
}


.side-box p {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin: 0;
}

.side-box.green-side h4 {
    color: #388E3C;
}

.side-box.green-side p {
    color: #66BB6A;
}

/* 回退箭头容器 */
.back-arrow-container {
    position: absolute;
    top: -80px;
    left: 0;
    width: 200px;
    height: 80px;
}

/* 回退箭头竖线部分 */
.back-arrow.vertical-part {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: #0059DE;
}

/* 回退箭头横线部分 */
.back-arrow.horizontal-part {
    position: absolute;
    left: -130px;
    width: 230px;
    height: 1px;
    background: #0059DE;
}

/* 回退箭头头部 */
.back-arrow-head {
    position: absolute;
    top: -5px;
    left: -136px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #0059DE;
}



/* 右侧说明 */
.process-note.right-note {
    position: absolute;
    left: calc(100% + 40px);
    top: 45px;
    width: 290px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.process-note.right-note p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    text-align: left;
}

.process-note.right-note p:first-child {
    font-weight: 500;
    color: #333;
}

/* 响应式设计 */
/* @media (max-width: 1440px) {
    .member-container {
        width: 90%;
    }
} */


/* 附件区域 */
.attachments-section {
    padding: 30px;
}


.attachments-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.attachments-icon {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    margin-right: 10px;
}

.attachments-heading {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}

.attachments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.attachments-group {
    margin-bottom: 0;
}

.attachments-group-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.attachments-buttons {
    display: flex;
    gap: 60px;
}

.attachment-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 20px 30px;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.attachment-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.btn-icon {
    width: 46px;
    height: 44px;
}

.city-unit-icon  {
   background-size: contain;
}

.btn-text {
    font-size: 20px; 
    color: #333;
    font-weight: 500;
}

/* 更多按钮 */
.huazhang-more-btn {
    margin-top: 30px;
    text-align: center;
}

.more-button {
    padding: 12px 36px;
    background: #00275E;
    border: 0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-button:hover {
    background: linear-gradient(92.56deg, rgba(0, 104, 199, 1) 1%, rgba(47, 185, 108, 1) 122%, rgba(69, 223, 66, 1) 179%);
}

@media (max-width: 768px) {


    .filter-items,
    .alphabet-items {
        flex-wrap: wrap;
        gap: 15px;
    }

    .search-wrapper {
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }

    .attachments-buttons {
        flex-direction: column;
    }
}