/* 全局样式开始 */
html,
body {
    min-width: 900px;
    height: 100%;
    margin: 0;
    padding: 0;
    /* 主字体颜色 */
    --main-font-color-0: #000000;
    --main-font-color-1: #009A29;
    --main-font-color-2: #86909c;
    /* 主背影颜色*/
    --main-bg-color-1: #e5e6eb;
    --main-bg-color-2: #f7f8fa;
    --main-bg-color-3: #fafafa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
    /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}


/* 清除默认样式 */
a {
    color: var(--main-font-color-0);
    text-decoration: none;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button{
    border: none;
}

.page{
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* ✅ 关键！改成 min-height */
}

:root{
    --gray-1:#f9fafb;
    --gray-2:#f3f4f6;
    --gray-3:#e5e7eb;
    --gray-4:#d1d5db;
    --gray-5:#9ca3af;
    --gray-6:#6b7280;
    --gray-7:#4b5563;
    --gray-8:#374151;
    --gray-9:#1f2937;
    --gray-10:#111827;

    /* 主色 */
    --main-100:#96efb5;
    --main-200:#75ce96;
    --main-300:#55ad77;
    /* 以上为黑字，以下为白字 */
    --main-400:#338e5a;
    --main-500:#207f4c;
    --main-600:#005f2e;
    --main-700:#004011;
    --main-800:#002300;
    --main-900:#000e00;
    --main-950:#000200;



}


.pub-color-gray{
    color: var(--gray-6);
}
/* 全局样式结束 */

/* header样式开始 */
.header-box{
    border-bottom: solid 1px var(--main-bg-color-1);
}
.header {
    display: flex;
    align-items: center;
    height: 74px;
}

.header-left {
    margin-right: 20px;
}

.header-logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    height: 74px;
}

.header-logo img {
    height: 32px;
    margin-right: 10px;
}

.header-right {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
}

.header-menu {
    /*margin-left: 260px;*/
    height: 100%;
    flex: 1;
    font-size: 14px;
}

.header-login {
    display: flex;
    justify-content: center;
    padding: 16px;
    height: 100%;
}

.header-login a {
    color: var(--main-font-color-2);
}

.header-right ul {
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
}

.header-right a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 0 8px;
}

.header-right a:hover {
    font-weight: 500;
    color: var(--main-600);
    background-color: var(--gray-1);
}

.h-selected{
    font-weight: 500;
    color: var(--main-600);
    background-color: #ecfdf5;
}

/* header样式结束 */



/* content全局样式开始 */
.content {
    display: flex;
    width: 1100px;
    /*height: 80%;  !* temp *!*/
    margin: 0 auto;
}


.content-right {
    /*width: 365px !important;*/
    width: 30%;
    padding: 0 0.5em;
    margin: 1rem 0;
    border-radius: 8px;
    background-color: var(--main-bg-color-3);
}

/* content全局样式结束 */


/* content-right样式开始 */
.content-left {
    height: 100%;
    width: 70%;
    /*flex: 1;*/
    /*margin: 0 1em;*/
}

.content-r-box {
    margin-top: 10px;
    padding-left: 10px;
}

.content-r-title {
    margin: 15px 0;
    padding-left: 10px;
    font-weight: bold;
    letter-spacing: 2px;
    border-left: var(--main-font-color-1) solid 6px;
}

.content-r-span {
    padding: 5px 10px;
    color: var(--main-font-color-2);
    font-size: 15px;
    line-height: 25px;
}

.content-r-wechat {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.content-r-wechat img {
    width: 200px;
}

.content-r-category {
    margin: 10px 0 10px 15px;
}

.content-r-icon {
    font-size: 13px !important;
}

.content-r-category-name, .content-r-icon, .content-r-index, .content-r-article a {
    color: var(--main-font-color-2);
}

.content-r-category-count {
    color: var(--main-font-color-1);
}

.content-r-article {
    margin-top: 10px;
    font-size: 14px;
}

.content-r-article:hover span, .content-r-article a:hover {
    cursor: pointer;
    color: var(--main-font-color-1);
    filter: brightness(0.9);
}

/* content-right样式结束 */

/* content-left样式开始 */
.content-l-a-title {
    text-align: center;
}

.content-l-a-title h1 {
    font-size: 26px;
}

.content-l-a-describe {
    background-color: var(--main-bg-color-3);
    border-radius: 5px;
    margin-right: 20px;
    padding: 20px;
}

.content-l-a-info, .content-l-a-category {
    font-size: 14px;
}

.content-l-a-author {
    color: var(--main-font-color-1);
    font-weight: bold;
}



.content-l-a-time {
    padding: 0 1em;
    color: var(--main-font-color-2);
}

.content-l-a-c-category{
    display: inline-block;
    margin-top: 1em;
    padding: 0.25em;
    color: var(--main-font-color-2);
}

.content-l-category-name{
    display: inline-block;
    width: 10rem;
    padding-left: 0.5em;
    color: var(--main-font-color-2);
}

.content-l-tag-name{
    margin-right: 1em;
    color: var(--main-font-color-2);
}
/* content-left样式结束 */

/* antd标签样式开始 */
.ant-tag-red {
    color: #cf1322;
    background: #fff1f0;
    border-color: #ffa39e !important;
}

.ant-tag {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /*color: rgba(0, 0, 0, 0.88);*/
    font-size: 12px;
    line-height: 20px;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    display: inline-block;
    height: auto;
    margin-inline-end: 8px;
    padding-inline: 7px;
    white-space: nowrap;
    /*background: rgba(0, 0, 0, 0.02);*/
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    opacity: 1;
    transition: all 0.2s;
    text-align: start;
    position: relative;
}

/* antd标签样式结束 */

/* list.html样式开始 */
.list-article{
    display: flex;
    margin: 1rem;
    border-radius: 8px;
    border: 1px solid var(--main-bg-color-2);
    background-color: var(--main-bg-color-3);
}

.list-article:hover{
    border: 1px solid var(--main-bg-color-1);
}

.list-article-left{
    display: flex;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--main-bg-color-1);
}

.list-article-right{
    flex: 1;
    padding: 1rem 0 1rem 1.2rem;
    line-height: 2rem;
    font-size: 14px;
}

.list-article-title{
    font-size: 1.15rem;
    font-weight: inherit;
}

.list-article-title a{
    display: inline-block;
    width: 100%;
}

.list-article-title a:hover{
    color: var(--main-font-color-1);
}

.list-article-category{
    margin-top: 0.5rem;
}

.list-article-category,.list-article-tag{
    line-height: 1.2rem;
    padding: 0.25em;
    color: var(--main-font-color-2);
}

.list-article-names{
    padding: 0 0.3rem;
}
/* list.html样式结束 */


/*全局页面板心自适合样式开始*/
/* 设置页面容器 */
.container {
    /*width: 100%; !* 默认宽度为100% *!*/
    /*max-width: 1160px; !* 最大宽度为1200px *!*/
    /*margin: 0 auto; !* 水平居中 *!*/
    /*padding: 0 20px; !* 左右内边距 *!*/
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}

/*@media (min-width: 1200px) {*/
/*    .container {*/
/*        width: 1170px;*/
/*    }*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .container {*/
/*        width: 970px;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .container {*/
/*        width: 750px;*/
/*    }*/
/*}*/
/*全局页面板心自适合样式结束*/



/*footer样式开始*/
.footer-bg{
    background-color: var(--gray-8);
    color: white;
}

.footer{
    display: flex;
    padding: 30px 15px;
}

.footer h5{
    font-size: 14px;
    font-weight: 600;
}

.footer-left{
    display: flex;
    width: 30%;
    flex-direction: column;
}

.footer-left a{
    color: white;
}

.footer-right{
    display: flex;
    flex: 1;
    justify-content: center;
}

.footer-right a {
    color: white;
}

.footer-copyright{
    padding-top: 18px;
    padding-bottom: 24px;
    text-align: center;
    color: var(--gray-8);
}
/*footer样式结束*/


/* 升级about页面样式开始 */
.about-page{
    background: linear-gradient(180deg, #eefbf3 0%, #ffffff 18%, #ffffff 100%);
}

.about-hero{
    padding: 56px 0 36px;
}

.about-hero-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.about-hero-copy{
    width: 55%;
    flex-shrink: 0;
}

.about-hero-copy h1{
    margin: 14px 0 18px;
    font-size: 32px;
    line-height: 1.2;
    color: var(--gray-10);
}

.about-hero-copy p{
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-7);
}

.about-btn-group{
    display: flex;
    align-items: center;
    margin-top: 28px;
    gap: 14px;
}

.about-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.feature-btn.about{
    margin-right: 5px;
    background: var(--main-500);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,168,132,0.12);
}

.feature-btn.about:hover{
    background-color: var(--main-600);
}

.feature-btn.about-2{
    background: transparent;
    border: 1px solid #e6eef0;
}

.feature-btn.about-2:hover{
    background: linear-gradient(45deg,var(--main-200), white);
}

.about-panel-card{
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--gray-1) 0%, var(--gray-2) 100%);

    box-shadow: 0 18px 45px rgba(12, 44, 28, 0.18);
}

.about-panel-card h3{
    font-size: 24px;
    margin: 0;
}

.about-panel-card p{
    line-height: 1.5;
    letter-spacing: 1px;
}

.about-panel-list{
    margin-top: 24px;
}

.about-panel-list div{
    position: relative;
    margin-bottom: 12px;
    padding-left: 18px;
    color: var(--gray-8);
}

.about-panel-list div::before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8ce0ad;
}

.about-card-box{
    display: flex;
    gap: 18px;
    margin-top: 8px;
    margin-bottom: 6px;
}

.about-card-head{
    padding-top: 64px;
}

.about-box-bottom-blue,
.about-box-bottom-orange,
.about-box-bottom-red {
    position: relative;
    padding-bottom: 2px;
    overflow: hidden;          /* ← 加这一行，裁剪溢出 */
}

.about-box-bottom-blue::after,.about-box-bottom-orange::after,.about-box-bottom-red::after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;                  /* 初始宽度0 */
    height: 2px;               /* 边框高度 */
    transition: width 0.3s ease-out; /* 宽度过渡动画 */
}

.about-box-bottom-blue::after{
    background-color: #007bff; /* 边框颜色，可自定义 */
}

.about-box-bottom-orange::after{
    background-color: #f59e0b;
 }

.about-box-bottom-red::after{
    background-color: #cc4b4b;
 }

.about-box-bottom-blue:hover::after,.about-box-bottom-orange:hover::after,.about-box-bottom-red:hover::after{
    width: 100%;
}

.about-icon-blue-box:hover{
    background: linear-gradient(180deg, #6366f1 0%, #ffffff 25%, #ffffff 100%);
}

.about-icon-orange-box:hover{
    background: linear-gradient(180deg, #f59e0b 0%, #ffffff 25%, #ffffff 100%);
}

.about-icon-red-box:hover{
    background: linear-gradient(180deg, #cc4b4b 0%, #ffffff 25%, #ffffff 100%);
}

.about-icon-blue{
    border: 1px solid #6366f1;
    background-color: #d6d7f6;
}

.about-icon-orange{
    border: 1px solid #f59e0b;
    background-color: #F6EAD5FF;
}

.about-icon-red{
    border: 1px solid #cc4b4b;
    background-color: #f8dddd;
}
/* 升级about页面样式结束 */
.about-capability,
.about-method,
.about-cta{
    padding: 68px 0 0;
}

.about-section-head{
    max-width: 760px;
    margin-bottom: 30px;
}

.about-section-head h2{
    margin: 14px 0 12px;
    font-size: 34px;
    line-height: 1.3;
    color: var(--gray-10);
}

.about-section-head p{
    margin: 0;
    color: var(--gray-6);
    font-size: 16px;
    line-height: 1.9;
}

.about-capability-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-service-card{
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    border: 1px solid #e6efe9;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.05);
}

.about-service-head{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.about-service-head span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(32, 127, 76, 0.1);
    color: var(--main-500);
    font-size: 13px;
    font-weight: 700;
}

.about-service-head h3{
    margin: 0;
    font-size: 24px;
    color: var(--gray-10);
}

.about-service-card p{
    margin: 0;
    color: var(--gray-6);
    line-height: 1.85;
}

.about-service-list{
    margin-top: 18px;
}

.about-service-list li{
    position: relative;
    margin-bottom: 10px;
    padding-left: 18px;
    color: var(--gray-8);
}

.about-service-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--main-300);
}

.about-fit-box{
    display: flex;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
    padding: 30px 32px;
    border-radius: 24px;
    background: linear-gradient(120deg, #eff8f2 0%, #f8fcfa 100%);
    border: 1px solid #dceee2;
}

.about-fit-copy{
    width: 38%;
}

.about-fit-copy h3{
    margin: 14px 0 12px;
    font-size: 28px;
    line-height: 1.35;
    color: var(--gray-10);
}

.about-fit-copy p{
    margin: 0;
    color: var(--gray-6);
    line-height: 1.85;
}

.about-fit-list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 62%;
}

.about-fit-item{
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #e2ece6;
}

.about-fit-item strong{
    display: block;
    margin-bottom: 10px;
    color: var(--gray-10);
    font-size: 18px;
}

.about-fit-item span{
    color: var(--gray-6);
    line-height: 1.75;
}

.about-method-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-method-card{
    padding: 28px 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e8eeea;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.04);
}

.about-method-card span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(180deg, #e6f5ec 0%, #d8efdf 100%);
    color: var(--main-500);
    font-weight: 700;
}

.about-method-card h3{
    margin: 18px 0 10px;
    font-size: 22px;
    color: var(--gray-10);
}

.about-method-card p{
    margin: 0;
    color: var(--gray-6);
    line-height: 1.85;
}

.about-cta{
    padding-bottom: 72px;
}

.about-cta-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 36px;
    border-radius: 24px;
    background: linear-gradient(120deg, #123a27 0%, #1c5a3a 100%);
    color: #ffffff;
    box-shadow: 0 20px 48px rgba(12, 44, 28, 0.2);
}

.about-cta-copy{
    max-width: 720px;
}

.about-cta-inner h2{
    margin: 14px 0 12px;
    font-size: 34px;
    line-height: 1.3;
    color: #ffffff;
}

.about-cta-inner p{
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
}

.about-cta .wu-tag{
    background: rgba(255, 255, 255, 0.12);
    color: #effaf3;
}

.about-cta-actions{
    display: flex;
    flex-shrink: 0;
    gap: 12px;
}

.about-cta-actions .about-btn.primary{
    background: #ffffff;
    color: var(--main-500);
}

.about-cta-actions .about-btn.primary:hover{
    background: #f2f8f4;
}

.about-cta-actions .about-btn.ghost.dark{
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) {
    .about-capability-grid,
    .about-method-grid{
        grid-template-columns: 1fr;
    }

    .about-fit-box,
    .about-cta-inner{
        flex-direction: column;
        align-items: flex-start;
    }

    .about-fit-copy,
    .about-fit-list{
        width: 100%;
    }

    .about-fit-list{
        grid-template-columns: 1fr;
    }
}
