:root {
    --cnvs-themecolor: #52a0f3;
    --cnvs-themecolor-rgb: 82, 160, 243;

    --cnvs-primary-font: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
    --cnvs-body-font: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
    --cnvs-secondary-font: 'Noto Serif SC', 'Source Han Serif SC', 'SimSun', serif;
}

/* 统一的间距定义 */
.hc-p-1 {
    padding: 1rem;
}

.hc-p-2 {
    padding: 2rem;
}

.hc-ptb-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/*内容都居中*/
.content-center {
    position: absolute;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-transparent {
    background: transparent !important;
}

.border-radius-0 {
    border-radius: 0;
}

.border-red {
    border: 1px solid red;
}

.guanxun {
    font-family: "隶书";
    font-weight: 500!important;
}



/* ==================== 区域标题 ==================== */
.hc-section-header {
    text-align: center;
    padding: 1rem 0 3rem;
    position: relative;
}

.hc-section-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hc-section-header-decorator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hc-decorator-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0e58ad, transparent);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.hc-decorator-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hc-decorator-dot {
    width: 8px;
    height: 8px;
    background: #0e58ad;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.hc-decorator-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #0e58ad;
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s ease-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hc-section-header-content {
    position: relative;
}

.hc-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
}

.hc-section-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3em;
    margin: 1rem 0 0;
    text-transform: uppercase;
    font-weight: 300;
}

.hc-section-header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    color: rgba(14, 88, 173, 0.15);
    pointer-events: none;
}

.hc-section-header-wave svg {
    width: 100%;
    height: 100%;
}

.hc-leaf {
    transition: all 0.4s ease;
    transform-origin: bottom center;
}

.hc-section-header:hover .hc-leaf-left-1 {
    transform: translate(130px, 15px) rotate(-25deg);
}

.hc-section-header:hover .hc-leaf-left-2 {
    transform: translate(100px, 15px) rotate(-10deg);
}

.hc-section-header:hover .hc-leaf-center {
    transform: translate(600px, 15px) scale(1.2);
}

.hc-section-header:hover .hc-leaf-right-1 {
    transform: translate(1070px, 15px) rotate(25deg);
}

.hc-section-header:hover .hc-leaf-right-2 {
    transform: translate(1100px, 15px) rotate(10deg);
}

@media (min-width: 2560px) {

    .content-intent {
        padding-left: 18%;
        padding-right: 18%;
    }
}

/* ==================== 超大屏幕 (≥1920px) ==================== */
@media (min-width: 1920px) {
    .content-intent {
        padding-left: 12%;
        padding-right: 12%;
    }

}

/* ==================== 大屏幕 (1600px - 1919px) ==================== */
@media (min-width: 1600px) and (max-width: 1919px) {

    .content-intent {
        padding-left: 8%;
        padding-right: 8%;
    }

}

/* ==================== ≤991.98px ==================== */
@media (max-width: 991.98px) {
    

}

/* ==================== ≤575.98px ==================== */
@media (max-width: 575.98px) {

    .m-hide {
        display: none!important;
    }

    .m-mt-1 {
        margin-top: 1rem!important;
    }

    .m-col-0{
        padding-left: 0;
        padding-right: 0;
    }
}