.company-hero {
    position: relative;
    overflow: hidden;
    background: var(--company-green-light);
}

.company-hero-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 520;
    max-height: 560px;
    min-height: 320px;
}

.company-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.company-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.company-hero-slide--placeholder {
    background: linear-gradient(160deg, var(--company-green-light) 0%, #e8f8f0 100%);
}

.company-hero-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.company-hero-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.company-hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.company-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(26, 173, 110, 0.3);
    cursor: pointer;
    padding: 0;
}

.company-hero-dot.is-active {
    background: var(--company-green);
    width: 28px;
    border-radius: 5px;
}

/* 覆盖 frontend/bootstrap 对 img 的 max-width:100%，避免图标撑满一行导致纵向堆叠 */
.company-site .company-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    padding: 32px 24px 48px;

    position: relative;
    z-index: 2;
    width: 100%;
}

.company-site .company-stats .company-stat-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: var(--company-radius);
    box-shadow: var(--company-shadow);
    padding: 20px 24px;
    text-align: left;
}

.company-site .company-stats .company-stat-icon {
    display: block;
    flex: 0 0 56px;
    width: 56px;
    max-width: 56px;
    height: 56px;
    margin: 0;
    object-fit: contain;
}

.company-site .company-stats .company-stat-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.company-site .company-stats .company-stat-number {
    display: block;
    width: 100%;
    font-size: 28px;
    font-weight: 700;
    color: var(--company-text);
    line-height: 1.2;
}

.company-site .company-stats .company-stat-label {
    display: block;
    width: 100%;
    font-size: 14px;
    color: var(--company-text-muted);
    margin-top: 4px;
    line-height: 1.4;
}

.company-section--product .company-section-desc {
    margin: 0;
    color: var(--company-text-muted);
}

.company-product-all-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #999;
    text-decoration: underline;
}

.company-product-all-link:hover {
    color: var(--company-green);
}

.company-product-large {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.company-product-small-wrap {
    position: relative;
}

.company-product-small {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.company-product-small .company-product-card.is-hidden {
    display: none;
}

.company-product-small-progress {
    position: relative;
    width: 160px;
    height: 4px;
    margin: 28px auto 0;
    background: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
}

.company-product-small-progress-bar {
    display: block;
    height: 100%;
    width: 33.333%;
    background: var(--company-green);
    border-radius: 2px;
    transition: width 0.3s ease, margin-left 0.3s ease;
}

.company-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.company-product-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 200px;
    background: #fff;
    border: 1px solid var(--company-border);
    border-radius: var(--company-radius);
    padding: 24px 28px;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.company-product-card:hover {
    border-color: var(--company-green);
    box-shadow: var(--company-shadow);
}

.company-product-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.company-site .company-product-card-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    max-width: 48px;
    object-fit: contain;
    margin: 0;
}

.company-product-card-head h3 {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--company-text);
}

.company-product-card-desc {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--company-text-muted);
}

.company-product-card-foot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.company-product-card-more {
    font-size: 14px;
    font-weight: 500;
    color: var(--company-green);
    line-height: 1;
}

.company-product-card-more-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--company-green);
    position: relative;
}

.company-product-card-more-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    margin-top: -3px;
    margin-left: -4px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
}

.company-product-card--large {
    min-height: 220px;
    padding: 28px 32px;
    background: linear-gradient(180deg, #f0f9f4 0%, #fff 72%);
}

.company-product-card--small {
    min-height: 180px;
    padding: 22px 24px;
}

.company-product-card--small .company-product-card-head h3 {
    font-size: 16px;
}

.company-site .company-product-card--small .company-product-card-icon {
    width: 40px;
    height: 40px;
    max-width: 40px;
}

.company-section--tools .company-section-desc {
    margin: 0;
    color: var(--company-text-muted);
}

.company-tools-visual {
    position: relative;
    width: 100%;
    max-width: 720px;
    height: 720px;
    margin: 0 auto;
}

.company-tools-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 630px;
    height: 630px;
    transform: translate(-50%, -50%);
    background-image: url(/assets/company/images/tool.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.company-tools-tags {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-tool-tag {
    position: absolute;
    z-index: 2;
    box-sizing: border-box;
    width: 148px;
    height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 37px 0;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(26, 173, 110, 0.08);
}

.company-tool-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 40px;
    flex-shrink: 0;
}

.company-site .company-tool-tag-icon img {
    width: 100%;
    height: 100%;
    max-width: 74px;
    object-fit: contain;
    margin: 0;
}

.company-tool-tag-label {
    margin-top: auto;
    margin-bottom: -10px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--company-text);
    white-space: nowrap;
    background: #fff;
    border: 1px solid #c8ebd8;
    border-radius: 999px;
}

.company-tools-tags .company-tool-tag:nth-child(1) {
    left: 75%;
    transform: translateX(-50%);
}

.company-tools-tags .company-tool-tag:nth-child(2) {
    right: -8px;
    top: 75%;
    transform: translateY(-50%);
}

.company-tools-tags .company-tool-tag:nth-child(3) {
    left: 25%;
    bottom: 2%;
    transform: translateX(-50%);
}

.company-tools-tags .company-tool-tag:nth-child(4) {
    left: -8px;
    top: 25%;
    transform: translateY(-50%);
}

.company-section--feedback .company-section-en {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b8b8b8;
}

.company-section--feedback .company-testimonials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.company-testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    min-height: 220px;
    background: #fff;
    border: 1px solid var(--company-border);
    border-radius: var(--company-radius);
    padding: 20px 20px 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.company-testimonial-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.company-site .company-testimonial-avatar {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    max-width: 40px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0;
}

.company-testimonial-tag {
    flex-shrink: 0;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--company-green);
    background: var(--company-green-light);
    border-radius: 999px;
    white-space: nowrap;
}

.company-testimonial-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--company-text);
}

.company-testimonial-content {
    flex: 1;
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: var(--company-text-muted);
}

.company-testimonial-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.company-testimonial-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--company-green);
}

.company-testimonial-link:hover {
    color: var(--company-green-dark);
}

.company-testimonial-link-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--company-green);
    position: relative;
}

.company-testimonial-link-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    margin-top: -3px;
    margin-left: -4px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
}

.company-testimonial-progress {
    position: relative;
    width: 160px;
    height: 4px;
    margin: 32px auto 0;
    background: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
}

.company-testimonial-progress-bar {
    display: block;
    height: 100%;
    width: 25%;
    background: var(--company-green);
    border-radius: 2px;
    transition: width 0.3s ease, margin-left 0.3s ease;
}

.company-testimonial-card.is-hidden {
    display: none;
}

.company-section--news {
    padding-bottom: 80px;
}

.company-section--news .company-section-head {
    margin-bottom: 36px;
}

.company-section--news .company-section-head h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.company-news-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(300px, 1fr);
    gap: 0;
    background: #fff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.company-news-featured {
    display: flex;
    align-items: stretch;
    min-height: 280px;
    color: inherit;
    border-right: 1px solid #f0f0f0;
}

.company-news-featured-media {
    flex: 0 0 280px;
    width: 280px;
}

.company-site .company-news-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-width: none;
    object-fit: contain;
    object-position: center;
    margin: 0;
    padding: 20px;
}

.company-news-featured-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 36px 36px 28px;
    min-width: 0;
}

.company-news-featured-body h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--company-text);
}

.company-news-featured-body p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--company-text-muted);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.company-news-featured-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 24px;
}

.company-news-featured-foot time {
    font-size: 13px;
    color: #999;
}

.company-news-list {
    list-style: none;
    margin: 0;
    padding: 12px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.company-news-list li {
    border-bottom: 1px solid #f0f0f0;
}

.company-news-list li:last-child {
    border-bottom: none;
}

.company-news-list-item {
    display: flex;
    flex-direction: column;
    padding: 22px 0;
    color: inherit;
    transition: color 0.2s;
}

.company-news-list-item:hover {
    color: var(--company-green);
}

.company-news-list-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: inherit;
}

.company-news-list-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.company-news-list-foot time {
    font-size: 13px;
    color: #999;
}

.company-news-arrow {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    position: relative;
}

.company-news-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    margin-top: -4px;
    margin-left: -6px;
    border-top: 2px solid var(--company-green);
    border-right: 2px solid var(--company-green);
    transform: rotate(45deg);
}

.company-news-more-wrap {
    margin-top: 32px;
    text-align: center;
}

.company-news-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 140px;
    padding: 10px 36px;
    font-size: 14px;
    font-weight: 500;
    color: var(--company-green);
    border: 1px solid var(--company-green);
    border-radius: 999px;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

.company-news-more-btn::after {
    content: ">";
    font-size: 14px;
    line-height: 1;
}

.company-news-more-btn:hover {
    color: #fff;
    background: var(--company-green);
}

/* 产品中心列表页 */
.company-product-page {
    background: linear-gradient(180deg, var(--company-green-light) 0%, #fff 72%);

    padding-bottom: 64px;
}

.company-product-hero {
    padding: 56px 24px 40px;
    text-align: center;
}

.company-product-hero-head h1 {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--company-text);
}

.company-product-hero-head p {
    margin: 0 auto 28px;
    max-width: 640px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--company-text-muted);
}

.company-product-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
}

.company-product-search input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--company-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}

.company-product-search button {
    flex-shrink: 0;
    border: none;
    background: var(--company-green);
    color: #fff;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.company-product-search button:hover {
    background: var(--company-green-dark);
}

.company-product-layout {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 32px;
    padding: 40px 24px 0;
    align-items: start;
}

.company-product-sidebar {
    padding: 12px 0;
    background: var(--company-green-light);
    border-radius: var(--company-radius);
}

.company-product-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.company-product-cat {
    position: relative;
    display: block;
    padding: 12px 16px 12px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--company-text);
    background: transparent;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.company-product-cat:hover {
    color: var(--company-green);
    background: rgba(26, 173, 110, 0.08);
}

.company-product-cat.is-active {
    background: var(--company-green-light);
    color: var(--company-green);
}

.company-product-cat.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--company-green);
}

.company-product-cat.is-active:hover {
    color: var(--company-green);
    background: var(--company-green-light);
}

.company-product-card--list {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.company-product-card--list:hover {
    border-color: var(--company-green);
    box-shadow: var(--company-shadow);
    transform: translateY(-2px);
}

.company-product-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
}

.company-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.company-product-btn--outline {
    color: var(--company-green);
    background: #fff;
    border: 1px solid var(--company-green);
}

.company-product-btn--outline:hover {
    color: var(--company-green-dark);
    border-color: var(--company-green-dark);
}

.company-product-btn--primary {
    color: #fff;
    background: var(--company-green);
    border: 1px solid var(--company-green);
}

.company-product-btn--primary:hover {
    color: #fff;
    background: var(--company-green-dark);
    border-color: var(--company-green-dark);
}

.company-float-actions {
    position: fixed;
    right: 24px;
    bottom: 120px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-float-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 10px 12px;
    border: 1px solid var(--company-border);
    border-radius: 8px;
    background: #fff;
    color: var(--company-text);
    font-size: 12px;
    line-height: 1.3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.company-float-action:hover {
    color: var(--company-green);
    border-color: var(--company-green);
}

/* 文章详情 */
.company-article-page {
    min-height: 100vh;
    background-color: var(--company-green-light);
    background-image: linear-gradient(180deg, #dff5eb 0%, var(--company-green-light) 280px);
    padding-bottom: 64px;
}

.company-article-hero {
    padding: 24px 24px 32px;
}

.company-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--company-text-muted);
}

.company-breadcrumb a {
    color: var(--company-text-muted);
    transition: color 0.2s;
}

.company-breadcrumb a:hover {
    color: var(--company-green);
}

.company-breadcrumb-sep {
    color: var(--company-text-muted);
    user-select: none;
}

.company-breadcrumb .is-current {
    color: var(--company-green);
    font-weight: 500;
}

/* 高度仅由正文决定，侧栏绝对定位避免撑高后滑入分页器 */
.company-article-body-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 32px;
}

.company-article-main-col {
    grid-column: 1;
    min-width: 0;
}

.company-article-main-panel {
    background: #fff;
    border-radius: var(--company-radius) var(--company-radius) 0 0;
    overflow: hidden;
}

.company-article-main-panel .company-detail--article,
.company-detail--article.company-article-main {
    background: transparent;
    padding: 0;
}

.company-article-sidebar-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc((100% - 32px) * 2 / 3 + 32px);
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.company-article-pager {
    width: calc((100% - 32px) * 2 / 3);
    max-width: 100%;
    margin-top: 0;
    padding: 24px 24px 80px;
    background: #fff;
    border-top: 1px solid var(--company-border);
    border-radius: 0 0 var(--company-radius) var(--company-radius);
}

.company-detail--article {
    padding-top: 0;
}

.company-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 88px;
    overflow: visible;
    pointer-events: auto;
}

.company-article-sidebar-block {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--company-border);
    border-radius: var(--company-radius);
    box-shadow: var(--company-shadow);
}

.company-article-sidebar-title {
    margin: 0 0 16px;
    padding-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--company-text);
    border-bottom: 1px solid var(--company-border);
}

.company-article-sidebar-product {
    text-align: center;
}

.company-article-sidebar-product-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.company-article-sidebar-product-icon--placeholder {
    background: var(--company-green-light);
}

.company-article-sidebar-product-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--company-text);
}

.company-article-sidebar-product-desc {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--company-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-article-sidebar-product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-article-sidebar-product-actions .company-product-btn {
    width: 100%;
    justify-content: center;
}

.company-article-recommend-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.company-article-recommend-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--company-border);
}

.company-article-recommend-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.company-article-recommend-item:first-child {
    padding-top: 0;
}

.company-article-recommend-rank {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    color: var(--company-text-muted);
    background: #f2f3f5;
    border-radius: 4px;
}

.company-article-recommend-rank.is-top {
    color: #fff;
    background: var(--company-green);
}

.company-article-recommend-link {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--company-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-article-recommend-link:hover {
    color: var(--company-green);
}

.company-article-head {
    margin: 0 0 40px;
    padding: 48px 24px 40px;
    text-align: center;
    background: transparent;
    border-radius: 0;
}

.company-article-title {
    margin: 0 0 24px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--company-text);
}

.company-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--company-text-muted);
}

.company-article-product {
    margin: 0 0 24px;
    padding: 0 24px;
}

.company-article-excerpt {
    margin: 0 0 24px;
    padding: 0 24px;
}

.company-article-excerpt-text {
    margin: 0;
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--company-text);
    background: var(--company-green-light);
    border-left: 4px solid var(--company-green);
    border-radius: 0 var(--company-radius) var(--company-radius) 0;
}

.company-article-product-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #f7f8fa;
    border-radius: var(--company-radius);
    border: 1px solid var(--company-border);
}

.company-article-product-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.company-article-product-icon--placeholder {
    display: block;
    background: var(--company-green-light);
}

.company-article-product-body {
    flex: 1;
    min-width: 0;
}

.company-article-product-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--company-text);
}

.company-article-product-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--company-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-article-product-actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
}

@media (max-width: 900px) {
    .company-article-product-inner {
        flex-wrap: wrap;
    }

    .company-article-product-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .company-article-product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .company-article-product-actions .company-product-btn {
        width: 100%;
        justify-content: center;
    }
}

.company-article-main-panel .company-detail-cover {
    box-sizing: border-box;
    max-width: calc(100% - 48px);
    margin: 0 24px 24px;
}

.company-article-main-panel .company-detail-body {
    background: transparent;
    padding: 0 24px 48px;
    border-radius: 0;
}

.company-article-main-panel .company-detail-body img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1100px) {
    .company-article-body-row {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .company-article-sidebar-wrap {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        height: auto;
        pointer-events: auto;
    }

    .company-article-sidebar {
        position: static;
    }

    .company-article-pager {
        width: 100%;
        margin-top: 0;
        padding-top: 24px;
    }
}

@media (max-width: 768px) {
    .company-article-head {
        padding: 32px 16px 28px;
    }

    .company-article-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .company-article-meta {
        gap: 16px 24px;
        font-size: 13px;
    }
}

/* 帮助中心 */
.company-help-page {
    padding-bottom: 64px;
    background: linear-gradient(180deg, var(--company-green-light) 0%, #fff 48%);
}

.company-help-hero {
    padding: 56px 24px 36px;
    text-align: center;
}

.company-help-hero-head h1 {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--company-text);
}

.company-help-hero-head p {
    margin: 0 auto 28px;
    max-width: 720px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--company-text-muted);
}

.company-help-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 560px;
    margin: 0 auto;
}

.company-help-search input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--company-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}

.company-help-search button {
    flex-shrink: 0;
    border: none;
    background: var(--company-green);
    color: #fff;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.company-help-search button:hover {
    background: var(--company-green-dark);
}

.company-help-body {
    padding: 0 24px;
}

.company-help-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.company-help-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--company-text);
    background: #fff;
    border: 1px solid var(--company-border);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.company-help-tab:hover {
    color: var(--company-green);
    border-color: var(--company-green);
}

.company-help-tab.is-active {
    color: #fff;
    background: var(--company-green);
    border-color: var(--company-green);
}

.company-help-tab.is-active:hover {
    color: #fff;
    background: var(--company-green-dark);
    border-color: var(--company-green-dark);
}

.company-help-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-help-card {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--company-border);
    border-radius: var(--company-radius);
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.company-help-card:hover {
    border-color: var(--company-green);
    box-shadow: var(--company-shadow);
    transform: translateY(-2px);
}

.company-help-card-media {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f0f9f4 0%, #fff 100%);
    overflow: hidden;
}

.company-site .company-help-card-media img {
    width: 100%;
    max-width: 180px;
    height: auto;
    max-height: 140px;
    object-fit: contain;
}

.company-help-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.company-help-card-body h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--company-text);
}

.company-help-card-body p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--company-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-help-card-body time {
    margin-top: 16px;
    font-size: 13px;
    color: var(--company-text-muted);
    text-align: right;
}

@media (max-width: 900px) {
    .company-hero-slides {
        aspect-ratio: 16 / 9;
        min-height: 200px;
    }

    .company-site .company-stats {
        flex-wrap: wrap;
    }

    .company-site .company-stats .company-stat-item {
        flex: 1 1 calc(50% - 8px);
    }

    .company-product-large,
    .company-product-small,
    .company-product-grid {
        grid-template-columns: 1fr;
    }

    .company-product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .company-product-sidebar nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .company-float-actions {
        right: 12px;
        bottom: 80px;
    }

    .company-help-card {
        flex-direction: column;
    }

    .company-help-card-media {
        flex: none;
        width: 100%;
        min-height: 120px;
    }

    .company-help-tabs {
        justify-content: flex-start;
    }

    .company-news-panel {
        grid-template-columns: 1fr;
    }

    .company-news-featured {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        min-height: 0;
    }

    .company-news-featured-media {
        flex: none;
        width: 100%;
        max-width: none;
    }

    .company-site .company-news-featured-media img {
        min-height: 220px;
        padding: 16px;
    }

    .company-news-featured-body {
        padding: 24px 20px 20px;
    }

    .company-news-featured-body h3 {
        font-size: 18px;
    }

    .company-news-list {
        padding: 8px 20px 16px;
    }

    .company-news-list-item {
        padding: 18px 0;
    }

    .company-section--feedback .company-testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-tools-visual {
        height: 400px;
        max-width: 100%;
    }

    .company-tools-center {
        width: 300px;
        height: 300px;
    }

    .company-tool-tag {
        width: 120px;
        height: 120px;
        padding: 24px 28px 0;
    }

    .company-tool-tag-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 28px;
    }

    .company-site .company-tool-tag-icon img {
        max-width: 56px;
    }

    .company-tool-tag-label {
        font-size: 12px;
        padding: 5px 10px;
        margin-bottom: -8px;
    }

    .company-tools-tags .company-tool-tag:nth-child(2) {
        right: 0;
    }

    .company-tools-tags .company-tool-tag:nth-child(4) {
        left: 0;
    }
}

@media (max-width: 560px) {
    .company-section--feedback .company-testimonials {
        grid-template-columns: 1fr;
    }
}
