a {
    user-select: none !important;
    text-decoration: none !important;
}

#main-placeholder {
    background-image: url("/images/cloudConvert/bg1.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: relative;
}

#main {
    background: transparent;
}

.box {
    /* 第一个元素顶部间距得用盒内的padding-top，用margin-top会被合并进body的padding-top */
    padding-top: 30px;
    min-height: 400px;
    height: calc(100vh - 80px - 30px - 30px);
    display: flex;
}

.box-left {
    flex-shrink: 0;
    width: 140px;
    padding: 20px;
    border-radius: 10px;
    background: RGBA(235, 238, 241, .4);
}

.box-right {
    flex: 1 0 auto;
    height: 100%;
    margin-left: 45px;
    display: flex;
    flex-direction: column;
}

.box-left-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-top-title {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.nav-top-title span {
    margin-left: 5px;
    font-size: 20px;
    font-weight: bold;
}

.nav-top-title img {
    width: 30px;
    height: 30px;
}

.nav-bottom{
    justify-content: center;
}
.nav-container {
    margin-top: 30px;
    
}

.nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-item span {
    margin-left: 5px;
    color: #32364C;
    opacity: 0.8;
    font-weight: bold;
    font-size: 12px;
}

.nav-item img {
    width: auto;
    height: auto;
}

.nav-item:not(:first-child) {
    margin-top: 20px;
}

.box-right-signal {
    margin-top: 10px;
    height: 25px;
    display: flex;
    align-items: flex-end;
    line-height: 15px;
}

.signal-container {
    display: flex;
    align-items: flex-end;
}

.signal-label {
    margin-left: 10px;
    font-size: 14px;
}

.cloud-container {
    flex: 1;
    margin-top: 30px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cloud-container.has-files {
    border: 1px dashed #BBE3FF;
    background: linear-gradient(180deg, #EAF6FF 10%, #FFFFFF 35%);
}

.cloud-footer {
    display: none;
    padding: 30px;
    background: #F8F9FA;
    border-top: 1px solid #E0E0E0;
}

.cloud-container.has-files .cloud-footer {
    display: flex;
    justify-content: center;
}

.cloud-add-btn {
    padding: 6px 30px;
    border: 1px solid #D8D8D8;
    border-radius: 5px;
    background: #FFFFFF;
    cursor: pointer;
    font-size: 12px;
    color: #222222;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cloud-add-btn:hover {
    border-color: #4C64FE;
    color: #4C64FE;
}

.cloud-add-btn .iconfont {
    margin-right: 8px;
    font-size: 12px;
}

.cloud-empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-wrapper {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.cloud-input {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cloudInput {
    display: none;
}

.cloud-input img {
    width: 136px;
    height: 136px;
}

.cloud-input>span {
    margin-top: 40px;
    color: #232323;
    font-size: 14px;
}


.cloud-input-btn {
    margin-top: 40px;
    padding: 10px 32px;
    border: 1px solid #D8D8D8;
    border-radius: 5px;
    cursor: pointer;
}

.cloud-input-btn>span {
    color: #222222;
    font-size: 14px;
}

.cloud-input-btn>span:not(:first-child) {
    margin-left: 10px;
}

/* 表格样式 */
.cloud-table {
    height: 60px;
    width: 100%;
    border-collapse: collapse;
}

.table-wrapper {
    flex: 1;
    overflow: hidden;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.table-wrapper .cloud-table th:first-child,
.table-wrapper .cloud-table td:first-child {
    width: 260px;
    max-width: 260px;
    text-align: left;
}

.table-wrapper .cloud-table th:nth-child(2),
.table-wrapper .cloud-table td:nth-child(2) {
    width: 220px;
    text-align: center;
}

.table-wrapper .cloud-table th:nth-child(3),
.table-wrapper .cloud-table td:nth-child(3) {
    width: 140px;
    text-align: center;
}

.table-wrapper .cloud-table th:nth-child(4),
.table-wrapper .cloud-table td:nth-child(4) {
    width: 220px;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-wrapper .cloud-table th:nth-child(5),
.table-wrapper .cloud-table td:nth-child(5) {
    width: 132px;
    text-align: center;
    
}


.table-body-wrapper {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

/* 表体表格 */
.table-body-wrapper>.cloud-table {
    margin-top: 0;
}

/* 全选容器样式 */
.select-all-container {
    display: flex;
    align-items: center;
}

.select-all-label {
    margin-left: 5px;
    font-size: 14px;
}

.selected-count {
    margin-left: 20px;
    font-size: 14px;
    color: #666;
    display: none;
}

.select-all-container .iconfont {
    margin-left: 20px;
    font-size: 16px;
    cursor: pointer;
    display: none;
}

/* 确保表头和表体列宽一致 */
.cloud-table th,
.cloud-table td {
    padding: 12px 15px;
}

.cloud-table th:not(:first-child),
.cloud-table td:not(:first-child) {
    white-space: nowrap;
}

.cloud-table th {
    text-align: left;
    color: #454545;
    font-size: 14px;
    opacity: .8;
    border-bottom: 1px solid #e0e0e0;
}
.cloud-table-body tr:hover {
    background-color: #f8f9fa;
}
.cloud-table-body td {
    color: #454545;
    font-size: 14px;
    opacity: .8;
    border-bottom: none !important;
    position: relative;
    vertical-align: middle;
    text-align: center;
}

.cloud-table-select {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFE5E5;
    color: #FF0202;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
    padding: 0 25px 0 10px;
}

.cloud-table-select .iconfont{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.cloud-table-select .iconfont.arrow-up{
    transform: translateY(-50%) rotate(180deg);
}

.cloud-table-select-disabled{
    cursor: not-allowed;
}

.custom-dropdown-panel {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    max-height: 240px;
    overflow-y: auto;
}

.custom-dropdown-item {
    padding: 8px 12px;
    font-size: 14px;
    color: #454545;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

.custom-dropdown-item:hover {
    background: #f2f6ff;
    color: #4C64FE;
}




/* 表格文件图标样式 */
.file-icon {
    width: 32px !important;
    height: 32px !important;
    margin: 0 10px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.file-icon.icon.icon-a-3dmax1{
    margin-left: 14px;
    width: 26px !important;
    height: 26px !important;
}

.file-item {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.file-item input[type="checkbox"] {
    flex-shrink: 0;
}

.file-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

/* 合并列中的复选框样式 */
.file-item input[type="checkbox"] {
    margin-right: 8px;
    margin-left: 0;
}
.table-status{
    word-wrap: break-word;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40%;
    display: flex;
    align-items: center;
}
/* 状态点样式 */
.table-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}
.table-button-container{
    display: flex;
    align-items: center ;
    justify-content: center;
}
.table-btn{
    height: 30px;
    width: 120px;
    display: flex;
    align-items: center ;
    justify-content: center;
    background: #606060;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: .28;
}

.table-btn-active{
    background: linear-gradient(180deg, #006EFF 0%, #0056d6 100%);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 110, 255, 0.4);
}

.table-btn-success{
    background-color: #4ddeb3;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(59, 221, 170, 0.4);
}

.table-btn-gray{
    background: #606060;
    opacity: .4;
}

.table-btn:disabled{
    cursor: not-allowed;
}

.table-progress-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.layui-progress{
    flex: none;
    width: 60px;
    height: 12px;
    background-color: #92A1FE;
    border-radius: 6px;
}

.layui-progress-bar{
    height: 12px;
    border-radius: 6px;
}

.table-progress-wrapper .layui-progress-bar{
    background-color: #4C64FE;
}

.table-progress-info{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 6px;
    font-size: 12px;
    color: #606060;
}

.table-progress-text{
    color: #4C64FE;
}

.table-progress-wrapper span{
    font-size: 13.33px;
    color: #4C64FE;
}

.table-progress-percent{
    color: #606060;
    font-size: 13.33px;
    font-weight: bold;
    white-space: nowrap;
}




/* 弹窗模板样式 */
#payment-popup-template {
    display: none;
}

/* 弹窗样式 */
.payment-popup {
    padding: 30px 40px;
    background-color: #FFFBF0;
    border-radius: 12px;
    min-width: 360px;
    max-width: 420px;
    position: relative;
}

/* 关闭按钮 */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #999999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #333333;
}

/* VIP按钮样式 */
.vip-button {
    margin: 25px 0;
}

.vip-btn {
    width: 100%;
    padding: 10px 15px;
    background-color: #FFF9E6;
    border: 1px solid #FFE4B5;
    border-radius: 20px;
    font-size: 13px;
    color: #CC8800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-btn:hover {
    background-color: #FFF3CD;
}

.vip-btn .icon {
    margin-right: 6px;
    width: 24px;
    height: 24px;
}

/* 转换次数样式 */
.conversion-count {
    text-align: center;
    margin-bottom: 30px;
}

.count-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50%;
    object-fit: cover;
}

.count-header span {
    font-size: 14px;
    color: #666666;
}

.count-number {
    font-size: 72px;
    font-weight: bold;
    color: #000000;
    line-height: 1;
}

/* 二维码容器样式 */
.qrcode-container {
    text-align: center;
    padding: 20px 0;
    display: none;
}

.qrcode-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.qrcode-title .icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.qrcode-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.qrcode-image {
    display: flex;
    justify-content: center;
}

.qrcode-image img {
    width: 200px;
    height: 200px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

/* 支付选项样式 */
.payment-options {
    background-color: #FFF3D9;
    padding: 20px 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.option-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: #333333;
}

.option-item input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

/* 支付按钮样式 */
.payment-buttons {
    display: flex;
    gap: 15px;
}

.payment-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.alipay-btn {
    background-color: #FFFFFF;
    border: 1px solid #1677FF;
    color: #1677FF;
}

.alipay-btn:hover {
    background-color: #E6F4FF;
}

.wechat-btn {
    background-color: #FFFFFF;
    border: 1px solid #07C160;
    color: #07C160;
}

.wechat-btn:hover {
    background-color: #E6FFF0;
}

.alipay-btn .iconfont,
.wechat-btn .iconfont {
    margin-right: 5px;
}

/* Footer 样式 */
#footer-placeholder {
    background: #F8F9FA;
    margin-top: 20px;
}

.footer-features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item:first-child {
    justify-content: flex-start;
}

.feature-item:nth-child(2) {
    justify-content: center;
}

.feature-item:last-child {
    justify-content: flex-end;
}

.feature-item .icon {
    width: 56px;
    height: 65px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 13px;
    color: #666666;
    line-height: 1.2;
    margin: 4px 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
}

.footer-copyright p {
    font-size: 12px;
    color: #999999;
    line-height: 2;
    margin: 5px 0;
}

/* 自定义弹框样式 */
.custom-dialog{
    background: transparent !important;
    top:140px !important;
    box-shadow:none !important;
    border-radius: 12px !important; 
}

.custom-dialog .layui-layer-content{
    margin-right: 20px !important;
    padding: 0 !important;
    border-radius: 12px !important; 
    min-width: 300px;
}

.layui-layer-border{
    border: none !important;
}

.custom-dialog .layui-layer-btn a{
    font-size: 14px !important;
}

.dialog-container .dialog-container-header{
    margin-bottom:  0;
}

.layui-layer-dialog .layui-layer-content{
    box-shadow: 5px 5px 5px #3031332b !important;
}

.dialog-container{
    background-color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    gap:10px;
    padding: 10px;
}

.dialog-container .icon-shuoming-mian{
    font-size: 34px;
}

.dialog-container-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 18px;
    color: #999999;
    cursor: pointer;
    transition: color 0.2s ease;
}

.dialog-container-close:hover {
    color: #303133;
}


.dialog-container-header .iconfont:first-child {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.dialog-container-header span:last-child {
    font-size: 15px;
    font-weight: 500;
    color: #303133;
}

.dialog-container-body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
}

.dialog-container-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.dialog-container-footer button {
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid #dcdfe6;
    transition: all 0.2s ease;
}

.dialog-btn-cancel {
    background-color: #ffffff;
    color: #606266;
}

.dialog-btn-cancel:hover {
    color: #4C64FE;
    border-color: #4C64FE;
}

.dialog-btn-confirm {
    background: linear-gradient(180deg, #006EFF 0%, #0056d6 100%);
    color: #ffffff;
    border: none;
}

.dialog-btn-confirm:hover {
    opacity: 0.9;
}

.load-more {
    padding: 15px 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.load-more-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

.load-more-content:hover {
    color: #666;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e0e0e0;
    border-top-color: #999;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.load-more-content.loading .loading-spinner {
    display: inline-block;
}

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