/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.5;
}

.container {
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 顶部区域 */
.header {
    background: linear-gradient(135deg, #4776E6, #8E54E9);
    color: white;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0 0 15px 15px;
}

.header h1 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-bar {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    gap: 10px;
}

.search-input {
    flex: 2;
    position: relative;
}

.search-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-input input {
    width: 100%;
    padding: 10px 15px 10px 35px;
    border: none;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-input input:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.group-filter {
    flex: 1.5;
}

.group-filter select {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-button {
    flex: 0.5;
    min-width: 40px;
    max-width: 40px;
}

.search-button button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #666;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button button i {
    margin-right: 5px;
}

.search-button button:hover {
    background-color: white;
    color: #4776E6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.group-filter select:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.batch-actions {
    display: flex;
    justify-content: space-between;
}

.batch-actions button {
    padding: 10px 18px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.batch-actions button i {
    margin-right: 8px;
}

#selectAllBtn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    flex: 1;
    margin-right: 10px;
    backdrop-filter: blur(5px);
}

#selectAllBtn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.primary-btn {
    background: linear-gradient(to right, #FF9800, #F44336);
    color: white;
    flex: 2;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.primary-btn:hover {
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

/* 主机列表 */
.host-list {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.host-item {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.host-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.host-item.selected {
    border: 2px solid #8E54E9;
}

.host-item.is-seckill-host {
    border-color: rgba(255, 119, 43, 0.5);
    box-shadow: 0 8px 26px rgba(255, 91, 36, 0.16);
}

.host-item.is-seckill-host::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffd86f, #ff6b2f 52%, #e11d48);
}

.host-item.is-seckill-host .host-header {
    background:
        linear-gradient(90deg, rgba(255, 242, 189, 0.95), rgba(255, 255, 255, 0.94) 48%, rgba(255, 238, 230, 0.88)),
        #fff;
}

.host-primary-id {
    min-width: 0;
}

.host-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 120px;
    height: 22px;
    margin-left: 6px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    vertical-align: middle;
    white-space: nowrap;
    box-sizing: border-box;
}

.host-source-badge i {
    font-size: 11px;
}

.host-source-badge em {
    max-width: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
    opacity: 0.9;
}

.host-source-badge.seckill {
    color: #7a2100;
    border: 1px solid rgba(255, 184, 0, 0.8);
    background: linear-gradient(135deg, #fff2a8 0%, #ffbd3d 48%, #ff5837 100%);
    box-shadow: 0 5px 14px rgba(255, 91, 36, 0.22);
}

.host-source-badge.normal {
    color: #64748b;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.host-source-info {
    width: 100%;
}

.host-source-value {
    align-items: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}

.host-source-detail {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.host-source-detail.seckill {
    color: #b42318;
    background: #fff1d6;
}

.host-source-detail.normal {
    color: #475569;
    background: #f1f5f9;
}

.host-seckill-detail-title {
    max-width: 100%;
    color: #92400e;
    font-size: 12px;
    line-height: 22px;
    word-break: break-all;
}

.host-item.expanded .host-content {
    max-height: 500px;
    opacity: 1;
}

.host-item.expanded .expand-indicator i {
    transform: rotate(180deg);
}

.host-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(to right, #f9f9f9, #f5f5f5);
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.host-checkbox {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.host-id {
    font-weight: 600;
    flex: 1;
    font-size: 16px;
    color: #444;
}

.host-status {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.status-online {
    background-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.status-offline {
    background-color: #F44336;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.5);
}

.expand-indicator {
    color: #999;
    padding: 5px;
}

.expand-indicator i {
    transition: transform 0.3s ease;
}

.host-content {
    padding: 0 15px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.host-info {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item {
    width: 50%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.info-value {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.copy-btn {
    background: none;
    border: none;
    color: #8E54E9;
    cursor: pointer;
    padding: 5px;
    margin-left: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background-color: rgba(142, 84, 233, 0.1);
}

.host-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0;
}

.action-btn {
    flex: 1;
    min-width: calc(20% - 10px);
    padding: 10px 0;
    border: none;
    border-radius: 10px;
    background-color: #f8f9fa;
    color: #555;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.action-btn i {
    font-size: 18px;
    margin-bottom: 6px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.action-restart { color: #4CAF50; }
.action-restart:hover { background-color: rgba(76, 175, 80, 0.1); }

.action-renew { color: #2196F3; }
.action-renew:hover { background-color: rgba(33, 150, 243, 0.1); }

.action-shutdown { color: #F44336; }
.action-shutdown:hover { background-color: rgba(244, 67, 54, 0.1); }

.action-reinstall { color: #FF9800; }
.action-reinstall:hover { background-color: rgba(255, 152, 0, 0.1); }

.action-replace { color: #9C27B0; }
.action-replace:hover { background-color: rgba(156, 39, 176, 0.1); }

/* 底部区域 */
.footer {
    background-color: white;
    padding: 12px 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    bottom: 0;
    z-index: 100;
    border-radius: 15px 15px 0 0;
}

.host-count {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

#hostCountNumber {
    font-weight: bold;
    color: #8E54E9;
    font-size: 16px;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #888;
    font-size: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.bottom-nav a i {
    font-size: 22px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.bottom-nav a.active {
    color: #8E54E9;
}

.bottom-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: #8E54E9;
    border-radius: 3px;
}

.bottom-nav a:hover i {
    transform: translateY(-2px);
}

/* 底部导航样式 */
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 10px calc(7px + env(safe-area-inset-bottom));
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow:
        0 -10px 26px rgba(15, 23, 42, 0.1),
        0 -1px 0 rgba(255, 255, 255, 0.9) inset;
    z-index: 900;
    border-radius: 20px 20px 0 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer-menu {
    max-width: 560px;
    height: 58px;
    margin: 0 auto;
    padding: 0;
}

.nav-list {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    list-style: none;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-item {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.nav-item a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    height: 58px;
    margin: 0 1px;
    padding: 6px 2px 4px;
    border-radius: 14px;
    text-decoration: none;
    color: #536173;
    font-weight: 800;
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        transform 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-item a:active {
    transform: translateY(1px) scale(0.98);
}

.nav-item.active:not(.nav-seckill) a {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.nav-item.active:not(.nav-seckill) .nav-icon {
    color: #2563eb;
    transform: translateY(-1px);
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: currentColor;
    transition: transform 0.22s ease, color 0.22s ease;
}

.nav-item i {
    margin: 0;
    font-size: 20px;
    line-height: 1;
    text-shadow: none;
}

.nav-label {
    display: block;
    width: 100%;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: none;
    -webkit-font-smoothing: auto;
    text-rendering: geometricPrecision;
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* Toast 提示样式 */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    max-width: 80%;
}

.toast.show {
    opacity: 1;
}

.modal-content {
    background-color: white;
    width: 100%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(to right, #f9f9f9, #f5f5f5);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #555;
}

.modal-body {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.batch-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    background-color: #f9f9f9;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.batch-option:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.batch-option i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #8E54E9;
}

.batch-option span {
    font-size: 14px;
    font-weight: 500;
}

/* 重装系统弹窗样式 */
.reinstall-modal-body {
    display: block;
    padding: 20px;
}

.reinstall-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.form-group select,
.form-group input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 续费弹窗样式 */
.renew-modal-body,
.shutdown-modal-body,
.group-modal-body {
    display: block;
    padding: 20px;
}

.renew-form,
.shutdown-form,
.group-form {
    width: 100%;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.payment-method {
    flex: 1;
    padding: 15px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.payment-method.active {
    border-color: #4776E6;
    background-color: rgba(71, 118, 230, 0.1);
}

.payment-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-display {
    margin: 20px 0;
    text-align: right;
    font-size: 16px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #F44336;
}
.originalPrice {
    font-size: 24px;
    font-weight: bold;
    text-decoration: line-through;
    color: hwb(0 71% 26%);
}
.warning-message {
    background-color: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #FF9800;
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.warning-message i {
    color: #FF9800;
    margin-right: 10px;
    font-size: 18px;
}

.new-group-input {
    display: flex;
    gap: 10px;
}

.new-group-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.new-group-input input:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

.new-group-input button {
    width: 45px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-group-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 84, 233, 0.3);
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 84, 233, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 84, 233, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(to right, #9e9e9e, #757575);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 重启弹窗样式 */
.restart-modal-body {
    display: block;
    padding: 20px;
}

.restart-form {
    width: 100%;
}

/* 下机退费详情弹窗样式 */
.refund-detail-modal-body {
    display: block;
    padding: 20px;
}

.refund-detail-form {
    width: 100%;
}

.refund-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.refund-list {
    margin-bottom: 20px;
}

.refund-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.refund-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.refund-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.refund-item-amount {
    color: #F44336;
    font-weight: 500;
}

/* 换机弹窗样式 */
.replace-modal-body {
    display: block;
    padding: 20px;
}

.replace-form {
    width: 100%;
}

.secondary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.secondary-btn i {
    margin-right: 8px;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8E54E9;
    box-shadow: 0 0 0 2px rgba(142, 84, 233, 0.2);
    background-color: white;
}

#selectedHostIds {
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 14px;
    min-height: 45px;
    color: #555;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
}

.confirm-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.confirm-checkbox label {
    font-size: 14px;
    margin-bottom: 0;
    color: #F44336;
}

.container {
        max-width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        padding-bottom: 70px; /* 添加底部内边距，大于底部导航的高度 */
}

body.has-app-footer {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
}

body.has-app-footer .container {
    padding-bottom: 0;
}
