* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    text-decoration: none;
}

body {
    background-color: #f7f7f7;
    min-height: 100vh;
    padding-bottom: 5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.transition-colors {
    transition: background-color 0.2s ease;
}

.top-banner {
    padding: 2rem 1.5rem;
}
.top-banner h1 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.top-banner p {
    font-size: 1rem;
    color: #4b5563;
}

.content{
    margin:10px;
}

.login-card {
    background-color: #ffffff;
    margin: 0 1rem 1.5rem;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.piggy-avatar {
    width: 3rem;
    height: 3rem;
    background-color: #ffd1dc;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.piggy-avatar {
    background: url(/static/touxiang2.png) no-repeat;
    background-position: center;
    background-size: 50px;
}
.login-text h2 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
}
.login-text p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.task-section {
    padding: 0 1rem;
    margin-bottom: 2rem;
}
.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
}
.fire-icon {
    color: #f87171;
    margin-right: 0.5rem;
    font-size: 1.25rem;
}
.fire-icon::before {
    content: "🔥";
}

.task-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.task-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.task-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.task-card p {
    font-size: 0.75rem;
    color: #b7b4b4;
    margin-bottom: 1rem;
}
.platform-icon {
    height: 40px;
    width:110px;
    position: absolute;
    right:10px;
    bottom:10px;
}
.icon-douyin {
    background: url("/static/icon-task-1.png") no-repeat;
    background-position: right;
    background-size: 80px;
}
.icon-kuaishou {
    background: url("/static/icon-task-2.png") no-repeat;
    background-position: right;
    background-size: 80px;
}
.icon-xiaohongshu {
    background: url("/static/icon-task-3.png") no-repeat;
    background-position: right;
    background-size: 80px;
}
.icon-weishi {
    background: url("/static/icon-task-4.png") no-repeat;
    background-position: right;
    background-size: 80px;
}
.icon-toutiao {
    background: url("/static/icon-task-5.png") no-repeat;
    background-position: right;
    background-size: 80px;
}

.recommend-section {
    padding: 0 1rem;
}
.recommend-card {

    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.recommend-img {
    width: 100%;
    height: 12rem;
    background: url(/static/tu1.png) no-repeat;
    background-position: center;
    background-size: auto 135px;
}

.bottom-nav {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
}
.nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4rem;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.nav-icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.nav-text {
    font-size: 0.75rem;
}
.nav-item.active .nav-icon, .nav-item.active .nav-text {
    color: #2563eb;
}
.nav-item:not(.active) .nav-icon, .nav-item:not(.active) .nav-text {
    color: #9ca3af;
}
.nav-item.middle {
    position: relative;
}
.middle-btn {
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.middle-icon{
    background: url('/static/icon-task.png') no-repeat;background-size:50px;background-position:center; height: 50px;width:50px;
}
.middle-text {
    margin-top: 0.25rem;
    color: #9ca3af;
    font-size: 0.75rem;
}

.icon-home{background: url('/static/icon-home.png') no-repeat;background-size:30px;background-position:center; height: 30px;width:30px;}
.icon-list{background: url('/static/icon-record.png') no-repeat;background-size:30px;background-position:center; height: 30px;width:30px;}
.icon-share{background: url('/static/icon-share.png') no-repeat;background-size:30px;background-position:center; height: 30px;width:30px;}
.icon-user{background: url('/static/icon-my.png') no-repeat;background-size:30px;background-position:center; height: 30px;width:30px;}

@media (max-width: 375px) {
    .task-grid {
        gap: 0.75rem;
    }
    .task-card {
        padding: 1rem 0.75rem;
    }
    .platform-icon {
        font-size: 1.5rem;
    }
}

header {
    padding: 1.5rem 1rem;
    background: linear-gradient(to bottom, #fff3d4, #fff9e6);
}
.header-content {
    display: flex;
    align-items: center;
}
.piggy-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    position: relative;
    background: url('/static/touxiang2.png') no-repeat #fbcfe8;
    background-size: 60px;
    background-position: center;
}
.header-text h1 {
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
}
.header-text p {
    color: #6b7280;
    margin-top: 0.25rem;
    font-size: 0.7rem;
}

/* 我的账号卡片 */
.account-card {
    margin: 0 1rem -1.5rem;
    background: linear-gradient(to right, #0f2047, #1a3066);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
}
.account-header h2 {
    font-size: 1rem;
    font-weight: bold;
    color: #fcd34d;
}
.withdraw-btn {
    background-color: #fbbf24;
    color: #78350f;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.675rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.account-stats {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1.25rem 1.5rem;
}
.stat-item {
    flex: 1;
    text-align: center;
}
.stat-divider {
    width: 1px;
    background-color: #4b5563;
    margin: 0 1rem;
}
.stat-item p:first-child {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}
.stat-item p:last-child {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

.services-section {
    margin-top: 2.5rem;
    padding: 0 1rem;
    flex: 1;
}
.services-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.services-header {
    background: linear-gradient(to bottom,#fff -30%,#12b2f2);
    padding: 0.55rem 1.25rem;
}
.services-header h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
}
.services-list {
    border-top: 1px solid #f3f4f6;
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
}
.service-item:last-child {
    border-bottom: none;
}
.service-item:hover {
    background-color: #f9fafb;
    transition: background-color 0.2s ease;
}
.service-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.25rem;
    position: relative;
}
.icon-detail{background: url('/static/user-1.png') no-repeat; background-position: center;background-size: 25px;}
.icon-card{background: url('/static/user-2.png') no-repeat; background-position: center;background-size: 25px;}
.icon-team{background: url('/static/user-3.png') no-repeat; background-position: center;background-size: 25px;}
.icon-record{background: url('/static/user-4.png') no-repeat; background-position: center;background-size: 25px;}
.icon-help{background: url('/static/user-5.png') no-repeat; background-position: center;background-size: 25px;}
.icon-service{background: url('/static/user-6.png') no-repeat; background-position: center;background-size: 25px;}
.icon-arrow::before { content: "→"; font-size: 1rem; color: #d1d5db; }

.service-text {
    color: #4b5563;
    font-size: 1rem;
    margin-left: 0.5rem;
}
.service-left {
    display: flex;
    align-items: center;
}



.tab-bar {
    display: flex;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}
.tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 1rem;
    color: #6b7280;
    position: relative;
    cursor: pointer;
}
.tab-item.active {
    color: #38bdf8;
}
.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #38bdf8;
}

.task-list-container {
    padding: 1rem;
}

.task-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: block;
    text-align: left;
    padding-bottom: 40px;
}
.task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.task-status {
    font-size: 0.8rem;
    color: #6b7280;
}
.task-status span {
    color: #38bdf8;
    font-weight: 500;
}
.task-video-id {
    font-size: 0.875rem;
    color: #6b7280;
}

.task-content {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.platform-icon {

}
.task-info {
    flex: 1;
}
.task-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.task-price {
    font-size: 1rem;
    color: #ef4444;
    font-weight: 500;
}
.task-detail-btn {
    background-color: #e0f2fe;
    color: #0284c7;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.task-detail-btn::after {
    content: "▶";
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.task-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}
.task-tip {
    font-size: 0.875rem;
    color: #ef4444;
}
.task-tip::before {
    content: "*";
    margin-right: 0.25rem;
}
.task-actions {
    display: flex;
    gap: 1.5rem;
}
.submit-btn {
    color: #1f2937;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.submit-btn::after {
    content: "✈";
    font-size: 0.875rem;
    margin-left: 0.25rem;
}
.cancel-btn {
    color: #ef4444;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.cancel-btn::after {
    content: "✕";
    font-size: 1rem;
    margin-left: 0.25rem;
}



.hall-page-title {
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    color: #1f2937;
    background-color: #ffffff;
}
.hall-tab-bar {
    display: flex;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}
.hall-tab-item {
    flex: 1;
    text-align: center;
    padding: 1rem 0;
    padding-top: 0px;
    font-size: 0.8rem;
    color: #6b7280;
    position: relative;
    cursor: pointer;
}
.hall-tab-item.active {
    color: #38bdf8;
}
.hall-tab-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #38bdf8;
}
.hall-task-list-container {
    padding:10px;
}
.hall-task-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 10px;
    margin: 1rem 0px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-size: 0.9rem;
}
.hall-platform-icon {
    position: absolute;
    top:10px;
    left:10px;
}
.hall-platform-icon img{
    width:55px;
}
.hall-task-info {
    margin-left: 60px;
}
.hall-task-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hall-task-subtitle-red {
    color: #ef4444;
}
.hall-task-subtitle-gray {
    color: #6b7280;
}
.hall-start-btn {
    position: absolute;
    top:30px;
    right:10px;
    background-color: #38bdf8;
    color: #ffffff;
    padding: 5px 5px;
    border-radius: 5px;
    font-size: 0.7rem;
    text-decoration: none;
    white-space: nowrap;
}


.msg-bg{
    position: fixed;
    top:0px;
    left:0px;
    bottom: 0px;
    right: 0px;
    background: #000;
    z-index: 99;
}
.msg-box{
    position: fixed;
    top:25%;
    bottom:25%;
    left:15%;
    right:15%;
    border-radius:10px;
    z-index: 999;
    background: linear-gradient(to bottom, #c8edfd, #fff);
    color:#fff;
}
.msg-box .msg{
    margin:20px;
    margin-top:40px;
    border-radius:10px;
    color:#000;
    font-size: 0.8rem;
}
.msg-box .msg-close{
    background: url("/static/close.png") no-repeat;
    background-size:25px;
    background-position: center;
    position: absolute;
    right:10px;
    top:10px;
    display: block;
    width:25px;
    height:25px;
}

.mini-header{
    position: relative;
    height:45px;
    line-height:45px;
    overflow: hidden;
}
.mini-header .back{
    display: block;
    height: 25px;
    width: 25px;
    margin-top:10px;
    margin-left:5px;
    background: url('/static/arrow-left.png') no-repeat;
    background-size: 25px;
    background-position: center;
}
.mini-header h3{
    position: absolute;
    top:0px;
    left: 50px;
    right: 30px;
    bottom: 0px;
    text-align: center;
    font-weight: normal;
    font-size: 1rem;
}


.login-container {
    padding: 20px;
}
.title {
    font-size:1.3rem;
    font-weight: bold;
    color: #000;
    margin: 60px 0 40px;
    line-height: 1.3;
}
.form-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.form-item img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}
.form-item input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
}
.form-item input::placeholder {
    color: #999;
}
.eye-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.login-btn {
    display: block;
    text-align: center;
    width: 100%;
    height: 45px;
    line-height: 45px;
    background-color: #3498eb;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin: 20px 0;
}
.register-link {
    text-align: center;
    display: block;
    color: #3498eb;
    font-size: 16px;
    text-decoration: none;
}

button {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toast-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.confirm-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

button:active {
    transform: translateY(0);
}

/* 黑色消息弹窗样式 */
.message-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 7px 10px;
    border-radius: 12px;
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
}

.message-modal p {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
}

/* 确认弹窗样式 */
.confirm-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    padding:15px 10px 15px 10px;
}

.confirm-modal p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #333;
    text-align: center;
    margin-bottom:20px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
}

.modal-buttons button {
    flex: 1;
    padding: 7px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.confirm-btn-modal {
    background: #3498eb;
    color: white;
}

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

.modal-buttons button:hover {
    transform: translateY(-1px);
}

/* 遮罩层 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    animation: fadeIn 0.3s ease-out;
}

/* 动画 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

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

.my-logout{
    margin:20px;
    background: #3dc1e9;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color:#fff;
    border-radius:10px;
}

.share2{
    position: absolute;
    top:50%;
    left:50%;
    background: url('/static/bg-share-2.png') center no-repeat;
    background-size: 300px;
    height: 500px;
    width: 300px;
    margin-top: -300px;
    margin-left:-150px;
}

.share2 .yqm{
    color: #fff;
    position: absolute;
    top: 360px;
    left: 95px;
    font-weight: bold;
}

.share-text{
    margin-top: 40px;
    color: #fff;
    text-align: center;
    font-size:0.8rem;
}


.taskdetail-content{
    margin:20px;
}

.taskdetail-content .taskdetail-1{
    background: #fff;
    padding:10px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.taskdetail-content .taskdetail-icon{
    display: block;
    padding-left:35px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
}
.taskdetail-content .taskdetail-icon a{
    color: #50a4f5;
    font-weight: normal;
}
.taskdetail-content .taskdetail-text{
    color:#aaa;
}
.taskdetail-content .taskdetail-name .taskdetail-icon{
    background: url('/static/icon-mini-1.png') no-repeat;
    background-size: 25px;
    background-position:left;
}
.taskdetail-content .taskdetail-reward .taskdetail-icon{
    background: url('/static/icon-mini-2.png') no-repeat;
    background-size: 25px;
    background-position:left;
}
.taskdetail-content .taskdetail-quantity .taskdetail-icon{
    background: url('/static/icon-mini-3.png') no-repeat;
    background-size: 25px;
    background-position:left;
}
.taskdetail-content .taskdetail-keywords .taskdetail-icon{
    background: url('/static/icon-mini-4.png') no-repeat;
    background-size: 25px;
    background-position:left;
}
.taskdetail-content .taskdetail-description .taskdetail-icon{
    background: url('/static/icon-mini-5.png') no-repeat;
    background-size: 25px;
    background-position:left;
}
.taskdetail-content .taskdetail-video_info .taskdetail-icon{
    background: url('/static/icon-mini-6.png') no-repeat;
    background-size: 25px;
    background-position:left;
}
.taskdetail-content .taskdetail-photo_info .taskdetail-icon{
    background: url('/static/icon-mini-7.png') no-repeat;
    background-size: 25px;
    background-position:left;
}
.taskdetail-bottom{
    position: fixed;
    bottom:0px;
    left:0px;
    right:0px;
    background: #fff;
    padding:15px 0px;
}

.task-quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    width:290px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin:0 auto;
}

.task-quantity-label {
    font-size: 14px;
    color: #333;
    text-align: center;
    width:110px;
    color:#aaa;
}

.task-quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    height: 30px;
}

.task-quantity-btn-decrease,
.task-quantity-btn-increase {
    height: 30px;
    line-height: 30px;
    width:45px;
    border: none;
    background-color: #f5f5f5;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.task-quantity-btn-decrease:hover,
.task-quantity-btn-increase:hover {
    background-color: #e8e8e8;
}

.task-quantity-input {
    width: 40px;
    height: 30px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.task-quantity-btn-get-task {
    display: block;
    height: 35px;
    line-height: 35px;
    width: 90px;
    text-align: center;
    border-radius: 24px;
    background-color: #2196f3;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-left: 15px;
}

.task-quantity-btn-get-task:hover {
    background-color: #1976d2;
}


/* ========== 纯提示弹窗样式（前缀：custom_tip_modal） ========== */
.custom_tip_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.custom_tip_modal_overlay.active {
    opacity: 1;
    visibility: visible;
}
.custom_tip_modal_content {
    width: 300px;
    background: #000;
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    /* 防止点击内容区触发遮罩层关闭 */
    pointer-events: auto;
}
.custom_tip_modal_message {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.custom_confirm_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998; /* 比纯提示弹窗低1，避免重叠冲突 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.custom_confirm_modal_overlay.active {
    opacity: 1;
    visibility: visible;
}
.custom_confirm_modal_content {
    width: 320px;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    /* 防止点击内容区触发遮罩层关闭 */
    pointer-events: auto;
}
.custom_confirm_modal_message {
    font-size: 16px;
    color: #333;
    margin: 0 0 24px 0;
    line-height: 1.5;
}
.custom_confirm_modal_btn_group {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.custom_confirm_modal_confirm_btn {
    padding: 8px 24px;
    background: #1890ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}
.custom_confirm_modal_confirm_btn:hover {
    background: #40a9ff;
}
.custom_confirm_modal_cancel_btn {
    padding: 8px 24px;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}
.custom_confirm_modal_cancel_btn:hover {
    background: #e8e8e8;
}

.record-list-container .record-card{
    margin: 20px 10px;
    font-size: 14px;
    background: #fff;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #eee;
}

.record-list-container .record-header{
    position: relative;
}
.record-list-container .record-header .s1{
    color:#02a7f0;
}
.record-list-container .record-header .record-video-id{
    position: absolute;
    top:0px;
    right:0px;
}
.record-list-container .record-content{
    margin-top: 20px;
    position: relative;
}
.record-list-container .record-icon{
    position: absolute;
    top:0px;
    left:0px;
}
.record-list-container .record-icon img{
    width:50px;
}
.record-list-container .record-info{
    margin-left: 60px;
    height: 50px;
    padding-top: 5px;
}
.record-list-container .record-info .record-title{
    font-size: 16px;
}
.record-list-container .record-info .record-price{
    color: #f34141;
}
.record-list-container .record-detail-btn{
    position: absolute;
    top:18px;
    right:-10px;
    background: #e6f2ff;
    color:#02a7f0;
    border-radius: 15px 0 0 15px;
    font-size: 12px;
    padding:2px 15px;

}
.record-list-container .record-footer{
    position: relative;
    margin-top: 20px;
}
.record-list-container .record-actions{
    position: absolute;
    top:0px;
    right:0px;
}
.record-list-container .record-tip{
    color:#aaa;
    font-size: 12px;
}
.record-list-container .record-tip span{
    color:red;font-size: 16px; vertical-align: middle
}
.record-list-container .record-actions .submit-btn1{
    display: inline-block;
    background: url('/static/feiji.png') no-repeat;
    background-size: 20px;
    background-position: right;
    padding-right: 22px;
    color:#333;
}
.record-list-container .record-actions .cancel-btn2{
    display: inline-block;
    background: url('/static/x.png') no-repeat;
    background-size: 20px;
    background-position: right;
    padding-right: 22px;
    color:#333;
}

.earningsdetails-content .onebox{
    position: relative;
    background: #fff;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    box-shadow: 0 0 20px #ccc;
}
.earningsdetails-content .onebox .date{
    position: absolute;
    top:10px;
    right:10px;
    color:#aaa;
    font-size: 12px;
}
.earningsdetails-content .onebox  .reward{
    position: absolute;
    bottom:10px;
    right:10px;
    color: #f16d3d;
}

.withdrawal-content{
    margin:20px;
}
.withdrawal-content .label{
    color: #999;
    font-size: 14px;
    vertical-align: center;
}
.withdrawal-content .label .xing{
    color:red;
    font-size: 18px;
    vertical-align: center;
    line-height: 20px;
    vertical-align: middle;
}
.withdrawal-content .input{
    margin-bottom: 20px;
}
.withdrawal-content .input input{
    border:1px solid #ddd;
    border-radius:5px;
    padding:7px 10px;
    width:90%;
}

.tixian-content{
    font-size:14px;
}
.tixian-content .shoukuanzh-1{
    position: relative;
    padding:15px 20px;
    background: #fff;
    border-radius: 10px;
}
.tixian-content .shoukuanzh-1 .s2{
    position:absolute;
    top:15px;
    right:10px;
    background: url('/static/right-arrow.png') no-repeat right;
    background-size: 20px;
    color:#04a8f2;
    padding-right: 20px;
}
.tixian-content .withdrawal-num-box{
    position: relative;
    padding:15px;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
}
.tixian-content .withdrawal-num .s1{
    font-size: 20px;
}
.tixian-content .withdrawal-num .s2{
    font-size: 20px;
    border:none;
    outline: none;
}
.tixian-content .withdrawal-num-box .withdrawal-num{
    margin:20px 0px;
    border-bottom:1px solid #ddd;
    padding-bottom: 10px;
}
.tixian-content .balance .s1{
    color:#999;
}
.tixian-content .balance .s2{
    color:#04a8f2;
    margin-left:15px;
}
.tixian-content .tip{
    margin-top: 20px;
    color:#999;
    font-size: 12px;
}
.tixian-content .shoukuanzh-2{
    position: fixed;
    bottom:0px;
    left:0px;
    right:0px;
    background: #fff;
    border-radius:10px 10px 0px 0px;
    z-index: 999999;
    border:1px solid #ddd;
    border-bottom: none;
    display: none;
}
.tixian-content .shoukuanzh-2 .s1{
    display: block;
    text-align: center;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #eee;
}
.tixian-content .shoukuanzh-2 .items{
    padding:10px 20px;
}
.tixian-content .shoukuanzh-2 .item{
    position: relative;
    height:40px;
    line-height: 40px;
}
.tixian-content .shoukuanzh-2 .item .zhanghao{
    color:#999;
    position:absolute;
    top:0px;
    right:10px;
    background: url('/static/right-arrow-2.png') no-repeat right;
    background-size: 15px;
    padding-right: 15px;
}

.accounts{

}
.accounts .account-item{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.accounts .account-item .zhanghao{
    position: relative;
    margin-top: 20px;
}
.accounts .account-item .zhanghao .s1{
    font-size: 14px;
    color:#999;
}
.accounts .account-item .zhanghao .s1 .ss1{
    color:#333;
}
.accounts .account-item .zhanghao .s2{
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    width: 150px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    color: #999;
}
.accounts .account-item .zhanghao .s2 .ss1{
    color:#333;
}