body { background-color: #f8f9fa; color: #333333; font-family: "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif; margin: 0; padding: 0; font-size: 14px; }
a { text-decoration: none; color: inherit; }
* { box-sizing: border-box; }

.vtx-layout { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* 顶栏：极简云服务风格 */
.vtx-topbar { background: #ffffff; border-bottom: 1px solid #eaebed; position: sticky; top: 0; z-index: 100; height: 60px; display: flex; align-items: center; }
.vtx-nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.vtx-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; color: #1a73e8; }
.vtx-brand img { height: 24px; }

.vtx-nav-links { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.vtx-nav-links a { color: #5f6368; font-weight: 500; transition: color 0.2s; padding: 20px 0; border-bottom: 2px solid transparent; }
.vtx-nav-links a:hover, .vtx-active { color: #1a73e8 !important; border-bottom: 2px solid #1a73e8; }

.vtx-console-btn { font-size: 13px; color: #1a73e8; border: 1px solid #1a73e8; background: transparent; padding: 6px 16px; border-radius: 4px; font-weight: 600; transition: 0.2s; }
.vtx-console-btn:hover { background: #e8f0fe; }

/* 公告：警报条风格 */
.vtx-alert-bar { background: #fff3e0; border: 1px solid #ffe0b2; border-left: 4px solid #f57c00; padding: 16px 20px; margin: 24px 0; border-radius: 4px; display: flex; align-items: flex-start; gap: 12px; color: #e65100; line-height: 1.5; }

.vtx-module-title { font-size: 18px; font-weight: 600; color: #202124; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid #eaebed; }

/* 数据台式列表 */
.vtx-data-list { background: #ffffff; border: 1px solid #eaebed; border-radius: 6px; display: flex; flex-direction: column; margin-bottom: 40px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.vtx-data-row { display: flex; align-items: center; padding: 16px 24px; border-bottom: 1px solid #eaebed; transition: background 0.2s; }
.vtx-data-row:last-child { border-bottom: none; }
.vtx-data-row:hover { background: #f8f9fa; }

.vtx-row-icon { width: 40px; height: 40px; border-radius: 4px; border: 1px solid #dadce0; overflow: hidden; margin-right: 20px; flex-shrink: 0; background: #fff; padding: 2px; }
.vtx-row-icon img { width: 100%; height: 100%; object-fit: contain; }

.vtx-row-main { flex-grow: 1; display: flex; flex-direction: column; gap: 4px; }
.vtx-row-name { font-size: 15px; font-weight: 600; color: #202124; }
.vtx-row-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: #5f6368; }
.vtx-status-auto { display: flex; align-items: center; gap: 4px; color: #137333; background: #e6f4ea; padding: 2px 6px; border-radius: 4px; font-weight: 500; }
.vtx-status-hand { display: flex; align-items: center; gap: 4px; color: #5f6368; background: #f1f3f4; padding: 2px 6px; border-radius: 4px; font-weight: 500; }

.vtx-row-ops { display: flex; align-items: center; gap: 30px; margin-left: 24px; min-width: 200px; justify-content: flex-end; }
.vtx-row-price { font-size: 18px; font-weight: 600; color: #202124; }
.vtx-op-btn { background: #1a73e8; color: #ffffff; border: none; padding: 8px 20px; font-size: 13px; border-radius: 4px; font-weight: 500; transition: 0.2s; cursor: pointer; }
.vtx-op-btn:hover { background: #1557b0; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

/* 控制台式详情页 */
.vtx-panel-grid { display: flex; gap: 24px; margin-top: 24px; align-items: flex-start; }
.vtx-panel-left { width: 60%; background: #ffffff; border: 1px solid #eaebed; border-radius: 6px; padding: 32px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.vtx-panel-img { width: 100%; border: 1px solid #eaebed; border-radius: 6px; margin-bottom: 24px; }
.vtx-panel-right { width: 40%; background: #ffffff; border: 1px solid #eaebed; border-radius: 6px; padding: 32px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); position: sticky; top: 84px; }

.vtx-deploy-h1 { font-size: 20px; font-weight: 600; color: #202124; margin-bottom: 24px; line-height: 1.4; }
.vtx-deploy-price-box { padding-bottom: 20px; border-bottom: 1px solid #eaebed; margin-bottom: 24px; display: flex; align-items: baseline; gap: 12px; }
.vtx-deploy-price { font-size: 32px; font-weight: 600; color: #1a73e8; }
.vtx-deploy-stock { margin-left: auto; color: #5f6368; font-size: 13px; }

.vtx-param-row { margin-bottom: 20px; }
.vtx-param-label { display: block; font-size: 13px; font-weight: 600; color: #202124; margin-bottom: 8px; }
.vtx-param-input { width: 100%; padding: 10px 12px; border: 1px solid #dadce0; border-radius: 4px; background: #ffffff; font-size: 14px; transition: 0.2s; color: #202124; font-family: inherit; }
.vtx-param-input:focus { border-color: #1a73e8; outline: none; box-shadow: inset 0 0 0 1px #1a73e8; }
.vtx-deploy-submit { width: 100%; background: #1a73e8; color: #ffffff; padding: 12px; font-size: 14px; font-weight: 600; border: none; border-radius: 4px; cursor: pointer; transition: 0.2s; margin-top: 8px; }
.vtx-deploy-submit:hover { background: #1557b0; }
.vtx-deploy-submit:disabled { background: #f1f3f4; color: #9aa0a6; cursor: not-allowed; }

.vtx-doc-section { margin-top: 32px; }
.vtx-doc-title { font-size: 16px; font-weight: 600; color: #202124; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.vtx-doc-title::before { content: ""; width: 4px; height: 16px; background: #1a73e8; border-radius: 2px; }
.vtx-doc-html { line-height: 1.8; font-size: 14px; color: #3c4043; }

.vtx-footer { text-align: center; padding: 40px 0; margin-top: 60px; color: #5f6368; font-size: 13px; border-top: 1px solid #eaebed; background: #ffffff; }

/* 移动端强硬响应式 */
@media (max-width: 900px) {
    .vtx-panel-grid { flex-direction: column; }
    .vtx-panel-left, .vtx-panel-right { width: 100%; position: static; }
}
@media (max-width: 768px) {
    header ul { display: none !important; }
    tr img, div img { max-width: 100%; }
    .vtx-data-row { flex-direction: column; align-items: flex-start; padding: 20px; }
    .vtx-row-icon { margin-bottom: 16px; margin-right: 0; }
    .vtx-row-ops { margin-left: 0; margin-top: 16px; width: 100%; justify-content: space-between; border-top: 1px solid #eaebed; padding-top: 16px; }
}\n