[v-cloak] {
    display: none;
}

/* 主容器样式 - 宽度800px */
.mi-user-container {
    width: 1000px;
    margin: 0 auto;
    /* background-color: #ffffff; */
    border-radius: 12px;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); */
    overflow: hidden;
    margin-bottom: 20px;
}

/* 顶部用户信息区域 - 高度改为120px */
.mi-user-header {
    height: 100px;
    background: #ffffff;
    color: #333333;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
    border-bottom: 1px solid #f0f2f5;
    justify-content: space-between;
    /* 新增：两端对齐 */
}

.mi-user-header::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: rgba(22, 93, 255, 0.03);
    transform: skewX(-20deg) translateX(50%);
    z-index: 0;
}

.mi-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    border: 3px solid #ffffff;
    object-fit: cover;
    margin-right: 20px;
    z-index: 1;
    position: relative;
}

.mi-user-info {
    z-index: 1;
    position: relative;
}

.mi-user-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mi-user-desc {
    font-size: 12px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mi-user-desc i {
    margin-right: 3px;
}

/* 新增：个人空间按钮样式 */
.mi-user-space-btn {
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 1;
    position: relative;
    color: #8a734c;
    background-color: #f5e8c7;
}

.mi-user-space-btn:hover {
    background-color: #f5e8c7;
}

.mi-user-tabs {
    --el-tabs-header-height: auto;
}

.mi-user-tabs .el-tabs__header {
    margin-bottom: 20px;
    width: 200px;
    background-color: #ffffff;
    border-right: 1px solid #f0f2f5;
    padding: 25px 0;
}

.mi-user-tabs .el-tabs__nav {
    background: transparent;
    border-radius: 0;
}

/* 关键：让图标和文字水平排列 */
.mi-user-tabs .el-tabs__item {
    display: flex !important;
    align-items: center !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    color: #666 !important;
    font-size: 14px !important;
    border-radius: 0 !important;
    height: auto !important;
    line-height: normal !important;
    margin-left: 3px;
}

.mi-user-tabs .el-tabs__nav-wrap::after {
    background: none;
}

/* 图标样式 */
.mi-user-tabs .el-tabs__item .tab-icon {
    display: flex !important;
    align-items: center !important;
    margin-right: 8px !important;
    font-size: 16px !important;
}

/* 文字样式 */
.mi-user-tabs .el-tabs__item .tab-text {
    display: inline-block !important;
    vertical-align: middle !important;

}

/* 激活状态样式 */
.mi-user-tabs .el-tabs__item.is-active {
    background-color: #e8f3ff;
    color: #165DFF;
    font-weight: 500;
    border-left: 3px solid #165DFF;
}

.mi-user-tabs .el-tabs__item:hover {
    color: #1989fa !important;
    background-color: rgba(25, 137, 250, 0.05) !important;
}

/* 移除默认下划线 */
.mi-user-tabs .el-tabs__active-bar {
    display: none !important;
}

.mi-user-tabs .el-tabs__content {
    padding: 0 !important;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    flex: 1;
    background-color: #fafbfc;
    min-height: calc(100vh - 120px);
}

.mi-user-tab-pane .mi-user-content-section {
    display: block !important;
    padding: 20px;
    margin: 0;
}

.mi-user-tabs {
    display: flex;
}

/* 主体内容区域 */
.mi-user-main {
    display: flex;
}

/* 左侧菜单区域 */
.mi-user-sidebar {
    width: 161px;
    background-color: #ffffff;
    border-right: 1px solid #f0f2f5;
    padding: 0;
}

.mi-user-sidebar ul li:first-child {
    margin-left: 10px;
}

.mi-user-menu {
    list-style: none;
}

.mi-user-menu-item {
    font-weight: 500;
    letter-spacing: 1.5px;
    margin: 5px 10px;
}

.mi-user-menu-link {
    display: flex;
    align-items: center;
    padding: 7px 10px;
    color: #666666;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.mi-user-menu-link i {
    margin-right: 10px;
    font-size: 21px;
    font-weight: 500;
    border: 1px solid #ebeef5;
    padding: 5px;
    width: 31px;
    height: 30px;
    text-align: center;
    border-radius: 5px;
    line-height: 20px;
}

.mi-user-menu-link:hover {
    color: #165DFF;
}

.mi-user-menu-link.active {
    color: #165DFF;
    font-weight: 500;
}

/* 右侧内容区域 */
.mi-user-content {
    flex: 1;
    padding: 10px;
    min-height: calc(100vh - 120px);
    background-color: #fff;
}

.mi-user-content-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.mi-user-content-section.active {
    display: block;
}

.mi-user-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mi-like-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mi-like-batch {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mi-like-toolbar .el-input-group {
    width: 302px;
}

.el-input-group__append {
    background: none;
    border: none;
}

.mi-like-search,
.mi-like-search .el-input__inner {
    width: 281px;
    background-color: #f5f5f5a3;
}

.mi-like-sort .el-input--small .el-input__inner {

    height: 40px;
    line-height: 40px;
    outline: 0;
    padding: 0 15px;
    background-color: #f5f5f5a3;
}

.mi-user-section-title i {
    color: #165DFF;
}

.mi-user-card {
    padding: 20px;
    margin-bottom: 20px;
}

#mi-user-vips .mi-user-card {
    padding: 0 20px;
    margin-top: 10px;
}

/* 仪表盘样式 - 优化无边框设计，添加增长数据 */
.mi-user-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.mi-user-stat-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mi-user-stat-icon {
    align-self: flex-end;
    color: #165DFF;
    opacity: 0.2;
    font-size: 28px;
    margin-bottom: -15px;
    z-index: 0;
}

.mi-user-stat-content {
    z-index: 1;
    position: relative;
}

.mi-user-stat-title {
    font-size: 13px;
    color: #666666;
    margin-bottom: 6px;
}

.mi-user-stat-value {
    font-size: 26px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.mi-user-stat-growth {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.mi-user-stat-growth.positive {
    color: #28a745;
}

.mi-user-stat-growth.negative {
    color: #dc3545;
}

.mi-user-stat-growth i {
    margin-right: 4px;
    font-size: 11px;
}

/* 表单样式 - 优化紧凑布局 */
.mi-user-form-group {
    margin-bottom: 0px;
}

.mi-user-form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333333;
    font-size: 14px;
}

.mi-form-error {
    font-size: 12px;
    color: #f56c6c;
}

.mi-user-form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.mi-user-form-input:focus {
    outline: none;
    border-color: #165DFF;
    box-shadow: none;
}

.mi-user-btn {
    display: inline-block;
    padding: 5px 20px;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #8a734c;
    background-color: #f5e8c7;
}

.mi-user-vip-permanent {
    display: none;
}

/* .mi-user-btn:hover {
    background-color: #f5e8c7;
} */

/* 列表样式 */
.mi-user-list {
    list-style: none;
}

.mi-user-list-item {
    padding: 13px;
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mi-user-list-item .el-checkbox__label {
    width: 60px;
}

.mi-user-list-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 10px;
}

.mi-user-list-item:last-child {
    border-bottom: none;
}

.mi-user-list-right .mi-cancel-btn {
    opacity: 0;
}

.mi-user-list-right:hover .mi-cancel-btn {
    opacity: 1;
    background-color: #fef2f2;
    color: #c82333;
}

.mi-user-list-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mi-user-list-content:hover {
    cursor: pointer;
}

.mi-user-list-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 4px 4px 12px 2px #00000017;
}

.mi-user-list-info {
    flex: 1;
    margin-left: 10px;
}

.mi-user-list-title {
    font-weight: 500;
    margin-bottom: 2px;
    font-size: 14px;
}

.mi-user-list-title:hover {
    cursor: pointer;
}

.mi-user-list-meta {
    font-size: 12px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mi-user-list-meta span p {
    font-size: 12px;
    color: #666666;
}

.mi-user-list-time {
    color: #999999;
}

/* 新增：取消按钮样式 */
.mi-cancel-btn {
    background: none;
    border: none;
    /* color: #dc3545; */
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
    height: 35px;
    font-weight: 500;
}

.mi-cancel-btn:hover {
    background-color: #fef2f2;
    color: #c82333;
}

/* 个人资料页 - 优化封面和头像上传样式 */
.mi-profile-cover {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    background-color: #f0f5ff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    animation: mi-skeleton-loading 1.5s infinite;
}

.mi-cover-upload {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    z-index: 2;
}

.mi-cover-upload:hover {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.mi-profile-avatar-container {
    display: flex;
    align-items: end;
    gap: 20px;
    margin: 20px 0;
}

.mi-profile-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #f0f5ff;
    animation: mi-skeleton-loading 1.5s infinite;
}

.mi-avatar-upload {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mi-upload-btn {
    background-color: #f5f7fa;
    color: #165DFF;
    border: 1px solid #e0e7ff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    width: 160px;
}

.mi-upload-btn:hover {
    background-color: #e8f3ff;
    border-color: #165DFF;
}

.mi-upload-tip {
    font-size: 11px;
    color: #999999;
    line-height: 1.4;
}

.mi-profile-form .el-input__inner {
    background-color: #0000000a;
}

.mi-profile-form .el-col-5 {
    padding-left: 0 !important;

}

.mi-user-card .el-form-item__label {
    text-align: left;
    font-weight: 500;
}

.mi-user-address {
    margin-top: 10px;
}

.mi-user-address .el-textarea__inner {
    height: 100px;
}

/* 优化设置页面样式 */
.mi-settings-section {
    margin-bottom: 22px;
}

.mi-settings-section:last-child {
    margin-bottom: 0;
}

.mi-settings-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mi-settings-title i {
    color: #165DFF;
    font-size: 14px;
}

.mi-settings-divider {
    height: 1px;
    background-color: #f0f2f5;
    margin: 20px 0;
}

.mi-form-tip {
    font-size: 10px;
    position: absolute;
    bottom: -10px;
    right: 12px;
}

.mi-profile-save {
    text-align: right;
}

/* 骨架屏基础样式 */
.mi-skeleton-cover {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    background-color: #ffff;
    background: linear-gradient(90deg, #f2f3f5 25%, #e6e8eb 50%, #f2f3f5 75%);
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
}

.mi-skeleton-avatar-container {
    display: flex;
    align-items: end;
    gap: 20px;
    margin: 20px 0;
}

.mi-skeleton-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: #ffff;
    background: linear-gradient(90deg, #f2f3f5 25%, #e6e8eb 50%, #f2f3f5 75%);
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mi-skeleton-upload-btn {
    width: 160px;
    height: 36px;
    border-radius: 6px;
    background-color: #ffff;
    background: linear-gradient(90deg, #f2f3f5 25%, #e6e8eb 50%, #f2f3f5 75%);
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
}

.mi-skeleton-form {
    padding: 0;
}

.mi-skeleton-form-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.mi-skeleton-label {
    width: 100px;
    height: 30px;
    line-height: 43px;
    border-radius: 4px;
    background-color: #ffff;
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
    margin-right: 16px;
}

.mi-skeleton-input {
    width: 100%;
    height: 36px;
    border-radius: 4px;
    background-color: #ffff;
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
}

.mi-skeleton-select {
    width: 100%;
    height: 36px;
    border-radius: 4px;
    background-color: #ffff;
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
}

.mi-skeleton-textarea {
    width: 100%;
    height: 100px;
    border-radius: 4px;
    background-color: #ffff;
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
}

.mi-skeleton-selectx {
    margin-top: 50px;
}

.mi-skeleton-address {
    height: 100px;
    margin-top: 10px;
}

.mi-skeleton-tip {
    width: 70px;
    height: 14px;
    border-radius: 2px;
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
    margin-top: 8px;
    float: right;
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.mi-skeleton-btn {
    display: inline-block;
    width: 50px;
    height: 20px;
    border-radius: 4px;
    background-color: #ffff;
    background-size: 200% 100%;
    animation: mi-skeleton-loading 1.5s infinite;
    margin-right: 10px;
}

.mi-skeleton-btn-primary {
    background-color: #ffff;
}

.mi-skeleton-btn-success {
    background-color: #ffff;
}

/* 骨架屏加载动画 */
@keyframes mi-skeleton-loading {
    0% {
        background-color: rgba(165, 165, 165, 0.1);
    }

    50% {
        background-color: rgba(165, 165, 165, 0.3);
    }

    100% {
        background-color: rgba(165, 165, 165, 0.1);
    }
}

/* 闪光动画（核心）：光线从左到右扫过 */
@keyframes mi-skeleton-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* 适配原有表单样式 */
.mi-skeleton-form .el-form-item__content {
    flex: 1;
    text-align: right;
}

.mi-skeleton-form .el-col-6 {
    flex: 0 0 23.5%;
    max-width: 23.5%;
    margin-right: 1%;
}

.mi-skeleton-form .el-col-6:last-child {
    margin-right: 0;
}

/* 滑块开关样式 */
.mi-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.mi-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.mi-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: .3s;
    border-radius: 24px;
}

.mi-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked+.mi-toggle-slider {
    background-color: #165DFF;
}

input:checked+.mi-toggle-slider:before {
    transform: translateX(20px);
}

/* 通知和隐私设置布局 - 减小高度 */
.mi-settings-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* 从14px改为8px */
}

.mi-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    /* 从8px改为6px */
    border-bottom: 1px solid #f5f7fa;
}

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

.mi-option-label {
    display: flex;
    flex-direction: column;
}

.mi-option-name {
    font-size: 14px;
    font-weight: 400;
}

.mi-option-desc {
    font-size: 11px;
    color: #999999;
    margin-top: 2px;
}

/* 优化按钮区域样式 - 小型按钮 */
.mi-btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.mi-btn-secondary {
    background-color: #f5f7fa;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.mi-btn-secondary:hover {
    background-color: #eceef2;
    color: #333333;
}

.mi-btn-danger {
    background-color: #dc3545;
}

.mi-btn-danger:hover {
    background-color: #c82333;
}

/* 小型按钮样式 */
.mi-btn-sm {
    padding: 6px 12px;
    /* 从10px 20px改为6px 12px */
    font-size: 13px;
    /* 从14px改为13px */
}

/* 财富页面 - 积分区域样式 */
.mi-wealth-section {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
    background-color: #ffff;
    padding: 20px;
}

.mi-wealth-section svg{
    width: 1em;
    height: 1em;
    font-size: 16px;
}
.mi-wealth-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.mi-wealth-title {
    font-size: 15px;
    color: #666666;
    font-weight: 500;
}

.mi-wealth-balance {
    font-size: 26px;
    font-weight: 600;
    color: #333333;
}

.mi-wealth-actions {
    display: flex;
    gap: 8px;
}

.mi-user-card {
    margin: 0 auto;
    padding: 0px 0 10px 0px;
}

#mi-profile-uploader .mi-profile-avatar-container,
#mi-profile-uploader .mi-profile-form {
    padding-left: 10px;

}

.mi-like-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mi-like-search {
    width: 300px;
}

.mi-like-sort {
    display: flex;
    gap: 10px;
}

.mi-like-order {
    width: 100px;
}

.mi-like-batch {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
}

.mi-user-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* border: 1px solid #f5f5f5; */
    border-radius: 4px;
}

.mi-user-list-item {
    display: flex;
    align-items: center;
    padding: 15px;
    transition: background-color 0.3s;
}

.mi-user-list-item:hover {
    background-color: #fafafa;
}

.mi-list-checkbox {
    margin-right: 15px;
    flex-shrink: 0;
}

.mi-user-list-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.mi-user-list-icon {
    font-size: 24px;
    margin-right: 0px;
    color: #165DFF;
}

.mi-user-list-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.mi-user-list-meta {
    font-size: 12px;
    color: #666;
}

.mi-user-list-actions {
    display: flex;
    align-items: center;
}

.mi-empty-state {
    text-align: center;
    padding: 50px 0;
}

.mi-pagination {
    margin-top: 20px;
    text-align: left;
}

.mi-user-attachments .mi-user-list-actions {
    opacity: 0;
}

.mi-user-attachments:hover .mi-user-list-actions {
    opacity: 1;
}

/* 图片预览弹窗样式优化 */
.mi-image-viewer {
    z-index: 9999 !important;
    /* 确保弹窗在最上层 */
}

/* 缩略图hover效果（可选） */
.mi-like-thumb:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/*
 *-------------------------------------------------------------------------------
 * 图片预览弹窗样式
 *-------------------------------------------------------------------------------
*/
.mi-image-preview-container {
    padding: 20px;
    text-align: center;
}

.el-dialog.mi-user-image-preview {
    top: -20px;

}

.mi-preview-image {
    max-width: 100%;
    max-height: 50vh;
    /* 限制最大高度为视口70%，避免超出屏幕 */
    object-fit: contain;
    /* 保持图片比例，不拉伸 */
    border-radius: 4px;
    margin-bottom: 16px;
}

.mi-preview-info {
    text-align: left;
    color: #333;
}

.mi-preview-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.mi-preview-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 优化点击区域的指针样式 */
.mi-like-thumb:hover,
.mi-user-list-title:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.mi-profile-dialog {
    width: 550px;
    padding: 0;
}

.el-dialog.mi-profile-dialog .el-upload .el-button {
    width: 120px;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 12px;
    border-radius: 20px;
}

.el-dialog.mi-profile-dialog .el-upload .upload-tip {
    font-size: 12px;
}

.mi-profile-dialog .avatar-preview {
    height: 130px;
}

.mi-form-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
}

.mi-form-select:focus {
    outline: none;
}

/* 基础弹窗容器 */
.mi-user-profile-dialog {
    --el-dialog-width: 800px !important;
    --tab-primary-color: #409eff;
    /* 主色调 */
    --tab-hover-color: #66b1ff;
    /* 悬浮色 */
    --tab-active-color: #1989fa;
    /* 选中色 */
    --tab-bg-color: #f8f9fa;
    /* 背景色 */
    --tab-border-color: #e5e6eb;
    /* 边框色 */
    width: 700px;
}

/* 弹窗主体布局调整：拆分固定区域和滚动区域 */
.mi-user-profile-dialog .el-dialog__body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* ========== 核心：固定 TAB 导航栏 ========== */
.mi-user-profile-upload-tabs {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    padding: 4px 20px;
    margin: 0;
    border-radius: 0;
}

/* 隐藏默认下划线 */
.el-dialog.mi-user-profile-dialog .el-tabs__nav-wrap::after {
    height: 0;
}

/* TAB 项基础样式 */
.el-dialog.mi-user-profile-dialog .el-tabs__item {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 0;
}

#tab-avatar-library {
    margin-left: 10px;
}

.el-dialog.mi-user-profile-dialog .el-tabs__header {
    margin: 0;
}

/* TAB 悬浮态 */
.el-dialog.mi-user-profile-dialog .el-tabs__item:hover {
    color: var(--tab-hover-color);
}

/* TAB 选中态 */
.el-dialog.mi-user-profile-dialog .el-tabs__item.is-active {
    color: var(--tab-primary-color);
    font-weight: 600;
}

/* 去掉默认选中态下划线 */
.el-dialog.mi-user-profile-dialog .el-tabs__active-bar {
    display: none !important;
}

/* ========== TAB 内容区域：单独滚动 ========== */
.el-dialog.mi-user-profile-dialog .el-tabs__content {
    flex: 1;
    overflow: hidden;
    /* 取消整体滚动，由子容器控制 */
}

/* 图库容器整体布局：图片滚动 + 分页固定 */
.mi-library-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 图库图片区域：单独滚动 */
.mi-library-images {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
}

/* 图库分页固定在底部 */
.mi-user-profile-image-pagination {
    margin-top: 0;
    text-align: left;
    clear: both;
    padding-top: 10px;
    border-top: 1px solid var(--tab-border-color);
    position: sticky;
    bottom: 0;
    background: #fff;
    z-index: 5;
}


/* 上传区域样式 */
.mi-user-profile-upload-area {
    padding: 20px;
    border: 1px dashed var(--tab-border-color);
    border-radius: 8px;
    text-align: left;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.mi-user-profile-upload-area:hover {
    border-color: var(--tab-primary-color);
}

/* 图片预览样式 */
.mi-user-profile-avatar-preview,
.mi-user-profile-cover-preview {
    margin-top: 15px;
    text-align: center;
}

.mi-user-profile-preview-img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mi-user-profile-preview-img:hover {
    transform: scale(1.02);
}

.mi-user-profile-upload-tip {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

/* 图库容器样式 */
.mi-user-profile-image-library {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    max-height: 430px;
}

/* 图库图片项 */
.mi-user-profile-image-item {
    height: 100px;
    float: left;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 选中状态 */
.mi-user-profile-image-item.selected {
    border-color: var(--tab-primary-color);
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

.mi-user-profile-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 图库图片遮罩 */
.mi-user-profile-image-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
}

.mi-user-profile-image-item:hover .mi-user-profile-image-mask {
    display: flex;
}

/* 骨架屏基础样式 */
.mi-user-profile-skeleton-form {
    padding: 20px;
}

.mi-user-profile-skeleton-form-item {
    margin-bottom: 15px;
}

.mi-user-profile-skeleton-label {
    width: 100px;
    height: 20px;
    background: #f2f2f2;
    border-radius: 4px;
}

.mi-user-profile-skeleton-input {
    width: 300px;
    height: 36px;
    background: #f2f2f2;
    border-radius: 4px;
}

.mi-user-profile-skeleton-select {
    width: 200px;
    height: 36px;
    background: #f2f2f2;
    border-radius: 4px;
}

.mi-user-profile-skeleton-textarea {
    width: 100%;
    height: 80px;
    background: #f2f2f2;
    border-radius: 4px;
}

.mi-user-profile-skeleton-tip {
    width: 100px;
    height: 16px;
    background: #f2f2f2;
    border-radius: 4px;
    margin-top: 5px;
}

/* 骨架屏按钮 */
.mi-user-profile-skeleton-btn {
    width: 100px;
    height: 36px;
    background: #f2f2f2;
    border-radius: 4px;
    display: inline-block;
    margin-right: 10px;
}

.mi-user-profile-skeleton-btn-primary {
    background: #e6f7ff;
}

.mi-user-profile-skeleton-btn-success {
    background: #f6ffed;
}

/* 清除浮动 */
.mi-user-profile-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 上传按钮组 */
.mi-user-profile-upload-btn-group {
    margin-bottom: 10px;
}

/* 加载中提示 */
.mi-user-profile-loading-tip {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* 选中勾样式 - 右上角突出显示 */
.mi-user-profile-image-check {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.mi-user-card.mi-my-settings {
    padding: 10px 20px;
}

.mi-settings-actions {
    margin: 20px 15px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.mi-settings-actions .el-button--medium {
    padding: 8px 15px;
    font-size: 12px;
}

/*
 *-------------------------------------------------------------------------------
 * 用户中心页面 == 修改密码
 * 
 *-------------------------------------------------------------------------------
*/
.user-page-security .mi-user-content {
    background: none;

}

.mi-userPassWord-header {
    margin-bottom: 15px;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
}

.mi-userPassWord-header h1 {
    font-size: 16px;
    margin: 0;
}

.mi-account-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f8f8;
    padding: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.mi-account-content .mi-account-right {
    opacity: 0;
}

.mi-account-content:hover .mi-account-right {
    opacity: 1;
}

.mi-account-settings a {
    font-weight: 500;
    padding: 8px 15px;
    font-size: 12px;
}

.mi-account-title {
    margin-bottom: 5px;
}

.mi-userPassWord-reset {
    margin: 20px 50px;
}

.el-dialog.mi-account-dialog {
    width: 350px;
}

.mi-account-dialog .el-input__inner {
    background-color: #f8f8f8;
}

.mi-account-dialog .el-form-item__label {
    text-align: left;
}

.mi-userPassWord-reset .el-form-item {
    text-align: right;
}

.mi-userPassWord-reset .el-input__inner {
    background-color: #f0f0f07a;
}

.mi-userPassWord-reset .el-form-item__label {
    text-align: left;
}

.mi-userPassWord-form {
    margin-bottom: 30px;
}

.mi-userPassWord-submit {
    margin-left: 120px;
}

.mi-userPassWord-takecare {
    margin-top: 20px;
}

.mi-userPassWord-notes {
    padding-left: 20px;
    color: #606266;
    line-height: 1.8;
}

.mi-userPassWord-notes li {
    margin-bottom: 8px;
}

/* 调整折叠面板样式 */
.mi-userPassWord-collapse {
    border-radius: 4px;
    margin-top: 15px;
    padding: 0 50px 30px;
    border: none;
}

.mi-userPassWord-collapse .el-collapse-item__header {
    border-bottom: none;
}

.mi-userPassWord-collapse .el-collapse-item:last-child {
    border-bottom: none;
}

.mi-userPassWord-note-content {
    padding: 10px 15px;
    color: #606266;
    line-height: 1.6;
    background-color: #f5f7fa;
    border-radius: 4px;
    margin-top: 5px;
}

.mi-user-account {
    padding: 0 15px;
}

.mi-user-account h1 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* 账号列表容器 - 一排两个布局 */
.mi-user-account-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.mi-user-account-left {
    display: flex;
    align-items: center;
}

/* 单个账号项样式 */
.mi-user-account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 5px;
}

/* 图标容器样式 */
.mi-user-account-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
}

/* QQ图标样式 */
.mi-icon-qq {
    width: 100%;
    height: 100%;
    background: #12B7F5;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* 微信图标样式 */
.mi-icon-wechat {
    width: 100%;
    height: 100%;
    background: #07C160;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mi-user-account-icon svg {
    width: 1em;
    height: 1em;
    font-size: 30px;
}

/* 账号信息区域（名称+用户名） */
.mi-user-account-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 账号名称（QQ/微信） */
.mi-user-account-name {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

/* 用户名（未绑定） */
.mi-user-account-username {
    font-size: 12px;
    color: #999;
}

/* 绑定按钮样式 */
.mi-user-account-btn {
    padding: 8px 16px;
    background: #FF6700;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mi-user-account-btn:hover {
    background: #FF9000;
}

.mi-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #fff;
}

.mi-message-success {
    background-color: #67c23a;
}

.mi-message-error {
    background-color: #f56c6c;
}

.mi-user-account-btn {
    padding: 6px 16px;
    border: 1px solid #409eff;
    background-color: #409eff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.mi-user-account-btn.mi-btn-binded {
    border-color: #909399;
    background-color: #909399;
}

.mi-user-account-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.mi-loading {
    position: relative;
}

/* 会员套餐样式 */
.mi-membership-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
}

.mi-membership-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e8f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mi-membership-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.mi-membership-info p {
    color: #666666;
    margin-bottom: 8px;
    font-size: 13px;
}

.mi-membership-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.mi-membership-package {
    border: 1px solid #f0f2f5;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.mi-membership-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #e8f3ff;
}

.mi-membership-package.current {
    border-color: #165DFF;
    background-color: rgba(22, 93, 255, 0.02);
}

.mi-membership-package.current::before {
    content: "当前套餐";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #165DFF;
    color: white;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 12px;
}

.mi-package-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mi-package-price {
    font-size: 24px;
    font-weight: 600;
    color: #165DFF;
    margin-bottom: 2px;
}

.mi-package-period {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.mi-package-features {
    list-style: none;
    margin-bottom: 20px;
}

.mi-package-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #555;
}

.mi-package-feature i {
    color: #165DFF;
    font-size: 12px;
    margin-top: 3px;
}

.mi-package-btn {
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.mi-package-btn.primary {
    background-color: #165DFF;
    color: white;
}

.mi-package-btn.primary:hover {
    background-color: #0F48D9;
}

.mi-package-btn.secondary {
    background-color: #f5f7fa;
    color: #165DFF;
    border: 1px solid #165DFF;
}

.mi-package-btn.secondary:hover {
    background-color: #e8f3ff;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*
 *-------------------------------------------------------------------------------
 * 会员页面
 *-------------------------------------------------------------------------------
*/
.mi-user-vip-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
    position: relative;
    padding-left: 12px;
}

.mi-user-vip-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: #5c7cfa;
    border-radius: 2px;
}

/* 会员列表（grid布局：一排四个） */
.mi-user-vip-card-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* 会员卡片（1px边框+白色背景） */
.mi-user-vip-card {
    border-radius: 12px;
    padding: 22px 18px;
    position: relative;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

/* 推荐套餐标签 - 右上角翻角样式（核心修改） */
.mi-user-vip-recommend {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    text-align: center;
    z-index: 1;
    padding: 2px 12px;
    border-radius: 0 0 0 25px;
    color: #8a734c;
    background: #f5e8c7;
    font-weight: 700;
    padding-left: 22px;
    line-height: 18px;
}

/* 会员名称 */
.mi-user-vip-card-name {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    text-align: center;
    margin-bottom: 14px;
    margin-top: 8px;
}

/* 会员价格 & 时长（同一排） */
.mi-user-vip-card-price {
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

.mi-user-vip-price-num {
    font-size: 20px;
    font-weight: 700;
    color: #5c7cfa;
}

.mi-user-vip-price-period {
    font-size: 12px;
    color: #868e96;
}

/* 会员权限 */
.mi-user-vip-card-permission {
    margin-bottom: 22px;
}

.mi-user-vip-permission-item {
    font-size: 12px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

/* 小按钮样式 */
.mi-user-vip-card-btn {
    width: 100%;
    padding: 6px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #8a734c;
    background: #f5e8c7;
}

/* 立即加入按钮 */
.mi-user-vip-btn-join {
    background-color: #5c7cfa;
    color: #ffffff;
}

.mi-user-vip-btn-join:hover {
    background-color: #4969ea;
}

/* 已开通按钮 */
.mi-user-vip-btn-active {
    background-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

/* 骨架屏核心动画：渐变闪烁效果 */
@keyframes mi-skeleton-vip-shine {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* 骨架屏根容器：与 mi-user-card 布局一致 */
.mi-skeleton-vip {
    padding: 15px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #f6f6f6 25%, #eeeeee 50%, #f6f6f6 75%);
    background-size: 200px 100%;
    animation: mi-skeleton-vip-shine 1.5s infinite linear;
}

/* 顶部会员信息骨架屏：保持原有布局，确保与原页面一致 */
.mi-skeleton-vip-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

/* 头像骨架屏：圆形，与原头像尺寸匹配 */
.mi-skeleton-vip-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e9e9e9;
    overflow: hidden;
}

/* 会员信息容器骨架屏 */
.mi-skeleton-vip-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 会员标题骨架屏 */
.mi-skeleton-vip-info-title {
    width: 200px;
    height: 24px;
    background-color: #e9e9e9;
    border-radius: 4px;
}

/* 会员描述骨架屏 */
.mi-skeleton-vip-info-desc {
    width: 350px;
    height: 20px;
    background-color: #e9e9e9;
    border-radius: 4px;
}

/* 续期按钮骨架屏 */
.mi-skeleton-vip-info-btn {
    width: 120px;
    height: 36px;
    background-color: #e9e9e9;
    border-radius: 4px;
}

/* 会员开通区域骨架屏容器 */
.mi-skeleton-vip-container {
    width: 100%;
}

/* 区域标题骨架屏 */
.mi-skeleton-vip-title {
    width: 180px;
    height: 28px;
    background-color: #e9e9e9;
    border-radius: 4px;
    margin-bottom: 20px;
}

.mi-skeleton-vip-card-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

.mi-skeleton-vip-card {
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    height: 100%;
}

/* 推荐标签骨架屏 */
.mi-skeleton-vip-recommend {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 22px;
    background-color: #e9e9e9;
    border-radius: 12px;
}

/* 套餐名称骨架屏 */
.mi-skeleton-vip-card-name {
    width: 120px;
    height: 24px;
    background-color: #e9e9e9;
    border-radius: 4px;
    margin-top: 8px;
}

/* 价格区域骨架屏 */
.mi-skeleton-vip-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

/* 价格数字骨架屏 */
.mi-skeleton-vip-price-num {
    width: 80px;
    height: 32px;
    background-color: #e9e9e9;
    border-radius: 4px;
}

/* 价格周期骨架屏 */
.mi-skeleton-vip-price-period {
    width: 60px;
    height: 18px;
    background-color: #e9e9e9;
    border-radius: 4px;
}

/* 权限列表骨架屏 */
.mi-skeleton-vip-permission {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 单个权限项骨架屏 */
.mi-skeleton-vip-permission-item {
    width: 100%;
    height: 18px;
    background-color: #e9e9e9;
    border-radius: 4px;
}

/* 套餐按钮骨架屏（自动靠底，优化布局） */
.mi-skeleton-vip-card-btn {
    width: 100%;
    height: 25px;
    background-color: #e9e9e9;
    border-radius: 4px;
    margin-top: auto;
}

.mi-vip-level-container {
    width: 100%;
    margin: 5px auto;
    padding: 20px;
    box-sizing: border-box;
}

.mi-vip-level-chart {
    width: 100%;
    height: 600px;
    border-radius: 6px;
    background-color: #ffffff;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}

.mi-vip-level-title {
    text-align: left;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

/* 自定义圆形头像容器 */
.custom-avatar-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
    pointer-events: none;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffff;
    margin: 0 auto;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-label {
    margin-top: 5px;
    font-size: 15px;
    color: #8a734c;
    font-weight: bold;
    white-space: nowrap;
}

/* 弹窗1 整体样式 */
.el-dialog.mi-vipbuy-dialog-method {
    width: 300px;
    padding: 0;
}

.mi-vipbuy-dialog-method .el-dialog__body {
    padding: 0 15px;
}

.mi-vipbuy-dialog-method-content {
    box-sizing: border-box;
}

.el-dialog.mi-vipbuy-dialog-qr {
    width: 240px;
}

/* 支付金额样式（突出显示） */
.mi-vipbuy-dialog-amount {
    font-size: 15px;
    color: #333;
    text-align: left;
    margin-bottom: 16px;
}

.mi-vipbuy-dialog-amount-num {
    font-size: 35px;
    font-weight: 700;
    margin-left: 5px;
    line-height: 1.2;
}

.mi-vipbuy-dialog-amount-num b {
    font-size: 16px;
    margin-right: 5px;
}

/* 会员名称（淡金色背景） */
.mi-vipbuy-dialog-vip-name-box {
    background-color: #fffbe8;
    color: #dba856;
    padding: 10px 12px;
    border-radius: 3px;
    font-size: 12px;
    text-align: left;
    margin-bottom: 10px;
}

.mi-vipbuy-Yuer {
    margin-bottom: 10px;
    font-size: 12px;
    margin-top: 15px;
    text-align: center;
}

.mi-vipbuy-Yuer span {
    margin-right: 5px;
}

.mi-vipbuy-payment-title {
    margin-bottom: 10px;
    font-size: 14px;
}

/* 支付方式项（一行一个，左侧图标） */
.mi-vipbuy-dialog-method-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mi-vipbuy-dialog-method-item i {
    font-size: 25px;
    margin-right: 10px;
}

.mi-vipbuy-dialog-method-item:last-child {
    margin-bottom: 0;
}

/* 支付方式图标 */
.mi-vipbuy-dialog-method-icon {
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* 微信图标颜色 */
.mi-wechat {
    color: #07c160;
}

/* 支付宝图标颜色 */
.mi-alipay {
    color: #1677ff;
}

/* 余额图标颜色 */
.mi-wallet {
    color: #ff9f43;
}

.mi-vipbuy-dialog-method-item-active span {
    font-weight: 700;
}

.mi-vipbuy-dialog-method-text {
    font-size: 14px;
    color: #333;
    flex: 1;
}

.mi-vipbuy-dialog-method-text span {
    font-size: 14px;
}

.mi-vipbuy-desc {
    font-size: 12px;
}

/* 错误提示 */
.mi-vipbuy-dialog-error-tip {
    font-size: 12px;
    color: #e63946;
    text-align: center;
    padding: 4px 0;
    margin-bottom: 8px;
}

/* 弹窗1 底部按钮 */
.mi-vipbuy-dialog-method-footer {
    text-align: right;
    margin: 0;
}

/* 通用按钮样式 */
.mi-vipbuy-dialog-footer-btn {
    font-size: 12px;
    margin-left: 10px;
}

.mi-vipbuy-dialog-footer-btn-primary {
    background-color: #27ae60;
    border-color: #27ae60;
    color: #fff;
}

/* 弹窗2 整体样式 */
.mi-vipbuy-dialog-qr {
    border-radius: 12px;
    padding: 0;
}

.mi-vipbuy-dialog-qr-content {
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

/* 扫码支付标题 */
.mi-vipbuy-dialog-qr-title {
    font-size: 14px;
    margin-bottom: 10px;
}

/* 二维码容器 */
.mi-vipbuy-dialog-qr-code-box {
    margin-bottom: 18px;
}

.mi-vipbuy-dialog-qr-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

/* 二维码加载状态 */
.mi-vipbuy-dialog-qr-loading {
    padding: 40px 0;
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

/* 支付提示文字 */
.mi-vipbuy-dialog-qr-tip {
    font-size: 12px;
    margin-bottom: 0px;
}

/* 订单剩余时间 */
.mi-vipbuy-dialog-qr-countdown {
    font-size: 12px;
    margin-bottom: 5px;
}

.mi-vipbuy-dialog-qr-countdown-num {
    font-weight: 600;
    color: #e63946;
    font-size: 16px;
    letter-spacing: 1px;
}

/* 弹窗2 底部按钮 */
.mi-vipbuy-dialog-qr-footer {
    text-align: center;
    margin: 0;
}

.no-data {
    background-color: #ffff;
}

.mi-indexPost-4 .mi-post-tag-cate b p {
    font-size: 12px;
}


.mi-user-wealth-tabs .el-tabs__nav {
    background-color: #33333312;
    padding: 10px;
}

.mi-user-wealth-tabs .el-tabs__item {
    font-size: 12px;

}

.mi-user-content .el-pagination {
    padding-left: 20px;

}

/*
 *-------------------------------------------------------------------------------
 * 我的财富界面
 *-------------------------------------------------------------------------------
*/
.mi-user-wealth-tabs .el-tabs__item.is-active {
    background-color: #ffff;
    padding: 5px 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.mi-user-wealth-tabs .el-tabs__item {
    margin: 0;
    padding: 5px 10px;
}

.mi-user-list-status {
    font-weight: 500;
}

.mi-user-status-paid {
    color: #dc3545;

}

.mi-user-status-unpaid {
    color: #28a745;
}
.mi-wealthcz-main-btn {
    background: #07c160;
    border: none;
    color: white;
    padding: 16px 45px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.3);
    letter-spacing: 1px;
}

.mi-wealthcz-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 193, 96, 0.4);
    background: #06b057;
}

.mi-wealthcz-section-title {
    font-size: 14px;
    margin-bottom: 12px;
}
.mi-wealthcz-amount-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.mi-wealthcz-amount-option {
    position: relative;
    border: 1px solid #e0e0e0;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0px 8px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.mi-wealthcz-amount-content {
    display: flex;
    align-items: center;
}

.mi-wealthcz-amount-value {
    font-size: 14px;
    color: #606266;
}

.mi-wealthcz-amount-unit {
    font-size: 14px;
    color: #666;
}

.mi-wealthcz-selected-icon {
    position: absolute;
    top: 0px;
    right: 2px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.mi-wealthcz-amount-option.active .mi-wealthcz-selected-icon {
    opacity: 1;
    transform: scale(1);
}

.mi-wealthcz-custom-btn {
    display: block;
    text-align: center;
    border: 1px dashed #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0px 8px;
    width: 100px;
    height: 40px;
}

.mi-wealthcz-custom-btn:hover {
    border-color: #07c160;
    background: #f9f9f9;
}

.mi-wealthcz-custom-icon {
    font-size: 26px;
    color: #999;
    margin-bottom: 6px;
}
.mi-wealthcz-custom-icon i{
    font-size: 26px; 
}
.mi-wealthcz-custom-text {
    display: none;
}

.mi-wealthcz-custom-input {
    margin: 15px 0 0 0;
    display: none;
}

.mi-wealthcz-custom-input.show {
    display: block;
}

.mi-wealthcz-custom-input .el-input__inner {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: 35px;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.mi-wealthcz-custom-input .el-input__inner:focus {
    border-color: #07c160;
    box-shadow: 0 0 0 2px rgba(7, 193, 96, 0.1);
}

.mi-wealthcz-custom-input .el-input-group__append {
    background: #07c160;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 20px;
    font-weight: 600;
}

.mi-wealthcz-reward-info {
    text-align: center;
    font-size: 12px;
    padding: 12px;
}

.mi-wealthcz-reward-info i {
    color: #07c160;
    margin: 0 8px;
}

.mi-wealthcz-reward-info strong {
    color: #07c160;
    font-size: 12px;
}

.mi-wealthcz-payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding: 0;
}
.mi-wealthcz-payment-options i{
    font-size: 20px;
}
.mi-wealthcz-payment-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px 15px;
    position: relative;
    border: 1px solid #e0e0e0;
}
.mi-wealthcz-payment-item:hover {
    background: #f9f9f9;
}

.mi-wealthcz-payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.mi-wealthcz-payment-info {
    flex: 1;
}

.mi-wealthcz-payment-name {
    font-size: 12px;
    color: #606266;
    font-weight: 500;
}

.mi-wealthcz-payment-desc {
    font-size: 13px;
    color: #666;
}

.mi-wealthcz-payment-check {
    color: #07c160;
    font-size: 20px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.mi-wealthcz-payment-item.active .mi-wealthcz-payment-check {
    opacity: 1;
    transform: scale(1);
}

.mi-wealthcz-confirm-btn {
    display: block;
    width: 100%;
    border: none;
    color: #ffff;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.mi-wealthcz-confirm-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.mi-wealthcz-confirm-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.mi-wealthcz-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
}

.mi-wealthcz-qr-code {
    width: 150px;
    height: 150px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.mi-wealthcz-qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mi-wealthcz-countdown {
    font-size: 14px;
    font-weight: bold;
    color: #ff6b6b;
    margin: 8px 0;
    font-family: 'Courier New', monospace;
    padding: 8px 20px;
    border-radius: 8px;
}

.mi-wealthcz-qr-tip {
    color: #666;
    font-size: 12px;
    text-align: center;
    line-height: 1.6;
}

.mi-wealthcz-qr-amount {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 16px;
}
.mi-wealthcz-card-ts{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.mi-wealthcz-card-input {
    margin: 10px 0 0;
    padding: 10px 20px 0 20px;
}

.mi-wealthcz-card-input .el-input__inner {
    border: 1px solid #e0e0e0;
    height: 35px;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.mi-wealthcz-check-card-btn {
    display: block;
    border: none;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    margin: 10px 20px;
}

.mi-wealthcz-check-card-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    padding: 8px 20px;
    font-size: 12px;
}

.mi-wealthcz-dialog-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.mi-wealthcz-dialog-footer .el-button {
    padding: 12px 30px;
    font-weight: 600;
}

.mi-wealthcz-recharge-dialog .el-dialog__body {
    padding: 25px;
}
.el-dialog.mi-wealthcz-recharge-dialog{
    width: 300px;
}
.mi-wealthcz-qr-dialog.el-dialog {
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.el-dialog.mi-wealthcz-card-dialog {
    width: 300px;
    border-radius: 12px;
}
.mi-wealthcz-recharge-dialog .el-dialog__body{
    padding: 0px 20px 15px;
}
.mi-PostzS-payment-icon.mi-weixindenglu1 {
    color: #41ba75;
}
.mi-PostzS-payment-icon.mi-Pagex {
    color: #409EFF;
}
.mi-PostzS-payment-icon.mi-bangdingyinhangka {
    color: #409EFF;
}
.mi-PostzS-payment-icon.mi-qiandai {
    color: #e6a23c;
}
.mi-wealthcz-max-tip {
    color: #F56C6C;
    font-size: 12px;
    padding-left: 5px;
    text-align: center;
    margin-top: 10px;
}
.mi-wealthcz-recharge-dialog svg{
    width: 1em;
    height: 1em;
    font-size: 15px;
    margin-right: 5px;
}

/*
 *-------------------------------------------------------------------------------
 * 下载-图文-视频 支付弹窗
 *-------------------------------------------------------------------------------
*/
.mi-newpaybody {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    background-color: #f5f7fa;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mi-newpaydemo-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.mi-newpaydemo-title {
    color: #5a5e66;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
}

.mi-newpayopen-btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    background-color: #409eff;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.mi-newpayopen-btn:hover {
    background-color: #66b1ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
}

/* 自定义弹窗样式 */
.mi-newpaypayment-dialog .el-dialog {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 340px !important; /* 弹窗宽度调整为340px */
}

.mi-newpaypayment-dialog .el-dialog__header {
    padding: 20px 20px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.mi-newpaypayment-dialog .el-dialog__title {
    font-size: 18px;
    color: #303133;
    font-weight: 500;
}

.mi-newpaypayment-dialog .el-dialog__body {
    padding: 15px 10px 20px; /* 调整内边距 */
}

/* 资源信息卡片样式 - 重新设计，增强视觉吸引力 */
.mi-newpayresource-card {
    display: flex;
    padding: 6px 9px;
    background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    border: none;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.mi-newpayresource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.mi-newpayresource-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 18px;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: rotate(5deg);
    transition: all 0.4s ease;
}

.mi-newpayresource-card:hover .mi-newpayresource-image {
    transform: rotate(0deg) scale(1.05);
    border-color: white;
}

.mi-newpayresource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mi-newpayresource-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* 用于确保文本截断生效 */
}

.mi-newpayresource-title {
    font-size: 16px;
    color: white;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mi-newpayresource-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mi-newpayresource-left-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mi-newpayresource-attribute {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2ecc71;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mi-newpayresource-price {
    font-size: 24px;
    color: #ffeb3b;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.mi-newpayresource-price::after {
    content: '限时特价';
    position: absolute;
    bottom: 0px;
    right: -52px;
    font-size: 10px;
    color: #ffeb3b;
    background-color: rgba(25, 25, 25, 0.8);
    padding: 2px 6px;
    font-weight: 500;
}

/* 奖励信息样式 */
.mi-newpayreward-info {
    background: linear-gradient(135deg, #fdfcfb 0%, #f5e6d3 100%);
    border-radius: 10px;
    padding: 8px 5px;
    margin-bottom: 10px;
    text-align: center;
    border: 2px solid #ffc107;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.mi-newpayreward-info::before {
    content: '✨';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 16px;
    animation: mi-newpaysparkle 2s infinite;
}

.mi-newpayreward-info::after {
    content: '✨';
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 16px;
    animation: mi-newpaysparkle 2s infinite 0.5s;
}

@keyframes mi-newpaysparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.mi-newpayreward-text {
    font-size: 13px;
    color: #d84315;
    font-weight: 600;
}

.mi-newpayreward-emoji {
    font-size: 16px;
    animation: mi-newpaybounce 1.5s infinite;
}

@keyframes mi-newpaybounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* 支付方式TAB样式 - 间距调整 */
.mi-newpaypayment-tabs {
    background-color: #f1f3f5;
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.mi-newpaypayment-tab {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    color: #495057;
    transition: all 0.3s;
    margin: 0 2px;
    flex: 1;
    max-width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mi-newpaypayment-tab:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.mi-newpaypayment-tab.active {
    background-color: white;
    color: #409eff;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* 支付图标样式 */
.mi-newpaypayment-icon {
    font-size: 14px;
}

.mi-newpaywechat-icon {
    color: #09bb07;
}

.mi-newpayalipay-icon {
    color: #1296db;
}

.mi-newpaybalance-icon {
    color: #faad14;
}

/* 二维码区域样式 - 已优化 */
.mi-newpayqrcode-area {
    padding: 15px 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mi-newpayqrcode-container {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    padding: 5px;
}
.mi-newpayqrcode-img-wrap{
    width: 130px;
    height: 130px;
}
/* 二维码四角边框标记 */
.mi-newpayqrcode-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 3px solid #409eff;
}

.mi-newpayqrcode-corner-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 6px;
}

.mi-newpayqrcode-corner-tr {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 6px;
}

.mi-newpayqrcode-corner-bl {
    bottom: 0px;
    left: -3px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 6px;
}

.mi-newpayqrcode-corner-br {
    bottom: 0px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 6px;
}

.mi-newpayqrcode-placeholder {
    color: #adb5bd;
    font-size: 13px;
}

/* 二维码刷新区域 - 修改为直接显示 */
.mi-newpayqrcode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* 直接显示，不再是0 */
}
.mi-newpayqrcode-loading p{
    font-size: 12px;
}
.mi-newpayrefresh-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    font-size: 20px;
    color: #409eff;
}

.mi-newpayrefresh-icon:hover {
    transform: rotate(90deg);
}

.mi-newpayrefresh-icon:active {
    transform: rotate(180deg);
}

.mi-newpayqrcode-instruction {
    color: #6c757d;
    font-size: 12px;
    margin-top: 5px;
}

.mi-newpaytime-countdown {
    color: #ff4d4f;
    font-weight: 600;
}

/* 余额支付区域样式 */
.mi-newpaybalance-payment-area {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.mi-newpaybalance-info {
    margin-bottom: 10px;
}

.mi-newpaybalance-text {
    font-size: 14px;
    color: #495057;
}

.mi-newpaybalance-amount {
    color: #fa5247;
    font-weight: 600;
}

.mi-newpaybalance-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.mi-newpayrecharge-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #409eff 0%, #66b1ff 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(64, 158, 255, 0.2);
}

.mi-newpaynewpay-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #67c23a 0%, #85ce61 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(103, 194, 58, 0.2);
}

.mi-newpaynewpay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(103, 194, 58, 0.3);
}

.mi-newpayinstructions {
    color: #6c757d;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    margin-top: 10px;
}