.elementor-8040 .elementor-element.elementor-element-7c2d509{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8040 .elementor-element.elementor-element-feea09a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8040 .elementor-element.elementor-element-938cefd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8040 .elementor-element.elementor-element-a670bba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8040 .elementor-element.elementor-element-2da7640{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8040 .elementor-element.elementor-element-937712c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b55bef1 *//* =========================================================
   PRODUCT BANNER
   图片原始比例：1600 × 583
========================================================= */

.custom-html-block .demo-wrapper,
.custom-html-block .demo-wrapper * {
    box-sizing: border-box;
}

/* 去掉外层容器上下间距，避免形成黑色缝 */
.custom-html-block .demo-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

/* =========================================================
   Banner 主体：图片贴底铺满，不出现上下黑色缝隙
========================================================= */

.custom-html-block .product-banner-section {
    --banner-aspect-ratio: 1600 / 583;

    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: var(--banner-aspect-ratio);
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #000000;
}

/* 图片铺满整个 Banner，上下不留缝 */
.custom-html-block .banner-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* 左侧渐变遮罩，文字更清楚 */
.custom-html-block .banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.40) 30%,
        rgba(0, 0, 0, 0.18) 58%,
        rgba(0, 0, 0, 0.05) 82%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* 文字内容悬浮在图片上方 */
.custom-html-block .banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 100px;
}

/* =========================================================
   标题：Montserrat Bold 700，首字母大写，白色
========================================================= */

.custom-html-block .banner-title {
    margin: 0 0 24px;
    padding: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.4px;

    color: #ffffff;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.custom-html-block .title-main {
    display: block;
}

/* =========================================================
   正文：Open Sans Regular 400，常规大小写，白色
========================================================= */

.custom-html-block .banner-subtitle {
    margin: 0 0 28px;
    padding: 0;

    font-family: "Open Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;

    color: #ffffff;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   按钮：Montserrat SemiBold 600，橙色实心
========================================================= */

.custom-html-block .banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 47px;
    padding: 0 26px;

    border: 0;
    border-radius: 48px;

    background: #ff7822;
    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(255, 120, 34, 0.3);

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.custom-html-block .banner-btn::after {
    content: "→";

    font-size: 20px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.custom-html-block .banner-btn:hover {
    background: #000000;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.custom-html-block .banner-btn:hover::after {
    transform: translateX(4px);
}

.custom-html-block .banner-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

/* =========================================================
   较小桌面
========================================================= */

@media (min-width: 1025px) and (max-width: 1200px) {
    .custom-html-block .banner-content {
        padding: 0 65px;
    }

    .custom-html-block .banner-title {
        font-size: 44px;
    }

    .custom-html-block .banner-subtitle {
        font-size: 16px;
    }
}

/* =========================================================
   平板和移动端：图片仍置顶铺满，不再出现黑色缝隙
========================================================= */

@media (max-width: 1024px) {
    .custom-html-block .product-banner-section {
        aspect-ratio: auto;
        height: auto;
        background: #000000;
    }

    .custom-html-block .banner-image {
        position: relative;
        height: auto;
    }

    .custom-html-block .banner-overlay {
        display: none;
    }

    .custom-html-block .banner-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        max-width: none;
        padding: 40px 50px;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.18) 100%
        );
    }

    .custom-html-block .banner-title {
        font-size: 40px;
        color: #ffffff;
    }

    .custom-html-block .banner-subtitle {
        font-size: 16px;
        color: #ffffff;
    }
}

/* =========================================================
   手机端
========================================================= */

@media (max-width: 768px) {
    .custom-html-block .banner-content {
        padding: 40px 28px;
    }

    .custom-html-block .banner-title {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .custom-html-block .banner-content {
        padding: 32px 22px;
    }

    .custom-html-block .banner-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .custom-html-block .banner-subtitle {
        font-size: 15px;
        line-height: 1.65;
    }

    .custom-html-block .banner-btn {
        width: 100%;
        padding: 0 18px;
        font-size: 15px;
    }
}

/* ----------------------弹窗样式保留---------------------- */
#kfPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    overflow: hidden;
}

.kf-popup-box {
    background: #ffffff;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    padding: 26px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 95vh;
    overflow: visible;
}

.kf-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    color: #666666;
    line-height: 1;
    margin: 0;
}

.kf-close:hover {
    color: #000000;
}

.kf-popup-title {
    margin: 0 0 16px;
    font-size: 34px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.kf-form .form-group {
    margin-bottom: 11px;
}

.kf-form input[type="text"],
.kf-form input[type="email"],
.kf-form input[type="tel"],
.kf-form textarea {
    width: 100%;
    border: 1px solid #e9edf5;
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 16px;
    outline: none;
    background: #f8f9fc;
    margin: 0;
}

.kf-form textarea {
    min-height: 105px;
    resize: vertical;
}

.kf-upload {
    margin: 6px 0 18px;
}

.kf-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #ff7822;
    color: #000000;
    padding: 13px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    min-height: 50px;
}

.kf-upload-btn:hover {
    background: #ff7822;
    color: #ffffff;
}

.kf-upload input {
    display: none;
}

#filePreview {
    margin-top: 8px;
    font-size: 13px;
}

#filePreview img {
    max-width: 120px;
    border-radius: 6px;
    display: block;
}

.kf-submit {
    width: 100%;
    background: #ff7822;
    color: #ffffff;
    border: none;
    padding: 17px 30px;
    border-radius: 50px;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
}

.kf-submit:hover {
    background: #000000;
}

.form-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .kf-popup-box {
        padding: 22px 19px;
    }
    .kf-popup-title {
        font-size: 28px;
    }
    .kf-form input[type="text"],
    .kf-form input[type="email"],
    .kf-form input[type="tel"],
    .kf-form textarea {
        padding: 14px 17px;
    }
    .kf-form textarea {
        min-height: 90px;
    }
}

@media (max-width: 480px) {
    .kf-popup-title {
        font-size: 24px;
    }
    .kf-submit {
        width: 100%;
        padding: 15px;
        font-size: 19px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-52cce50 */.production-facilities-section {
    background: #ffffff;
    padding: 80px 80px;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}
.production-facilities-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.production-facilities-section .section-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
}
.production-facilities-section .section-desc {
    font-size: 16px;
    color: #222222;
    line-height: 1.65;
    margin-bottom: 40px;
    text-align: left;
}
.production-facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.production-facilities-card {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    overflow: hidden;
}
.production-facilities-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.production-facilities-card .card-title {
    padding: 18px 16px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    text-align: left;
    line-height: 1.4;
}
.production-facilities-card .card-desc {
    padding: 0 16px 20px;
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
    text-align: left;
}

/* 响应式 */
@media (max-width: 1024px) {
    .production-facilities-section {
        padding: 60px 40px;
    }
    .production-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .production-facilities-section {
        padding: 50px 20px;
    }
    .production-facilities-grid {
        grid-template-columns: 1fr;
    }
    .production-facilities-section .section-main-title {
        font-size: 28px;
    }
    .production-facilities-card img {
        height: 200px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3af9b58 */.machine-equipment-section {
    background: #f8f9fa;
    padding: 80px 80px;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}
.machine-equipment-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.machine-equipment-section .section-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
}
.machine-equipment-section .section-desc {
    font-size: 16px;
    color: #222222;
    line-height: 1.65;
    margin-bottom: 40px;
    text-align: left;
}
.machine-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.machine-equipment-card {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    overflow: hidden;
}
.machine-equipment-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.machine-equipment-card .card-title {
    padding: 18px 16px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    text-align: left;
    line-height: 1.4;
}
.machine-equipment-card .card-desc {
    padding: 0 16px 20px;
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
    text-align: left;
}

/* 响应式 */
@media (max-width: 1024px) {
    .machine-equipment-section {
        padding: 60px 40px;
    }
    .machine-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .machine-equipment-section {
        padding: 50px 20px;
    }
    .machine-equipment-grid {
        grid-template-columns: 1fr;
    }
    .machine-equipment-section .section-main-title {
        font-size: 28px;
    }
    .machine-equipment-card img {
        height: 200px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-250f064 */.two-card-section {
    background: #f8f9fa;
    padding: 80px 80px;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}
.two-card-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.two-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.two-card-item {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    overflow: hidden;
}
.two-card-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.two-card-content {
    padding: 28px 24px;
}
.two-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #002040;
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: left;
}
.two-card-content p {
    font-size: 16px;
    color: #222222;
    line-height: 1.65;
    text-align: left;
}

/* 响应式 */
@media (max-width: 1024px) {
    .two-card-section {
        padding: 60px 40px;
    }
    .two-card-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .two-card-section {
        padding: 50px 20px;
    }
    .two-card-item img {
        height: 220px;
    }
    .two-card-content h3 {
        font-size: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0db0d6c *//* =========================================
   FORM + FAQ MODULE
========================================= */
.form-faq-wrap {
    /* 统一品牌橙色 */
    --faq-brand-color: #ff8800;

    background-image: url("https://linjiapower.com/wp-content/uploads/2026/08/s10Bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 0;
}

/* =========================================
   Main Container
========================================= */
.form-faq-container {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 80px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: start;
}

/* =========================================
   Left Side - Heading
========================================= */
.section-head {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;

    margin-bottom: 30px;
}

/* Orange Dot */
.form-faq-wrap .red-dot {
    display: block;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background-color: var(--faq-brand-color) !important;

    flex-shrink: 0;
}

/* =========================================
   Form Card
========================================= */
.form-card {
    background: #ffffff;

    padding: 45px 40px;
}

/* =========================================
   Form Fields
========================================= */
.form-group {
    margin-bottom: 16px;

    display: flex;
    flex-direction: column;

    gap: 6px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;

    color: #222222;
}

.form-group input,
.form-group textarea {
    box-sizing: border-box;

    width: 100%;

    padding: 16px;

    background: #f5f7fa;

    border: none;
    outline: none;

    border-radius: 6px;

    font-size: 15px;
    color: #333333;

    transition:
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;

    box-shadow:
        0 0 0 1px var(--faq-brand-color);
}

/* Textarea */
.form-group textarea {
    min-height: 140px;

    resize: vertical;
}

/* =========================================
   Bottom Bar
========================================= */
.form-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    margin-top: 10px;

    position: relative;
}

/* =========================================
   Upload Button
========================================= */
.form-faq-wrap .upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 16px;

    background: #ffffff !important;

    color: var(--faq-brand-color) !important;

    border:
        1px solid var(--faq-brand-color) !important;

    border-radius: 50px;

    cursor: pointer;

    font-size: 14px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

/* Upload Hover */
.form-faq-wrap .upload-btn:hover {
    background:
        var(--faq-brand-color) !important;

    color: #ffffff !important;

    border-color:
        var(--faq-brand-color) !important;
}

/* Upload SVG */
.form-faq-wrap .upload-btn svg {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    stroke: currentColor !important;
}

/* Hide File Input */
.upload-btn input {
    display: none;
}

/* =========================================
   File Preview
========================================= */
#filePreview {
    position: absolute;

    left: 0;
    bottom: calc(100% + 8px);

    font-size: 13px;

    color: #555555;
}

#filePreview img {
    display: block;

    max-width: 120px;
    max-height: 100px;

    object-fit: cover;

    border-radius: 5px;

    border: 1px solid #eeeeee;
}

#filePreview .file-name {
    background: #ffffff;

    padding: 5px 8px;

    border-radius: 4px;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.08);
}

/* =========================================
   Submit Button
========================================= */
.form-faq-wrap .submit-btn {
    appearance: none;
    -webkit-appearance: none;

    background:
        var(--faq-brand-color) !important;

    color: #ffffff !important;

    border:
        1px solid var(--faq-brand-color) !important;

    padding: 14px 28px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.2s ease;
}

/* Submit Hover */
.form-faq-wrap .submit-btn:hover {
    background: #000000 !important;

    border-color: #000000 !important;
}

/* Submit Active */
.form-faq-wrap .submit-btn:active {
    transform: translateY(1px);
}

/* =========================================
   Right Side - Main Title
========================================= */
.faq-main-title {
    margin: 0 0 40px;

    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;

    color: #000000;
}

/* =========================================
   FAQ List
========================================= */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding: 24px 0;

    border-bottom: 1px solid #cccccc;
}

/* =========================================
   FAQ Header
========================================= */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    cursor: pointer;
}

.faq-question-text {
    margin: 0;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;

    color: #000000;
}

/* =========================================
   FAQ Orange Circle
========================================= */
.form-faq-wrap .faq-circle-btn {
    width: 44px;
    height: 44px;

    min-width: 44px;

    border-radius: 50%;

    border:
        1px solid var(--faq-brand-color) !important;

    color:
        var(--faq-brand-color) !important;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

/* FAQ SVG */
.form-faq-wrap .faq-circle-btn svg {
    width: 16px;
    height: 16px;

    stroke: currentColor !important;

    transition: stroke 0.3s ease;
}

/* Hover */
.form-faq-wrap .faq-header:hover .faq-circle-btn {
    background:
        var(--faq-brand-color) !important;

    color: #ffffff !important;
}

/* Active Rotation */
.form-faq-wrap .faq-item.active .faq-circle-btn {
    transform: rotate(180deg);
}

/* =========================================
   FAQ Answer
========================================= */
.faq-content-wrap {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
}

.faq-item.active .faq-content-wrap {
    max-height: 500px;

    opacity: 1;
}

.faq-answer-text {
    margin: 0;

    padding-top: 16px;

    font-size: 16px;
    line-height: 1.6;

    color: #222222;
}

/* =========================================
   Tablet / Mobile
========================================= */
@media (max-width: 992px) {

    .form-faq-wrap {
        padding: 60px 0;
    }

    .form-faq-container {
        grid-template-columns: 1fr;

        padding: 0 24px;

        gap: 50px;
    }

    .faq-main-title {
        font-size: 28px;

        margin-bottom: 25px;
    }

    .form-card {
        padding: 35px 25px;
    }

}

/* =========================================
   Mobile
========================================= */
@media (max-width: 600px) {

    .form-faq-wrap {
        padding: 45px 0;
    }

    .form-faq-container {
        padding: 0 18px;
    }

    .section-head {
        font-size: 15px;

        margin-bottom: 20px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .form-bottom-bar {
        flex-direction: column;
        align-items: stretch;

        gap: 14px;
    }

    .form-faq-wrap .upload-btn {
        width: 100%;

        box-sizing: border-box;
    }

    .form-faq-wrap .submit-btn {
        width: 100%;
    }

    #filePreview {
        position: static;

        margin-top: 5px;
    }

    .faq-main-title {
        font-size: 26px;
    }

    .faq-item {
        padding: 20px 0;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .form-faq-wrap .faq-circle-btn {
        width: 40px;
        height: 40px;

        min-width: 40px;
    }

}/* End custom CSS */