/* =========================================================
   共创社独立主题 V1.0
   main.css
   视觉基准：已确认首页效果图
   ========================================================= */


/* =========================================================
   01 全局
   ========================================================= */

:root {
    --gc-bg: #060708;
    --gc-bg-2: #0a0b0c;
    --gc-panel: #0d0f10;
    --gc-panel-2: #111315;

    --gc-gold: #e4a928;
    --gc-gold-light: #ffc34b;
    --gc-gold-dark: #9a6d18;

    --gc-text: #f5f3ee;
    --gc-text-2: #d3d0c9;
    --gc-text-3: #96938d;
    --gc-text-4: #686660;

    --gc-line: rgba(228, 169, 40, .22);
    --gc-line-soft: rgba(255, 255, 255, .075);

    --gc-container: 1360px;
    --gc-radius: 7px;

    --gc-transition: .22s ease;
}


* {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background:
        radial-gradient(
            circle at 70% 4%,
            rgba(228, 169, 40, .04),
            transparent 24%
        ),
        var(--gc-bg);

    color: var(--gc-text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "PingFang SC",
        "Microsoft YaHei",
        sans-serif;

    font-size: 14px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


a,
button {
    transition: all var(--gc-transition);
}


img {
    display: block;
    max-width: 100%;
}


ul,
ol {
    margin: 0;
    padding: 0;
}


button,
input {
    font: inherit;
    outline: none;
}


.gc-container {
    width: min(
        calc(100% - 56px),
        var(--gc-container)
    );

    margin: 0 auto;
}


.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}


/* =========================================================
   02 SVG 图标统一样式
   ========================================================= */

.gc-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    color: var(--gc-gold);
}


.gc-svg-icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   03 按钮
   ========================================================= */

.gc-btn {
    min-height: 40px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;
}


.gc-btn-gold {
    border: 1px solid #e8ad33;

    background:
        linear-gradient(
            135deg,
            #f4bd50,
            #d49a2d
        );

    color: #12100a;

    box-shadow:
        0 7px 24px rgba(228, 169, 40, .13);
}


.gc-btn-gold:hover {
    transform: translateY(-1px);

    background:
        linear-gradient(
            135deg,
            #ffcc69,
            #e0a331
        );
}


.gc-btn-outline {
    border: 1px solid rgba(228, 169, 40, .55);

    background: transparent;

    color: #e9e4d9;
}


.gc-btn-outline:hover {
    color: var(--gc-gold-light);

    border-color: var(--gc-gold);
}


/* =========================================================
   04 HEADER
   ========================================================= */

.gc-header {
    height: 62px;

    position: relative;
    z-index: 1000;

    border-bottom: 1px solid rgba(228, 169, 40, .13);

    background: rgba(5, 6, 7, .98);
}


.gc-header-inner {
    height: 62px;

    display: flex;
    align-items: center;
}


/* Logo */

.gc-logo {
    flex: 0 0 auto;

    margin-right: 36px;
}


.gc-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}


.gc-logo-mark {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(228, 169, 40, .55);
    border-radius: 50%;

    color: var(--gc-gold-light);

    font-family: Georgia, serif;
    font-size: 18px;
}


.gc-logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1.08;
}


.gc-logo-text strong {
    color: #f3c653;

    font-family:
        Georgia,
        "Songti SC",
        serif;

    font-size: 19px;
    letter-spacing: 2px;
}


.gc-logo-text small {
    margin-top: 5px;

    color: #aaa59a;

    font-size: 10px;
}


/* =========================================================
   05 导航
   ========================================================= */

.gc-nav {
    height: 100%;

    flex: 1;

    min-width: 0;
}


.gc-nav-menu {
    height: 100%;

    display: flex;
    align-items: stretch;
    justify-content: center;

    list-style: none;
}


.gc-nav-menu > li {
    height: 100%;

    position: relative;

    display: flex;
    align-items: center;
}


.gc-nav-menu > li > a {
    height: 100%;

    padding: 0 15px;

    position: relative;

    display: flex;
    align-items: center;

    color: #d3d0ca;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;
}


.gc-nav-menu > li > a:hover,
.gc-nav-menu > li.current-menu-item > a,
.gc-nav-menu > li.current-menu-parent > a,
.gc-nav-menu > li.current_page_item > a {
    color: var(--gc-gold-light);
}


.gc-nav-menu > li.current-menu-item > a::after,
.gc-nav-menu > li.current_page_item > a::after {
    content: "";

    height: 3px;

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 0;

    background: var(--gc-gold);
}


/* 二级菜单 */

.gc-nav-menu .sub-menu {
    min-width: 190px;

    padding: 7px;

    position: absolute;

    top: calc(100% - 1px);
    left: 50%;

    z-index: 1100;

    transform: translate(-50%, 8px);

    opacity: 0;
    visibility: hidden;

    list-style: none;

    border: 1px solid rgba(228, 169, 40, .24);
    border-radius: 7px;

    background: #0d0e0f;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .55);
}


.gc-nav-menu li:hover > .sub-menu,
.gc-nav-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}


.gc-nav-menu .sub-menu a {
    padding: 10px 13px;

    display: block;

    border-radius: 5px;

    color: #bbb7ae;

    font-size: 13px;
}


.gc-nav-menu .sub-menu a:hover {
    color: var(--gc-gold-light);

    background: rgba(228, 169, 40, .075);
}


/* =========================================================
   06 Header 搜索 / 用户
   ========================================================= */

.gc-header-search {
    width: 150px;

    margin-left: 12px;

    flex: 0 0 auto;
}


.gc-search-form {
    height: 36px;

    display: flex;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;

    background: rgba(255, 255, 255, .02);
}


.gc-search-input {
    width: 100%;
    height: 100%;

    padding: 0 5px 0 14px;

    border: 0;

    background: transparent;

    color: #ddd;

    font-size: 12px;
}


.gc-search-input::placeholder {
    color: #6e6b66;
}


.gc-search-button {
    width: 37px;
    height: 100%;

    flex: 0 0 37px;

    border: 0;

    background: transparent;

    color: #b5b0a6;

    cursor: pointer;

    font-size: 17px;
}


.gc-header-actions {
    margin-left: 10px;

    display: flex;
    align-items: center;
    gap: 8px;
}


.gc-header-actions .gc-btn {
    min-height: 36px;

    padding: 0 15px;

    font-size: 12px;
}


.gc-user-menu {
    position: relative;
}


.gc-menu-arrow {
    font-size: 10px;
}


.gc-user-dropdown {
    width: 150px;

    padding: 7px;

    position: absolute;

    right: 0;
    top: calc(100% + 8px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(7px);

    border: 1px solid rgba(228, 169, 40, .22);
    border-radius: 7px;

    background: #0d0e0f;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .5);
}


.gc-user-menu:hover .gc-user-dropdown,
.gc-user-menu:focus-within .gc-user-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.gc-user-dropdown a {
    padding: 9px 10px;

    display: block;

    color: #aaa59c;

    font-size: 12px;
}


.gc-user-dropdown a:hover {
    color: var(--gc-gold-light);
}


.gc-user-divider {
    height: 1px;

    margin: 5px;

    display: block;

    background: rgba(255, 255, 255, .06);
}


/* =========================================================
   07 手机菜单
   ========================================================= */

.gc-mobile-menu-toggle {
    width: 38px;
    height: 36px;

    margin-left: 10px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 4px;

    border: 1px solid var(--gc-line);
    border-radius: 5px;

    background: transparent;
}


.gc-mobile-menu-toggle span {
    width: 17px;
    height: 1px;

    background: #e0d6c0;
}


.gc-mobile-navigation {
    display: none;

    padding: 14px 0;

    background: #08090a;
}


.gc-mobile-navigation.is-open {
    display: block;
}


.gc-mobile-search {
    display: flex;

    margin-bottom: 10px;
}


.gc-mobile-search input {
    min-height: 40px;

    flex: 1;

    padding: 0 12px;

    border: 1px solid var(--gc-line-soft);

    background: #111;

    color: white;
}


.gc-mobile-search button {
    padding: 0 16px;

    border: 0;

    background: var(--gc-gold);
}


.gc-mobile-menu {
    list-style: none;
}


.gc-mobile-menu > li > a {
    padding: 11px 2px;

    display: block;

    border-bottom: 1px solid var(--gc-line-soft);

    font-size: 14px;
}


.gc-mobile-menu .sub-menu {
    padding-left: 18px;

    list-style: none;
}


.gc-mobile-menu .sub-menu a {
    padding: 7px 2px;

    display: block;

    color: #8f8a81;

    font-size: 12px;
}


.gc-mobile-account {
    margin-top: 12px;

    display: flex;
    gap: 8px;
}


/* =========================================================
   08 首页通用文字层级
   ========================================================= */

.gc-mini-tag,
.gc-home-section-en {
    color: var(--gc-gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}


.gc-home-panel-header h2 {
    margin: 1px 0 0;

    color: #f1ede5;

    font-size: 17px;
    font-weight: 600;
}


.gc-home-more {
    color: #9c978d;

    font-size: 11px;

    white-space: nowrap;
}


.gc-home-more:hover {
    color: var(--gc-gold-light);
}


/* =========================================================
   09 HERO
   ========================================================= */

.gc-home-hero {
    height: 300px;

    position: relative;

    overflow: hidden;

    border-bottom: 1px solid rgba(228, 169, 40, .10);

    background:
        radial-gradient(
            circle at 63% 48%,
            rgba(228, 169, 40, .10),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #07090b,
            #060708
        );
}


.gc-home-hero-inner {
    height: 100%;

    display: grid;
    grid-template-columns: 49% 51%;

    align-items: center;
}


/* Hero 左 */

.gc-home-hero-content {
    position: relative;

    z-index: 4;
}


.gc-home-title {
    margin: 0;

    font-weight: 600;

    line-height: 1.18;
}


.gc-home-title-top {
    display: block;

    color: #f4f2ed;

    font-family:
        Georgia,
        "Songti SC",
        serif;

    font-size: 31px;

    letter-spacing: 1px;
}


.gc-home-title-main {
    margin-top: 2px;

    display: block;

    color: #f4f2ed;

    font-family:
        Georgia,
        "Songti SC",
        serif;

    font-size: 34px;

    letter-spacing: 1px;
}


.gc-home-title-main em {
    color: var(--gc-gold-light);

    font-style: normal;
}


.gc-home-subtitle {
    margin: 9px 0 0;

    color: #d7d2c8;

    font-size: 14px;

    letter-spacing: 1.2px;
}


/* Hero 数字 */

.gc-home-number-grid {
    max-width: 580px;

    margin-top: 15px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}


.gc-home-number-item {
    display: flex;
    align-items: center;

    gap: 9px;
}


.gc-home-number-item .gc-svg-icon {
    width: 27px;
    height: 27px;
}


.gc-home-number-item strong {
    display: block;

    color: var(--gc-gold-light);

    font-size: 18px;
    font-weight: 600;

    line-height: 1.1;
}


.gc-home-number-item span:last-child {
    margin-top: 3px;

    display: block;

    color: #aaa49a;

    font-size: 11px;
}


.gc-home-hero-actions {
    margin-top: 16px;

    display: flex;
    gap: 12px;
}


.gc-home-community-line {
    margin-top: 11px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #aaa59c;

    font-size: 11px;
}


.gc-home-community-dots {
    display: flex;
    align-items: center;
}


.gc-home-community-dots i {
    width: 20px;
    height: 20px;

    margin-left: -4px;

    display: block;

    border: 2px solid #08090a;
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 40% 35%,
            #d6b17a,
            #654936 48%,
            #161616 50%
        );
}


.gc-home-community-dots i:first-child {
    margin-left: 0;
}


/* =========================================================
   10 Hero 右侧地球
   ========================================================= */

.gc-home-hero-visual {
    height: 100%;

    position: relative;
}


.gc-home-hero-glow {
    width: 520px;
    height: 520px;

    position: absolute;

    left: 46%;
    top: 49%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(228, 169, 40, .14),
            transparent 62%
        );
}


.gc-home-globe-wrap {
    width: 520px;
    height: 520px;

    position: absolute;

    top: -87px;
    right: -10px;
}


.gc-home-globe {
    width: 470px;
    height: 470px;

    position: absolute;

    top: 25px;
    left: 25px;

    border: 1px solid rgba(228, 169, 40, .32);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 28% 40%,
            rgba(255, 191, 74, .14),
            rgba(15, 12, 8, .03) 34%,
            transparent 68%
        );

    box-shadow:
        inset 0 0 80px rgba(228, 169, 40, .055),
        0 0 80px rgba(228, 169, 40, .07);
}


.gc-home-globe::before,
.gc-home-globe::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(228, 169, 40, .14);
    border-radius: 50%;
}


.gc-home-globe::before {
    inset: 45px;
}


.gc-home-globe::after {
    inset: 105px;
}


.gc-globe-ring,
.gc-globe-orbit {
    position: absolute;

    border: 1px solid rgba(228, 169, 40, .15);
    border-radius: 50%;
}


.gc-globe-ring-1 {
    width: 92%;
    height: 30%;

    left: 4%;
    top: 35%;
}


.gc-globe-ring-2 {
    width: 53%;
    height: 98%;

    left: 23.5%;
    top: 1%;
}


.gc-globe-ring-3 {
    width: 24%;
    height: 100%;

    left: 38%;
}


.gc-globe-orbit-1 {
    width: 120%;
    height: 44%;

    left: -10%;
    top: 27%;

    transform: rotate(-20deg);
}


.gc-globe-orbit-2 {
    width: 115%;
    height: 72%;

    left: -7%;
    top: 14%;

    transform: rotate(32deg);
}


.gc-globe-point {
    width: 5px;
    height: 5px;

    position: absolute;

    border-radius: 50%;

    background: #ffd46d;

    box-shadow:
        0 0 12px #f9ae28;
}


.gc-globe-point-1 {
    top: 27%;
    left: 36%;
}


.gc-globe-point-2 {
    top: 43%;
    right: 20%;
}


.gc-globe-point-3 {
    bottom: 27%;
    left: 27%;
}


.gc-globe-point-4 {
    bottom: 20%;
    right: 31%;
}


/* 登录权益卡 */

.gc-home-login-card {
    width: 285px;

    padding: 15px 17px;

    position: absolute;

    right: 0;
    top: 42px;

    z-index: 5;

    border: 1px solid rgba(228, 169, 40, .35);
    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            rgba(14, 16, 17, .96),
            rgba(8, 9, 10, .96)
        );
}


.gc-home-login-card-head {
    display: flex;
    align-items: center;

    gap: 10px;
}


.gc-home-login-card-head .gc-svg-icon {
    width: 29px;
    height: 29px;
}


.gc-home-login-card-head small {
    color: var(--gc-gold);

    font-size: 9px;
}


.gc-home-login-card h3 {
    margin: 1px 0 0;

    color: var(--gc-gold-light);

    font-size: 15px;
}


.gc-home-login-benefits {
    margin-top: 10px;

    display: grid;
    gap: 6px;
}


.gc-home-login-benefits div {
    color: #c0bbb1;

    font-size: 11px;
}


/* =========================================================
   11 六大快捷入口
   ========================================================= */

.gc-home-shortcuts {
    background: #0b0d0e;
}


.gc-home-shortcut-grid {
    height: 78px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--gc-radius);
}


.gc-home-shortcut-item {
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border-right: 1px solid rgba(255, 255, 255, .07);
}


.gc-home-shortcut-item:last-child {
    border-right: 0;
}


.gc-home-shortcut-item:hover {
    background: rgba(228, 169, 40, .04);
}


.gc-home-shortcut-item .gc-svg-icon {
    width: 39px;
    height: 39px;
}


.gc-home-shortcut-item strong {
    display: block;

    color: #f1eee7;

    font-size: 15px;
    font-weight: 500;
}


.gc-home-shortcut-item small {
    margin-top: 2px;

    display: block;

    color: #9a958c;

    font-size: 10px;

    white-space: nowrap;
}


/* =========================================================
   12 测评横幅
   ========================================================= */

.gc-home-assessment {
    padding: 10px 0 8px;
}


.gc-home-assessment-box {
    min-height: 98px;

    padding: 0 28px;

    display: grid;
    grid-template-columns:
        86px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 18px;

    border: 1px solid rgba(228, 169, 40, .42);
    border-radius: var(--gc-radius);

    background:
        linear-gradient(
            100deg,
            #0d0f10,
            #0a0c0d
        );
}


.gc-home-assessment-visual {
    width: 70px;
    height: 70px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


.gc-assessment-circle {
    position: absolute;

    border: 1px solid rgba(228, 169, 40, .28);
    border-radius: 50%;
}


.gc-assessment-circle-1 {
    width: 68px;
    height: 68px;
}


.gc-assessment-circle-2 {
    width: 48px;
    height: 48px;
}


.gc-home-assessment-visual .gc-svg-icon {
    width: 32px;
    height: 32px;
}


.gc-home-assessment-content h2 {
    margin: 0;

    color: #f5f2eb;

    font-size: 22px;
    font-weight: 500;
}


.gc-home-assessment-content p {
    margin: 2px 0 5px;

    color: #c3beb4;

    font-size: 12px;
}


.gc-home-assessment-factors {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;
}


.gc-home-assessment-factors span {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #a9a49b;

    font-size: 11px;
}


.gc-home-assessment-factors .gc-svg-icon {
    width: 16px;
    height: 16px;
}


.gc-home-assessment-action .gc-btn {
    min-width: 205px;

    min-height: 42px;
}


/* =========================================================
   13 内容面板
   ========================================================= */

.gc-home-panel {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .095);
    border-radius: var(--gc-radius);

    background:
        linear-gradient(
            180deg,
            #0e1011,
            #0a0c0d
        );
}


.gc-home-panel-header {
    min-height: 48px;

    padding: 8px 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, .065);
}


/* =========================================================
   14 三栏
   ========================================================= */

.gc-home-dashboard-grid {
    display: grid;
    grid-template-columns: 49% 25% 26%;

    gap: 8px;
}


/* =========================================================
   15 项目卡
   ========================================================= */

.gc-home-project-grid {
    padding: 9px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 7px;
}


.gc-home-project-card {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 6px;

    background: #0b0c0d;
}


.gc-home-project-card:hover {
    border-color: rgba(228, 169, 40, .35);

    transform: translateY(-1px);
}


.gc-home-project-cover {
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(228, 169, 40, .10),
            transparent 55%
        ),
        #111315;

    border-bottom: 1px solid rgba(255, 255, 255, .06);
}


.gc-home-project-cover .gc-svg-icon {
    width: 36px;
    height: 36px;
}


.gc-home-project-body {
    padding: 8px;
}


.gc-home-project-body h3 {
    margin: 4px 0 5px;

    line-height: 1.3;
}


.gc-home-project-body h3 a {
    color: #f0ece4;

    font-size: 14px;
    font-weight: 500;
}


.gc-home-project-meta {
    display: flex;

    gap: 7px;
}


.gc-home-project-meta span {
    color: #8d8981;

    font-size: 10px;
}


/* =========================================================
   16 最新项目测评
   ========================================================= */

.gc-home-review-list {
    padding: 1px 11px 5px;
}


.gc-home-review-item {
    min-height: 57px;

    padding: 8px 0;

    display: flex;
    align-items: center;

    gap: 9px;

    border-bottom: 1px solid rgba(255, 255, 255, .055);
}


.gc-home-review-item:last-child {
    border-bottom: 0;
}


.gc-home-review-number {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(228, 169, 40, .25);
    border-radius: 5px;

    color: var(--gc-gold);

    font-size: 11px;
}


.gc-home-review-item strong {
    display: -webkit-box;

    overflow: hidden;

    color: #ddd8ce;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.4;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.gc-home-review-item small {
    margin-top: 2px;

    display: block;

    color: #7d7972;

    font-size: 10px;
}


/* =========================================================
   17 热门阅读
   ========================================================= */

.gc-home-hot-list {
    padding: 1px 11px 5px;
}


.gc-home-hot-item {
    min-height: 37px;

    padding: 6px 0;

    display: flex;
    align-items: center;

    gap: 9px;

    border-bottom: 1px solid rgba(255, 255, 255, .05);
}


.gc-home-hot-item:last-child {
    border-bottom: 0;
}


.gc-home-hot-number {
    width: 25px;

    flex: 0 0 25px;

    color: var(--gc-gold);

    font-size: 11px;
    font-weight: 600;
}


.gc-home-hot-item > div {
    min-width: 0;

    flex: 1;
}


.gc-home-hot-item h3 {
    margin: 0;
}


.gc-home-hot-item h3 a {
    display: block;

    overflow: hidden;

    color: #d0ccc3;

    font-size: 12px;
    font-weight: 400;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.gc-home-hot-item small {
    margin-top: 1px;

    display: block;

    color: #76726b;

    font-size: 9px;
}


/* =========================================================
   18 最新文章整行
   ========================================================= */

.gc-home-bottom {
    padding: 8px 0 10px;
}


.gc-home-latest-full {
    width: 100%;
}


.gc-home-latest-grid {
    padding: 9px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 8px;
}


.gc-home-article-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 6px;

    background: #0b0d0e;
}


.gc-home-article-card:hover {
    border-color: rgba(228, 169, 40, .35);
}


.gc-home-article-cover {
    height: 93px;

    display: block;

    overflow: hidden;
}


.gc-home-article-cover img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .9;

    transition: transform .3s ease;
}


.gc-home-article-card:hover img {
    transform: scale(1.035);
}


.gc-home-article-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    background:
        radial-gradient(
            circle,
            rgba(228, 169, 40, .12),
            transparent 60%
        ),
        #111315;
}


.gc-home-article-placeholder .gc-svg-icon {
    width: 27px;
    height: 27px;
}


.gc-home-article-body {
    padding: 8px 9px 9px;
}


.gc-home-article-body h3 {
    margin: 4px 0 6px;

    line-height: 1.4;
}


.gc-home-article-body h3 a {
    min-height: 38px;

    display: -webkit-box;

    overflow: hidden;

    color: #e2ddd4;

    font-size: 13px;
    font-weight: 500;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.gc-home-article-meta {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #88837b;

    font-size: 10px;
}


/* =========================================================
   19 空状态
   ========================================================= */

.gc-home-empty {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #77736c;

    font-size: 12px;
}


/* =========================================================
   20 FOOTER
   ========================================================= */

.gc-footer {
    padding: 18px 0 9px;

    border-top: 1px solid rgba(228, 169, 40, .10);

    background:
        linear-gradient(
            180deg,
            #0d1012,
            #090a0b
        );
}


.gc-footer-main {
    display: grid;
    grid-template-columns:
        1.6fr
        .8fr
        .8fr
        .8fr
        1fr;

    gap: 32px;
}


.gc-footer-logo {
    display: flex;
    align-items: center;

    gap: 9px;
}


.gc-footer-logo-mark {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(228, 169, 40, .45);
    border-radius: 50%;

    color: var(--gc-gold-light);

    font-size: 16px;
}


.gc-footer-logo strong {
    display: block;

    color: #f1c04f;

    font-size: 15px;
}


.gc-footer-logo small {
    display: block;

    color: #99958c;

    font-size: 9px;
}


.gc-footer-brand p {
    max-width: 320px;

    margin: 8px 0 5px;

    color: #aaa59c;

    font-size: 11px;

    line-height: 1.65;
}


.gc-footer-domain {
    color: var(--gc-gold);

    font-size: 11px;
}


.gc-footer-column h3 {
    margin: 2px 0 8px;

    color: var(--gc-gold);

    font-size: 12px;
}


.gc-footer-column ul {
    list-style: none;
}


.gc-footer-column li {
    margin-bottom: 4px;
}


.gc-footer-column a,
.gc-footer-contact-link {
    padding: 0;

    border: 0;

    background: none;

    color: #a7a299;

    font-size: 10px;

    cursor: pointer;
}


.gc-footer-column a:hover,
.gc-footer-contact-link:hover {
    color: var(--gc-gold-light);
}


.gc-footer-contact-column p {
    margin: 0 0 8px;

    color: #99958d;

    font-size: 10px;
}


.gc-footer-contact-button {
    min-height: 30px;

    padding: 0 12px;

    border: 1px solid var(--gc-line);
    border-radius: 5px;

    background: transparent;

    color: var(--gc-gold);

    font-size: 10px;
}


.gc-footer-bottom {
    margin-top: 13px;
    padding-top: 8px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, .05);

    color: #77736d;

    font-size: 9px;
}


/* =========================================================
   21 联系我们
   ========================================================= */

.gc-contact-floating {
    position: fixed;

    right: 18px;
    bottom: 18px;

    z-index: 1500;
}


.gc-contact-floating-button {
    height: 42px;

    padding: 0 15px;

    display: flex;
    align-items: center;

    gap: 7px;

    border: 1px solid rgba(228, 169, 40, .38);
    border-radius: 22px;

    background: rgba(13, 14, 15, .96);

    color: var(--gc-gold-light);

    cursor: pointer;
}


.gc-contact-floating-text {
    font-size: 11px;
}


.gc-contact-modal {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, .77);

    backdrop-filter: blur(6px);
}


.gc-contact-modal.is-open {
    display: flex;
}


body.gc-contact-modal-open {
    overflow: hidden;
}


.gc-contact-dialog {
    width: min(460px, 100%);

    max-height: calc(100vh - 40px);

    padding: 24px;

    position: relative;

    overflow-y: auto;

    border: 1px solid rgba(228, 169, 40, .27);
    border-radius: 9px;

    background: #101214;
}


.gc-contact-close {
    width: 32px;
    height: 32px;

    position: absolute;

    right: 9px;
    top: 9px;

    border: 0;

    background: transparent;

    color: #999;

    font-size: 20px;
}


.gc-contact-dialog-head h2 {
    margin: 3px 0;

    font-size: 23px;
}


.gc-contact-dialog-head p {
    margin: 0;

    color: #99958d;

    font-size: 11px;
}


.gc-contact-methods {
    margin-top: 16px;

    display: grid;

    gap: 8px;
}


.gc-contact-method {
    min-height: 58px;

    padding: 9px 10px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
}


.gc-contact-method-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gc-line);
    border-radius: 50%;

    color: var(--gc-gold);
}


.gc-contact-method-content strong {
    display: block;

    font-size: 12px;
}


.gc-contact-method-content span {
    display: block;

    color: #89857e;

    font-size: 10px;
}


.gc-contact-qrcode {
    padding: 10px;

    border: 1px solid var(--gc-line);
    border-radius: 6px;
}


.gc-contact-qrcode-placeholder {
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    border: 1px dashed rgba(228, 169, 40, .3);

    color: var(--gc-gold);
}


.gc-contact-note {
    margin-top: 10px;

    padding: 8px 10px;

    border-left: 2px solid var(--gc-gold);

    color: #88847d;

    font-size: 9px;
}


/* =========================================================
   22 1280px
   ========================================================= */

@media (max-width: 1280px) {

    .gc-container {
        width: calc(100% - 36px);
    }


    .gc-logo {
        margin-right: 20px;
    }


    .gc-nav-menu > li > a {
        padding: 0 10px;

        font-size: 13px;
    }


    .gc-header-search {
        width: 130px;
    }


    .gc-home-title-top {
        font-size: 28px;
    }


    .gc-home-title-main {
        font-size: 31px;
    }


    .gc-home-globe-wrap {
        right: -60px;
    }

}


/* =========================================================
   23 平板
   ========================================================= */

@media (max-width: 1050px) {

    .gc-desktop-nav,
    .gc-header-search,
    .gc-header-actions {
        display: none;
    }


    .gc-header-inner {
        justify-content: space-between;
    }


    .gc-mobile-menu-toggle {
        display: flex;
    }


    .gc-home-hero {
        height: auto;

        min-height: 480px;

        padding: 40px 0 30px;
    }


    .gc-home-hero-inner {
        grid-template-columns: 1fr 42%;
    }


    .gc-home-number-grid {
        grid-template-columns: 1fr 1fr;
    }


    .gc-home-shortcut-grid {
        height: auto;

        grid-template-columns: repeat(3, 1fr);
    }


    .gc-home-shortcut-item {
        min-height: 75px;

        border-bottom: 1px solid var(--gc-line-soft);
    }


    .gc-home-assessment-box {
        grid-template-columns: 70px 1fr auto;
    }


    .gc-home-dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }


    .gc-home-project-panel {
        grid-column: 1 / -1;
    }


    .gc-home-latest-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .gc-footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

}


/* =========================================================
   24 手机
   ========================================================= */

@media (max-width: 767px) {

    .gc-container {
        width: calc(100% - 24px);
    }


    .gc-header,
    .gc-header-inner {
        height: 56px;
    }


    .gc-home-hero {
        min-height: 660px;

        padding-top: 30px;
    }


    .gc-home-hero-inner {
        display: block;
    }


    .gc-home-title-top {
        font-size: 27px;
    }


    .gc-home-title-main {
        font-size: 29px;
    }


    .gc-home-subtitle {
        font-size: 12px;
    }


    .gc-home-number-grid {
        margin-top: 16px;
    }


    .gc-home-number-item strong {
        font-size: 16px;
    }


    .gc-home-hero-actions {
        align-items: stretch;
    }


    .gc-home-hero-actions .gc-btn {
        flex: 1;

        padding: 0 10px;
    }


    .gc-home-community-line {
        font-size: 10px;
    }


    .gc-home-hero-visual {
        height: 270px;

        margin-top: 10px;
    }


    .gc-home-globe-wrap {
        width: 310px;
        height: 310px;

        top: -15px;
        right: 50%;

        transform: translateX(50%);
    }


    .gc-home-globe {
        width: 280px;
        height: 280px;

        top: 15px;
        left: 15px;
    }


    .gc-home-login-card {
        width: calc(100% - 10px);

        top: auto;
        right: 5px;
        bottom: 0;
    }


    .gc-home-shortcut-grid {
        grid-template-columns: 1fr 1fr;
    }


    .gc-home-shortcut-item {
        justify-content: flex-start;

        padding: 0 12px;
    }


    .gc-home-assessment-box {
        padding: 15px;

        grid-template-columns: 58px 1fr;
    }


    .gc-home-assessment-action {
        grid-column: 1 / -1;
    }


    .gc-home-assessment-action .gc-btn {
        width: 100%;
    }


    .gc-home-dashboard-grid {
        display: block;
    }


    .gc-home-panel {
        margin-bottom: 8px;
    }


    .gc-home-project-grid {
        grid-template-columns: 1fr 1fr;
    }


    .gc-home-latest-grid {
        grid-template-columns: 1fr 1fr;
    }


    .gc-home-article-cover {
        height: 105px;
    }


    .gc-footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }


    .gc-footer-brand,
    .gc-footer-contact-column {
        grid-column: 1 / -1;
    }


    .gc-footer-bottom {
        flex-direction: column;

        gap: 4px;
    }


    .gc-contact-floating {
        right: 12px;
        bottom: 14px;
    }


    .gc-contact-floating-button {
        width: 42px;

        padding: 0;
    }


    .gc-contact-floating-text {
        display: none;
    }

}