/* pre css */
@import './global.css';
/* ========================================== */
/* 产品图片展示组件样式 */
/* ========================================== */

.product-gallery-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* 主图片容器 */
.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f8f9fa;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: zoom-in;
}

.main-image-item.active {
    opacity: 1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* 图片导航按钮 */
.image-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 3;
    pointer-events: none;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* 放大按钮 - 右下角 */
.zoom-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
}

.zoom-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.zoom-btn i {
    font-size: 16px;
}

/* 缩略图容器 */
.thumbnail-container {
    position: relative;
    padding: 15px;
    background: #fff;
}

.thumbnail-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 30px;
}

.thumbnail-wrapper::-webkit-scrollbar {
    display: none;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 缩略图导航按钮 */
.thumbnail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.prev-thumb {
    left: 5px;
}

.next-thumb {
    right: 5px;
}

.thumbnail-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.thumbnail-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}


/* 图片计数器 - 与放大镜按钮对齐的左下角 */
.image-counter {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    z-index: 4;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .product-gallery-container {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .main-image-container {
        height: 300px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .zoom-btn {
        width: 35px;
        height: 35px;
    }

    .zoom-btn i {
        font-size: 14px;
    }

    .image-counter {
        width: 35px;
        height: 35px;
        font-size: 11px;
        bottom: 15px;
        left: 15px;
    }
}

@media screen and (max-width: 480px) {
    .main-image-container {
        height: 250px;
    }

    .thumbnail-item {
        width: 50px;
        height: 50px;
    }

    .thumbnail-wrapper {
        gap: 8px;
    }

    .image-counter {
        width: 30px;
        height: 30px;
        font-size: 10px;
        bottom: 10px;
        left: 10px;
    }
}

/* ========================================== */
/* 放大模态框样式 */
/* ========================================== */

.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.zoom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.zoom-modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    max-height: 800px;
    margin: 5% auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.zoom-modal.active .zoom-modal-content {
    transform: scale(1);
}

.zoom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.zoom-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.zoom-modal-close {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.zoom-modal-close:hover {
    background: #e9ecef;
    color: #333;
}

.zoom-modal-close i {
    font-size: 14px;
}

.zoom-modal-body {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.zoom-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.zoom-modal-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.zoom-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.zoom-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.zoom-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.zoom-nav-btn i {
    font-size: 18px;
}

.zoom-modal-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.zoom-counter {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.zoom-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.zoom-counter-text {
    font-size: 13px;
    color: white;
    font-weight: 500;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .zoom-modal-content {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
    }

    .zoom-modal-header {
        padding: 10px 15px;
    }

    .zoom-modal-title {
        font-size: 14px;
    }

    .zoom-modal-footer {
        padding: 10px 15px;
    }

    .zoom-nav-btn {
        width: 40px;
        height: 40px;
    }

    .zoom-nav-btn i {
        font-size: 16px;
    }

    .zoom-modal-nav {
        padding: 0 15px;
    }

    .zoom-modal-counter {
        bottom: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {
    .zoom-modal-content {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }

    .zoom-modal-header {
        padding: 8px 12px;
    }

    .zoom-modal-title {
        font-size: 13px;
    }

    .zoom-modal-footer {
        padding: 8px 12px;
    }

    .zoom-nav-btn {
        width: 35px;
        height: 35px;
    }

    .zoom-nav-btn i {
        font-size: 14px;
    }

    .zoom-modal-counter {
        bottom: 10px;
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}




#c_grid-116273709439190 .p_gridbox::after {
    content: '';
    clear: left;
    display: block
}

#c_grid-116273709439190>div>.p_gridbox {
    width: 100%;
    overflow: hidden;
    position: static
}

#c_grid-116273709439190>div>.p_gridCell {
    float: left;
    position: static
}

#c_grid-116273709439190>.p_gridbox.signal {
    min-height: inherit
}

#c_grid-116273709439190>.p_gridbox.signal>.p_gridCell {
    min-height: inherit !important
}

#c_grid-116273709439190 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media screen and (max-width:768px) {
    #c_grid-116273709439190>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
        margin-top: 0rem;
        margin-bottom: 0rem;
        clear: left
    }
}

@media screen and (min-width: 769px) {
    #c_grid-116273709439190>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
        margin-top: 0rem;
        margin-bottom: 0rem;
        clear: left
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    #c_grid-116273709439190>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
        width: 99%;
        margin-left: 0.5%;
        margin-right: 0.5%;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        clear: left
    }
}



.custom-switch {
    padding-left: 5rem
}

.custom-switch .custom-control-label::before {
    left: -3rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem
}

.custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px);
    left: calc(-3rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: 0.5rem;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .custom-switch .custom-control-label::after {
        transition: none
    }
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(0.75rem);
    transform: translateX(0.75rem)
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.3)
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 3.2rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color)
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25)
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: var(--primary-color)
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: 1px solid #adb5bd
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50%/50% 50% no-repeat
}

#c_static_001_P_40755-1716449385982 .e_input-121 .p_phoneCode {
    width: 90px;
    margin-right: 10px
}

#c_static_001_P_40755-1716449385982 .e_input-121 {
    margin-bottom: 10px
}

#c_static_001_P_40755-1716449385982 .e_input-121 .s_form-control {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px
}

#c_static_001_P_40755-1716449385982 .e_input-121 .s_input {
    color: rgba(255, 255, 255, 1)
}

#c_static_001_P_40755-1716449385982 .e_richText-122 {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    line-height: 2;
    margin-top: 0px;
    width: auto;
    max-width: none
}

#c_static_001_P_40755-1716449385982 .e_richText-122 a:hover {
    color: rgba(255, 255, 255, 1)
}

@media screen and (max-width:768px) {
    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_level1Box {
        display: flex
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_jtIcon {
        display: none;
        width: auto;
        height: auto;
        max-width: 20px;
        font-size: inherit;
        transition: 0.5s;
        margin: 0
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_level1Item {
        display: none;
        padding: 0
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_level1Item.open {
        display: block
    }

    #c_grid-116273709439190>.p_gridbox>.p_gridCell {
        margin: 0px !important;
        width: 100% !important
    }

    #c_static_001_P_40755-1716449385982 .e_richText-39 {
        text-align: center
    }

    #c_static_001_P_40755-1716449385982 .e_container-67 {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 40px;
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_container-67 .cbox-67-0 {
        padding-right: 0px;
        margin-right: 0px;
        border-right: none
    }

    #c_static_001_P_40755-1716449385982 .e_container-67 .cbox-67-1 {
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_container-67 .cbox-67-2 {
        padding-left: 0px;
        margin-left: 0px;
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_menu1Item,
    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_menu2Item {
        display: flex;
        justify-content: space-between
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_level1Box ul {
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_jtIcon.active {
        transform: rotateZ(90deg)
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 a {
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_menu2Item svg {
        opacity: .5
    }

    #c_static_001_P_40755-1716449385982 .saf-licenseoprov a {
        font-size: 16px
    }

    #c_static_001_P_40755-1716449385982 .e_credible-93 {
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        padding-right: 0px;
        padding-left: 0px;
        padding-top: 0px
    }

    #c_static_001_P_40755-1716449385982 .e_text-99 {
        text-align: left;
        margin-bottom: 10px
    }

    #c_static_001_P_40755-1716449385982 .e_richText-100 {
        text-align: left;
        font-size: 13px;
    }


    #c_static_001_P_40755-1716449385982 .e_image-103 {
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_container-104 .cbox-104-0 {
        flex: 0 0 100%;
        padding-right: 0px
    }

    #c_static_001_P_40755-1716449385982 .e_container-104 {
        padding-bottom: 40px;
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_loop-107 .p_loopitem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 1)
    }

    #c_static_001_P_40755-1716449385982 .e_loop-107 {}

    #c_static_001_P_40755-1716449385982 .e_container-113 .cbox-113-0 {
        padding-right: 0px;
        flex: 0 0 100%
    }

    #c_static_001_P_40755-1716449385982 .e_container-108 {
        flex-direction: row;
        margin-top: 20px
    }

    #c_static_001_P_40755-1716449385982 .e_container-108 .cbox-108-0 {
        align-self: center;
        flex: 0 0 45px
    }

    #c_static_001_P_40755-1716449385982 .e_text-109 {}

    #c_static_001_P_40755-1716449385982 .e_icon-111 {
        width: 30px;
        height: 30px;
        margin-left: 0px;
        margin-right: auto
    }

    #c_static_001_P_40755-1716449385982 .e_container-112 {
        flex-direction: column
    }

    #c_static_001_P_40755-1716449385982 .e_container-113 {}

    #c_static_001_P_40755-1716449385982 .e_container-113 .cbox-113-1 {
        flex: 0 0 100%
    }

    #c_static_001_P_40755-1716449385982 .e_provider-115 a {
        text-align: center
    }

    #c_static_001_P_40755-1716449385982 .e_provider-115 {
        text-align: center;
        font-size: 12px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0px;
        padding-right: 0px
    }

    #c_static_001_P_40755-1716449385982 .e_container-116 {}

    #c_static_001_P_40755-1716449385982 .e_container-116 .cbox-116-0 {
        flex: 0 0 100%
    }

    #c_static_001_P_40755-1716449385982 .e_container-116 .cbox-116-1 {
        flex: 0 0 100%
    }

    #c_static_001_P_40755-1716449385982 .e_cookie-119 .p_btSet,
    #c_static_001_P_40755-1716449385982 .e_cookie-119 .p_btAllow,
    #c_static_001_P_40755-1716449385982 .e_cookie-119 .p_btRefuse,
    #c_static_001_P_40755-1716449385982 .e_cookie-119 .p_btConfirm {
        margin: 5px
    }

    #c_static_001_P_40755-1716449385982 .e_cookie-119 .p_mdMain {
        background: #f3f3f3;
        width: 90%;
        max-width: 1000px;
        padding: 20px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        border-radius: 4px
    }

    #c_static_001_P_40755-1716449385982 .e_cookie-119 .p_close {
        right: 10px;
        top: 10px
    }


    #c_static_001_P_40755-1716449385982 .e_richText-122 {
        text-align: left;
        font-size: 13px;
    }
}

@media screen and (min-width: 769px) {
    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_level1Box {
        display: flex
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_jtIcon {
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_level1Item {
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_bottomNav-72 .p_level1Item.open {
        display: block
    }

    #c_static_001_P_40755-1716449385982 .e_loop-107 .p_loopitem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 2)
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    #c_grid-116273709439190>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
        margin: 0 !important;
        width: 100% !important
    }

    #c_static_001_P_40755-1716449385982 .e_container-67 .cbox-67-2 {
        display: none
    }

    #c_static_001_P_40755-1716449385982 .e_richText-100 {
        font-size: 12px
    }

    #c_static_001_P_40755-1716449385982 .e_richText-122 {
        font-size: 12px
    }
}

#c_popbox-1743060824799 {
    width: 80%;
    max-width: 1000px;
    height: auto;
    position: relative;
    margin: 100px auto 200px auto;
    display: none;
    margin-left: auto;
    margin-right: auto
}

#c_popbox-1743060824799 .pop_wrapper {
    height: inherit;
    position: relative;
    min-height: inherit;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

#c_popbox-1743060824799 .p_container {
    background-color: #fff;
    position: relative;
    z-index: 2;
    min-height: inherit;
    width: inherit;
    height: inherit;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center
}

#c_popbox-1743060824799 .p_background {
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: -100px;
    left: calc(-50vw + 50%);
    min-height: calc(100% + 200px)
}

#c_popbox-1743060824799 .p_background-preview {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0, 0, 0);
    opacity: 0.7
}

#c_popbox-1743060824799 .p_content {
    min-height: inherit;
    width: inherit;
    height: inherit;
    overflow: auto
}

#c_popbox-1743060824799 .p_title {
    padding: 10px;
    overflow: hidden
}

#c_popbox-1743060824799 .p_close {
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 10000;
    text-align: right
}

.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    z-index: 9999;
    margin: -150px auto 0 auto
}

.fixed .p_background {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    bottom: 0;
    left: 0 !important
}

#c_static_334_P_150-17430608493310 {
    background-color: rgba(242, 242, 242, 1);
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    min-height: 0px;
    padding-top: 0px;
    margin-left: auto;
    margin-right: auto;
    max-width: none
}

#c_static_334_P_150-17430608493310 .e_container-27 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: rgba(255, 255, 255, 1);
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: none
}

#c_static_334_P_150-17430608493310 .e_container-27>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_static_334_P_150-17430608493310 .btn:focus {
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%)
}

#c_static_334_P_150-17430608493310 .e_form-82 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    background: transparent;
    max-width: 800px;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px
}

#c_static_334_P_150-17430608493310 .e_form-82 .input-group input {
    height: 48px;
    border-radius: 50px 0 0 50px !important
}

#c_static_334_P_150-17430608493310 .e_form-82>.p_formItem {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_static_334_P_150-17430608493310 .e_form-82 .ptishiCon {
    display: none
}

#c_static_334_P_150-17430608493310 .e_form-82 .cbox-82-1 {
    flex: 0 0 20%
}

#c_static_334_P_150-17430608493310 .e_formBtn-83 {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    width: 100px;
    padding: 8px;
    border_radio: 2;
    radius_radio: 1;
    min-height: 48px;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    background-color: #005e37;
    border-radius: 0 50px 50px 0
}

#c_static_334_P_150-17430608493310 .e_formBtn-83 span {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    outline: 0;
    margin: 0px;
    overflow: hidden
}

#c_static_334_P_150-17430608493310 .e_formBtn-83::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .3s;
    z-index: 0;
    opacity: 0;
    top: 0;
    left: 0px
}

#c_static_334_P_150-17430608493310 .e_formBtn-83:hover::after {
    opacity: 1
}

#c_static_334_P_150-17430608493310 .e_formBtn-83:hover {
    font-size: 14px;
    background-color: rgba(28, 80, 156, 1);
    border-style: solid;
    border-color: rgba(28, 80, 156, 1)
}

#c_static_334_P_150-17430608493310 .e_input-84 .p_phoneCode {
    width: 90px;
    margin-right: 10px
}

#c_static_334_P_150-17430608493310 .e_input-84 {
    min-height: 48px;
    padding-top: 0px;
    padding-bottom: 0px
}

#c_static_334_P_150-17430608493310 .e_container-85 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 94%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px
}

#c_static_334_P_150-17430608493310 .e_container-85>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_static_334_P_150-17430608493310 .e_text-87 {
    line-height: normal;
    text-align: center;
    font-size: 32px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 10px
}

@media screen and (max-width:768px) {
    #c_static_334_P_150-17430608493310 {
        padding-bottom: 20px;
        padding-top: 0px
    }

    #c_static_334_P_150-17430608493310 .e_container-27 {
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 20px;
        width: 94%;
        margin-top: 0px
    }

    #c_static_334_P_150-17430608493310 .e_container-85 {
        margin-bottom: 20px
    }

    #c_static_334_P_150-17430608493310 .e_text-87 {
        font-size: 24px;
        color: #333333;
        line-height: 1.5
    }
}



#c_static_001_P_52503-17426093074930 {
    min-height: 0px;
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 {
    height: 15vw
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .swiper-container {
    height: inherit
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .swiper-wrapper {
    height: inherit
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .swiper-slide {
    height: inherit
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_img {
    width: 100%;
    height: 100%;
    background: #000;
    animation: bannerimg 2s
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: auto
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .custom-bullet {
    background: #ccc
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_info {
    width: 50%;
    position: absolute;
    right: 50%;
    top: calc(56% + 30px);
    z-index: 9;
    display: flex;
    transform: translateX(50%) translateY(-50%);
    align-items: center;
    text-align: center;
    display: none !important
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_info .p_btitle {
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 5px;
    animation: puBanner 2s
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_info .p_summary {
    font-size: 16px;
    text-align: center;
    letter-spacing: 10px;
    animation: puBanner 3s
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_info div {
    width: 100%
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_subtitle {
    line-height: 2;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    font-size: 120px;
    text-transform: uppercase;
    text-align: center;
    margin-top: -155px;
    margin-bottom: 0px;
    animation: puBanner 3s
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .swiper-container-vertical {
    height: 400px
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_video {
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
    margin-right: 0;
    margin-left: auto;
    position: relative
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_video .videoContent {
    width: 100%;
    height: 100%
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_video video {
    width: 100%;
    height: 100%;
    background: #000
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_videoPoster {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_videoPoster::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url('../images/playvideo.png') no-repeat center center
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_videoPoster img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_videoInfo {
    display: none
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_subtitle {
    line-height: 1;
    padding: 0px 0
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_info .p_btitle {
    font-size: 54px;
    text-align: center;
    font-weight: bold
}

#c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_info {
    width: 86%;
    position: absolute;
    right: 50%;
    top: calc(56% + 30px);
    z-index: 9;
    display: flex;
    transform: translateX(50%) translateY(-50%);
    align-items: center;
    text-align: center
}

@keyframes puBanner {
    from {
        transform: translateY(100px);
        opacity: 0
    }

    to {
        transform: translateY(0px);
        opacity: 1
    }
}

@keyframes bannerimg {
    from {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

@keyframes jiantoushang {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media screen and (max-width:768px) {
    #c_static_001_P_52503-17426093074930 .e_bannerA-1 {
        height: auto;
        margin-top: 60px
    }

    #c_static_001_P_52503-17426093074930 .e_bannerA-1 .swiper-slide {
        height: 150px
    }

    #c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_info {
        width: 100%;
        z-index: 9;
        text-align: center;
        top: 50%
    }

    #c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_subtitle {
        display: none
    }

    #c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_summary {
        display: none
    }

    #c_static_001_P_52503-17426093074930 .e_bannerA-1 .p_info .p_btitle {
        font-size: 22px;
        margin-bottom: 0px
    }
}

@media screen and (min-width: 769px) {
    #c_static_001_P_52503-17426093074930 {
        height: 15vw
    }

    #c_static_001_P_52503-17426093074930 .e_bannerA-1 {
        height: 15vw;
        position: fixed;
        top: 0;
        width: 100%;
        left: 0
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {}

@media screen and (max-width: 1400px) and (min-width: 1200px) {}

#c_static_001_P_60969-1731633118243 {
    background-color: rgba(255, 255, 255, 1);
    min-height: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 0px;
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_breadcrumbItem {
    position: relative;
    font-size: 16px;
    color: #999999
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_breadcrumbItem .text-secondary {
    font-size: 16px;
    color: #999999
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .icon {
    width: 12px;
    height: 12px
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_breadcrumbItem:not(:first-child) {
    padding: 0 3px 0 15px
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_breadcrumbItem:not(:first-child)::before {
    content: '>';
    position: absolute;
    left: 3px;
    font-size: 16px;
    color: #999999
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_breadcrumb {
    display: flex;
    justify-content: start;
    font-size: 16px;
    color: #999999;
    width: 94%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_showTitle {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 5px;
    border: 1px solid transparent
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .siblings::after {
    content: '>';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    transform: rotateZ(90deg);
    cursor: pointer;
    color: #ccc
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .siblings.active {
    border: 1px solid #dee2e6
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .siblings.active::after {
    transform: rotateZ(-90deg)
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_slide {
    position: absolute;
    left: 18px;
    min-width: 100%;
    padding: 5px;
    display: none;
    z-index: 999
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_sibling {
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

#c_static_001_P_60969-1731633118243 .e_breadcrumb-1 {
    width: auto;
    height: auto;
    max-height: none;
    font-size: 16px
}

@media screen and (max-width:768px) {
    #c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_breadcrumb {
        width: fit-content;
        display: block;
        min-height: 50px;
        padding: 10px;
        margin: 0
    }

    #c_static_001_P_60969-1731633118243 {
        margin-top: 0px;
        position: inherit;
        margin-bottom: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        display: none
    }

    #c_static_001_P_60969-1731633118243 .e_breadcrumb-1 .p_breadcrumbItem {
        position: relative;
        font-size: 16px;
        color: #999999;
        float: left
    }

    #c_static_001_P_60969-1731633118243 .e_breadcrumb-1 {}
}

@media screen and (min-width: 769px) {}

@media screen and (max-width: 1024px) and (min-width: 769px) {}

#c_product_detail_003_P_240-1731637464442 {
    min-height: 0px;
    background-color: rgba(240, 240, 240, 1);
    padding-top: 30px;
    padding-bottom: 5px;
}

#c_product_detail_003_P_240-1731637464442 .e_container-2 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 96%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 1);
    padding-top: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-right: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: space-between
}

#c_product_detail_003_P_240-1731637464442 .e_container-2>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

.e_container0 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 1);
    padding-top: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px
}

.e_container0>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_container-3 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin-left: auto;
    padding-top: 0px;
    padding-bottom: 30px;
    padding-left: 50px;
    padding-right: 0px;
}

#c_product_detail_003_P_240-1731637464442 .e_container-3>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

.container-fluid {
    position: fixed;
    background: black;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 999;
    display: flex;
    align-items: center
}

.container-fluid .closeBtn {
    width: 35px;
    position: absolute;
    right: 20px;
    top: 20px;
    height: 35px;
    display: block;
    z-index: 999;
    cursor: pointer
}

.container-fluid .closeBtn img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.rotate-icon::before {
    content: "";
    display: block;
    width: 50px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: rotateX(70deg)
}

.rotate-icon::after {
    content: "360°";
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    background-color: transparent
}

#c_product_detail_003_P_240-1731637464442 .e_container-13 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 96%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 1);
    padding-top: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-right: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#c_product_detail_003_P_240-1731637464442 .e_container-13>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_richText-14 {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(68, 68, 68, 1);
    margin-top: 20px;
    font-family: Arial
}

#c_product_detail_003_P_240-1731637464442 .e_richText-14 p {
    margin-bottom: 15px
}

#c_product_detail_003_P_240-1731637464442 .e_text-15 {
    line-height: 3;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
    font-family: Arial
}

#c_product_detail_003_P_240-1731637464442 .e_container-16 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: auto;
    max-width: 200px;
    border-bottom-style: none;
    border-bottom-width: 2px;
    border-bottom-color: var(--primary-color);
    background-color: var(--primary-color);
}

#c_product_detail_003_P_240-1731637464442 .e_container-16>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_container-2 .cbox-2-0 {
    padding-left: 0px;
    padding-right: 0px;
    flex: 0 0 45%
}

#c_product_detail_003_P_240-1731637464442 .e_container-17 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(229, 229, 229, 1);
}

#c_product_detail_003_P_240-1731637464442 .e_container-17>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_container-2 .cbox-2-1 {
    flex: 0 0 55%
}

#c_product_detail_003_P_240-1731637464442 .sp-loading {
    text-align: center;
    max-width: 270px;
    padding: 15px;
    border: 5px solid #eee;
    border-radius: 3px;
    font-size: 12px;
    color: #888
}

#c_product_detail_003_P_240-1731637464442 .sp-wrap {
    display: none;
    line-height: 0px;
    font-size: 0px;
    background: #fff;
    border: none;
    border-radius: 0px;
    position: relative;
    margin: 0px;
    max-width: 800px;
    width: 100%
}

#c_product_detail_003_P_240-1731637464442 .sp-thumbs {
    text-align: left;
    display: inline-block;
    margin-top: 10px
}

#c_product_detail_003_P_240-1731637464442 .sp-thumbs img {
    min-height: 50px;
    min-width: 50px;
    max-width: 50px
}

#c_product_detail_003_P_240-1731637464442 .sp-thumbs a:link,
#c_product_detail_003_P_240-1731637464442 .sp-thumbs a:visited {
    width: 60px;
    height: 60px;
    overflow: hidden;
    opacity: .3;
    display: inline-block;
    border: 1px solid #999;
    margin-right: 10px;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out
}

#c_product_detail_003_P_240-1731637464442 .sp-thumbs a:hover {
    opacity: 1
}

#c_product_detail_003_P_240-1731637464442 .sp-thumbs a:active,
#c_product_detail_003_P_240-1731637464442 .sp-current {
    opacity: 1 !important;
    position: relative
}

#c_product_detail_003_P_240-1731637464442 .sp-large {
    position: relative;
    overflow: hidden;
    top: 0px;
    left: 0px;
    border: 1px solid #ccc
}

#c_product_detail_003_P_240-1731637464442 .sp-large a img {
    max-width: 100%;
    width: 100%;
    height: auto
}

#c_product_detail_003_P_240-1731637464442 .sp-large a {
    display: block
}

#c_product_detail_003_P_240-1731637464442 .sp-zoom {
    position: absolute;
    left: -50%;
    top: -50%;
    cursor: zoom-in;
    display: none
}

#c_product_detail_003_P_240-1731637464442 .e_container-22 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    padding-bottom: 0px;
    margin-bottom: 10px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: rgba(51, 51, 51, 1);
}

#c_product_detail_003_P_240-1731637464442 .e_container-22>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_container-23 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}

#c_product_detail_003_P_240-1731637464442 .e_container-23>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_text-24 {
    line-height: 2.5;
    font-size: 14px;
    color: rgba(136, 136, 136, 1);
    font-weight: normal;
    font-family: Arial
}

#c_product_detail_003_P_240-1731637464442 .e_loop_sub-25 {
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px
}

#c_product_detail_003_P_240-1731637464442 .e_loop_sub-25 .p_loopItem {
    position: relative;
    flex: 0 0 33.3%
}

#c_product_detail_003_P_240-1731637464442 .e_text-26 {
    line-height: 1.5;
    font-size: 14px;
    color: rgba(0, 94, 55, 1);
    font-weight: normal
}

#c_product_detail_003_P_240-1731637464442 .e_container-23 .cbox-23-0 {
    flex: 0 0 auto;
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .e_container-23 .cbox-23-1 {
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .e_container-27 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 5%;
    border-top-style: dashed;
    border-top-width: 1px;
    border-top-color: rgba(221, 221, 221, 1);
    border-bottom-style: dashed;
    border-bottom-width: 1px;
    border-bottom-color: rgba(221, 221, 221, 1);
    margin-top: 0px
}

#c_product_detail_003_P_240-1731637464442 .e_container-27>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_text-30 {
    line-height: 1.5;
    font-size: 18px;
    font-weight: normal;
    font-family: Arial
}

#c_product_detail_003_P_240-1731637464442 .e_container-27 .cbox-27-0 {
    align-self: center;
    margin-right: 5px;
    flex: 0 0 auto
}

#c_product_detail_003_P_240-1731637464442 .e_container-27 .cbox-27-1 {
    align-self: center;
    margin-right: 5px;
    flex: 0 0 auto
}

#c_product_detail_003_P_240-1731637464442 .e_container-27 .cbox-27-2 {
    align-self: center;
    flex: 0 0 auto
}

#c_product_detail_003_P_240-1731637464442 .e_html-33 {
    min-height: 0px
}

#c_product_detail_003_P_240-1731637464442 .e_container-34 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}

#c_product_detail_003_P_240-1731637464442 .e_container-34>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_button-36 {
    display: flex;
    position: relative;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 180px;
    padding: 10px 8px;
    max-height: none;
    height: auto;
    background-color: var(--primary-color);
    border-style: solid;
    border-width: 1px;
    border-color: var(--primary-color);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
    margin-left: 10px;
    margin-right: 10px
}

#c_product_detail_003_P_240-1731637464442 .cp_xj_icon {
    fill: #fff;
    margin-right: 5px
}

#c_product_detail_003_P_240-1731637464442 .e_button-36 span {
    display: block;
    width: auto;
    position: relative;
    z-index: 1;
    font-size: 16px;
    outline: 0;
    font-weight: normal;
    margin: 0px;
    overflow: hidden
}

#c_product_detail_003_P_240-1731637464442 .e_button-36::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    transition: all .3s;
    z-index: 0;
    opacity: 0;
    top: 0;
    left: 0px
}

#c_product_detail_003_P_240-1731637464442 .e_button-36:hover::after {
    opacity: 1
}

#c_product_detail_003_P_240-1731637464442 .e_button-36:hover {
    background-color: var(--primary-color);
    border-style: solid;
    border-color: var(--primary-color);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px
}

#c_product_detail_003_P_240-1731637464442 .e_button-37 {
    display: flex;
    position: relative;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 180px;
    padding: 10px 8px;
    max-height: none;
    height: auto;
    background-color: var(--primary-color);
    border-style: solid;
    border-width: 1px;
    border-color: var(--primary-color);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1)
}

#c_product_detail_003_P_240-1731637464442 .e_button-37 span {
    display: block;
    width: auto;
    position: relative;
    z-index: 1;
    font-size: 16px;
    outline: 0;
    font-weight: normal;
    margin: 0px;
    overflow: hidden
}

#c_product_detail_003_P_240-1731637464442 .e_button-37::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    transition: all .3s;
    z-index: 0;
    opacity: 0;
    top: 0;
    left: 0px
}

#c_product_detail_003_P_240-1731637464442 .e_button-37:hover::after {
    opacity: 1
}

#c_product_detail_003_P_240-1731637464442 .e_button-37:hover {
    background-color: var(--primary-color);
    border-style: solid;
    border-color: var(--primary-color);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px
}

#c_product_detail_003_P_240-1731637464442 .e_container-34 .cbox-34-0 {
    margin-right: 0%;
    flex: 0 0 auto;
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .e_container-34 .cbox-34-1 {
    flex: 0 0 auto;
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .btn:focus {
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%)
}

#c_product_detail_003_P_240-1731637464442 .e_richText-38 {
    font-size: 20px;
    font-family: Arial;
    color: rgba(0, 94, 55, 1)
}









#c_product_detail_003_P_240-1731637464442 .icon {
    font-size: 16px;
    width: 30px;
    height: 30px;
    margin-right: 0px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    margin-top: 0px;
    fill: #fff
}

#c_product_detail_003_P_240-1731637464442 .e_magnifier-69 .magnifier-container .videoPlayerCon {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9
}

#c_product_detail_003_P_240-1731637464442 .e_magnifier-69 .magnifier-container .videoPlayerCon .closeBtn {
    width: 20px;
    height: 20px
}

#c_product_detail_003_P_240-1731637464442 .e_h1-71 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5
}

#c_product_detail_003_P_240-1731637464442 .e_container-76 {
    display: flex;
    border-top-style: dashed;
    border-top-width: 1px;
    border-top-color: rgba(221, 221, 221, 1);
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 10px;
}

#c_product_detail_003_P_240-1731637464442 .e_container-76>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_container-76 .cbox-76-0 {
    flex: 0 0 auto;
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .e_container-76 .cbox-76-1 {
    flex: 0 0 auto;
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .e_container-76 .cbox-76-2 {
    flex: 0 0 auto;
    align-self: center;
    margin-left: 10px
}

#c_product_detail_003_P_240-1731637464442 .e_text-78 {
    line-height: normal;
    font-size: 20px;
    color: rgba(0, 94, 55, 1);
    font-weight: normal;
    font-family: Arial
}

#c_product_detail_003_P_240-1731637464442 .e_text-79 {
    line-height: 1.8;
    font-size: 15px;
    color: rgba(51, 51, 51, 1);
    font-family: "c12aa211-ca45-4d93-a13a-bb4ee55fae42";
    padding-left: 5px
}

#c_product_detail_003_P_240-1731637464442 .e_icon-80 {
    width: 18px;
    height: 18px;
    display: flex;
    color: rgba(51, 51, 51, 1);
    margin-left: 0px
}

#c_product_detail_003_P_240-1731637464442 .e_icon-80 .icon {
    margin: 0;
    width: 100%;
    height: 100%;
    fill: currentColor
}

#c_product_detail_003_P_240-1731637464442 .e_container-34 .cbox-34-2 {
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .e_container-34 .p_item {}

#c_product_detail_003_P_240-1731637464442 .e_container-98 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}

#c_product_detail_003_P_240-1731637464442 .e_container-98>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_detail_003_P_240-1731637464442 .e_container-98 .cbox-98-0 {
    flex: 0 0 auto;
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .e_container-98 .cbox-98-1 {
    align-self: center
}

#c_product_detail_003_P_240-1731637464442 .e_loop_sub-99 {
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px
}

#c_product_detail_003_P_240-1731637464442 .e_loop_sub-99 .p_loopItem {
    position: relative;
    flex: 0 0 33.3%
}

#c_product_detail_003_P_240-1731637464442 .e_text-100 {
    line-height: 1.5;
    font-size: 14px;
    color: rgba(0, 94, 55, 1);
    font-weight: normal
}

#c_product_detail_003_P_240-1731637464442 .e_text-101 {
    line-height: 2.5;
    font-size: 14px;
    color: rgba(136, 136, 136, 1);
    font-weight: normal;
    font-family: Arial
}

#c_product_detail_003_P_240-1731637464442 .e_richText-102 blockquote {
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    padding: 2px 0;
    border-style: solid;
    border-color: #ccc;
    border-width: 0;
    padding-left: 20px;
    padding-right: 8px;
    border-left-width: 5px
}

#c_product_detail_003_P_240-1731637464442 .e_richText-102 ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px
}

#c_product_detail_003_P_240-1731637464442 .e_richText-102 li {
    display: list-item;
    text-align: -webkit-match-parent;
    list-style: inherit
}

#c_product_detail_003_P_240-1731637464442 .e_richText-102 ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px
}

#c_product_detail_003_P_240-1731637464442 .e_richText-102 {
    font-size: 16px;
    color: #333333;
    line-height: 1.3;
    font-weight: bold;
    white-space: pre-line;
    margin-bottom: 20px;
    margin-top: -15px;
    padding-top: 0px
}

@media screen and (max-width:768px) {
    #c_product_detail_003_P_240-1731637464442 .e_loop_sub-25 .p_loopItem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 1)
    }

    #c_product_detail_003_P_240-1731637464442 .e_loop_sub-99 .p_loopItem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 2)
    }

    #c_product_detail_003_P_240-1731637464442 .e_container-34 .cbox-34-1 {
        flex: 0 0 100%;
        width: 100%;
        margin-top: 20px;
        align-self: center
    }

    #c_product_detail_003_P_240-1731637464442 .e_container-34 .cbox-34-0 {
        flex: 0 0 auto;
        width: 100%;
        margin-right: 0%
    }

    #c_product_detail_003_P_240-1731637464442 .e_container-2 {
        flex-direction: column;
        padding-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 96%
    }

    #c_product_detail_003_P_240-1731637464442 .e_container-3 {
        padding-left: 0px;
        padding-bottom: 0px;
        margin-bottom: 0px
    }

    #c_product_detail_003_P_240-1731637464442 .e_container-13 {
        padding-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px
    }

    #c_product_detail_003_P_240-1731637464442 {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    #c_product_detail_003_P_240-1731637464442 .sp-thumbs a:link,
    #c_product_detail_003_P_240-1731637464442 .sp-thumbs a:visited {
        width: 50px;
        height: 50px;
        margin-right: 5px
    }

    #c_product_detail_003_P_240-1731637464442 .e_container-22 {
        margin-top: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        padding-top: 0px;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-bottom-color: rgba(85, 85, 85, 1)
    }

    #c_product_detail_003_P_240-1731637464442 .e_richText-14 {
        font-size: 14px;
        color: #333333;
        line-height: 1.6
    }

    #c_product_detail_003_P_240-1731637464442 .e_text-30 {
        font-size: 16px;
        color: #333333;
        line-height: 1.5
    }

    #c_product_detail_003_P_240-1731637464442 .e_button-36 {

        width: auto;
        max-width: none;
        min-width: 0px;
        padding-right: 0px;
        margin-right: auto;
        height: auto;
        max-height: none;
        min-height: 0px;
        padding-left: 0px;
        margin-left: auto
    }

    #c_product_detail_003_P_240-1731637464442 .e_button-37 {
        width: auto;
        margin-left: 0px;
        margin-top: 20px
    }

    #c_product_detail_003_P_240-1731637464442 .e_container-16 {
        width: 100%;
        max-width: 100%
    }

    #c_product_detail_003_P_240-1731637464442 .e_text-15 {
        font-size: 16px;
        color: rgba(255, 255, 255, 1);
        line-height: 2.4
    }

    #c_product_detail_003_P_240-1731637464442 .e_button-36 span {
        font-size: 14px
    }

    #c_product_detail_003_P_240-1731637464442 .e_button-37 span {
        font-size: 14px
    }

    #c_product_detail_003_P_240-1731637464442 .e_magnifier-69 {
        min-height: 330px;
        width: 100%
    }

    #c_product_detail_003_P_240-1731637464442 .e_magnifier-69 .magnifier {
        width: 100%
    }

    #c_product_detail_003_P_240-1731637464442 .e_magnifier-69 .image-bigger {
        display: none
    }

    #c_product_detail_003_P_240-1731637464442 .e_magnifier-69 .videoPlayerCon {
        width: 100%;
        height: 100%;
        background: #000;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 99
    }

    #c_product_detail_003_P_240-1731637464442 .e_container-34 {
        flex-direction: column
    }

    #c_product_detail_003_P_240-1731637464442 .e_richText-38 {}

    #c_product_detail_003_P_240-1731637464442 .e_text-78 {
        font-size: 16px
    }

    #c_product_detail_003_P_240-1731637464442 .e_text-79 {
        font-size: 14px;
        color: #333333;
        line-height: 1.5
    }
}

@media screen and (min-width: 769px) {
    #c_product_detail_003_P_240-1731637464442 .e_loop_sub-25 .p_loopItem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 1)
    }

    #c_product_detail_003_P_240-1731637464442 .e_loop_sub-99 .p_loopItem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 3)
    }
}

#c_product_list_042_P_078-17316399258050 {
    min-height: 0px;
    margin-bottom: 0px;
    background-attachment: fixed;
    background-color: rgba(240, 240, 240, 1);
    padding-top: 0px
}

#c_product_list_042_P_078-17316399258050 .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    display: inline-block;
    border-radius: 15px;
    background: #005e37;
    opacity: .2
}

#c_product_list_042_P_078-17316399258050 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #005e37;
    border-radius: 15px
}

#c_product_list_042_P_078-17316399258050 .swiper-wrapper {
    z-index: 1;
    display: flex;
    box-sizing: content-box;
    padding-bottom: 30px
}

#c_product_list_042_P_078-17316399258050 .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0px;
    left: 0;
    width: 100%
}

#c_product_list_042_P_078-17316399258050 .p_item {}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    max-width: 100%
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_loopitem {
    flex: 0 0 33.3%;
    position: relative
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_page {
    text-align: center
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_filter_wrapper {
    width: 100%;
    font-size: 13px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_kv_wrapper {
    display: flex;
    flex-wrap: nowrap;
    line-height: 40px;
    margin: 15px 0
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_filter_key {
    width: 70px;
    overflow: hidden;
    margin-right: 10px;
    font-weight: bold;
    color: #333333;
    font-size: 12px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_v_item {
    display: inline-block;
    padding: 0 3px;
    cursor: pointer;
    font-size: 13px;
    color: #555555;
    margin-right: 30px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_active .p_fbutton {
    color: #fff;
    background-color: cornflowerblue
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_result_item {
    position: relative;
    padding: 3px 20px 3px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 10px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_filter_close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 3px;
    font-style: normal;
    font-size: 16px;
    margin-top: -5px;
    cursor: pointer
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect {
    font-size: 13px;
    position: relative
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .inputWrap {
    width: 100%;
    min-width: 100px;
    min-height: 24px;
    border: 1px solid #DCDFE6;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    background: white
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect.is-invalid .inputWrap {
    border-color: #dc3545
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect ul {
    padding: 0 5px;
    margin: 0;
    padding-right: 35px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect ul,
li {
    list-style: none
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect li {
    display: inline-block;
    background: #edf0f3;
    color: #92969c;
    padding: 0px 5px;
    margin: 1px 5px 1px 0;
    border-radius: 5px;
    line-height: 16px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .multSelect-option {
    width: 100%;
    border: 1px solid #DCDFE6;
    border-radius: 2px;
    border-top: 0;
    max-height: 200px;
    overflow-y: scroll;
    position: absolute;
    height: 0;
    opacity: 0;
    z-index: 9;
    background: #fff
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .multSelect-option>div {
    line-height: 24px;
    cursor: pointer;
    padding: 0 10px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .multSelect-option>div.selected {
    color: #409eff
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .multSelect-option>div:hover {
    color: #409eff;
    background: #f3f6f9
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .fa-close {
    font-style: normal;
    font-size: 12px;
    padding: 0 5px 0 7px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .inputWrap>.fa svg {
    fill: #666;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: calc(50% - 3px)
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .inputWrap>.fa-down svg {
    transform: rotate(-90deg)
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .inputWrap>.fa-up svg {
    transform: rotate(90deg)
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .multSelect .placeholder {
    line-height: 40px;
    padding-left: 10px;
    color: #aaa;
    position: absolute;
    left: 0;
    top: 0
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_normal_start {
    display: inline;
    width: 100px;
    height: 40px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_date_start {
    display: inline;
    width: 105px;
    height: 40px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_normal_end {
    display: inline;
    width: 100px;
    height: 40px;
    margin-right: 5px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_date_end {
    display: inline;
    width: 105px;
    height: 40px;
    margin-right: 5px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_split {
    margin: 0 5px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_normal {
    margin-right: 16px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_fbutton {
    background-color: #007bff;
    border: 1px solid #409EFF;
    text-decoration: none;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 10px 25px;
    position: relative;
    overflow: hidden
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .input-check,
.e_loop-46 .input-radio {
    margin: 0 5px;
    vertical-align: text-top
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .position-left {
    display: flex
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .position-right {
    display: flex;
    flex-direction: row-reverse
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .position-bottom {
    display: flex;
    flex-direction: column-reverse
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_mbutton {
    border: 1px solid var(--primary-color);
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    text-align: center;
    padding: 10px 25px;
    position: relative;
    overflow: hidden
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_mbutton:after {
    content: "";
    display: none;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    -webkit-transform: skewY(-45deg);
    transform: skewY(360deg);
    position: absolute;
    bottom: 0px;
    right: 0;
    z-index: 1
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_mbutton::before {
    content: "";
    display: none;
    width: 6px;
    height: 9px;
    border-right: #ffffff solid 2px;
    border-bottom: #ffffff solid 2px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    position: absolute;
    bottom: 5px;
    right: 4px;
    z-index: 2
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_active .p_mbutton::before {
    display: block
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_active .p_mbutton::after {
    display: block
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_input_match {
    width: 100px;
    height: 40px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 3px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_filter_result {
    display: none
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_contclear {
    cursor: pointer;
    display: none
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .swiper-container {
    padding-bottom: 0px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_imgwrapper {
    width: 80px;
    height: 100px;
    overflow: hidden
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_imgtitle {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 auto;
    line-height: 20px
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_imgwrapper img {
    width: 100%;
    object-fit: cover
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 .p_active .p_imgwrapper {
    border: 1px solid var(--primary-color)
}

#c_product_list_042_P_078-17316399258050 .e_loop-46 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 96%;
    max-width: none;
    margin-bottom: 50px
}

#c_product_list_042_P_078-17316399258050 .e_container-47 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    padding-right: 0px;
    border-style: none;
    border-color: rgba(238, 238, 238, 1);
    padding-left: 0px;
    padding-top: 0px;
}

#c_product_list_042_P_078-17316399258050 .e_container-47>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%;
    background: #fff;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0 7px 10px rgb(19 19 19 / 8%)
}

#c_product_list_042_P_078-17316399258050 .e_container-47:hover .e_container-49 {
    background-color: var(--primary-color)
}

#c_product_list_042_P_078-17316399258050 .e_container-47>.p_item:hover {
    background-color: var(--primary-color)
}

#c_product_list_042_P_078-17316399258050 .e_container-47:hover .e_text-51 {
    color: rgba(255, 255, 255, 1)
}

#c_product_list_042_P_078-17316399258050 .e_image-48 {
    overflow: hidden;
    margin-right: auto;
    margin-top: 0px;
    margin-left: auto;
    margin-bottom: 0px;
    padding: 20px
}

#c_product_list_042_P_078-17316399258050 .e_image-48 img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px
}

#c_product_list_042_P_078-17316399258050 .e_container-49 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3%;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding-bottom: 3%;
}

#c_product_list_042_P_078-17316399258050 .e_container-49:hover {
    width: 100%;
    left: 0%;
    z-index: 1;
    right: 0%;
    bottom: 0%
}

#c_product_list_042_P_078-17316399258050 .e_container-49>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_product_list_042_P_078-17316399258050 .e_text-51 {
    line-height: normal;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 5px;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    text-align: center;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: lighter
}

#c_product_list_042_P_078-17316399258050 .yx_flexJC {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    -webkit-justify-content: left;
    justify-content: left
}

#c_product_list_042_P_078-17316399258050 .e_text-68 {
    line-height: 2.5;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: var(--primary-color);
    background-color: var(--primary-color)
}

#c_product_list_042_P_078-17316399258050 .e_container-69 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 96%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 1)
}

#c_product_list_042_P_078-17316399258050 .e_container-69>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

@media screen and (max-width:768px) {
    #c_product_list_042_P_078-17316399258050 .e_loop-46 .p_loopitem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 2)
    }

    #c_product_list_042_P_078-17316399258050 .saf-sBar {
        display: flex;
        width: 100%;
        justify-content: center;
        padding-top: 0px
    }

    #c_product_list_042_P_078-17316399258050 .e_image-48 img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px
    }

    #c_product_list_042_P_078-17316399258050 {
        padding-bottom: 3%;
    }

    #c_product_list_042_P_078-17316399258050 .e_text-51 {
        font-size: 16px;
        color: #333333;
        line-height: 1
    }

    #c_product_list_042_P_078-17316399258050 .e_container-47 {
        margin-bottom: 13%
    }

    #c_product_list_042_P_078-17316399258050 .e_loop-46 {
        margin-left: auto;
        margin-right: auto;
        max-width: 1620px;
        width: 92%;
        margin-top: 30px
    }

    #c_product_list_042_P_078-17316399258050 .e_image-48 {
        overflow: hidden;
        margin-right: auto;
        margin-top: 0px;
        margin-left: auto;
        margin-bottom: 0px;
        padding: 5px
    }

    #c_product_list_042_P_078-17316399258050 .e_container-69 {}
}

@media screen and (min-width: 769px) {
    #c_product_list_042_P_078-17316399258050 .e_loop-46 .p_loopitem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 4)
    }
}

#c_static_001_P_59386-1735118052457 {
    min-height: 300px;
    background-color: rgba(240, 240, 240, 1);
    padding-top: 30px;
    padding-bottom: 100px;
}

#c_static_001_P_59386-1735118052457 .e_form-5 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0);
    max-width: none;
    margin-top: 30px
}

#c_static_001_P_59386-1735118052457 .e_form-5>.p_formItem {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_static_001_P_59386-1735118052457 .e_container-6 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%
}

#c_static_001_P_59386-1735118052457 .e_textarea-13 .form-control {
    min-height: 200px
}

#c_static_001_P_59386-1735118052457 .e_container-6>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_static_001_P_59386-1735118052457 .e_container-6 .cbox-6-0 {
    margin-right: 2%
}

#c_static_001_P_59386-1735118052457 .e_container-6 .cbox-6-1 {
    margin-right: auto;
}

#c_static_001_P_59386-1735118052457 .e_input-7 .p_phoneCode {
    width: 90px;
    margin-right: 10px
}

#c_static_001_P_59386-1735118052457 .e_container-8 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}

table tr:nth-child(odd) {
    background: #fff0 !important
}

#c_static_001_P_59386-1735118052457 .e_container-8>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_static_001_P_59386-1735118052457 .e_container-8 .cbox-8-0 {
    margin-right: 2%
}

#c_static_001_P_59386-1735118052457 .e_container-8 .cbox-8-1 {
    margin-right: auto;
    margin-left: 2%
}

#c_static_001_P_59386-1735118052457 .e_input-7 {
    height: auto
}

#c_static_001_P_59386-1735118052457 .form-control {
    height: 50px;
    font-size: 14px
}

#c_static_001_P_59386-1735118052457 .form-group {
    margin-bottom: 20px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 {
    min-height: 20px;
    width: 100%
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_thead {
    height: 36px;
    line-height: 36px;
    display: flex;
    background-color: #f0f0f0
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tbody {
    min-height: 36px;
    margin-bottom: 20px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tr {
    display: flex
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_th,
.p_td {
    flex: 1
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_screen {
    margin-bottom: 20px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_screen .col {
    flex: 0 0 50%
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_modelDialog {
    max-width: 960px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_modalContent {
    border-radius: 6px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_category {
    display: inline-block;
    width: 200px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_search {
    float: right;
    width: 260px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_list {
    overflow: auto;
    max-height: 800px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_listImg {
    width: 30px;
    height: 30px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_listImg img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_listWord {
    line-height: 26px;
    font-size: 14px;
    max-height: 60px;
    overflow: hidden;
    color: #005e37
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tabel {
    border: 1px solid #f0f0f0
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tabel thead td {
    border-bottom: none;
    background-color: #e0e0e0;
    padding: 15px 10px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tabelList thead td {
    border-bottom: none;
    font-size: 14px;
    background-color: #fff0;
    height: auto;
    color: #999;
    width: 80px;
    overflow: hidden;
    padding-left: 10px;
    vertical-align: middle
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tabel td,
#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tabel th {
    padding: 5px 10px;
    border: 1px solid #f0f0f0
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tabelList td {
    padding: 5px 0px;
    border: 0
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_listSelect {
    width: 50px;
    text-align: center
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_listSelect input {
    vertical-align: middle;
    margin-top: 3px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_listPage {
    float: right
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_selectAll {
    padding-left: 25px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_remove_fixed {
    width: 40px;
    display: block;
    color: #007bff
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_clabel {
    width: 70px;
    text-align: right;
    float: left;
    line-height: 36px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_ccate {
    width: calc(100% - 80px);
    float: left
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_treeSelect {
    width: 200px
}

#c_static_001_P_59386-1735118052457 .e_relevantItem-14 .table {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 0.25rem;
    background: #fff;
    width: 100%;
    border: 1px solid #ced4da
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%)
}

#c_static_001_P_59386-1735118052457 .e_container-16 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 94%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

#c_static_001_P_59386-1735118052457 .e_container-16>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_static_001_P_59386-1735118052457 .e_text-17 {
    line-height: 1.5;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    color: rgba(0, 0, 0, 1);
    margin-top: 0px;
    margin-bottom: 10px;
    font-family: Arial
}

#c_static_001_P_59386-1735118052457 .e_input-7 .s_form-control {
    background-color: rgba(255, 255, 255, 1)
}

#c_static_001_P_59386-1735118052457 .e_formBtn-19 {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;

    height: auto;
    margin-top: 0px;
    background-color: var(--primary-color);
    border-style: solid;
    border-width: 1px;
    border-color: var(--primary-color);
    transition: all .5s ease;
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
    line-height: 2;
    width: 100%;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}



#c_static_001_P_59386-1735118052457 .e_formBtn-19::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .3s;
    z-index: 0;
    opacity: 0;
    top: 0;
    left: 0px
}

#c_static_001_P_59386-1735118052457 .e_formBtn-19:hover::after {
    opacity: 1
}

#c_static_001_P_59386-1735118052457 .e_formBtn-19:hover {
    background-color: var(--primary-color);
    border-style: solid;
    border-color: var(--primary-color);
    color: #ffffff;
    transition: all .5s ease;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px
}

#c_static_001_P_59386-1735118052457 .e_input-9 .p_phoneCode {
    position: relative;
    width: 90px;
    margin-right: 10px
}

#c_static_001_P_59386-1735118052457 .e_input-9 .p_phoneCode .form-control {
    height: 36px
}

#c_static_001_P_59386-1735118052457 .e_input-9 .p_currentCode {
    cursor: pointer
}

#c_static_001_P_59386-1735118052457 .e_input-9 .p_arrow {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%)
}

#c_static_001_P_59386-1735118052457 .e_input-9 .p_codeList {
    display: none;
    position: absolute;
    width: 120px;
    left: 0;
    top: calc(100% + 5px);
    background-color: #fff;
    color: #495057;
    border-radius: 4px;
    max-height: 192px;
    overflow: auto;
    z-index: 9;
    border: 1px solid #ced4da
}

#c_static_001_P_59386-1735118052457 .e_input-9 .p_codeItem {
    line-height: 32px;
    padding: 0 15px;
    overflow: hidden;
    cursor: pointer
}

#c_static_001_P_59386-1735118052457 .e_input-9 .p_codeItem:hover,
#c_static_001_P_59386-1735118052457 .e_input-9 .p_codeItem.p_active {
    background-color: #f1f5f8
}

#c_static_001_P_59386-1735118052457 .e_input-9 .p_enCode {
    float: right;
    color: #ccc
}

#c_static_001_P_59386-1735118052457 .e_input-9 .s_form-control {
    background-color: rgba(255, 255, 255, 1)
}

#c_static_001_P_59386-1735118052457 .e_input-9 .s_form-control:hover {
    background-color: rgba(255, 255, 255, 1)
}


#c_static_001_P_59386-1735118052457 .e_textarea-13 .p_required {
    vertical-align: middle;
    font-size: 1.4em;
    line-height: 100%;
    position: relative;
    font-weight: bold;
    top: 0.15em;
    padding-left: 5px
}

#c_static_001_P_59386-1735118052457 .e_textarea-13 .s_form-control {
    background-color: rgba(255, 255, 255, 1)
}

#c_static_001_P_59386-1735118052457 .e_input-10 .p_phoneCode {
    position: relative;
    width: 90px;
    margin-right: 10px
}

#c_static_001_P_59386-1735118052457 .e_input-10 .p_phoneCode .form-control {
    height: 36px
}

#c_static_001_P_59386-1735118052457 .e_input-10 .p_currentCode {
    cursor: pointer
}

#c_static_001_P_59386-1735118052457 .e_input-10 .p_arrow {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%)
}

#c_static_001_P_59386-1735118052457 .e_input-10 .p_codeList {
    display: none;
    position: absolute;
    width: 120px;
    left: 0;
    top: calc(100% + 5px);
    background-color: #fff;
    color: #495057;
    border-radius: 4px;
    max-height: 192px;
    overflow: auto;
    z-index: 9;
    border: 1px solid #ced4da
}

#c_static_001_P_59386-1735118052457 .e_input-10 .p_codeItem {
    line-height: 32px;
    padding: 0 15px;
    overflow: hidden;
    cursor: pointer
}

#c_static_001_P_59386-1735118052457 .e_input-10 .p_codeItem:hover,
#c_static_001_P_59386-1735118052457 .e_input-10 .p_codeItem.p_active {
    background-color: #f1f5f8
}

#c_static_001_P_59386-1735118052457 .e_input-10 .p_enCode {
    float: right;
    color: #ccc
}

#c_static_001_P_59386-1735118052457 .e_input-10 .s_form-control {
    background-color: rgba(255, 255, 255, 1)
}

#c_static_001_P_59386-1735118052457 .e_container-20 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px
}

#c_static_001_P_59386-1735118052457 .e_container-20>.p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%
}

#c_static_001_P_59386-1735118052457 .e_richText-21 {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    text-align: center;
    font-family: Arial
}

@media screen and (max-width:768px) {
    #c_static_001_P_59386-1735118052457 {
        padding-bottom: 50px;
        padding-top: 30px
    }

    #c_static_001_P_59386-1735118052457 .form-control {
        height: 40px;
        font-size: 13px
    }

    #c_static_001_P_59386-1735118052457 .form-group {
        margin-bottom: 10px
    }

    #c_static_001_P_59386-1735118052457 .e_relevantItem-14 .table thead {
        display: none
    }

    #c_static_001_P_59386-1735118052457 .e_relevantItem-14 .table {
        height: 40px;
        margin-bottom: 10px;
        display: block;
        overflow: hidden
    }

    #c_static_001_P_59386-1735118052457 .e_relevantItem-14 .table tbody {
        width: 100%；
    }

    #c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_tabelList td {
        padding: 5px
    }

    #c_static_001_P_59386-1735118052457 .e_container-6 .cbox-6-0 {
        max-width: 100%;
        flex: 0 0 100%;
        padding-right: 0px;
        margin-left: auto;
        width: 100%;
        margin-right: 0%
    }

    #c_static_001_P_59386-1735118052457 .e_container-8 .cbox-8-0 {
        margin-right: 0%
    }

    #c_static_001_P_59386-1735118052457 .e_container-8 .cbox-8-1 {
        margin-right: auto;
        margin-left: 0%;
        width: 100%
    }

    #c_static_001_P_59386-1735118052457 .e_relevantItem-14 .p_listWord {
        text-overflow: ellipsis;
        word-break: keep-all;
        padding-right: 0%
    }

    #c_static_001_P_59386-1735118052457 .e_container-6 {
        flex-direction: column
    }

    #c_static_001_P_59386-1735118052457 .e_container-8 {
        flex-direction: column
    }

    #c_static_001_P_59386-1735118052457 .e_container-6 .cbox-6-1 {
        flex: 0 0 100%;
        padding-left: 0px;
        margin-left: auto;
        width: 100%
    }

    #c_static_001_P_59386-1735118052457 .e_input-7 {
        width: 100%;
        max-width: 100%;
        min-width: 0px
    }

    #c_static_001_P_59386-1735118052457 .e_text-17 {
        font-size: 24px;
        line-height: 1.5
    }

    #c_static_001_P_59386-1735118052457 .e_richText-21 {
        font-size: 14px;
        color: #333333;
        line-height: 1.5
    }
}

#c_effect_099-17426092645320 {
    min-height: 60px;
    height: 60px;
    max-height: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #f0f0f0
}

#c_effect_099-17426092645320 .e_image-1 {
    overflow: hidden;
}

#c_effect_099-17426092645320 .e_image-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain
}


@media screen and (min-width: 769px) {}

@media screen and (max-width: 1024px) and (min-width: 769px) {}

@media screen and (max-width: 1400px) and (min-width: 1200px) {}