.live-time-banner {
    background: #6366f1;
    color: #fff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}
.live-time-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.live-time-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.live-time-title {
    font-size: 14px; opacity: 0.9;
}
.live-time-value {
    font-size: 22px; font-weight: 600;
}

.two-column-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width:768px) {
    .two-column-wrap {
        grid-template-columns: 1fr;
    }
}

.tool-module-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.module-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.module-header i {
    color: #6366f1;
    font-size: 24px;
}
.module-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

input[type="datetime-local"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    margin: 10px 0 20px;
}

.ts-type-tab {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.tab-btn {
    flex:1;
    padding: 10px 0;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}
.tab-btn.active {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.result-box {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}
.result-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    width: 100%;
    display: block;
}
.result-item:last-child {
    margin-bottom: 0;
}

/* 最高优先级强制垂直分行，永不同行错乱 */
.result-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: block !important;
    float: none !important;
    width: 100%;
}
.result-value {
    font-weight: 500;
    padding: 10px 0;
    word-break: break-all;
    display: block !important;
    float: none !important;
    width: 100%;
    margin-bottom: 8px;
}
.copy-btn {
    margin-top: 8px;
    padding: 6px 12px;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size:13px;
    display: block !important;
    float: none !important;
    width: fit-content;
}
.tool-advantage {
    margin: 20px 0;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}