.page1 a{
    text-decoration: none;
}
.ws-loc-hero {
    padding: 160px 0 120px 0;
    background: #FFFFFF;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.ws-loc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.ws-loc-preheader {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.ws-loc-status {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0052FF;
    background: #F5F8FF;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #D1E0FF;
}
.ws-loc-main {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: flex-start;
}
.ws-loc-content h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #101828;
    margin: 0 0 32px 0;
}
.ws-loc-content h1 span {
    color: #0052FF;
    display: block;
}
.ws-loc-content p {
    font-size: 22px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 56px;
    max-width: 640px;
    font-weight: 400;
}
.ws-loc-keyfacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.ws-loc-keyfacts span {
    font-size: 14px;
    color: #101828;
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    padding: 10px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(16, 24, 40, 0.03);
    transition: all 0.2s;
}
.ws-loc-keyfacts span:hover {
    border-color: #0052FF;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.1);
}
.ws-loc-keyfacts span strong {
    font-weight: 800;
    color: #0052FF;
}
.ws-loc-visual-wrapper {
    position: relative;
}
.ws-loc-frame {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #F9FAFB;
    border: 1px solid #EAECF0;
    box-shadow: 0 30px 60px -15px rgba(16, 24, 40, 0.15);
}
.ws-loc-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.ws-loc-visual-wrapper:hover .ws-loc-frame img {
    transform: scale(1.05);
}
.ws-node-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #0C111D;
    color: #FFFFFF;
    padding: 32px;
    border-radius: 20px;
    width: 320px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.ws-node-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ws-node-title::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #12B76A;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px #12B76A;
}
.ws-node-data {
    font-size: 14px;
    color: #98A2B3;
    line-height: 1.6;
}
@media (max-width: 1100px) {
    .ws-loc-main { grid-template-columns: 1fr; gap: 80px; }
    .ws-loc-content h1 { font-size: 64px; }
    .ws-node-card { position: static; width: auto; margin-top: 40px; }
}
.ws-infra-section {
    padding: 100px 0 160px 0;
    background: #FFFFFF; /* 已改为纯白，与 Hero 一致，更高端连贯 */
    font-family: "Inter", -apple-system, system-ui, sans-serif;
}
.ws-infra-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.ws-infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.ws-node-block {
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.ws-node-block:hover {
    border-color: #0052FF;
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
}

.ws-node-accent { height: 4px; background: #0052FF; width: 100%; }
.ws-node-accent.eu { background: #F79009; }
.ws-node-accent.ca { background: #12B76A; }
.ws-node-accent.cn { background: #D92D20; }
.ws-node-accent.au { background: #7A5AF8; }

.ws-node-header {
    padding: 28px 32px 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ws-node-id {
    font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: #667085;
    letter-spacing: 0.05em;
}
.ws-node-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    color: #12B76A;
    letter-spacing: 0.02em;
}
.ws-status-dot {
    width: 6px; height: 6px; background: #12B76A; border-radius: 50%;
    box-shadow: 0 0 8px #12B76A;
    animation: ws-node-pulse 2s infinite;
}

.ws-node-main { padding: 0 32px 28px 32px; }
.ws-node-city {
    font-size: 26px;
    font-weight: 900;
    color: #101828;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.ws-node-region {
    font-size: 13px;
    font-weight: 700;
    color: #0052FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ws-node-specs {
    background: #F9FAFB;
    border-top: 1px solid #F2F4F7;
    border-bottom: 1px solid #F2F4F7;
    padding: 20px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ws-spec-label {
    font-size: 10px;
    font-weight: 700;
    color: #98A2B3;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.ws-spec-value {
    font-size: 13px;
    font-weight: 700;
    color: #344054;
    line-height: 1.4;
}

.ws-node-footer { padding: 24px 32px; }
.ws-node-btn {
    font-size: 14px;
    font-weight: 700;
    color: #101828;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}
.ws-node-btn:hover {
    color: #0052FF;
    border-bottom-color: #0052FF;
}

@keyframes ws-node-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .ws-infra-grid { grid-template-columns: 1fr; }
}
.ws-capabilities-section {
    padding: 80px 0 160px 0;
    background: #FFFFFF;
    font-family: "Inter", -apple-system, system-ui, sans-serif;
}
.ws-capabilities-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.ws-capabilities-header {
    text-align: left;
    margin-bottom: 48px;
    border-left: 4px solid #0052FF;
    padding-left: 24px;
}
.ws-capabilities-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: #101828;
    margin: 0;
    letter-spacing: -0.03em;
}

/* 桌面端表格 */
.ws-capabilities-table-wrapper {
    display: block;
    overflow-x: auto;
    border: 1px solid #EAECF0;
}
.ws-capabilities-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    min-width: 1000px;
}
.ws-capabilities-table th {
    background: #101828;
    padding: 20px 28px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.ws-capabilities-table td {
    padding: 24px 28px;
    font-size: 14px;
    color: #344054;
    border-bottom: 1px solid #EAECF0;
    vertical-align: middle;
    line-height: 1.5;
}
.ws-capabilities-table tr:hover td {
    background: #F9FAFB;
}
.ws-hub-name {
    font-weight: 800;
    color: #101828;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}
.ws-hub-id {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: #0052FF;
    font-weight: 700;
}
.ws-cap-tag {
    display: inline-block;
    background: #F2F4F7;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #475467;
    margin: 2px;
    border-radius: 4px;
}

/* 移动端垂直卡片 - 默认隐藏 */
.ws-mobile-capability-list {
    display: none;
}
.ws-mobile-cap-card {
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 16px rgba(16, 24, 40, 0.04);
}
.ws-mobile-cap-row {
    margin-bottom: 20px;
}
.ws-mobile-cap-row:last-child { margin-bottom: 0; }
.ws-mobile-cap-label {
    font-size: 12px;
    font-weight: 700;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.ws-mobile-cap-value {
    font-size: 15px;
    color: #101828;
    font-weight: 600;
}
.ws-mobile-cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

/* 响应式切换 */
@media (max-width: 991px) {
    .ws-capabilities-table-wrapper { display: none; }
    .ws-mobile-capability-list { display: flex; flex-direction: column; gap: 24px; }
}
.ws-ops-faq-section {
    padding: 120px 0;
    background: #FFFFFF;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.ws-ops-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.ws-ops-header {
    text-align: center;
    margin-bottom: 70px;
}
.ws-ops-header .ws-ops-label {
    color: #0052FF;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}
.ws-ops-header h2 {
    font-size: 40px;
    font-weight: 850;
    color: #101828;
    letter-spacing: -0.03em;
    margin: 0;
}
.ws-ops-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ws-ops-item {
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
/* 增强悬停视觉：不只是阴影，还有边框的质感变化 */
.ws-ops-item:hover {
    border-color: #0052FF;
    box-shadow: 0 20px 30px rgba(16, 24, 40, 0.06);
}
.ws-ops-question {
    font-size: 20px;
    font-weight: 750;
    color: #101828;
    margin-bottom: 16px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
/* 增加一个细微的数字或装饰，提升“设计感” */
.ws-ops-question::before {
    content: "—";
    color: #0052FF;
    font-weight: 900;
}
.ws-ops-answer {
    font-size: 16px;
    line-height: 1.75;
    color: #475467;
    padding-left: 32px; /* 与问题的横线对齐 */
}
/* 深度内容的高亮：体现专业深度 */
.ws-ops-term {
    color: #101828;
    font-weight: 700;
    border-bottom: 1.5px solid #D1E0FF; /* 柔和的强调线 */
}
.ws-ops-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #F2F4F7;
}
@media (max-width: 768px) {
    .ws-ops-faq-section { padding: 80px 0; }
    .ws-ops-header h2 { font-size: 30px; }
    .ws-ops-item { padding: 24px; }
    .ws-ops-question { font-size: 18px; }
}