/* =========================================================
   共创社独立主题 V1.0
   main.css
   2026 最终整合版
   ========================================================= */


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

:root {
    --gc-bg: #080808;
    --gc-bg-soft: #0c0c0c;
    --gc-bg-card: #101010;
    --gc-bg-card-2: #131313;

    --gc-gold: #d4aa5d;
    --gc-gold-light: #efca79;
    --gc-gold-dark: #a77b35;

    --gc-text: #f3f3f3;
    --gc-text-soft: #c8c8c8;
    --gc-text-muted: #858585;

    --gc-border: rgba(212, 170, 93, 0.18);
    --gc-border-soft: rgba(255, 255, 255, 0.07);

    --gc-radius: 8px;

    --gc-container: 1360px;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background:
        radial-gradient(
            circle at 72% 10%,
            rgba(160, 110, 35, 0.055),
            transparent 30%
        ),
        #080808;

    color: var(--gc-text);

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

    font-size: 15px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
}


body,
button,
input,
select,
textarea {
    font-family: inherit;
}


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


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


button {
    cursor: pointer;
}


a,
button {
    transition:
        color .2s ease,
        border-color .2s ease,
        background .2s ease,
        transform .2s ease,
        opacity .2s ease;
}


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

    margin: 0 auto;
}


.gc-home {
    overflow: hidden;
}


.screen-reader-text {
    position: absolute !important;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   02 SVG图标
   ========================================================= */

.gc-svg-icon {
    display: inline-flex;

    width: 23px;
    height: 23px;

    flex: 0 0 auto;

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

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


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

    fill: none;

    stroke: currentColor;

    stroke-width: 1.55;

    stroke-linecap: round;
    stroke-linejoin: round;
}


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

.gc-btn {
    display: inline-flex;

    min-height: 38px;

    padding: 0 17px;

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

    gap: 7px;

    border: 1px solid transparent;
    border-radius: 4px;

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

    line-height: 1;

    white-space: nowrap;
}


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


.gc-btn-gold {
    color: #151109;

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

    background:
        linear-gradient(
            135deg,
            #f1ce81,
            #c9933f
        );

    box-shadow:
        0 7px 25px
        rgba(212, 170, 93, 0.12);
}


.gc-btn-gold:hover {
    background:
        linear-gradient(
            135deg,
            #f7d996,
            #d8a95d
        );

    color: #000;
}


.gc-btn-outline {
    color: #ddd;

    border-color:
        rgba(212, 170, 93, .28);

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


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

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


/* =========================================================
   04 Header
   ========================================================= */

.gc-header {
    position: relative;

    z-index: 1000;

    min-height: 62px;

    border-bottom:
        1px solid
        rgba(212, 170, 93, .14);

    background:
        rgba(7, 7, 7, .98);

    box-shadow:
        0 4px 24px
        rgba(0, 0, 0, .25);
}


.gc-header-inner {
    display: flex;

    min-height: 62px;

    align-items: center;
}


/* Logo */

.gc-logo {
    flex: 0 0 auto;

    margin-right: 32px;
}


.gc-logo-link {
    display: flex;

    align-items: center;

    gap: 10px;
}


.gc-logo-mark {
    display: flex;

    width: 35px;
    height: 35px;

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

    border:
        1px solid
        rgba(212, 170, 93, .75);

    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.15;
}


.gc-logo-text strong {
    color: var(--gc-gold-light);

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

    letter-spacing: 2px;
}


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

    color: #858585;

    font-size: 11px;

    letter-spacing: .3px;
}


/* 导航 */

.gc-nav {
    flex: 1 1 auto;

    min-width: 0;
}


.gc-nav-menu {
    display: flex;

    margin: 0;
    padding: 0;

    align-items: center;

    list-style: none;
}


.gc-nav-menu > li {
    position: relative;
}


.gc-nav-menu > li > a {
    position: relative;

    display: flex;

    min-height: 62px;

    padding: 0 13px;

    align-items: center;

    color: #c7c7c7;

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

    white-space: nowrap;
}


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


.gc-nav-menu > li.current-menu-item > a::after,
.gc-nav-menu > li.current-menu-ancestor > a::after {
    position: absolute;

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

    height: 2px;

    background: var(--gc-gold);

    content: "";
}


/* 二级菜单 */

.gc-nav-menu .sub-menu {
    position: absolute;

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

    width: 185px;

    margin: 0;
    padding: 7px;

    list-style: none;

    opacity: 0;
    visibility: hidden;

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

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

    border-radius: 6px;

    background: #0e0e0e;

    box-shadow:
        0 16px 45px
        rgba(0, 0, 0, .55);

    transition:
        opacity .18s ease,
        visibility .18s ease,
        transform .18s ease;
}


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

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


.gc-nav-menu .sub-menu a {
    display: block;

    padding: 10px 11px;

    border-radius: 4px;

    color: #aaa;

    font-size: 14px;
}


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

    background:
        rgba(212, 170, 93, .07);
}


/* 搜索 */

.gc-header-search {
    flex: 0 0 175px;

    margin-left: 12px;
}


.gc-search-form {
    display: flex;

    width: 100%;
    height: 32px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, .09);

    border-radius: 4px;

    background: #0c0c0c;
}


.gc-search-input {
    min-width: 0;

    flex: 1;

    padding: 0 10px;

    outline: none;

    border: 0;

    color: #ddd;

    background: transparent;

    font-size: 13px;
}


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


.gc-search-button {
    width: 33px;

    padding: 0;

    border: 0;

    color: var(--gc-gold);

    background: transparent;

    font-size: 18px;
}


/* 账号 */

.gc-header-actions {
    display: flex;

    flex: 0 0 auto;

    margin-left: 10px;

    align-items: center;

    gap: 8px;
}


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

    padding: 0 12px;

    font-size: 13px;
}


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


.gc-user-dropdown {
    position: absolute;

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

    width: 150px;

    padding: 6px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(7px);

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

    border-radius: 5px;

    background: #101010;

    box-shadow:
        0 14px 36px
        rgba(0, 0, 0, .45);

    transition: .18s ease;
}


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

    transform: translateY(0);
}


.gc-user-dropdown a {
    display: block;

    padding: 9px;

    border-radius: 3px;

    color: #bbb;

    font-size: 13px;
}


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

    background:
        rgba(212, 170, 93, .06);
}


.gc-user-divider {
    display: block;

    height: 1px;

    margin: 5px 0;

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


/* =========================================================
   05 移动端顶部
   ========================================================= */

.gc-mobile-menu-toggle {
    display: none;

    width: 39px;
    height: 35px;

    padding: 7px;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

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

    border-radius: 4px;

    background: transparent;
}


.gc-mobile-menu-toggle span {
    display: block;

    width: 100%;
    height: 1px;

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


.gc-mobile-navigation {
    display: none;

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

    background: #0a0a0a;
}


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


.gc-mobile-search {
    display: flex;

    padding: 15px 0 10px;
}


.gc-mobile-search input {
    flex: 1;

    height: 38px;

    padding: 0 12px;

    outline: none;

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

    border-radius:
        4px 0 0 4px;

    color: #ddd;

    background: #101010;

    font-size: 14px;
}


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

    border:
        1px solid
        var(--gc-gold);

    border-radius:
        0 4px 4px 0;

    color: #111;

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


.gc-mobile-menu {
    margin: 0;
    padding: 0 0 12px;

    list-style: none;
}


.gc-mobile-menu > li {
    border-bottom:
        1px solid
        rgba(255, 255, 255, .05);
}


.gc-mobile-menu a {
    display: block;

    padding: 12px 4px;

    color: #ccc;

    font-size: 14px;
}


.gc-mobile-menu .sub-menu {
    margin: 0;
    padding: 0 0 7px 16px;

    list-style: none;
}


.gc-mobile-menu .sub-menu a {
    padding: 8px 4px;

    color: #858585;

    font-size: 13px;
}


.gc-mobile-account {
    display: flex;

    padding: 12px 0 18px;

    gap: 10px;
}


.gc-mobile-account a {
    flex: 1;

    padding: 10px;

    text-align: center;

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

    border-radius: 4px;

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


/* =========================================================
   06 HERO
   ========================================================= */

.gc-home-hero {
    position: relative;

    min-height: 310px;

    overflow: hidden;

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

    background:
        radial-gradient(
            circle at 75% 38%,
            rgba(194, 136, 52, .09),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #090909,
            #070707
        );
}


.gc-home-hero::before {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .12;

    background-image:
        linear-gradient(
            rgba(212, 170, 93, .05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(212, 170, 93, .05) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    content: "";
}


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

    z-index: 2;

    display: grid;

    min-height: 310px;

    grid-template-columns:
        55% 45%;

    align-items: center;
}


.gc-home-hero-content {
    padding: 30px 0 28px;
}


.gc-home-title {
    margin: 0;
}


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

    margin-bottom: 6px;

    color: #eee;

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

    line-height: 1.35;

    letter-spacing: .5px;
}


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

    color: #f5f5f5;

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

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

    line-height: 1.22;

    letter-spacing: .5px;
}


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

    font-style: normal;
}


.gc-home-subtitle {
    margin: 11px 0 18px;

    color: #999;

    font-size: 15px;

    letter-spacing: .3px;
}


/* HERO数字 */

.gc-home-number-grid {
    display: flex;

    margin-bottom: 19px;

    gap: 30px;
}


.gc-home-number-item {
    display: flex;

    min-width: 115px;

    align-items: center;

    gap: 10px;
}


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


.gc-home-number-item > div {
    display: flex;

    min-width: 0;

    flex-direction: column;
}


.gc-home-number-item strong {
    color: var(--gc-gold-light);

    font-family:
        Arial,
        "Helvetica Neue",
        "Microsoft YaHei",
        sans-serif;

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

    line-height: 1.08;

    letter-spacing: 0;

    font-style: normal;

    font-variant-numeric:
        tabular-nums;

    font-feature-settings:
        "tnum";

    white-space: nowrap;
}


.gc-home-number-item span:not(.gc-svg-icon) {
    margin-top: 5px;

    color: #777;

    font-size: 11px;

    line-height: 1.35;
}


.gc-home-hero-actions {
    display: flex;

    gap: 10px;
}


.gc-home-hero-actions .gc-btn {
    min-height: 40px;

    padding: 0 18px;

    font-size: 14px;
}


.gc-home-community-line {
    display: flex;

    margin-top: 16px;

    align-items: center;

    gap: 8px;

    color: #777;

    font-size: 12px;
}


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


.gc-home-community-dots i {
    display: block;

    width: 19px;
    height: 19px;

    margin-left: -4px;

    border:
        1px solid
        #292929;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #313131,
            #111
        );
}


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


/* HERO右侧 */

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

    min-height: 310px;
}


.gc-home-hero-glow {
    position: absolute;

    top: 25px;
    left: 60px;

    width: 330px;
    height: 230px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 156, 70, .12),
            transparent 65%
        );

    filter: blur(15px);
}


.gc-home-globe-wrap {
    position: absolute;

    top: 18px;
    right: 80px;

    display: flex;

    width: 260px;
    height: 260px;

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


.gc-home-globe {
    position: relative;

    width: 205px;
    height: 205px;

    border:
        1px solid
        rgba(212, 170, 93, .35);

    border-radius: 50%;

    box-shadow:
        0 0 55px
        rgba(212, 170, 93, .07),
        inset 0 0 45px
        rgba(212, 170, 93, .035);
}


.gc-home-globe::before,
.gc-home-globe::after {
    position: absolute;

    content: "";
}


.gc-home-globe::before {
    top: 20px;
    bottom: 20px;

    left: 50%;

    width: 72px;

    transform: translateX(-50%);

    border-left:
        1px solid
        rgba(212, 170, 93, .26);

    border-right:
        1px solid
        rgba(212, 170, 93, .26);

    border-radius: 50%;
}


.gc-home-globe::after {
    top: 50%;
    left: 12px;
    right: 12px;

    height: 70px;

    transform: translateY(-50%);

    border-top:
        1px solid
        rgba(212, 170, 93, .25);

    border-bottom:
        1px solid
        rgba(212, 170, 93, .25);

    border-radius: 50%;
}


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

    border:
        1px solid
        rgba(212, 170, 93, .18);

    border-radius: 50%;
}


.gc-globe-ring-1 {
    inset: 17px;
}


.gc-globe-ring-2 {
    top: 0;
    bottom: 0;

    left: 50%;

    width: 120px;

    transform: translateX(-50%);
}


.gc-globe-ring-3 {
    top: 50%;
    left: 0;
    right: 0;

    height: 105px;

    transform: translateY(-50%);
}


.gc-globe-orbit-1 {
    inset: -22px;

    transform: rotate(-18deg);
}


.gc-globe-orbit-2 {
    inset: -10px -32px;

    transform: rotate(25deg);
}


.gc-globe-point {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

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

    box-shadow:
        0 0 11px
        rgba(236, 198, 119, .85);
}


.gc-globe-point-1 {
    top: 25%;
    left: 29%;
}


.gc-globe-point-2 {
    top: 38%;
    right: 23%;
}


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


.gc-globe-point-4 {
    bottom: 40%;
    right: 42%;
}


/* HERO登录卡 */

.gc-home-login-card {
    position: absolute;

    right: 0;
    bottom: 26px;

    width: 220px;

    padding: 14px;

    border:
        1px solid
        rgba(212, 170, 93, .24);

    border-radius: 7px;

    background:
        rgba(12, 12, 12, .9);

    box-shadow:
        0 12px 38px
        rgba(0, 0, 0, .35);

    backdrop-filter: blur(8px);
}


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

    align-items: center;

    gap: 10px;
}


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


.gc-home-login-card-head small {
    display: block;

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

    font-size: 10px;

    letter-spacing: 1px;
}


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

    color: #ddd;

    font-size: 13px;
}


.gc-home-login-benefits {
    display: grid;

    margin-top: 10px;

    grid-template-columns:
        1fr 1fr;

    gap: 6px 8px;

    color: #838383;

    font-size: 10px;
}


/* =========================================================
   07 六大入口
   ========================================================= */

.gc-home-shortcuts {
    padding: 11px 0;

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


.gc-home-shortcut-grid {
    display: grid;

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

    gap: 8px;
}


.gc-home-shortcut-item {
    display: flex;

    min-height: 68px;

    padding: 11px 15px;

    align-items: center;

    gap: 11px;

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

    border-radius: 5px;

    background:
        linear-gradient(
            180deg,
            #101010,
            #0c0c0c
        );
}


.gc-home-shortcut-item:hover {
    transform: translateY(-2px);

    border-color:
        rgba(212, 170, 93, .3);
}


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


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

    margin-bottom: 3px;

    color: #ddd;

    font-size: 15px;
}


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

    overflow: hidden;

    color: #777;

    font-size: 12px;

    line-height: 1.4;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   08 创业测评横幅
   ========================================================= */

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


.gc-home-assessment-box {
    position: relative;

    display: grid;

    min-height: 94px;

    padding: 13px 20px;

    grid-template-columns:
        90px 1fr auto;

    align-items: center;

    overflow: hidden;

    border:
        1px solid
        rgba(212, 170, 93, .2);

    border-radius: 7px;

    background:
        linear-gradient(
            100deg,
            #10100e,
            #0b0b0b 62%,
            #0f0d09
        );
}


.gc-home-assessment-box::before {
    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            var(--gc-gold),
            transparent
        );

    content: "";
}


.gc-home-assessment-visual {
    position: relative;

    display: flex;

    width: 64px;
    height: 64px;

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

    border:
        1px solid
        rgba(212, 170, 93, .23);

    border-radius: 50%;
}


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


.gc-assessment-circle {
    position: absolute;

    border:
        1px solid
        rgba(212, 170, 93, .12);

    border-radius: 50%;
}


.gc-assessment-circle-1 {
    inset: 7px;
}


.gc-assessment-circle-2 {
    inset: -6px;
}


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

    color: #e5e5e5;

    font-size: 19px;
}


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

    color: #858585;

    font-size: 13px;
}


.gc-home-assessment-factors {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


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

    align-items: center;

    gap: 4px;

    color: #999;

    font-size: 12px;
}


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


.gc-home-assessment-action {
    padding-left: 20px;
}


/* =========================================================
   09 通用栏目
   ========================================================= */

.gc-home-dashboard,
.gc-home-free-projects {
    padding: 0 0 13px;
}


.gc-home-panel {
    overflow: hidden;

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

    border-radius: 7px;

    background:
        linear-gradient(
            180deg,
            #0e0e0e,
            #0b0b0b
        );

    box-shadow:
        0 10px 26px
        rgba(0, 0, 0, .12);
}


.gc-home-panel-header {
    display: flex;

    min-height: 62px;

    padding: 11px 14px;

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

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


.gc-home-section-en {
    display: block;

    margin-bottom: 2px;

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

    font-family:
        Georgia,
        serif;

    font-size: 11px;

    line-height: 1.3;

    letter-spacing: 1.3px;
}


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

    color: #e6e6e6;

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

    line-height: 1.4;
}


.gc-home-more {
    color: #888;

    font-size: 12px;

    white-space: nowrap;
}


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


.gc-home-empty {
    display: flex;

    min-height: 170px;

    padding: 30px;

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

    color: #747474;

    font-size: 14px;
}


/* =========================================================
   10 三栏
   ========================================================= */

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

    grid-template-columns:
        minmax(0, 49fr)
        minmax(0, 25fr)
        minmax(0, 26fr);

    gap: 10px;

    align-items: stretch;
}


.gc-home-project-panel,
.gc-home-resource-panel,
.gc-home-hot-panel {
    min-width: 0;
}


/* =========================================================
   11 本周值得研究的项目
   4 × 2
   ========================================================= */

.gc-home-project-grid {
    display: grid;

    padding: 10px;

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

    gap: 9px;
}


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

    overflow: hidden;

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

    border-radius: 6px;

    background: #101010;
}


.gc-home-project-card:hover {
    transform: translateY(-2px);

    border-color:
        rgba(212, 170, 93, .28);
}


.gc-home-project-cover {
    position: relative;

    display: block;

    height: 116px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #191919,
            #0c0c0c
        );
}


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

    object-fit: cover;
}


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


.gc-home-project-cover::after {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(0, 0, 0, .62)
        );

    content: "";
}


.gc-home-project-cover-fallback {
    display: flex;

    width: 100%;
    height: 100%;

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

    background:
        radial-gradient(
            circle,
            rgba(212, 170, 93, .1),
            transparent 58%
        );
}


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


.gc-home-project-cover-tag,
.gc-project-free-tag {
    position: absolute;

    z-index: 2;

    top: 7px;

    display: inline-flex;

    min-height: 22px;

    padding: 0 8px;

    align-items: center;

    border-radius: 3px;

    font-size: 11px;
}


.gc-home-project-cover-tag {
    left: 7px;

    color: #ddc083;

    border:
        1px solid
        rgba(212, 170, 93, .3);

    background:
        rgba(8, 8, 8, .8);
}


.gc-project-free-tag {
    right: 7px;

    color: #0b1d14;

    background: #75c699;

    font-weight: 700;
}


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


.gc-home-project-body h3 {
    min-height: 43px;

    margin: 0 0 7px;

    overflow: hidden;

    color: #ddd;

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

    line-height: 1.55;

    display: -webkit-box;

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


.gc-home-project-body h3 a:hover {
    color: var(--gc-gold-light);
}


.gc-home-project-data {
    min-height: 54px;
}


.gc-home-project-data span {
    display: block;

    margin-top: 2px;

    overflow: hidden;

    color: #767676;

    font-size: 11px;

    line-height: 1.55;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.gc-home-project-data strong {
    color: #aaa;

    font-weight: 500;
}


.gc-home-project-analysis {
    display: inline-block;

    margin-top: 7px;

    color: var(--gc-gold);

    font-size: 12px;
}


/* =========================================================
   12 最新项目资源
   ========================================================= */

.gc-home-resource-list {
    padding: 5px 11px 8px;
}


.gc-home-resource-item {
    display: grid;

    min-height: 63px;

    padding: 8px 0;

    grid-template-columns:
        58px minmax(0, 1fr);

    gap: 9px;

    align-items: center;

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


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


.gc-home-resource-thumb {
    display: flex;

    width: 58px;
    height: 44px;

    overflow: hidden;

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

    border:
        1px solid
        rgba(212, 170, 93, .13);

    border-radius: 4px;

    background:
        linear-gradient(
            135deg,
            #171717,
            #0e0e0e
        );
}


.gc-home-resource-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.gc-home-resource-number {
    color: var(--gc-gold-dark);

    font-family:
        Arial,
        sans-serif;

    font-size: 18px;
    font-weight: 700;
}


.gc-home-resource-content {
    min-width: 0;
}


.gc-home-resource-content h3 {
    margin: 0 0 5px;

    overflow: hidden;

    color: #c6c6c6;

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

    line-height: 1.5;

    display: -webkit-box;

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


.gc-home-resource-content h3 a:hover {
    color: var(--gc-gold);
}


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

    justify-content: space-between;

    gap: 7px;

    color: #686868;

    font-size: 11px;
}


/* =========================================================
   13 热门阅读
   ========================================================= */

.gc-home-hot-list {
    padding: 5px 12px 8px;
}


.gc-home-hot-item {
    display: grid;

    min-height: 63px;

    padding: 8px 0;

    grid-template-columns:
        32px minmax(0, 1fr);

    gap: 8px;

    align-items: center;

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


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


.gc-home-hot-number {
    color: #666;

    font-family:
        Arial,
        "Helvetica Neue",
        sans-serif;

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

    line-height: 1;

    font-style: normal;

    font-variant-numeric:
        tabular-nums;
}


.gc-home-hot-item:nth-child(-n+3)
.gc-home-hot-number {
    color: var(--gc-gold);
}


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


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

    overflow: hidden;

    color: #c4c4c4;

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

    line-height: 1.5;

    display: -webkit-box;

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


.gc-home-hot-item h3 a:hover {
    color: var(--gc-gold-light);
}


.gc-home-hot-item small {
    color: #666;

    font-size: 11px;
}


/* =========================================================
   14 本周最新免费项目
   桌面8个一排
   ========================================================= */

.gc-home-free-projects {
    padding-top: 0;
}


.gc-home-free-project-panel {
    overflow: hidden;
}


.gc-home-free-project-grid {
    display: grid;

    padding: 10px;

    grid-template-columns:
        repeat(8, minmax(0, 1fr));

    gap: 8px;
}


.gc-home-free-project-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

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

    border-radius: 6px;

    background: #101010;
}


.gc-home-free-project-card:hover {
    transform: translateY(-2px);

    border-color:
        rgba(212, 170, 93, .3);
}


.gc-home-free-project-cover {
    position: relative;

    display: block;

    height: 105px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #181818,
            #0b0b0b
        );
}


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

    object-fit: cover;
}


.gc-home-free-project-card:hover
.gc-home-free-project-cover img {
    transform: scale(1.04);
}


.gc-home-free-project-cover::after {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0, 0, 0, .45)
        );

    content: "";
}


.gc-home-free-project-placeholder {
    display: flex;

    width: 100%;
    height: 100%;

    flex-direction: column;

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

    gap: 6px;

    color: #686868;

    background:
        radial-gradient(
            circle,
            rgba(212, 170, 93, .09),
            transparent 60%
        );
}


.gc-home-free-project-placeholder
.gc-svg-icon {
    width: 34px;
    height: 34px;
}


.gc-home-free-project-placeholder span {
    font-size: 10px;
}


.gc-home-free-badge {
    position: absolute;

    z-index: 2;

    top: 7px;
    left: 7px;

    display: inline-flex;

    min-height: 22px;

    padding: 0 8px;

    align-items: center;

    border-radius: 3px;

    color: #102419;

    background:
        linear-gradient(
            135deg,
            #8bd2a9,
            #5eaf82
        );

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


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


.gc-home-free-category {
    display: inline-block;

    margin-bottom: 5px;

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

    font-size: 11px;
}


.gc-home-free-project-body h3 {
    min-height: 42px;

    margin: 0 0 6px;

    overflow: hidden;

    color: #d3d3d3;

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

    line-height: 1.5;

    display: -webkit-box;

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


.gc-home-free-project-body h3 a:hover {
    color: var(--gc-gold-light);
}


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

    min-height: 20px;

    margin-bottom: 6px;

    flex-wrap: wrap;

    gap: 5px;
}


.gc-home-free-project-meta span {
    display: inline-flex;

    padding: 2px 5px;

    align-items: center;

    border-radius: 2px;

    color: #777;

    background:
        rgba(255, 255, 255, .04);

    font-size: 10px;
}


.gc-home-free-project-link {
    display: inline-block;

    color: #73bc92;

    font-size: 12px;
}


.gc-home-free-project-link:hover {
    color: #a2dab9;
}


/* =========================================================
   15 旧最新文章兼容
   ========================================================= */

.gc-home-bottom {
    padding-bottom: 13px;
}


.gc-home-latest-grid {
    display: grid;

    padding: 10px;

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

    gap: 9px;
}


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

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

    border-radius: 6px;

    background: #101010;
}


.gc-home-article-cover {
    display: block;

    height: 125px;

    overflow: hidden;
}


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

    object-fit: cover;
}


.gc-home-article-placeholder {
    display: flex;

    width: 100%;
    height: 100%;

    flex-direction: column;

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

    gap: 8px;

    background: #121212;

    color: #6a6a6a;
}


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


.gc-mini-tag {
    color: var(--gc-gold-dark);

    font-size: 11px;
}


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

    font-size: 14px;
    line-height: 1.5;
}


.gc-home-article-meta {
    color: #666;

    font-size: 11px;
}


/* =========================================================
   16 FOOTER
   ========================================================= */

.gc-footer,
.site-footer {
    position: relative;

    width: 100%;

    margin-top: 0;

    border-top:
        1px solid
        rgba(212, 170, 93, .14);

    background: #070707;

    color: #aaa;
}


.gc-footer-main {
    width: 100%;

    padding: 34px 0 24px;
}


.gc-footer-main > .gc-container,
.gc-footer > .gc-container,
.site-footer > .gc-container {
    width: min(
        calc(100% - 40px),
        var(--gc-container)
    );

    margin: 0 auto;
}


.gc-footer-grid {
    display: grid !important;

    width: 100%;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1fr
        1.2fr;

    gap: 38px;

    align-items: start;
}


.gc-footer-brand {
    min-width: 0;
}


.gc-footer-brand h3,
.gc-footer-title,
.gc-footer h4,
.site-footer h4 {
    margin: 0 0 12px;

    color: #e0e0e0;

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


.gc-footer-brand p,
.gc-footer-text,
.gc-footer p,
.site-footer p {
    margin: 0;

    color: #777;

    font-size: 13px;

    line-height: 1.75;
}


.gc-footer-links,
.gc-footer ul,
.site-footer ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.gc-footer-links li,
.gc-footer li,
.site-footer li {
    margin: 0 0 8px;

    padding: 0;

    list-style: none;
}


.gc-footer-links a,
.gc-footer a,
.site-footer a {
    color: #8c8c8c;

    font-size: 13px;

    line-height: 1.6;
}


.gc-footer-links a:hover,
.gc-footer a:hover,
.site-footer a:hover {
    color: var(--gc-gold-light);
}


.gc-footer-bottom {
    padding: 14px 0;

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

    color: #646464;

    font-size: 12px;
}


.gc-footer-bottom-inner {
    display: flex;

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

    gap: 20px;
}


/* 防止页脚列表显示默认圆点 */

.gc-footer ul li::marker,
.site-footer ul li::marker {
    content: "";
}


/* =========================================================
   17 联系我们
   ========================================================= */

.gc-contact-float,
.gc-contact-button {
    position: fixed;

    z-index: 1200;

    right: 22px;
    bottom: 22px;

    display: flex;

    min-width: 90px;
    height: 40px;

    padding: 0 15px;

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

    gap: 6px;

    border:
        1px solid
        rgba(212, 170, 93, .4);

    border-radius: 20px;

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

    background:
        rgba(12, 12, 12, .95);

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, .4);

    font-size: 12px;
}


.gc-contact-modal {
    position: fixed;

    z-index: 2000;

    inset: 0;

    display: none;

    padding: 20px;

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

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

    backdrop-filter: blur(5px);
}


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


.gc-contact-modal-box,
.gc-contact-dialog {
    position: relative;

    width: min(
        460px,
        100%
    );

    padding: 24px;

    border:
        1px solid
        rgba(212, 170, 93, .28);

    border-radius: 8px;

    background: #101010;

    box-shadow:
        0 25px 80px
        rgba(0, 0, 0, .55);
}


.gc-contact-modal-box h3,
.gc-contact-dialog h3 {
    margin: 0 0 7px;

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

    font-size: 19px;
}


.gc-contact-modal-close,
.gc-contact-close {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 30px;
    height: 30px;

    border: 0;

    color: #777;

    background: transparent;

    font-size: 22px;
}


.gc-contact-grid {
    display: grid;

    margin-top: 17px;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;
}


.gc-contact-item {
    padding: 13px;

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

    border-radius: 5px;

    background: #0c0c0c;
}


.gc-contact-item strong {
    display: block;

    margin-bottom: 5px;

    color: #c4c4c4;

    font-size: 13px;
}


.gc-contact-item span,
.gc-contact-item p {
    margin: 0;

    color: #707070;

    font-size: 12px;
}


/* =========================================================
   18 1300以下
   ========================================================= */

@media (max-width: 1300px) {

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


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

        font-size: 14px;
    }


    .gc-header-search {
        flex-basis: 145px;
    }


    .gc-home-number-grid {
        gap: 20px;
    }

}


/* =========================================================
   19 1100以下
   ========================================================= */

@media (max-width: 1100px) {

    .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-inner {
        grid-template-columns:
            58% 42%;
    }


    .gc-home-login-card {
        display: none;
    }


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


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


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


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


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


    .gc-home-free-project-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }


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

}


/* =========================================================
   20 手机端
   ========================================================= */

@media (max-width: 767px) {

    body {
        font-size: 14px;
    }


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


    .gc-logo-text small {
        display: none;
    }


    .gc-home-hero {
        min-height: auto;
    }


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

        min-height: auto;
    }


    .gc-home-hero-content {
        padding: 30px 0 26px;
    }


    .gc-home-hero-visual {
        display: none;
    }


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


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


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


    .gc-home-number-grid {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 16px 10px;
    }


    .gc-home-number-item {
        min-width: 0;
    }


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


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


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

        padding: 10px;
    }


    .gc-home-shortcut-item strong {
        font-size: 14px;
    }


    .gc-home-shortcut-item small {
        font-size: 11px;
    }


    .gc-home-assessment-box {
        grid-template-columns:
            58px 1fr;

        gap: 10px;

        padding: 14px;
    }


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


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

        padding:
            9px 0 0 68px;
    }


    .gc-home-assessment-factors {
        gap: 8px;
    }


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


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


    .gc-home-project-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .gc-home-project-cover {
        height: 110px;
    }


    .gc-home-free-project-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .gc-home-free-project-cover {
        height: 112px;
    }


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

        padding: 10px;
    }


    .gc-home-panel-header h2 {
        font-size: 17px;
    }


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


    .gc-footer-main {
        padding: 28px 0 20px;
    }


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

        gap: 24px 18px;
    }


    .gc-footer-bottom-inner {
        display: block;
    }


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


    .gc-contact-float,
    .gc-contact-button {
        right: 13px;
        bottom: 13px;

        min-width: 76px;
        height: 36px;

        padding: 0 11px;
    }

}


/* =========================================================
   21 小屏手机
   ========================================================= */

@media (max-width: 480px) {

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


    .gc-home-panel-header h2 {
        font-size: 16px;
    }


    .gc-home-project-grid,
    .gc-home-free-project-grid {
        gap: 7px;
    }


    .gc-home-project-body h3,
    .gc-home-free-project-body h3 {
        font-size: 13px;
    }


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

}