h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
}
.user-baseinfo {
  margin-bottom: 25px;
}
.user-baseinfo table tr td {
  color: #999;
}
@media (min-width: 992px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    line-height: 150px;
    font-size: 70px;
  }
  .user-center .avatar-img {
    font-size: 0;
  }
  .user-center .avatar-img img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
  }
}
.sidebar-toggle {
  display: none;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    padding: 20px 0 20px 0;
    min-width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
    left: -250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #eee;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 999999;
  }
}
body.sidebar-open .sidenav {
  left: 0;
  width: 250px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
}
body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}
/*# sourceMappingURL=user.css.map */






/* 基础重置与移动端适配 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

 

/* 页面容器 */
.container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}
.content{
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}
/* 头部用户信息 */
.user-header {
    padding: 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #18bc9c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.user-id {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-icon {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* 余额卡片 */
.balance-card {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #ff7a45, #ff4545);
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 122, 69, 0.3);
}

.balance-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.balance-title {
    font-size: 14px;
    opacity: 0.9;
}

.balance-status {
    font-size: 14px;
    font-weight: 500;
}
.balance-title-deadline {
    font-size: 12px;
}
.recharge-btn {
    padding: 8px 20px;
    background-color: #fff;
    color: #ff4545;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recharge-btn:hover {
    background-color: #fef0f0;
    transform: scale(1.05);
}

/* 功能列表 */
.func-list {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.func-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.func-item:hover {
    background-color: #f8f8f8;
}

.func-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.func-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.icon-watch {
    background-color: #52c41a;
}

.icon-recharge {
    background-color: #fa8c16;
}

.icon-consume {
    background-color: #f5222d;
}

.func-name {
    font-size: 14px;
}

.func-arrow {
    width: 12px;
    height: 12px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
}

/* 充值弹窗样式（优化版） */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-content {
    width: 85%;
    max-width: 350px;
    background-color: #fff;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

/* 弹窗头部 */
.modal-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 20px;
    color: #999;
    line-height: 20px;
}

.modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.modal-subtitle {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

/* 充值选项列表 */
.recharge-options {
    padding: 15px 20px;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #f0f0f0;
}

.option-item:hover {
    background-color: #f8f8f8;
}

.option-item.active {
    border-color: #18bc9c;
    background-color: #fff5f5;
}

.option-name {
    font-size: 14px;
    color: #333;
}

.option-price {
    font-size: 16px;
    font-weight: 600;
    color: #18bc9c;
}

/* 弹窗底部按钮 */
.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
}

.modal-btn {
    flex: 1;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-cancel {
    background-color: #f5f5f5;
    color: #666;
}

.btn-cancel:hover {
    background-color: #e8e8e8;
}

.btn-pay {
    background-color: #18bc9c;
    color: #fff;
    font-weight: 500;
}

.btn-pay:hover {
    background-color: #18bc9c;
}

/* 提示弹窗 */
/* .toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    z-index: 1000;
} */

.btn-primary:hover {
    color: #fff;
    background-color: #18bc9c;
    border-color: #18bc9c;
}
.btn-primary {
    color: #fff;
    background-color: #18bc9c;
    border-color: #18bc9c;
}
a {color: #616161;}
a:hover, a:focus {
    color: #616161;
}

span.loginyse {
    padding: 5px 8px;
    background-color: #fff;
    color: #18bc9c;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    background-color: #fef0f0;
    transform: scale(1.05);
}
.btn-primary:active:focus{
    color: #fff;
    background-color: #18bc9c;
    border-color: #18bc9c;
    border: 1px solid #18bc9c;
}
.btn:active {
    -webkit-box-shadow: inset 0 3px 5px #18bc9c;
    -moz-box-shadow: inset 0 3px 5px #18bc9c;
    box-shadow: inset 0 3px 5px #18bc9c;
}
 
.btn.btn-primary.btn-lg.btn-block {
    border: none !important;
    outline: none !important;
    background-color: #18bc9c;
}
.navbar-white .navbar-nav > li > a:hover, .navbar-white .navbar-nav > li > a:focus {
    color: #616161;
}
.func-item img{
    width: 24px;
}
i.fa.fa-copy {
    padding-left: 5px;
}
.dropdown .avatar{
    font-size: 14px !important;
    width: 30px;
    height: 30px; 
    line-height: 30px; 
    text-align: center;
    background: #00c08b; 
    color: #fff; 
    border-radius: 50%;
}

.empty-data {
    background-color: white;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
}
.empty-data img {
    width: 150px;
    margin-top: 80px;
}
 
.No-more{
    color: var(--secondary);
    padding: 1rem;
    border-radius: var(--radius);
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
 }