/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* 全局容器样式 */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* 头部样式 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    gap: 20px;
    width: 100%;
}

/* LOGO和标题组合容器 */
.logo-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    flex-shrink: 0;
    min-width: 120px;
}

/* LOGO样式 */
.logo {
    margin-bottom: -10px;
}

.logo img {
    display: block;
    object-fit: contain;
    border-radius: 0;
}

/* 顶部宣传文字样式 - 居中显示 */
.top-banner {
    flex: 1;
    text-align: center;
    padding: 20px 0;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* 右上角功能区 */
.header-right {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.banner-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.banner-sub {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* 标题样式 - 放在LOGO下方 */
.title {
    display: flex;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
    align-items: center;
    gap: 4px;
    flex-direction: column;
    align-items: center;
    margin: 0;
    text-align: center;
}

.title .main-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.title .sub-title {
    font-size: 0.8rem;
    font-weight: 400;
    color: #cccccc;
    margin: 0;
    margin-top: 2px;
}

.header-btn {
    background-color: #4a4a4a;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-btn:hover {
    background-color: #6a6a6a;
}

/* 登录弹窗 */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #242424;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* 充值模态框专用样式 */
.recharge-modal {
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
}

/* 充值模态框中的充值网格 */
.recharge-modal .recharge-grid {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 20px;
    max-width: 100%;
}

/* 充值模态框中的充值卡片 */
.recharge-modal .recharge-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
}

/* 充值模态框中的充值卡片标题 */
.recharge-modal .recharge-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* 充值模态框中的充值价格 */
.recharge-modal .recharge-price {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* 充值模态框中的充值次数 */
.recharge-modal .recharge-times {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* 充值模态框中的充值按钮 */
.recharge-modal .recharge-card-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #888888;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: #1a1a1a;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
}

/* 验证码输入组 */
.code-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.code-input-group input {
    flex: 1;
    border-radius: 6px 0 0 6px;
    border-right: none;
}

/* 获取验证码按钮 */
.get-code-btn {
    background-color: #4CAF50;
    color: #ffffff;
    border: 1px solid #4CAF50;
    border-radius: 0 6px 6px 0;
    padding: 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.get-code-btn:hover:not(:disabled) {
    background-color: #45a049;
    border-color: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.get-code-btn:disabled {
    background-color: #cccccc;
    color: #666666;
    border-color: #cccccc;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 验证码倒计时 */
.code-countdown {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #6a6a6a;
    text-align: right;
}

.code-countdown #countdownTime {
    color: #ffffff;
    font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a6a6a;
}

.code-hint {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #6a6a6a;
}

/* 服务协议样式 */
.agreement-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
}

.agreement-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4a4a4a;
}

.agreement-group label {
    font-size: 0.9rem;
    color: #cccccc;
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.agreement-group label:hover {
    color: #ffffff;
}

/* 服务协议弹窗样式 */
.agreement-modal {
    max-width: 600px;
    width: 90%;
}

.agreement-content {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #4a4a4a;
}

.agreement-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #cccccc;
    text-align: center;
}

.agreement-confirm {
    font-weight: bold;
    color: #ffffff !important;
    margin-top: 30px !important;
}

/* 联系我们弹窗样式 */
.contact-modal {
    max-width: 600px;
    width: 90%;
}

.contact-content {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #4a4a4a;
}

.contact-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #cccccc;
    text-align: left;
}

.contact-content h3 {
    margin: 20px 0 15px 0;
    color: #ffffff;
    text-align: center;
    font-size: 1.2rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.login-btn,
.cancel-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn {
    background-color: #4CAF50;
    color: #ffffff;
}

.login-btn:hover:not(:disabled) {
    background-color: #45a049;
}

.login-btn:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.cancel-btn {
    background-color: #1a1a1a;
    color: #888888;
}

.cancel-btn:hover {
    background-color: #2a2a2a;
}

/* 剩余次数显示 */
.remaining-times {
    text-align: center;
    font-size: 1rem;
    color: #888888;
    margin-bottom: 20px;
}

#timesCount {
    color: #ffffff;
    font-weight: 600;
}

/* 上传区域样式 */
.upload-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.upload-container {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.upload-section-main {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: 15px;
    margin-bottom: 30px;
    width: 66.67%;
    max-width: 600px;
    justify-content: center;
}

.upload-slot {
    position: relative;
    border: 2px dashed #4a4a4a;
    border-radius: 10px;
    padding: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #242424;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.upload-slot:hover {
    border-color: #6a6a6a;
    background-color: #2a2a2a;
}

.upload-slot.dragover {
    border-color: #6a6a6a !important;
    background-color: #2a2a2a !important;
    transform: scale(1.02);
}

/* 禁用的上传槽位样式 */
.upload-slot.upload-slot-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.upload-slot.upload-slot-disabled .upload-content {
    pointer-events: none;
}

.upload-slot.upload-slot-disabled input[type="file"] {
    display: none;
}

.upload-slot.has-image {
    border-style: solid;
    padding: 0;
    cursor: default;
}

.upload-slot .upload-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    opacity: 0.7;
}

.upload-slot .upload-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
}

.upload-slot .upload-hint {
    font-size: 0.7rem;
    color: #888888;
    margin: 0;
}

.upload-slot .slot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background-color: #1a1a1a;
}

.upload-slot .remove-slot-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 0, 0, 0.8);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.upload-slot .remove-slot-btn:hover {
    background-color: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.upload-slot .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    overflow: hidden;
}

.upload-slot input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.upload-slot.has-image input[type="file"] {
    display: none;
}

.upload-hint {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 0;
}

/* 设计按钮样式 */
.design-btn {
    background-color: #4a4a4a;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.design-btn:hover:not(:disabled) {
    background-color: #6a6a6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.design-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 充值套餐样式 */
.recharge-section {
    margin: 50px 0;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.recharge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.recharge-card {
    background-color: #242424;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.recharge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.recharge-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.recharge-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.recharge-times {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 20px;
}

.recharge-card-btn {
    background-color: #4a4a4a;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recharge-card-btn:hover {
    background-color: #6a6a6a;
}

.recharge-hint {
    font-size: 0.9rem;
    color: #888888;
    max-width: 600px;
    margin: 0 auto;
}

/* 结果展示区域样式 */
.results-section {
    margin: 50px 0;
}

.results-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
}

.results-reminder {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #242424;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid #6a6a6a;
    text-align: center;
}

.results-reminder-line {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 5px 0;
    text-align: center;
}

.results-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #4a4a4a #1a1a1a;
    justify-content: center;
    align-items: flex-start;
}

.results-grid::-webkit-scrollbar {
    height: 6px;
}

.results-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.results-grid::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 3px;
}

.results-grid::-webkit-scrollbar-thumb:hover {
    background: #6a6a6a;
}

.result-item {
    background-color: #242424;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 546px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.result-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 600px;
    object-fit: contain;
    border-radius: 6px;
    background-color: #1a1a1a;
    display: block;
    border: 2px solid #4a4a4a;
    margin-bottom: 19.5px;
    object-position: center;
}

/* 确保图片正确加载显示 */
.result-item img[src] {
    background-color: transparent;
    border-color: #4CAF50;
}

/* 图片加载失败时显示占位符 */
.result-item img[src=""] {
    background-color: #f0f0f0;
    border-color: #ff4444;
}

.download-btn {
    background-color: #4a4a4a;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.download-btn:hover {
    background-color: #6a6a6a;
}

.result-info {
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 15px;
    width: 100%;
}

/* 设计师入驻区域 */
.designer-section {
    margin: 50px 0;
}

.designer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.designer-form,
.designer-showcase {
    background-color: #242424;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.designer-form h3,
.designer-showcase h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

/* 表单样式 */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* 表单提醒文字 */
.form-reminder {
    font-size: 0.8rem;
    color: #cccccc;
    background-color: #242424;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    line-height: 1.4;
    border-left: 3px solid #6a6a6a;
    text-align: justify;
}

.submit-btn {
    background-color: #4a4a4a;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #6a6a6a;
}

/* 设计师展示 */
.designer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.designer-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
}

.designer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.designer-skill {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 5px;
}

.designer-rating {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 10px;
}

.designer-desc {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.5;
}

/* 设计师展示区域 */
.designers-showcase-section {
    margin: 50px 0;
}

/* 设计师温馨提醒 */
.designer-reminder {
    font-size: 0.8rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 15px;
    background-color: #242424;
    border-radius: 8px;
    border-left: 4px solid #6a6a6a;
}

.designers-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #4a4a4a #1a1a1a;
}

.designers-grid::-webkit-scrollbar {
    height: 6px;
}

.designers-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.designers-grid::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 3px;
}

.designers-grid::-webkit-scrollbar-thumb:hover {
    background: #6a6a6a;
}

.designer-card {
    flex: 0 0 auto;
    width: 200px;
    background-color: #242424;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.designer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.designer-card-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4a4a4a;
}

.designer-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.designer-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.designer-card-expertise {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 10px;
}

.designer-card-intro {
    font-size: 0.85rem;
    color: #888888;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 设计师详情弹窗 */
.designer-detail-modal {
    max-width: 800px;
    width: 90%;
}

.designer-detail-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.designer-detail-avatar {
    text-align: center;
}

.designer-detail-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a4a4a;
}

.designer-detail-info {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
}

.designer-detail-info p {
    margin-bottom: 10px;
    color: #cccccc;
}

.designer-detail-info strong {
    color: #ffffff;
}

.designer-detail-portfolio {
    margin-top: 20px;
}

.designer-detail-portfolio h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.portfolio-item {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 底部版权信息 */
.footer {
    margin-top: 80px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #4a4a4a;
    color: #888888;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 8px;
}

/* 加载动画 */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 作品集大图弹窗样式 */
.portfolio-modal {
    width: 90%;
    max-width: 1200px;
}

.portfolio-modal-content {
    text-align: center;
    margin-bottom: 20px;
}

.portfolio-modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #4a4a4a;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .header-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .upload-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 95%;
        gap: 10px;
    }
    
    .upload-slot {
        aspect-ratio: 1 / 1;
        min-height: 120px;
    }
    
    .upload-slot .upload-icon {
        font-size: 1.2rem;
    }
    
    .upload-slot .upload-text {
        font-size: 0.7rem;
    }
    
    .upload-slot .upload-hint {
        font-size: 0.6rem;
    }
    
    .design-btn {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .designer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .recharge-grid {
        grid-template-columns: 1fr;
        width: 95%;
    }
    
    /* 移动端结果项样式 */
    .result-item {
        width: 95vw;
        padding: 15px;
        max-width: 546px;
    }
    
    .result-item img {
        max-height: 400px;
    }
    
    /* 移动端设计师卡片样式 */
    .designer-card {
        width: 160px;
        padding: 15px;
    }
    
    .designer-card-avatar {
        width: 80px;
        height: 80px;
    }
    
    .designer-card-name {
        font-size: 1rem;
    }
    
    .designer-card-expertise {
        font-size: 0.8rem;
    }
    
    .designer-card-intro {
        font-size: 0.75rem;
    }
    
    /* 移动端充值模态框样式 */
    .recharge-modal {
        max-width: 95vw;
    }
    
    /* 移动端充值模态框中的充值网格 */
    .recharge-modal .recharge-grid {
        flex-wrap: wrap;
    }
    
    /* 移动端充值模态框中的充值卡片 */
    .recharge-modal .recharge-card {
        max-width: 100%;
        width: 100%;
    }
    
    /* 移动端模态框内容 */
    .modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    /* 移动端表单元素 */
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    /* 移动端按钮样式 */
    .login-btn,
    .cancel-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* 移动端标题样式 */
    .banner-main {
        font-size: 1.5rem;
    }
    
    .banner-sub {
        font-size: 0.9rem;
    }
}

/* 拖拽样式 */
.dragover {
    border-color: #6a6a6a !important;
    background-color: #2a2a2a !important;
    transform: scale(1.02);
}

/* 收款码弹窗样式 */
.qr-code-modal {
    max-width: 500px;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    text-align: center;
}

.qr-code-container img {
    max-width: 100%;
    max-height: 400px;
    margin: 0 auto;
}

/* 充值记录样式 */
.recharge-history-list {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.recharge-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #242424;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.recharge-history-item:hover {
    background-color: #2a2a2a;
    transform: translateY(-1px);
}

.recharge-history-info {
    flex: 1;
}

.recharge-history-type {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.recharge-history-date {
    font-size: 0.8rem;
    color: #888888;
}

.recharge-history-detail {
    text-align: right;
}

.recharge-history-amount {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 3px;
}

.recharge-history-balance {
    font-size: 0.8rem;
    color: #888888;
}
