/* 基础样式 */
body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 65px;
    font-size: 1rem;
    -webkit-text-size-adjust: 100% !important;
}

* {
    box-sizing: inherit;
}
a{
    text-decoration: none;
}
.border-bottom{
    border-bottom: 1px solid #eeeeee !important
}

h2{
    font-size: 1.2rem;
}
.fs-075{
    font-size: 0.75rem;
}
.fs-085{
    font-size: 0.85rem;
}
.link-orange{
    color: #ff7a00;
}
.link-orange:hover{
    color: #ff7a00;
}



.page-header{


}
.header-title{
    font-size: 1.2rem;
}

.link-orange{
    color: #ff7a00;
}
.link-orange:hover{
    color: #ff7a00;
}


.avatar{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.online-dot{
    position: absolute;
    top: -14px;
    left: -4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #28a745;
    border: 2px solid #fff;
}
.online-dot-no{
    background-color: #dddddd;
}
.online-dot-user{
    top: -6px;
    right:-6px;
    left: auto;
}
.user-avatar{
    width: 60px;
    height: 60px;
}
.user-avatar .avatar{
    width: 60px;
    height: 60px;
}

/* 澶村儚鏍峰紡 */
.avatar-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    cursor: pointer;
}

.avatar-container .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    background-color: #f1f3f5;
    transition: transform 0.3s;
}

.avatar-container:hover .avatar {
    transform: scale(1.05);
}

.avatar-container .avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.avatar-container:hover .avatar-overlay {
    opacity: 1;
}

.avatar-container .avatar-overlay i {
    color: white;
    font-size: 20px;
}

/* 闅愯棌鐨勬枃浠惰緭鍏� */
.avatar-container .upload-file-input {
    display: none;
}


.index_task_total{
    border-radius: 10px;
    background-color: #eff6ff;
}
.online-badge {
    background-color: #c3f0ca;
    color: #000000;
    border-radius: 15px;
    padding: 2px 8px;
    font-size: 0.8em;
    margin-left: 10px;
}


.tool-card, .func-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #000000;
}
.tool-card:hover, .func-card:hover {
    background-color: #e9ecef;
    color: #000000;
}
.tool-icon, .func-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #dbeafe;
    margin-bottom: 8px;
    font-size: 1.3rem;
}
.func-card{
    background-color: #ffffff;
    padding: 5px 5px;
    font-size: 0.85rem;
}
.func-icon{
    margin-bottom: 2px;
}


/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999; /* 低于头部导航 */
}

.nav-item {
    flex: 1;
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-item.active {
    color: #0d6efd;
}

.nav-item i {
    display: block;
    font-size: 1.3rem;
}

.nav-item span {
    font-size: 0.9rem;
}

/*用户中心列表*/
.user-menu-item {
    display: flex;
    align-items: center;
    padding: 13px 10px 13px 20px;
    border-bottom: 1px solid #f1f3f5;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.user-menu-item:hover {
    background-color: #f8f9fa;
}

.user-menu-item i {
    font-size: 20px;
    color: #0d6efd;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    /*background: #f3f4f6;*/
}

.user-menu-item .arrow {
    margin-left: auto;
    color: #ccc;
}

.user-menu-item .upload-file-input {
    display: none;
}
/*打卡签到列表*/
.topic-sign-list{
    padding: 15px;
}
.topic-sign-list-card{
    border: 1px solid #f1f3f5;
    border-radius: 15px;
    margin-bottom: 10px;
    padding: 15px;
}
.topic-sign-list-card .avatar{
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}
.topic-sign-list-card .online-dot-yes{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #28a745;
    border: 2px solid #fff;
    overflow: hidden;
}
.topic-sign-list-card .online-dot-no{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ef4444;
    border: 2px solid #fff;
    overflow: hidden;
}
.topic-sign-list-card .title{
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}
.topic-sign-list-card h5 a{
    color: black;
}

/* 主容器：图片与文字横向排列 */
.image-with-text {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 0px 0px;
}

/* 文字区域 */
.follow-text {
    max-width: 200px;
}
.image-stack {
    position: relative;
    height: 36px; /* 包含边框的总高度 */
    flex-shrink: 0; /* 防止被挤压 */
    transition: width 0.3s ease; /* 宽度变化动画 */
}
.stacked-image {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, z-index 0.2s;
}
/* 悬停效果 */
.stacked-image:hover {
    transform: scale(1.05);
    z-index: 10; /* 悬停时置于顶层 */
}


/*.image-stack {*/
/*    position: relative;*/
/*    !* 调整容器宽度以适应图片数量 *!*/
/*    margin: 0 auto;*/
/*    width: auto; !* 总宽度 *!*/
/*    min-width: 32px;*/
/*    height: 32px; !* 图片高度 *!*/
/*    flex-shrink: 0; !* 防止被压缩 *!*/
/*}*/

/*.stacked-image {*/
/*    position: absolute;*/
/*    border: 2px solid white;*/
/*    border-radius: 20px;*/
/*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
/*    transition: transform 0.3s ease;*/
/*    width: 32px;*/
/*    height: 32px;*/
/*}*/

/*!* 每张图片的位置和层级 *!*/
/*.stacked-image:nth-child(1) {*/
/*    left: 0;*/
/*    z-index: 1;*/
/*}*/

/*.stacked-image:nth-child(2) {*/
/*    left: 16px;*/
/*    z-index: 2;*/
/*}*/

/*.stacked-image:nth-child(3) {*/
/*    left: 32px;*/
/*    z-index: 3;*/
/*}*/
/*.stacked-image:nth-child(4) {*/
/*    left: 48px;*/
/*    z-index: 4;*/
/*}*/
/*.stacked-image:nth-child(5) {*/
/*    left: 64px;*/
/*    z-index: 5;*/
/*}*/
/*.stacked-image:nth-child(6) {*/
/*    left: 80px;*/
/*    z-index: 6;*/
/*}*/





.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
    display: flex;
    align-items: center;
}
/*签到新增页*/
.section-title i {
    margin-right: 8px;
    color: #007aff;
}
.sign-add-selection {
    border: 1px solid #f1f3f5;
    border-radius: 15px;
    margin-bottom: 10px;
    padding: 15px;
}

.sign-add-selection .selected-account {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f0f7ff;
    border-radius: 8px;
    color: #007aff;
    font-size: 16px;
}

.sign-add-selection .selected-account i {
    margin-right: 10px;
}

.sign-add-selection .selected-account .placeholder {
    color: #8e8e93;
    background-color: #f0f7ff;
}

.sign-add-selection .selected-account .account-name {
    flex: 1;
}

.sign-add-selection .selected-account .arrow-icon {
    margin-left: auto;
    transition: transform 0.2s;
}

.sign-add-selection .account-selection:hover .arrow-icon {
    transform: translateX(3px);
}
.sign-add-selection .search-input-group {
    display: flex;
    gap: 10px;
}

.sign-add-selection .search-input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #e5e5ea;
    border-radius: 8px;
    font-size: 16px;
    color: #1d1d1f;
}

.sign-add-selection .search-input:focus {
    outline: none;
    border-color: #007aff;
}

.sign-add-selection .search-btn {
    padding: 0 20px;
    background-color: #007aff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sign-add-selection .search-btn:hover {
    background-color: #0066cc;
}

.sign-add-selection .search-btn:disabled {
    background-color: #b3d1ff;
    cursor: not-allowed;
}

.sign-add-selection .search-btn i {
    margin-right: 5px;
}


.sign-add-selection  .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* 空状态 */
.sign-add-selection .empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #8e8e93;
}

.sign-add-selection .empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.sign-add-selection .empty-state p {
    font-size: 16px;
    margin-bottom: 5px;
}

.sign-add-selection .empty-state .hint {
    font-size: 14px;
    opacity: 0.8;
}

/* 加载状态 */
.sign-add-selection .loading-state {
    text-align: center;
    padding: 40px 20px 40px 80px ;
    color: #8e8e93;
}

.sign-add-selection .loading-state i {
    font-size: 24px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sign-add-selection .topic-list{
    list-style: none;
    padding-left: 0px;
}


.sign-add-selection .topic-item {
    display: flex;
    align-items: center;
    padding: 8px 5px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sign-add-selection .topic-item:last-child {
    border-bottom: none;
}

.sign-add-selection .topic-item:hover {
    background-color: #f5f5f7;
}

.sign-add-selection .topic-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #007aff;
    font-size: 20px;
}

.sign-add-selection .topic-info {
    flex: 1;
}

.sign-add-selection .topic-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
}

.sign-add-selection .topic-desc {
    font-size: 12px;
    color: #8e8e93;
}

.sign-add-selection .topic-select {
    color: #999999;
    font-size: 20px;
}

.sign-add-selection .topic-item.selected .account-select {
    opacity: 1;
}


/* 加载状态 */
#loading-state {
    display: none;
}
/* 初始化状态 */
#default-state {
    text-align: center;
    color: #6c757d;
    margin: 50px auto;
}
/* 空状态 */
#empty-state {
    display: none;
}

/* 加载更多 */
.load-more {
    padding: 15px;
    text-align: center;
    color: #007aff;
    font-size: 14px;
    cursor: pointer;
    display: none;
}

.load-more.loading {
    color: #8e8e93;
}

/* 下拉刷新提示 */
.pull-refresh {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e8e93;
    font-size: 14px;
}

/*账号列表容器*/
.accounts-container {
    list-style: none;
    padding: 0px 20px;
}
.account-group {
    margin-bottom: 20px;
}
.group-title {
    font-size: 14px;
    color: #8e8e93;
    margin-bottom: 10px;
    padding-left: 10px;
}
.account-item {
    display: flex;
    align-items: center;
    padding: 8px 5px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}
.account-item:last-child {
    border-bottom: none;
}
.account-item:hover {
    background-color: #f5f5f7;
}
.account-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #007aff;
    font-size: 20px;
}
.account-info {
    flex: 1;
}
.account-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
}
.account-desc {
    font-size: 12px;
    color: #8e8e93;
}
.account-select {
    color: #999999;
    font-size: 20px;
}
.account-item.selected .account-select {
    opacity: 1;
}

/* 弹窗框架 start */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;

}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    width: 100%;
    /*padding: 20px;*/
    margin: 0 auto;
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content-bottom {
    background-color: white;
    width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 0px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content-bottom {
    transform: translateY(0);
    /*padding: 15px;*/
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 20px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #8e8e93;
    cursor: pointer;
}

/* 弹窗框架 end */

.copyright {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #bbbbbb;

}
.copyright a {
    color: #bbbbbb;
}
.copyright a:hover {
    color: #333;
}

.border-custom{
    border: 1px solid #f1f3f5;
    border-radius: 15px;
}
/**话题详情页**/
.topic-detail{}
.topic-detail .menu-item{
    display: flex;
    align-items: center;
    padding: 15px 15px;
    border-bottom: 1px solid #f1f3f5;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}
.topic-detail .menu-item:hover {
    background-color: #f8f9fa;
}
.topic-detail .menu-item i {
    color: #0d6efd;
}
.topic-detail .menu-item .arrow {
    margin-left: auto;
    color: #ccc;
    text-align: right;
    font-size: 0.85rem;
}
.topic-detail .menu-item .upload-file-input {
    display: none;
}
/* 时间轴容器 */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 每组记录之间的间距 */
}
/* 单组“时间 + 记录”的容器 */
.timeline .timeline-item {
    display: flex;
    align-items: baseline; /* 核心：垂直居中对齐 */
    gap: 5px; /* 时间与卡片的间距 */
}
/* 时间列样式 */
.timeline .timeline-date {
    width: 60px; /* 固定时间列宽度，保证对齐 */
    text-align: center;
    color: #333;
    z-index: 1;
    background: #ffffff;
    font-size: 0.75rem;
}
/* 记录卡片样式 */
.timeline .timeline-card {
    background: #eff6ff;
    border-radius: 8px;
    padding: 12px 15px;
    width: 100%; /* 卡片宽度，可根据需求调整 */
}
.timeline .card-time {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}
.timeline .card-title {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
}
.timeline .card-desc {
    font-size: 13px;
    color: #999;
}
/* 签到成功文字颜色 */
.timeline .success {
    color: #28a745;
    font-weight: bold;
}
/* 底部提示 */
.timeline-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    padding-bottom: 20px;
}
/* 时间轴竖线（可选，还原设计图的竖线） */
.timeline-line {
    position: absolute;
    left: 28px; /* 与时间列居中对齐 */
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eff6ff;
}
.timeline-wrapper {
    position: relative;
    padding-top: 20px;
}

#detailsModal .m-avatar{
    text-align: center;
}
#detailsModal .m-avatar img{
    border-radius: 1000px;
}
#detailsModal .m-status{
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dddddd;
}
.account-tips {
    text-align: center;
    color: #8e8e93;
}

/*微博授权页面*/
.author-type-card{
    padding: 15px;
    background: #ffffff;
    /*font-size: 1.2rem;*/
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eeeeee;

}
.author-type-card .recommend{
    top: 0;
    right: 0;
    position: absolute;
    padding: 5px;
    background-color: #fe9100;
    border-bottom-left-radius: 8px;
    color: #ffffff;
}
.author-type-card .title{
    color: #333333;
    font-weight: bold;
}
.author-type-card .desc{
    color: #6c757d;
    font-size: 0.9rem;
}


.author-qrcode-card{
    padding: 20px;
    background: #ffffff;
    font-size: 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.author-qrcode-card .qr-container{
    position: relative;
    width: 12.5rem;
    height: 12.5rem;
    margin: auto;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}
/* 加载状态样式 */
.author-qrcode-card .qr-container .qr-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.author-qrcode-card .qr-container .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 二维码图片样式 */
.author-qrcode-card .qr-container .qr-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    display: none; /* 初始隐藏 */
}

/* 过期覆盖层 */
.author-qrcode-card .qr-container .expired-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.author-qrcode-card .qr-container .expired-overlay i{
    color: orange;
}
.author-qrcode-card .qr-container .expired-overlay.active {
    opacity: 1;
    pointer-events: all;
    color: #666666;
}

.author-qrcode-card .qr-container .expired-text {
    font-size: 18px;
}
.author-qrcode-card .tip{
    font-size: 1rem;
    font-weight: 700;
    color: #6c757d;
    text-align: center;
}
.author-qrcode-card .tip2{
    font-size: 0.75rem;
    color: #6c757d;
    text-align: center;
}

/*我的邀请列表*/
.invite-item {
    background-color: white;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f3f5;
    display: flex;
    align-items: center;
}

.invite-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    background-color: #f1f3f5;
}

.invite-info {
    flex: 1;
}

.invite-name {
    font-weight: 500;
    margin-bottom: 3px;
}

.invite-time {
    font-size: 12px;
    color: #6c757d;
}

.invite-status {
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 12px;
}
/* 邀请链接弹窗 */
.share-modal-body {
    text-align: center;
    padding: 30px 20px;
}
.invite-empty{
    background: #ffffff;
    border-radius: 5px;
    text-align: center;
}

/* 列表容器 */
.record-list {
    list-style: none;
    padding: 0;
}
/* 消费记录项 */
.record-list .record-item {
    background-color: white;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
    justify-content: space-between;

}

.record-list .record-item:hover {
    background-color: #f9f9f9;
}

/* 记录详情 */
.record-list .record-details {
    flex: 1;
    min-width: 0;
}

.record-list .record-name{

    font-weight: 500;
}
.record-list .record-desc {
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 4px;
}

.record-list .record-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.record-list .record-time {
    font-size: 13px;
    color: #8e8e93;
}

.record-list .record-amount {
    font-size: 16px;
    font-weight: 600;
    color: #ff3b30;
    margin-left: 10px;
    white-space: nowrap;
}



/* 基础分页样式示例 */
.pagination,.pager {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin: 20px 0;
}

.pagination li,.pager li {
    margin: 0 5px;
}

.pagination li a,.pager li a{
    display: block;
    padding:5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #007bff;
    transition: all 0.3s ease;
}

.pagination li a:hover,.pager li a:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.pagination li.active,.pager li.active {
    display: block;
    padding:5px 10px;
    border: 1px solid #007bff;
    background-color: #007bff;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.pagination li.disabled, .pager li.disabled{
    pointer-events: none;
    display: block;
    padding:5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
}

.btn-tags{
    font-size: 0.7rem;
    padding: 3px 5px;
    margin-left: 5px;
}

/* 套餐列表 */
.package-list {
    /*padding: 15px;*/
}

.package-list .package-card {
    border: 1px solid #f1f3f5;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
}

.package-list .package-card:hover {
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}



.package-list .package-features {
    margin-bottom: 15px;
}
.package-list .package-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.package-list .current-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff3b30;
    margin-right: 10px;
}

.package-list .original-price {
    font-size: 14px;
    color: #8e8e93;
    text-decoration: line-through;
}

.package-list .package-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-list .buy-btn {
    background-color: #007aff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.package-list .buy-btn:hover {
    background-color: #0066cc;
}

.package-list .package-period {
    font-size: 14px;
    color: #8e8e93;
}


.package-summary {
    background-color: #f5f5f7;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.summary-item:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

.payment-methods {
    margin-bottom: 20px;
}

.method-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.method-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5e5ea;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.method-option.selected {
    border-color: #007aff;
    background-color: #f0f7ff;
}

.method-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.method-icon i {
    font-size: 18px;
    color: #007aff;
}

.method-name {
    flex: 1;
    font-size: 16px;
}

.method-select {
    color: #007aff;
    font-size: 20px;
    opacity: 0;
}

.method-option.selected .method-select {
    opacity: 1;
}

.confirm-purchase {
    width: 100%;
    background-color: #007aff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.confirm-purchase:hover {
    background-color: #0066cc;
}

.pay-qrcode-img{
    width: 200px; height: 200px; margin: 0 auto; border: 1px solid #eee; padding: 10px;
}
.pay-qrcode-type{
    margin-top: 15px; font-size: 14px; color: #8e8e93;
}
.pay-qrcode-price{
    margin-top: 5px; font-size: 14px; color: #ff3b30; font-weight: 600;
}
.pay-qrcode-tips{
    text-align: center; font-size: 14px; color: #8e8e93; margin-bottom: 20px;
}

/* 状态显示 */
.state-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 0px;
    color: #8e8e93;
    text-align: center;
}
.state-container i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.state-container p {
    margin-bottom: 20px;
}

.state-btn {
    background-color: #007aff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
}

.follow-weixin{

}

/* 二维码卡片 - 手机端占满宽度 */
.follow-weixin .qrcode-card {
    background: linear-gradient(135deg,  #07C160 0%, #00A86B 100%);
    border-radius: 15px;
    padding: 30px 20px;
    color: white;
    text-align: center;
    margin-bottom: 15px;
}

.follow-weixin .qrcode-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.follow-weixin .qrcode-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 15px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.follow-weixin .qrcode-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.follow-weixin .qrcode-tip {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.follow-weixin .qrcode-name {
    font-size: 16px;
    font-weight: 600;
}

/* 内容卡片 - 手机端优化 */
.follow-weixin .content-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 15px;
    border: 1px solid #f1f3f5;
}

.follow-weixin .section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    position: relative;
    color: #333;
}

.follow-weixin .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #07C160;
    border-radius: 3px;
}

/* 列表项 - 手机端更大间距和图标 */
.follow-weixin .list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.follow-weixin .list-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(7, 193, 96, 0.1);
    color: #07C160;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.follow-weixin .step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #07C160;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
}

.follow-weixin .note-icon {
    color: #0d6efd;
    flex-shrink: 0;
    /*margin-top: 4px;*/
    font-size: 20px;
}

.follow-weixin .item-content {
    flex: 1;
}

.follow-weixin .item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.follow-weixin .item-desc {
    font-size: 14px;
    color: #666;
}





