/* 区域/语言引导页 feglobal.aspx — 参考徐工式顶栏 + 白底列表（与全站 head/foot 并存） */

/* 顶图与 contact/rad 等内页一致：从页面最顶开始铺，固定导航叠在图上（白字可见）；不再用 padding-top 留白 */
.fe-global-page .fe-global {
    min-height: 42vh;
    padding-bottom: 48px;
    box-sizing: border-box;
}

.fe-global-page .fe-global-banner {
    position: relative;
    overflow: hidden;
}

/* 顶图与下方深蓝顶栏过渡，避免生硬接缝 */
.fe-global-page .fe-global-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 22, 40, 0.55) 70%, rgba(10, 22, 40, 0.92) 100%);
}

.fe-global-topbar {
    background: linear-gradient(165deg, #27418e 0%, #27418e 45%, #27418e 100%);
    color: #fff;
    padding: 44px 0 40px;
}

.fe-global-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.fe-global-branding h1 {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.fe-global-branding .fe-global-en {
    font-weight: 600;
    opacity: 0.95;
}

.fe-global-branding p {
    margin: 0;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.fe-global-branding .fe-global-en-muted {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.fe-global-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 16px;
}

.fe-global-pill {
    background: #fff;
    border-radius: 10px;
    padding: 12px 18px 14px;
    min-width: 168px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

.fe-global-pill-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9aa3ad;
    margin-bottom: 6px;
}

.fe-global-pill-val {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.fe-global-pill--region .fe-global-pill-val {
    padding-right: 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Ccircle cx='12' cy='11' r='3'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E") no-repeat right center;
    background-size: 18px 18px;
}

.fe-global-globe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #fff;
    opacity: 0.9;
    flex-shrink: 0;
}

.fe-global-globe svg {
    width: 40px;
    height: 40px;
}

.fe-global-body {
    background: #fff;
}

.fe-global-body .fe-global-body-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.fe-global-acc {
    border-top: 1px solid #e8eaed;
}

.fe-global-row {
    border-bottom: 1px solid #e8eaed;
    position: relative;
}

.fe-global-row > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 8px 26px 4px;
    color: #333;
    -webkit-tap-highlight-color: transparent;
}

/* 折叠态：大区标题最大、最粗（参照徐工） */
.fe-global-sum-visual {
    font-size: 26px;
    line-height: 1.28;
    color: #333;
    /*font-family: '微软雅黑', Arial, Helvetica, sans-serif, Microsoft Yahei;*/

}

.fe-global-sum-cn {
    font-weight: 800;
}

.fe-global-sum-en {
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.02em;
}

.fe-global-row > summary::-webkit-details-marker {
    display: none;
}

.fe-global-row > summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: -4px;
    align-self: center;
    transition: transform 0.2s ease;
}

/* 展开后：summary 占满一行可点（否则标题被 clip 后只剩箭头能点到） */
.fe-global-row[open] > summary {
    display: block;
    width: 100%;
    position: relative;
    z-index: 3;
    min-height: 48px;
    padding: 14px 48px 14px 4px;
    margin: 0;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.fe-global-row[open] > summary::after {
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%) rotate(225deg);
}

/* 展开后仅视觉隐藏标题，仍保留在 DOM 供读屏；summary 整块区域可再次点击收起 */
.fe-global-row[open] > summary .fe-global-sum-visual {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
}

.fe-global-row-panel {
    padding: 0 4px 12px;
    box-sizing: border-box;
}

/* 展开：左侧大区标题（字号大于国家行） + 右侧国家/URL 列表 */
.fe-global-expand-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px 72px;
    padding: 4px 0 8px 0;
    box-sizing: border-box;
}

.fe-global-region-head {
    flex: 0 0 min(300px, 34%);
    max-width: 400px;
    padding-top: 4px;
}

.fe-global-row[open] .fe-global-region-head {
    cursor: pointer;
}

.fe-global-region-cn {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.22;
    color: #333;
    letter-spacing: 0.02em;
    /*font-family: '微软雅黑', Arial, Helvetica, sans-serif, Microsoft Yahei;*/

}

.fe-global-region-en {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #333;
    margin-top: 10px;
    /*font-family: '微软雅黑', Arial, Helvetica, sans-serif, Microsoft Yahei;*/

}

.fe-global-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
    border-top: 1px solid #e8eaed;
}

.fe-global-subrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 32px;
    padding: 22px 0 22px 8px;
    border-bottom: 1px solid #e8eaed;
    box-sizing: border-box;
}

.fe-global-subrow:last-child {
    border-bottom: 0;
}

/* 国家名：中等、加粗，介于大区标题与 URL 之间 */
.fe-global-subname {
    font-size: 17px;
    line-height: 1.45;
    color: #333;
    font-weight: 400;
    flex: 1 1 auto;
    min-width: 0;
    /*font-family: '微软雅黑', Arial, Helvetica, sans-serif, Microsoft Yahei;*/

}

.fe-global-subname-cn,
.fe-global-subname-en {
    font-weight: 700;
}

.fe-global-subright {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
}

/* URL：更小、常规字重、灰色 */
.fe-global-url {
    font-size: 13px;
    font-weight: 400;
    color: #8c8c8c;
    text-decoration: none;
    word-break: break-all;
    text-align: right;
    line-height: 1.45;
    /*font-family: '微软雅黑', Arial, Helvetica, sans-serif, Microsoft Yahei;*/

}

.fe-global-url:hover {
    color: #d82121;
    text-decoration: underline;
}

.fe-global-go {
    flex-shrink: 0;
    color: #d82121;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    /*font-family: '微软雅黑', Arial, Helvetica, sans-serif, Microsoft Yahei;*/

}

.fe-global-subrow--empty .fe-global-subname {
    font-size: 15px;
    font-weight: 400;
    color: #8c8c8c;
    width: 100%;
}

@media (max-width: 768px) {
    .fe-global-sum-visual {
        font-size: 22px;
    }

    .fe-global-region-cn {
        font-size: 26px;
    }

    .fe-global-region-en {
        font-size: 17px;
    }

    .fe-global-subname {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .fe-global-expand-layout {
        flex-direction: column;
        gap: 8px 0;
    }

    .fe-global-region-head {
        flex: none;
        max-width: none;
        padding-bottom: 8px;
    }

    .fe-global-sublist {
        border-top: 1px solid #e8eaed;
        width: 100%;
    }

    .fe-global-subrow {
        flex-direction: column;
        align-items: stretch;
        padding-left: 0;
    }

    .fe-global-subright {
        justify-content: flex-start;
        max-width: none;
    }

    .fe-global-url {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .fe-global-topbar {
        padding: 32px 0 28px;
    }

    .fe-global-branding h1 {
        font-size: 22px;
    }

    .fe-global-pill {
        min-width: 140px;
        flex: 1 1 auto;
    }

    .fe-global-controls {
        width: 100%;
    }
}
