/*!
* Template : nmoban100
* Frame    : WUI 3.0.1
* Created  : 2021-12-01
* Updated  : 2021-12-02
* Author   : lzx
*/
/*=========================color=============================*/
/*=========================size=============================*/
/*----------------------------------fade---------------------------*/
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*----------------------------------modal---------------------------*/
@-webkit-keyframes modal-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes modal-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes modal-out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes modal-out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

/*----------------------------------drawer---------------------------*/
@-webkit-keyframes drawer-in-right {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes drawer-in-right {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes drawer-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes drawer-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes drawer-in-left {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes drawer-in-left {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes drawer-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes drawer-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes drawer-in-top {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes drawer-in-top {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes drawer-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes drawer-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

/*----------------------------------dialog---------------------------*/
@-webkit-keyframes dialog-in {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes dialog-in {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes dialog-out {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes dialog-out {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.wui-form .wui-form-item {
    position: relative;
    line-height: 1;
}

.wui-form .wui-form-item .wui-form-widget {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.wui-form .wui-form-item .wui-form-message {
    display: block;
    position: absolute;
    max-width: 100%;
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    color: #FE5050;
}

.wui-form .wui-form-item.error .wui-input,
.wui-form .wui-form-item.error .wui-textarea,
.wui-form .wui-form-item.error .wui-select>.select-input,
.wui-form .wui-form-item.error .wui-tags>.select-input {
    border-color: #FE5050;
}

.wui-form .wui-form-item.error .wui-input:focus,
.wui-form .wui-form-item.error .wui-textarea:focus,
.wui-form .wui-form-item.error .wui-select>.select-input:focus,
.wui-form .wui-form-item.error .wui-tags>.select-input:focus {
    -webkit-box-shadow: 0 0 0 3px #ffeeee;
    box-shadow: 0 0 0 3px #ffeeee;
}

.wui-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-image: none;
    outline: none;
    cursor: pointer;
    appearance: none;
    text-decoration: none;
    user-select: none;
    text-align: center;
    font-weight: 500;
    word-spacing: normal;
    white-space: nowrap;
    color: #333333;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    height: 32px;
    line-height: 30px;
    padding: 0 16px;
    font-size: 14px;
}

.wui-btn:hover,
.wui-btn:focus,
.wui-btn:active {
    color: #333333;
    background-color: whitesmoke;
}

.wui-btn:disabled {
    color: #bfbfbf;
    border-color: #d9d9d9;
    background-color: #fff;
    cursor: not-allowed;
}

.wui-btn.active .icon-shopping-cart {
    color: #FE5050;
}

.wui-btn.active .icon-shopping-cart:before {
    content: "\ee9d" !important;
}

.wui-btn.active .icon-wish-list {
    color: #FE5050;
}

.wui-btn.active .icon-wish-list:before {
    content: "\ef9b" !important;
}

.wui-btn.wui-btn-animate:hover:before {
    width: 30px;
    opacity: 1;
}

.wui-btn.wui-btn-animate:hover>i {
    -webkit-transform: translate(8px, 0);
    transform: translate(8px, 0);
}

.wui-btn.wui-btn-primary {
    color: #fff;
    border-color: #cc4e26;
    background-color: #cc4e26;
}

.wui-btn.wui-btn-primary:hover,
.wui-btn.wui-btn-primary:focus,
.wui-btn.wui-btn-primary:active {
    color: #fff;
    border-color: #a33e1e;
    background-color: #a33e1e;
}

.wui-btn.wui-btn-primary:disabled {
    color: #fff;
    border-color: #d67151;
    background-color: #d67151;
}

.wui-btn.wui-btn-accents {
    color: #fff;
    border-color: #7DAF32;
    background-color: #7DAF32;
}

.wui-btn.wui-btn-accents:hover,
.wui-btn.wui-btn-accents:focus,
.wui-btn.wui-btn-accents:active {
    color: #fff;
    border-color: #648c28;
    background-color: #648c28;
}

.wui-btn.wui-btn-accents:disabled {
    color: #fff;
    border-color: #97bf5b;
    background-color: #97bf5b;
}

.wui-btn.wui-btn-price {
    color: #fff;
    border-color: #7DAF32;
    background-color: #7DAF32;
}

.wui-btn.wui-btn-price:hover,
.wui-btn.wui-btn-price:focus,
.wui-btn.wui-btn-price:active {
    color: #fff;
    border-color: #6a952b;
    background-color: #6a952b;
}

.wui-btn.wui-btn-price:disabled {
    color: #fff;
    border-color: #91bb51;
    background-color: #91bb51;
}

.wui-btn.wui-btn-light {
    color: #333333;
    border-color: #fff;
    background-color: #fff;
}

.wui-btn.wui-btn-light:hover,
.wui-btn.wui-btn-light:focus,
.wui-btn.wui-btn-light:active {
    color: #333333;
    border-color: #d9d9d9;
    background-color: #d9d9d9;
}

.wui-btn.wui-btn-light:disabled {
    color: #333333;
    border-color: white;
    background-color: white;
}

.wui-btn.wui-btn-block {
    display: block;
    width: 100%;
}

.wui-btn.wui-btn-square {
    border-radius: 0 !important;
}

.wui-btn.wui-btn-loading>.icon-loading {
    display: none;
}

.wui-btn.wui-btn-loading.loading>i:not(.icon-loading) {
    display: none;
}

.wui-btn.wui-btn-loading.loading>.icon-loading {
    display: inline-block;
    -webkit-animation: btn-loading 0.6s linear infinite both;
    animation: btn-loading 0.6s linear infinite both;
}

.wui-btn.wui-btn-sm {
    height: 32px;
    line-height: 30px;
    padding: 0 16px;
    font-size: 14px;
}

.wui-btn.wui-btn-sm.wui-btn-animate:hover:before {
    width: 30px;
    opacity: 1;
}

.wui-btn.wui-btn-sm.wui-btn-animate:hover>i {
    -webkit-transform: translate(8px, 0);
    transform: translate(8px, 0);
}

.wui-btn.wui-btn-md {
    height: 40px;
    line-height: 38px;
    padding: 0 32px;
    font-size: 16px;
}

.wui-btn.wui-btn-md.wui-btn-animate:hover:before {
    width: 38px;
    opacity: 1;
}

.wui-btn.wui-btn-md.wui-btn-animate:hover>i {
    -webkit-transform: translate(21px, 0);
    transform: translate(21px, 0);
}

@media only screen and (min-width: 1024px) {
    .wui-btn.wui-btn-block\@S {
        display: block;
        width: 100%;
    }

    .wui-btn.wui-btn-sm\@S {
        height: 32px;
        line-height: 30px;
        padding: 0 16px;
        font-size: 14px;
    }

    .wui-btn.wui-btn-sm\@S.wui-btn-animate:hover:before {
        width: 30px;
        opacity: 1;
    }

    .wui-btn.wui-btn-sm\@S.wui-btn-animate:hover>i {
        -webkit-transform: translate(8px, 0);
        transform: translate(8px, 0);
    }

    .wui-btn.wui-btn-md\@S {
        height: 40px;
        line-height: 38px;
        padding: 0 32px;
        font-size: 16px;
    }

    .wui-btn.wui-btn-md\@S.wui-btn-animate:hover:before {
        width: 38px;
        opacity: 1;
    }

    .wui-btn.wui-btn-md\@S.wui-btn-animate:hover>i {
        -webkit-transform: translate(21px, 0);
        transform: translate(21px, 0);
    }
}

@-webkit-keyframes btn-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes btn-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.wui-input {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: border-color 0.3s ease 0s;
    transition: border-color 0.3s ease 0s;
    background-image: none;
    outline: none;
    text-align: left;
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    border-color: #d9d9d9;
    color: #333333;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    height: 32px;
    line-height: 30px;
    padding: 0 8px;
    font-size: 14px;
}

.wui-input:hover {
    border-color: #7DAF32;
}

.wui-input:focus {
    border-color: #7DAF32;
    -webkit-box-shadow: 0 0 0 3px #f2f7eb;
    box-shadow: 0 0 0 3px #f2f7eb;
}

.wui-input.success:hover {
    border-color: #26BB79;
}

.wui-input.success:focus {
    border-color: #26BB79;
    -webkit-box-shadow: 0 0 0 3px #e9f8f2;
    box-shadow: 0 0 0 3px #e9f8f2;
}

.wui-input.warning:hover {
    border-color: #F2914A;
}

.wui-input.warning:focus {
    border-color: #F2914A;
    -webkit-box-shadow: 0 0 0 3px #fef4ed;
    box-shadow: 0 0 0 3px #fef4ed;
}

.wui-input.error:hover {
    border-color: #FE5050;
}

.wui-input.error:focus {
    border-color: #FE5050;
    -webkit-box-shadow: 0 0 0 3px #ffeeee;
    box-shadow: 0 0 0 3px #ffeeee;
}

.wui-input.wui-input-block {
    display: block;
    width: 100%;
}

.wui-input:disabled {
    background-color: whitesmoke !important;
    color: #bfbfbf !important;
    cursor: not-allowed !important;
    border-color: #d9d9d9 !important;
}

.wui-input.wui-input-sm {
    height: 32px;
    line-height: 30px;
    padding: 0 8px;
    font-size: 14px;
}

.wui-input.wui-input-md {
    height: 40px;
    line-height: 38px;
    padding: 0 12px;
    font-size: 16px;
}

@media only screen and (min-width: 1024px) {
    .wui-input.wui-input-block\@S {
        display: block;
        width: 100%;
    }

    .wui-input.wui-input-sm\@S {
        height: 32px;
        line-height: 30px;
        padding: 0 8px;
        font-size: 14px;
    }

    .wui-input.wui-input-md\@S {
        height: 40px;
        line-height: 38px;
        padding: 0 12px;
        font-size: 16px;
    }
}

.wui-textarea {
    display: block;
    border: 1px solid #d9d9d9;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    resize: none;
    outline: none;
    width: 100%;
    padding: 8px 12px;
    background-color: #fff;
    overflow-y: auto;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.wui-textarea:hover {
    border-color: #7DAF32;
}

.wui-textarea:focus {
    border-color: #7DAF32;
    -webkit-box-shadow: 0 0 0 3px #f2f7eb;
    box-shadow: 0 0 0 3px #f2f7eb;
}

.wui-textarea.error {
    border-color: #FE5050;
}

.wui-textarea.error:focus {
    -webkit-box-shadow: 0 0 0 3px #ffeeee;
    box-shadow: 0 0 0 3px #ffeeee;
}

.wui-grid>.wui-grid-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wui-grid>.wui-grid-row>.wui-grid-col {
    -webkit-flex: none;
    flex: none;
    width: 100%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-2 {
    width: 50%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-3 {
    width: 33.3333333333%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-2-3 {
    width: 66.6666666667%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-4 {
    width: 25%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-3-4 {
    width: 75%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-5 {
    width: 20%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-2-5 {
    width: 40%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-3-5 {
    width: 60%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-4-5 {
    width: 80%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-6 {
    width: 16.6666666667%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-4-6 {
    width: 66.6666666667%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-5-6 {
    width: 83.3333333333%;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-auto {
    width: auto;
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-match {
    width: 100%;
}

.wui-grid.wui-grid-xs>.wui-grid-row {
    margin: -16px 0 0 -16px;
}

.wui-grid.wui-grid-xs>.wui-grid-row>.wui-grid-col {
    padding: 16px 0 0 16px;
}

.wui-grid.wui-grid-sm>.wui-grid-row {
    margin: -24px 0 0 -24px;
}

.wui-grid.wui-grid-sm>.wui-grid-row>.wui-grid-col {
    padding: 24px 0 0 24px;
}

.wui-grid.wui-grid-md>.wui-grid-row {
    margin: -32px 0 0 -32px;
}

.wui-grid.wui-grid-md>.wui-grid-row>.wui-grid-col {
    padding: 32px 0 0 32px;
}

.wui-grid.wui-grid-lg>.wui-grid-row {
    margin: -40px 0 0 -40px;
}

.wui-grid.wui-grid-lg>.wui-grid-row>.wui-grid-col {
    padding: 40px 0 0 40px;
}

@media only screen and (min-width: 1024px) {
    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-2\@S {
        width: 50%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-3\@S {
        width: 33.3333333333%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-2-3\@S {
        width: 66.6666666667%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-4\@S {
        width: 25%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-3-4\@S {
        width: 75%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-5\@S {
        width: 20%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-2-5\@S {
        width: 40%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-3-5\@S {
        width: 60%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-4-5\@S {
        width: 80%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-6\@S {
        width: 16.6666666667%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-4-6\@S {
        width: 66.6666666667%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-5-6\@S {
        width: 83.3333333333%;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-auto\@S {
        width: auto;
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-match\@S {
        width: 100%;
    }

    .wui-grid.wui-grid-xs\@S>.wui-grid-row {
        margin: -16px 0 0 -16px;
    }

    .wui-grid.wui-grid-xs\@S>.wui-grid-row>.wui-grid-col {
        padding: 16px 0 0 16px;
    }

    .wui-grid.wui-grid-sm\@S>.wui-grid-row {
        margin: -24px 0 0 -24px;
    }

    .wui-grid.wui-grid-sm\@S>.wui-grid-row>.wui-grid-col {
        padding: 24px 0 0 24px;
    }

    .wui-grid.wui-grid-md\@S>.wui-grid-row {
        margin: -32px 0 0 -32px;
    }

    .wui-grid.wui-grid-md\@S>.wui-grid-row>.wui-grid-col {
        padding: 32px 0 0 32px;
    }

    .wui-grid.wui-grid-lg\@S>.wui-grid-row {
        margin: -40px 0 0 -40px;
    }

    .wui-grid.wui-grid-lg\@S>.wui-grid-row>.wui-grid-col {
        padding: 40px 0 0 40px;
    }
}

.wui-media {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    background-color: #eeeeee;
}

.wui-media .wui-media-wrap {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.wui-media .wui-media-wrap .wui-media-inner,
.wui-media .wui-media-wrap .wui-media-img {
    display: block;
    width: 100%;
    height: 100%;
}

.wui-media .wui-media-wrap .wui-media-inner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.wui-media .wui-media-wrap .wui-media-img {
    border: 0;
    background: none;
    object-fit: cover;
    object-position: center;
}

.wui-media .wui-media-mask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.wui-media.wui-media-hover {
    cursor: pointer;
}

.wui-media.wui-media-hover:hover {
    border-color: #cc4e26;
}

.wui-media.wui-media-hover:hover .wui-media-wrap {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.wui-media.wui-media-auto .wui-media-wrap .wui-media-inner {
    background-size: contain;
}

.wui-media.wui-media-auto .wui-media-wrap .wui-media-img {
    object-fit: contain;
}

.wui-media.wui-media-repeat .wui-media-wrap .wui-media-inner {
    background-repeat: repeat;
    background-size: auto;
}

.wui-media.wui-media-tran {
    background-color: transparent;
}

.wui-media.wui-media-border {
    border: 1px solid #d9d9d9;
}

.wui-media.wui-media-fixed .wui-media-wrap .wui-media-inner {
    background-attachment: fixed;
}

.wui-media.wui-media-match {
    padding-bottom: 0;
    height: 100%;
}

.wui-media.wui-media-1-1 {
    padding-bottom: 100%;
}

.wui-media.wui-media-2-1 {
    padding-bottom: 50%;
}

.wui-media.wui-media-3-2 {
    padding-bottom: 66.6666666667%;
}

.wui-media.wui-media-3-1 {
    padding-bottom: 33.3333333333%;
}

.wui-media.wui-media-3-4 {
    padding-bottom: 133.3333333333%;
}

.wui-media.wui-media-4-1 {
    padding-bottom: 25%;
}

.wui-media.wui-media-4-3 {
    padding-bottom: 75%;
}

.wui-media.wui-media-4-5 {
    padding-bottom: 125%;
}

.wui-media.wui-media-6-1 {
    padding-bottom: 16.6666666667%;
}

.wui-media.wui-media-16-9 {
    padding-bottom: 56.25%;
}

@media only screen and (min-width: 1024px) {
    .wui-media.wui-media-1-1\@S {
        padding-bottom: 100%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-2-1\@S {
        padding-bottom: 50%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-3-2\@S {
        padding-bottom: 66.6666666667%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-3-1\@S {
        padding-bottom: 33.3333333333%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-3-4\@S {
        padding-bottom: 133.3333333333%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-4-1\@S {
        padding-bottom: 25%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-4-3\@S {
        padding-bottom: 75%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-4-5\@S {
        padding-bottom: 125%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-6-1\@S {
        padding-bottom: 16.6666666667%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }

    .wui-media.wui-media-16-9\@S {
        padding-bottom: 56.25%;
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%;
    }
}

.wui-icon {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    overflow: hidden;
    text-align: center;
    font-style: normal;
    line-height: 1;
}

.wui-icon.wui-icon-20 {
    width: 20px;
    height: 20px;
}

.wui-icon.wui-icon-20>i {
    font-size: 20px;
}

.wui-icon.wui-icon-20>svg {
    width: 20px;
    height: 20px;
}

.wui-icon.wui-icon-24 {
    width: 24px;
    height: 24px;
}

.wui-icon.wui-icon-24>i {
    font-size: 24px;
}

.wui-icon.wui-icon-24>svg {
    width: 24px;
    height: 24px;
}

.wui-icon.wui-icon-32 {
    width: 32px;
    height: 32px;
}

.wui-icon.wui-icon-32>i {
    font-size: 32px;
}

.wui-icon.wui-icon-32>svg {
    width: 32px;
    height: 32px;
}

.wui-icon.wui-icon-40 {
    width: 40px;
    height: 40px;
}

.wui-icon.wui-icon-40>i {
    font-size: 40px;
}

.wui-icon.wui-icon-40>svg {
    width: 40px;
    height: 40px;
}

.wui-icon.wui-icon-64 {
    width: 64px;
    height: 64px;
}

.wui-icon.wui-icon-64>i {
    font-size: 64px;
}

.wui-icon.wui-icon-64>svg {
    width: 64px;
    height: 64px;
}

.wui-icon.wui-icon-96 {
    width: 96px;
    height: 96px;
}

.wui-icon.wui-icon-96>i {
    font-size: 96px;
}

.wui-icon.wui-icon-96>svg {
    width: 96px;
    height: 96px;
}

@media only screen and (min-width: 1024px) {
    .wui-icon.wui-icon-20\@S {
        width: 20px;
        height: 20px;
    }

    .wui-icon.wui-icon-20\@S>i {
        font-size: 20px;
    }

    .wui-icon.wui-icon-20\@S>svg {
        width: 20px;
        height: 20px;
    }

    .wui-icon.wui-icon-24\@S {
        width: 24px;
        height: 24px;
    }

    .wui-icon.wui-icon-24\@S>i {
        font-size: 24px;
    }

    .wui-icon.wui-icon-24\@S>svg {
        width: 24px;
        height: 24px;
    }

    .wui-icon.wui-icon-32\@S {
        width: 32px;
        height: 32px;
    }

    .wui-icon.wui-icon-32\@S>i {
        font-size: 32px;
    }

    .wui-icon.wui-icon-32\@S>svg {
        width: 32px;
        height: 32px;
    }

    .wui-icon.wui-icon-40\@S {
        width: 40px;
        height: 40px;
    }

    .wui-icon.wui-icon-40\@S>i {
        font-size: 40px;
    }

    .wui-icon.wui-icon-40\@S>svg {
        width: 40px;
        height: 40px;
    }

    .wui-icon.wui-icon-64\@S {
        width: 64px;
        height: 64px;
    }

    .wui-icon.wui-icon-64\@S>i {
        font-size: 64px;
    }

    .wui-icon.wui-icon-64\@S>svg {
        width: 64px;
        height: 64px;
    }

    .wui-icon.wui-icon-96\@S {
        width: 96px;
        height: 96px;
    }

    .wui-icon.wui-icon-96\@S>i {
        font-size: 96px;
    }

    .wui-icon.wui-icon-96\@S>svg {
        width: 96px;
        height: 96px;
    }
}

.wui-lang {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: 0 24px;
    background-image: url("../image/icon_flag.png");
}

.wui-lang.wui-lang-ar {
    background-position: 0 0px;
}

.wui-lang.wui-lang-bn {
    background-position: 0 -24px;
}

.wui-lang.wui-lang-bul {
    background-position: 0 -48px;
}

.wui-lang.wui-lang-cn {
    background-position: 0 -72px;
}

.wui-lang.wui-lang-cs {
    background-position: 0 -96px;
}

.wui-lang.wui-lang-dan {
    background-position: 0 -120px;
}

.wui-lang.wui-lang-de {
    background-position: 0 -144px;
}

.wui-lang.wui-lang-el {
    background-position: 0 -168px;
}

.wui-lang.wui-lang-en {
    background-position: 0 -192px;
}

.wui-lang.wui-lang-es {
    background-position: 0 -216px;
}

.wui-lang.wui-lang-est {
    background-position: 0 -240px;
}

.wui-lang.wui-lang-fa {
    background-position: 0 -264px;
}

.wui-lang.wui-lang-fin {
    background-position: 0 -288px;
}

.wui-lang.wui-lang-fr {
    background-position: 0 -312px;
}

.wui-lang.wui-lang-he {
    background-position: 0 -336px;
}

.wui-lang.wui-lang-hi {
    background-position: 0 -360px;
}

.wui-lang.wui-lang-hr {
    background-position: 0 -384px;
}

.wui-lang.wui-lang-hu {
    background-position: 0 -408px;
}

.wui-lang.wui-lang-id {
    background-position: 0 -432px;
}

.wui-lang.wui-lang-it {
    background-position: 0 -456px;
}

.wui-lang.wui-lang-ja {
    background-position: 0 -480px;
}

.wui-lang.wui-lang-ko {
    background-position: 0 -504px;
}

.wui-lang.wui-lang-lt {
    background-position: 0 -528px;
}

.wui-lang.wui-lang-ms {
    background-position: 0 -552px;
}

.wui-lang.wui-lang-nl {
    background-position: 0 -576px;
}

.wui-lang.wui-lang-no {
    background-position: 0 -600px;
}

.wui-lang.wui-lang-pl {
    background-position: 0 -624px;
}

.wui-lang.wui-lang-pt {
    background-position: 0 -648px;
}

.wui-lang.wui-lang-rom {
    background-position: 0 -672px;
}

.wui-lang.wui-lang-ru {
    background-position: 0 -696px;
}

.wui-lang.wui-lang-sk {
    background-position: 0 -720px;
}

.wui-lang.wui-lang-slo {
    background-position: 0 -744px;
}

.wui-lang.wui-lang-swe {
    background-position: 0 -768px;
}

.wui-lang.wui-lang-th {
    background-position: 0 -792px;
}

.wui-lang.wui-lang-tr {
    background-position: 0 -816px;
}

.wui-lang.wui-lang-tw {
    background-position: 0 -840px;
}

.wui-lang.wui-lang-uk {
    background-position: 0 -864px;
}

.wui-lang.wui-lang-ur {
    background-position: 0 -888px;
}

.wui-lang.wui-lang-vi {
    background-position: 0 -912px;
}

.wui-lang.wui-lang-te {
    background-position: 0 -936px;
}

.wui-lang.wui-lang-ta {
    background-position: 0 -960px;
}

.wui-lang.wui-lang-sr {
    background-position: 0 -984px;
}

.wui-lang.wui-lang-tl {
    background-position: 0 -1008px;
}

.wui-lang.wui-lang-is {
    background-position: 0 -1032px;
}

.wui-lang.wui-lang-ca {
    background-position: 0 -1056px;
}

.wui-lang.wui-lang-lv {
    background-position: 0 -1080px;
}

.wui-payment {
    display: inline-block;
    width: 128px;
    height: 32px;
    background-size: 128px auto;
    background-repeat: no-repeat;
    background-position: 0 32px;
    background-image: url("../image/icon_payment.png");
}

.wui-payment.wui-payment-paypal {
    background-position: 0 0px;
}

.wui-payment.wui-payment-visa {
    background-position: 0 -32px;
}

.wui-payment.wui-payment-master-card {
    background-position: 0 -64px;
}

.wui-dropdown {
    position: relative;
}

.wui-dropdown>.wui-dropdown-toggle {
    line-height: 1;
    font-size: 0;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.wui-dropdown>.wui-dropdown-toggle:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 2px;
    margin-top: -6px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    width: 9px;
    height: 9px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.wui-dropdown>.wui-dropdown-content {
    display: none;
    position: absolute;
    z-index: 10006;
    left: 0;
    right: auto;
    min-width: 180px;
    max-width: 240px;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap {
    position: relative;
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list::-webkit-scrollbar-track {
    background-color: transparent;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list::-webkit-scrollbar-thumb:hover {
    background-color: #c3c3c3;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item {
    position: relative;
    display: block;
    white-space: nowrap;
    border-bottom: 1px solid #f0f0f0;
    color: #333333;
    text-align: left;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item .wui-dropdown-icon {
    position: absolute;
    left: 16px;
    top: 8px;
    display: none;
    width: 24px;
    height: 24px;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item .wui-dropdown-text {
    display: block;
    font-size: 15px;
    line-height: 24px;
    padding: 8px 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item:last-child {
    border: 0;
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item:hover {
    background-color: #f2f2f2;
}

.wui-dropdown.wui-dropdown-right>.wui-dropdown-content {
    left: auto;
    right: 0;
}

.wui-dropdown.wui-dropdown-float>.wui-dropdown-toggle:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 10px;
    margin-top: -5px;
}

.wui-dropdown.wui-dropdown-float>.wui-dropdown-content {
    left: 100%;
    top: 0;
}

.wui-dropdown.wui-dropdown-overflow>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list {
    max-height: 320px;
    overflow-y: auto;
}

.wui-dropdown.wui-dropdown-with-icon>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item .wui-dropdown-icon {
    display: block;
}

.wui-dropdown.wui-dropdown-with-icon>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item .wui-dropdown-text {
    padding-left: 48px;
}

.wui-dropdown:hover>.wui-dropdown-content {
    display: block;
}

.wui-drawer-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    overflow: hidden auto;
}

.wui-drawer-wrap .wui-drawer {
    width: 90%;
    max-width: 400px;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd {
    -webkit-flex: none;
    flex: none;
    background-color: #fff;
    position: relative;
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-title {
    display: block;
    font-size: 18px;
    line-height: 32px;
    height: 64px;
    padding: 16px 48px 16px 16px;
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-close {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 0;
    padding: 8px;
    color: #999999;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-close .wui-drawer-close-icon {
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
    overflow: hidden;
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-close .wui-drawer-close-icon>i {
    font-size: 16px;
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-close:hover {
    color: #7DAF32;
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-bd {
    -webkit-flex: auto;
    flex: auto;
    padding: 0 16px;
    overflow: hidden auto;
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-ft {
    -webkit-flex: none;
    flex: none;
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
    padding: 16px;
}

.wui-drawer-wrap .wui-drawer.wui-drawer-left {
    right: auto;
    left: 0;
}

.wui-drawer-wrap .wui-drawer.wui-drawer-top {
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    width: auto;
    max-width: none;
}

.wui-drawer-wrap.drawer-in {
    -webkit-animation: fade-in 0.3s ease 0s both;
    animation: fade-in 0.3s ease 0s both;
}

.wui-drawer-wrap.drawer-in .wui-drawer {
    -webkit-animation: drawer-in-right 0.3s ease 0.2s both;
    animation: drawer-in-right 0.3s ease 0.2s both;
}

.wui-drawer-wrap.drawer-in .wui-drawer.wui-drawer-left {
    -webkit-animation: drawer-in-left 0.3s ease 0.2s both;
    animation: drawer-in-left 0.3s ease 0.2s both;
}

.wui-drawer-wrap.drawer-in .wui-drawer.wui-drawer-top {
    -webkit-animation: drawer-in-top 0.3s ease 0.2s both;
    animation: drawer-in-top 0.3s ease 0.2s both;
}

.wui-drawer-wrap.drawer-out {
    -webkit-animation: fade-out 0.3s ease 0.2s both;
    animation: fade-out 0.3s ease 0.2s both;
}

.wui-drawer-wrap.drawer-out .wui-drawer {
    -webkit-animation: drawer-out-right 0.3s ease 0s both;
    animation: drawer-out-right 0.3s ease 0s both;
}

.wui-drawer-wrap.drawer-out .wui-drawer.wui-drawer-left {
    -webkit-animation: drawer-out-left 0.3s ease 0s both;
    animation: drawer-out-left 0.3s ease 0s both;
}

.wui-drawer-wrap.drawer-out .wui-drawer.wui-drawer-top {
    -webkit-animation: drawer-out-top 0.3s ease 0s both;
    animation: drawer-out-top 0.3s ease 0s both;
}

.wui-alert {
    padding: 12px;
    color: #333333;
    border-left: 4px solid #cc4e26;
}

.wui-alert .wui-alert-content {
    font-size: 16px;
    line-height: 24px;
}

.wui-alert .wui-alert-content .wui-alert-link {
    display: none;
    float: right;
    color: #1890FF;
}

.wui-alert.wui-alert-with-link .wui-alert-content:before,
.wui-alert.wui-alert-with-link .wui-alert-content:after {
    display: table;
    content: "";
}

.wui-alert.wui-alert-with-link .wui-alert-content:after {
    clear: both;
}

.wui-alert.wui-alert-with-link .wui-alert-content .wui-alert-link {
    display: block;
}

.wui-alert.wui-alert-primary {
    color: #cc4e26;
    border-color: #cc4e26;
}

.wui-alert.wui-alert-accents {
    color: #7DAF32;
    border-color: #7DAF32;
}

.wui-alert.wui-alert-warning {
    color: #F2914A;
    border-color: #F2914A;
}

.wui-crumb {
    line-height: 1;
}

.wui-crumb .wui-crumb-item {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1;
    color: #333333;
}

.wui-crumb .wui-crumb-item>i {
    font-size: inherit;
    color: #cc4e26;
}

.wui-crumb .wui-crumb-item.wui-crumb-separator {
    pointer-events: none;
}

.wui-crumb .wui-crumb-item:hover {
    color: #000;
}

.wui-crumb .wui-crumb-item:last-child {
    pointer-events: none;
}

.wui-crumb .wui-crumb-item:last-child.wui-crumb-separator {
    display: none;
}

.wui-crumb.wui-crumb-light .wui-crumb-item {
    color: rgba(255, 255, 255, 0.85);
}

.wui-crumb.wui-crumb-light .wui-crumb-item:hover {
    color: #fff;
}

.wui-menu.wui-menu-prefix>.wui-menu-item>.wui-menu-link {
    padding-left: 16px;
}

.wui-menu.wui-menu-prefix>.wui-menu-item>.wui-menu-link:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -3px;
    width: 0;
    height: 0;
    border: 3px solid;
}

.wui-menu.wui-menu-border>.wui-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.wui-menu.wui-menu-suffix>.wui-menu-item>.wui-menu-link {
    padding-right: 24px;
}

.wui-menu.wui-menu-suffix>.wui-menu-item>.wui-menu-arrow {
    display: block;
}

.wui-menu>.wui-menu-item {
    display: block;
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative;
}

.wui-menu>.wui-menu-item>.wui-menu-arrow {
    display: none;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 6px;
    right: 0;
    color: #999999;
    line-height: 1;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.wui-menu>.wui-menu-item>.wui-menu-arrow>i {
    font-size: 24px;
}

.wui-menu>.wui-menu-item>.wui-menu-arrow:hover {
    cursor: pointer;
    color: #cc4e26;
}

.wui-menu>.wui-menu-item>.wui-menu-link {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
    color: #333333;
    position: relative;
    font-size: 16px;
    line-height: 24px;
}

.wui-menu>.wui-menu-item>.wui-menu-link:hover {
    color: #cc4e26;
}

.wui-menu>.wui-menu-item>.wui-menu-sublist {
    padding: 4px 0;
    display: none;
}

.wui-menu>.wui-menu-item.open>.wui-menu-link,
.wui-menu>.wui-menu-item.open>.wui-menu-arrow {
    color: #cc4e26;
}

.wui-menu>.wui-menu-item.open>.wui-menu-sublist {
    display: block;
}

.wui-menu>.wui-menu-item.open>.wui-menu-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.wui-menu>.wui-menu-item.active>.wui-menu-link,
.wui-menu>.wui-menu-item.active>.wui-menu-arrow {
    color: #cc4e26;
}

.wui-card {
    background-color: #fff;
    padding: 0 24px;
}

.wui-card .wui-card-hd {
    padding: 16px 0;
    border-bottom: 1px solid #d9d9d9;
}

.wui-card .wui-card-hd .wui-card-text {
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    color: #cc4e26;
}

.wui-card .wui-card-bd {
    padding: 24px 0;
}

.wui-card+.wui-card {
    margin-top: 24px;
}

@media only screen and (min-width: 1024px) {
    .wui-card+.wui-card {
        margin-top: 32px;
    }
}

.wui-cabinet {
    min-width: 120px;
}

.wui-cabinet .wui-cabinet-preview {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-color: whitesmoke;
    border: 1px solid #d9d9d9;
    position: relative;
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-image {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
    border: 0;
    object-fit: contain;
    object-position: center;
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    line-height: 1;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-video .wui-cabinet-preview-play {
    display: inline-block;
    vertical-align: middle;
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-video:after {
    content: '';
    height: 100%;
    width: 0;
    display: inline-block;
    vertical-align: middle;
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-video:hover {
    color: #cc4e26;
}

.wui-cabinet .wui-cabinet-preview.wui-cabinet-video .wui-cabinet-preview-wrapper .wui-cabinet-preview-video {
    display: block;
}

.wui-cabinet .wui-cabinet-thumb {
    position: relative;
    margin-top: 10px;
    width: 100%;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container {
    width: 100%;
    padding: 0 30px 0 30px;
    overflow: hidden;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list {
    display: block;
    width: 100%;
    line-height: 1;
    font-size: 0;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item {
    display: inline-block;
    width: 25%;
    padding-bottom: 25%;
    height: 0;
    cursor: pointer;
    position: relative;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #d9d9d9;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap .wui-cabinet-thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
    border: 0;
    object-fit: contain;
    object-position: center;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap .wui-cabinet-thumb-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    line-height: 1;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap .wui-cabinet-thumb-video .wui-cabinet-thumb-play {
    display: inline-block;
    vertical-align: middle;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap .wui-cabinet-thumb-video:after {
    content: '';
    height: 100%;
    width: 0;
    display: inline-block;
    vertical-align: middle;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item.wui-cabinet-video .wui-cabinet-thumb-wrap .wui-cabinet-thumb-video {
    display: block;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item:hover .wui-cabinet-thumb-wrap,
.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item.active .wui-cabinet-thumb-wrap {
    border-color: #cc4e26;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button {
    display: block;
    position: absolute;
    top: 5px;
    bottom: 5px;
    width: 25px;
    background-color: whitesmoke;
    border: 0;
    background-image: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    color: #333333;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button.wui-cabinet-thumb-prev {
    left: 0;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button.wui-cabinet-thumb-next {
    right: 0;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button:hover {
    background-color: #cc4e26;
    color: #fff;
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button:disabled,
.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button.disabled {
    pointer-events: none;
}

.wui-number {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    height: 32px;
}

.wui-number .wui-number-button {
    display: block;
    position: absolute;
    top: 0;
    cursor: pointer;
    color: #333333;
    width: 32px;
    height: 32px;
    border: 1px solid #d9d9d9;
    background-image: none;
    background-color: whitesmoke;
}

.wui-number .wui-number-button.sub {
    left: 0;
}

.wui-number .wui-number-button.add {
    right: 0;
}

.wui-number .wui-number-button:hover {
    background-color: #d9d9d9;
}

.wui-number .wui-number-button:disabled {
    background-color: transparent;
    color: #bfbfbf;
    cursor: not-allowed;
}

.wui-number .wui-number-input {
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 0 40px;
    line-height: 30px;
    border: 1px solid #d9d9d9;
    max-width: 120px;
}

.wui-checkbox {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 4px 0;
    font-size: 16px;
    user-select: none;
}

.wui-checkbox .wui-checkbox-inner,
.wui-checkbox>input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.wui-checkbox .wui-checkbox-inner:indeterminate+.wui-checkbox-label:before,
.wui-checkbox>input[type="checkbox"]:indeterminate+.wui-checkbox-label:before {
    border-color: #7DAF32;
    background-color: #7DAF32;
}

.wui-checkbox .wui-checkbox-inner:indeterminate+.wui-checkbox-label:after,
.wui-checkbox>input[type="checkbox"]:indeterminate+.wui-checkbox-label:after {
    background-color: #fff;
}

.wui-checkbox .wui-checkbox-inner:checked+.wui-checkbox-label:before,
.wui-checkbox>input[type="checkbox"]:checked+.wui-checkbox-label:before {
    border-color: #7DAF32;
    background-color: #7DAF32;
}

.wui-checkbox .wui-checkbox-inner:checked+.wui-checkbox-label:after,
.wui-checkbox>input[type="checkbox"]:checked+.wui-checkbox-label:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 6px;
    width: 8px;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent #fff #fff;
    background-color: transparent;
}

.wui-checkbox .wui-checkbox-inner:disabled+.wui-checkbox-label,
.wui-checkbox>input[type="checkbox"]:disabled+.wui-checkbox-label {
    color: #bfbfbf;
    cursor: not-allowed;
}

.wui-checkbox .wui-checkbox-inner:disabled+.wui-checkbox-label:before,
.wui-checkbox>input[type="checkbox"]:disabled+.wui-checkbox-label:before {
    border-color: #d9d9d9;
    background-color: whitesmoke;
}

.wui-checkbox .wui-checkbox-inner:disabled:indeterminate+.wui-checkbox-label:after,
.wui-checkbox>input[type="checkbox"]:disabled:indeterminate+.wui-checkbox-label:after {
    background-color: #bfbfbf;
}

.wui-checkbox .wui-checkbox-inner:disabled:checked+.wui-checkbox-label:after,
.wui-checkbox>input[type="checkbox"]:disabled:checked+.wui-checkbox-label:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-color: #d9d9d9;
}

.wui-checkbox .wui-checkbox-label {
    display: block;
    padding-left: 24px;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    color: #333333;
}

.wui-checkbox .wui-checkbox-label:before {
    border-radius: 2px;
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    background-color: #fff;
}

.wui-checkbox .wui-checkbox-label:after {
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
}

.wui-checkbox:active .wui-checkbox-label:before {
    -webkit-box-shadow: 0 0 0 3px #f2f7eb;
    box-shadow: 0 0 0 3px #f2f7eb;
}

.wui-radio {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 4px 0;
    line-height: 1;
    font-size: 0;
    user-select: none;
}

.wui-radio .wui-radio-inner,
.wui-radio>input[type="radio"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.wui-radio .wui-radio-inner:checked+.wui-radio-label:before,
.wui-radio>input[type="radio"]:checked+.wui-radio-label:before {
    border-color: #7DAF32;
    background-color: #7DAF32;
}

.wui-radio .wui-radio-inner:checked+.wui-radio-label:after,
.wui-radio>input[type="radio"]:checked+.wui-radio-label:after {
    background-color: #fff;
}

.wui-radio .wui-radio-inner:disabled+.wui-radio-label,
.wui-radio>input[type="radio"]:disabled+.wui-radio-label {
    color: #bfbfbf;
    cursor: not-allowed;
}

.wui-radio .wui-radio-inner:disabled+.wui-radio-label:before,
.wui-radio>input[type="radio"]:disabled+.wui-radio-label:before {
    border-color: #d9d9d9;
    background-color: whitesmoke;
}

.wui-radio .wui-radio-inner:disabled:checked+.wui-radio-label:after,
.wui-radio>input[type="radio"]:disabled:checked+.wui-radio-label:after {
    background-color: #d9d9d9;
}

.wui-radio .wui-radio-label {
    display: inline-block;
    vertical-align: middle;
    padding-left: 24px;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    color: #333333;
}

.wui-radio .wui-radio-label:before {
    content: '';
    display: block;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.wui-radio .wui-radio-label:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    left: 5px;
    top: 50%;
    margin-top: -4px;
    background-color: transparent;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.wui-radio .wui-radio-image,
.wui-radio .wui-radio-icon {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    width: auto;
}

.wui-radio:focus-within .wui-radio-label:before {
    -webkit-box-shadow: 0 0 0 3px #f2f7eb;
    box-shadow: 0 0 0 3px #f2f7eb;
}

.wui-empty {
    text-align: center;
}

.wui-empty .wui-empty-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
    color: #333333;
}

.wui-empty .wui-empty-action {
    margin-top: 24px;
}

.wui-dialog-wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-animation: fade-in 0.3s ease 0s both;
    animation: fade-in 0.3s ease 0s both;
}

.wui-dialog-wrap .wui-dialog {
    -webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    -webkit-animation: dialog-in 0.3s ease 0s both;
    animation: dialog-in 0.3s ease 0s both;
    display: block;
    width: 420px;
    border-radius: 4px;
    background-color: #fff;
    padding: 24px;
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -210px;
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container {
    display: block;
    position: relative;
    padding-left: 38px;
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-icon {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0;
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-icon .wui-dialog-icon-inner {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
    overflow: hidden;
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-icon .wui-dialog-icon-inner>i {
    font-size: 24px;
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #333333;
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-content {
    display: block;
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
    color: #999999;
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-action {
    display: block;
    font-size: 0;
    text-align: right;
    margin-top: 24px;
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-action .wui-btn {
    margin-left: 8px;
}

.wui-dialog-wrap .wui-dialog.dialog-info .wui-dialog-container .wui-dialog-icon {
    color: #1890FF;
}

.wui-dialog-wrap .wui-dialog.dialog-success .wui-dialog-container .wui-dialog-icon {
    color: #26BB79;
}

.wui-dialog-wrap .wui-dialog.dialog-warning .wui-dialog-container .wui-dialog-icon {
    color: #F2914A;
}

.wui-dialog-wrap .wui-dialog.dialog-danger .wui-dialog-container .wui-dialog-icon {
    color: #FE5050;
}

.wui-dialog-wrap .wui-dialog.dialog-confirm .wui-dialog-container .wui-dialog-icon {
    color: #F2914A;
}

.wui-dialog-wrap.dialog-remove {
    -webkit-animation: fade-out 0.3s ease 0s both;
    animation: fade-out 0.3s ease 0s both;
}

.wui-dialog-wrap.dialog-remove .wui-dialog {
    -webkit-animation: dialog-out 0.3s ease 0s both;
    animation: dialog-out 0.3s ease 0s both;
}

/*
* 模块引用默认为共用方式，若需限制范围，请先设置空间类名约束
* 如：
.page-home{
  @import "widget/index/banner";
}
*/
body {
    background-color: whitesmoke;
}

.layout-root {
    position: relative;
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

@media only screen and (min-width: 1024px) {
    .layout-root {
        padding-bottom: 0;
    }
}

.layout-root .layout-header.is-fixed,
.layout-root .layout-header.is-sticky {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

@media only screen and (min-width: 1024px) {
    .layout-root .layout-header.is-fixed {
        position: fixed;
    }
}

.layout-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

.layout-clear:before,
.layout-clear:after {
    display: table;
    content: "";
}

.layout-clear:after {
    clear: both;
}

.layout-content {
    background-color: #fff;
    padding: 16px;
}

@media only screen and (min-width: 1024px) {
    .layout-content {
        padding: 24px;
    }
}

.section+.section {
    margin-top: 16px;
}

@media only screen and (min-width: 1024px) {
    .section+.section {
        margin-top: 32px;
    }
}

.section.section-near {
    margin: 0;
}

.flex-start {
    align-items: flex-start;
}

.pos-sticky {
    position: sticky;
    top: 50px;
    left: 0;
}

.header {
    border-bottom: 1px solid #f0f0f0;
}

.header .header-pc {
    display: none;
    background-color: #fff;
}

.header .header-pc .header-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    max-width: 1440px;
    padding: 0 16px;
    margin: 0 auto;
}

.header .header-pc .header-wrap .header-logo {
    display: block;
    overflow: hidden;
    height: 64px;
    -webkit-flex: auto;
    flex: auto;
}

.header .header-pc .header-wrap .header-logo>a {
    display: inline-block;
    height: 100%;
}

.header .header-pc .header-wrap .header-logo>a>img {
    display: block;
    width: auto;
    height: 100%;
    border: 0;
}

.header .header-pc .header-wrap .header-opts {
    -webkit-flex: auto;
    flex: auto;
}

.header .header-pc .header-wrap .header-opts .header-nav {
    display: block;
    text-align: right;
    height: 48px;
    opacity: 1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-item {
    display: inline-block;
    vertical-align: middle;
    color: #333333;
    font-size: 0;
    line-height: 1;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-item .header-nav-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 0 12px 8px;
    -webkit-transition: padding 0.3s ease 0s;
    transition: padding 0.3s ease 0s;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-item:hover {
    color: #cc4e26;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-divider {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 16px;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-divider:after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background-color: #f0f0f0;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -8px;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover {
    position: relative;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-toggle {
    display: block;
    position: relative;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-toggle .header-popover-badge {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    background-color: #cc4e26;
    color: #fff;
    padding: 0 6px;
    border-radius: 10px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content {
    display: none;
    position: absolute;
    right: -24px;
    left: auto;
    z-index: 10002;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap {
    position: relative;
    background-color: #fff;
    width: 300px;
    border: 1px solid #f0f0f0;
    border-top: 2px solid #cc4e26;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap:after {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    right: 25px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #cc4e26 transparent;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list {
    overflow-y: auto;
    max-height: 300px;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list::-webkit-scrollbar-track {
    background-color: transparent;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list::-webkit-scrollbar-thumb:hover {
    background-color: #c3c3c3;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-empty,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-empty] {
    display: block;
    text-align: center;
    padding: 24px 0;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-empty span,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-empty] span {
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 8px 0;
    color: #666666;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-empty span>i,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-empty] span>i {
    font-size: 40px;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-item,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-item] {
    display: block;
    position: relative;
    text-align: left;
    font-size: 14px;
    padding: 10px 16px 10px 56px;
    line-height: 32px;
    color: #666666;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-item>img,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-item]>img {
    display: block;
    position: absolute;
    top: 10px;
    left: 16px;
    width: 32px;
    height: 32px;
    background-color: whitesmoke;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-item:last-child,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-item]:last-child {
    border: 0;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-item:hover,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-item]:hover {
    color: #333333;
    background-color: #f2f2f2;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-ft {
    padding: 16px;
    border-top: 1px solid #d9d9d9;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-ft .header-popover-action {
    display: block;
    font-size: 14px;
    line-height: 32px;
    padding: 0 16px;
    color: #fff;
    text-align: center;
    background-color: #cc4e26;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-ft .header-popover-action:hover {
    background-color: #a33e1e;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover:hover .header-popover-content {
    display: block;
}

.header .header-pc .header-wrap .header-opts .header-menu {
    display: block;
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item {
    display: inline-block;
    vertical-align: middle;
    color: #333333;
    font-size: 0;
    line-height: 1;
    margin-left: 16px;
    position: relative;
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item .header-menu-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 0;
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item:after {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #cc4e26;
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item:hover,
.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item.active {
    color: #cc4e26;
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item.active:after {
    display: block;
}

.header .header-h5 {
    display: block;
}

.header .header-h5 .header-wrap .header-nav {
    background: linear-gradient(180deg, #2d2d2d 0%, #222 100%);
    border-bottom: 2px solid #cc4e26;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.header .header-h5 .header-wrap .header-nav .header-nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 6px 14px;
    min-height: 52px;
    font-size: 0;
    line-height: 1;
    color: #fff;
}

.header .header-h5 .header-wrap .header-nav .header-nav-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}

.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-item:hover,
.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-item:active {
    transform: scale(0.94);
}

.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-inquiry {
    position: relative;
    background: rgba(204, 78, 38, 0.16);
    border-color: rgba(204, 78, 38, 0.35);
}

.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-inquiry:hover,
.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-inquiry:focus {
    color: #fff;
    background: rgba(204, 78, 38, 0.28);
    border-color: rgba(204, 78, 38, 0.55);
}

.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-inquiry .header-nav-badge {
    display: block;
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    background-color: #cc4e26;
    color: #fff;
    padding: 0 5px;
    border-radius: 9px;
    border: 2px solid #222;
    box-sizing: border-box;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.header .header-h5 .header-wrap .header-logo {
    display: block;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.header .header-h5 .header-wrap .header-logo>a {
    display: block;
    text-align: center;
    padding: 10px 16px;
}

.header .header-h5 .header-wrap .header-logo>a>img {
    display: inline-block;
    vertical-align: middle;
    height: 44px;
    width: auto;
    max-width: min(220px, 72vw);
}

.header[data-scrolldir="down"] .header-pc .header-opts .header-nav {
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.header[data-scrolldir="down"] .header-pc .header-opts .header-menu .header-menu-list .header-menu-item .header-menu-text {
    padding: 20px 0;
}

@media only screen and (min-width: 1024px) {
    .header .header-pc {
        display: block;
    }

    .header .header-h5 {
        display: none;
    }
}

.toolbar {
    display: none;
    position: fixed;
    bottom: 320px;
    right: 0;
    z-index: 3;
}

.toolbar .tool-list .tool-item {
    position: relative;
}

.toolbar .tool-list .tool-item .tool-item-content {
    background-color: #cc4e26;
    color: #fff;
}

.toolbar .tool-list .tool-item .tool-item-content .tool-item-icon {
    display: block;
    width: 42px;
    height: 42px;
    font-size: 24px;
    text-align: center;
    line-height: 42px;
}

.toolbar .tool-list .tool-item .tool-item-content .tool-item-icon>i {
    font-size: inherit;
}

.toolbar .tool-list .tool-item .tool-item-popover {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    padding-right: 8px;
}

.toolbar .tool-list .tool-item .tool-item-popover:after,
.toolbar .tool-list .tool-item .tool-item-popover:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.toolbar .tool-list .tool-item .tool-item-popover:before {
    z-index: 2;
    right: 2px;
    top: 14px;
    border-width: 7px 0 7px 7px;
    border-color: transparent transparent transparent #fff;
}

.toolbar .tool-list .tool-item .tool-item-popover:after {
    z-index: 1;
    right: 0;
    top: 13px;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #f0f0f0;
}

.toolbar .tool-list .tool-item .tool-item-popover .tool-popover-wrap {
    background-color: #fff;
    min-width: 80px;
    min-height: 40px;
    border: 1px solid #f0f0f0;
}

.toolbar .tool-list .tool-item .tool-popover-text {
    font-size: 14px;
    line-height: 40px;
    padding: 0 16px;
    word-break: break-word;
    white-space: nowrap;
    color: #333333;
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item {
    display: block;
    white-space: nowrap;
    word-break: keep-all;
    font-size: 0;
    line-height: 1;
    padding: 10px 16px;
    color: #333333;
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item .im-item-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item .im-item-icon>i {
    font-size: inherit;
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item .im-item-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    font-size: 14px;
    margin-left: 8px;
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item:hover {
    color: #cc4e26;
    background-color: #faede9;
}

.toolbar .tool-list .tool-item .tool-popover-qr {
    padding: 8px;
}

.toolbar .tool-list .tool-item .tool-popover-qr .tool-qr-img {
    display: block;
    width: 128px;
    height: 128px;
    background-color: #ddd;
}

.toolbar .tool-list .tool-item:hover .tool-item-content {
    background-color: #b84622;
}

.toolbar .tool-list .tool-item:hover .tool-item-popover {
    display: block;
}

@media only screen and (min-width: 1024px) {
    .toolbar {
        display: block;
    }
}

.docker {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.docker .dock-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.docker .dock-list .dock-item {
    position: relative;
    padding: 4px;
    min-width: 60px;
}

.docker .dock-list .dock-item .dock-item-content {
    display: block;
    text-align: center;
}

.docker .dock-list .dock-item .dock-item-content .dock-item-icon {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 auto;
    color: #333333;
}

.docker .dock-list .dock-item .dock-item-content .dock-item-icon>i {
    font-size: 24px;
}

.docker .dock-list .dock-item .dock-item-content .dock-item-text {
    display: block;
    font-size: 12px;
    line-height: 1;
    height: 20px;
    color: #666666;
}

.docker .dock-list .dock-item .dock-item-popover {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 50%;
    padding-bottom: 11px;
}

.docker .dock-list .dock-item .dock-item-popover:after,
.docker .dock-list .dock-item .dock-item-popover:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.docker .dock-list .dock-item .dock-item-popover:before {
    z-index: 2;
    left: 50%;
    margin-left: -7px;
    bottom: 5px;
    border-width: 7px 7px 0 7px;
    border-color: #fff transparent transparent transparent;
}

.docker .dock-list .dock-item .dock-item-popover:after {
    z-index: 1;
    bottom: 4px;
    left: 50%;
    margin-left: -8px;
    border-width: 8px 8px 0 8px;
    border-color: #f0f0f0 transparent transparent transparent;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap {
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list {
    display: block;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item {
    display: block;
    padding: 8px 12px;
    font-size: 0;
    white-space: nowrap;
    word-break: keep-all;
    color: #333333;
    background-color: #fff;
    min-width: 60px;
    border-bottom: 1px solid #f0f0f0;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item .popover-item-icon {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item .popover-item-icon>i {
    font-size: 20px;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item .popover-item-text {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item:last-child {
    border: 0;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item:hover {
    color: #cc4e26;
    background-color: #faede9;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-text {
    font-size: 14px;
    line-height: 48px;
    height: 48px;
    padding: 0 16px;
    text-align: center;
    word-break: keep-all;
    white-space: nowrap;
    color: #666666;
    background-color: #fff;
    min-width: 60px;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-image {
    display: block;
    padding: 4px;
    min-width: 60px;
    max-width: 180px;
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-image>img {
    display: block;
    width: 100%;
    height: auto;
    min-width: 140px;
}

.docker .dock-list .dock-item:hover .dock-item-content .dock-item-icon,
.docker .dock-list .dock-item:hover .dock-item-content .dock-item-text {
    color: #cc4e26;
}

.docker .dock-list .dock-item:hover .dock-item-popover {
    display: block;
    -webkit-animation: docker-show 0.5s both;
    animation: docker-show 0.5s both;
}

@media only screen and (min-width: 1024px) {
    .docker {
        display: none;
    }
}

@-webkit-keyframes docker-show {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(30px);
        transform: translateX(-50%) translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes docker-show {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(30px);
        transform: translateX(-50%) translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }
}

/*解决牟牟遮挡问题*/
@media screen and (max-width: 425px) {
    #GdImMainBox {
        bottom: 72px !important;
    }
}

.footer {
    margin-top: 16px;
    background-color: #3a3a3a;
}

.footer .footer-contact {
    position: relative;
    padding: 40px 0 48px;
    background: linear-gradient(165deg, #525252 0%, #454545 45%, #3a3a3a 100%);
}

.footer .footer-contact:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #cc4e26 0%, #e88a0a 100%);
}

.footer .footer-contact .footer-contact-item {
    padding: 8px 12px;
    height: 100%;
}

.footer .footer-contact .footer-contact-card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    min-height: 112px;
    padding: 22px 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    -webkit-transition: opacity 0.28s ease;
    transition: opacity 0.28s ease;
}

.footer .footer-contact .footer-contact-card:hover {
    background: transparent;
    opacity: 0.92;
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
}

.footer .footer-contact .footer-contact-icon {
    -webkit-flex: none;
    flex: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cc4e26 0%, #a33e1e 100%);
    color: #ffffff;
    font-size: 0;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(204, 78, 38, 0.28);
}

.footer .footer-contact .footer-contact-icon>i {
    font-size: 28px;
    line-height: 1;
}

.footer .footer-contact .footer-contact-body {
    -webkit-flex: auto;
    flex: auto;
    min-width: 0;
    text-align: left;
}

.footer .footer-contact .footer-contact-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
}

.footer .footer-contact .footer-contact-value {
    display: block;
    font-size: 15px;
    line-height: 1.65;
    color: #ffffff;
    word-break: break-word;
}

.footer .footer-contact .footer-contact-value a {
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
}

.footer .footer-contact .footer-contact-value a:hover {
    color: #ffb03d;
}

.footer .footer-contact .footer-contact-divider {
    display: inline-block;
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.35);
}

.footer .footer-info {
    padding: 20px 0;
    background-color: #2f2f2f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.footer .footer-info-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 16px 24px;
}

.footer .footer-info-copyright {
    -webkit-flex: 1 1 280px;
    flex: 1 1 280px;
    min-width: 0;
    text-align: center;
}

.footer .footer-info-copy-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.footer .footer-info-meta {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.42);
}

.footer .footer-info-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: color 0.25s ease, border-color 0.25s ease;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.footer .footer-info-link:hover {
    color: #cc4e26;
    border-bottom-color: #cc4e26;
}

.footer .footer-info-social {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 14px;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

.footer .footer-info-social-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    white-space: nowrap;
}

.footer .footer-info-social-list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 6px;
    line-height: 1;
    font-size: 0;
}

.footer .footer-info-social .footer-social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    line-height: 1;
    font-size: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
    vertical-align: middle;
    -webkit-transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease, box-shadow 0.25s ease;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer .footer-info-social .footer-social-item .iconfont {
    display: block;
    font-size: 15px;
    line-height: 1;
}

.footer .footer-info-social .footer-social-item .footer-social-svg {
    display: block;
    width: 13px;
    height: 13px;
}

.footer .footer-info-social .footer-social-item:hover {
    color: #ffffff;
    border-color: #cc4e26;
    background: #cc4e26;
    box-shadow: 0 4px 14px rgba(204, 78, 38, 0.28);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.mfoot_box {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .footer {
        margin-top: 32px;
    }

    .footer .footer-contact {
        padding: 48px 0 56px;
    }

    .footer .footer-info {
        padding: 22px 0 24px;
    }

    .footer .footer-info-copyright {
        text-align: left;
    }

    .footer .footer-info-social {
        margin-left: auto;
    }
}

#drawer-search .drawer-search-wrap {
    display: block;
    max-width: 520px;
    margin: 0 auto;
    padding: 32px 16px;
}

#drawer-search .drawer-search-wrap .drawer-search-bar {
    position: relative;
    padding-right: 40px;
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input {
    display: block;
    width: 100%;
    height: 40px;
    border: 0;
    background-image: none;
    font-size: 16px;
    padding: 0 16px;
    background-color: whitesmoke;
    color: #333333;
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input::-webkit-input-placeholder {
    color: #999999;
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input::-ms-input-placeholder {
    color: #999999;
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input::-moz-placeholder {
    color: #999999;
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-button {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #cc4e26;
    background-image: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-button:hover {
    background-color: #8f371b;
}

@media only screen and (min-width: 1024px) {
    #drawer-search .drawer-search-wrap {
        padding: 64px 0;
    }

    #drawer-search .drawer-search-wrap .drawer-search-bar {
        padding-right: 56px;
    }

    #drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input {
        height: 56px;
    }

    #drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-button {
        width: 56px;
        height: 56px;
    }
}

#drawer-menu .wui-drawer-hd {
    border-bottom: 1px solid #f0f0f0;
}

#drawer-menu .wui-drawer-hd .wui-drawer-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.02em;
}

#drawer-menu .drawer-menu-wrap {
    padding: 12px 12px 24px;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 15px;
    line-height: 1.4;
    color: #333333;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    -webkit-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item .drawer-menu-text {
    -webkit-flex: auto;
    flex: auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item .drawer-menu-arrow {
    -webkit-flex: none;
    flex: none;
    font-size: 12px;
    color: #cccccc;
    margin-left: 8px;
    -webkit-transition: color 0.25s ease 0s;
    transition: color 0.25s ease 0s;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item:hover,
#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.active {
    color: #cc4e26;
    background-color: rgba(204, 78, 38, 0.06);
    border-left-color: #cc4e26;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item:hover .drawer-menu-arrow,
#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.active .drawer-menu-arrow {
    color: #cc4e26;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-home {
    font-weight: 600;
    background-color: #cc4e26;
    color: #ffffff;
    border-left-color: #cc4e26;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-home:hover,
#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-home.active {
    background-color: #b54422;
    color: #ffffff;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-group {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-group.active {
    border-color: rgba(204, 78, 38, 0.25);
    box-shadow: 0 4px 12px rgba(204, 78, 38, 0.08);
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-group .drawer-menu-parent {
    font-weight: 600;
    background-color: #fafafa;
    border-radius: 0;
    border-left: 3px solid #cc4e26;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-group .drawer-menu-sublist {
    padding: 4px 0 8px;
    border-top: 1px solid #f5f5f5;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.sub {
    position: relative;
    color: #666666;
    font-size: 14px;
    padding: 10px 16px 10px 32px;
    border-radius: 0;
    border-left: none;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.sub:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 16px;
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    border-radius: 50%;
    background-color: #dddddd;
    -webkit-transition: background-color 0.25s ease 0s;
    transition: background-color 0.25s ease 0s;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.sub:hover:before,
#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.sub.active:before {
    background-color: #cc4e26;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.trd {
    color: #999999;
    font-size: 13px;
    padding: 8px 16px 8px 44px;
    border-radius: 0;
    border-left: none;
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.trd:before {
    left: 28px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
}

#drawer-lang .drawer-lang-wrap .drawer-lang-list {
    padding: 16px 0;
}

#drawer-lang .drawer-lang-wrap .drawer-lang-list .drawer-lang-item {
    display: block;
    position: relative;
}

#drawer-lang .drawer-lang-wrap .drawer-lang-list .drawer-lang-item .drawer-lang-icon {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    left: 16px;
}

#drawer-lang .drawer-lang-wrap .drawer-lang-list .drawer-lang-item .drawer-lang-text {
    display: block;
    font-size: 16px;
    line-height: 32px;
    padding: 0 16px 0 48px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.detail .detail-wrap .detail-header {
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.detail .detail-wrap .detail-header .detail-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #cc4e26;
}

.detail .detail-wrap .detail-header .detail-meta {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
    color: #666666;
}

.detail .detail-wrap .detail-container {
    padding: 16px 0;
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
}

.detail .detail-wrap .detail-container img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.ueditor-container table,
.content-container table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 16px 0;
    border: 1px solid #d9d9d9;
}

.ueditor-container th,
.ueditor-container td,
.content-container th,
.content-container td {
    border: 1px solid #d9d9d9;
    padding: 8px 12px;
    text-align: left;
    vertical-align: middle;
    word-break: break-word;
}

.ueditor-container th,
.content-container th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333333;
}

.ueditor-container ul,
.content-container ul {
    list-style-type: disc;
    padding-left: 40px;
    margin: 0 0 12px;
}

.ueditor-container ol,
.content-container ol {
    list-style-type: decimal;
    padding-left: 40px;
    margin: 0 0 12px;
}

.ueditor-container li,
.content-container li {
    list-style-type: inherit;
}

.ueditor-container p,
.content-container p {
    margin: 0 0 12px;
}

.ueditor-container p:last-child,
.content-container p:last-child {
    margin-bottom: 0;
}

.detail .detail-wrap .detail-footer {
    text-align: center;
    font-size: 0;
    line-height: 1;
}

.detail .detail-wrap .detail-footer .wui-btn {
    margin: 0 8px;
}

.page-detail .detail-wrap .detail-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.page-detail .detail-wrap .detail-footer .wui-btn {
    max-width: none;
    width: auto;
    white-space: nowrap;
}

.page-photo-detail .photo-detail-gallery {
    margin-bottom: 24px;
}

.page-photo-detail .photo-gallery-swiper,
.page-photo-detail .photo-thumb-swiper {
    position: relative;
}

.page-photo-detail .photo-gallery-swiper {
    margin-bottom: 12px;
    border-radius: 8px;
    background: #f5f5f5;
}

.page-photo-detail .photo-gallery-swiper .swiper-slide,
.page-photo-detail .photo-gallery-swiper .gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.page-photo-detail .photo-gallery-swiper .gallery-item,
.page-photo-detail .photo-gallery-swiper .wrap {
    display: block;
    width: 100%;
}

.page-photo-detail .photo-gallery-swiper .wrap {
    position: relative;
    padding-top: 56.25%;
}

.page-photo-detail .photo-gallery-swiper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
}

.page-photo-detail .photo-thumb-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-photo-detail .photo-thumb-swiper .swiper-wrapper {
    justify-content: center;
}

.page-photo-detail .photo-thumb-swiper .thumb-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    padding: 0 4px;
}

.page-photo-detail .photo-thumb-swiper .swiper-slide-thumb-active .thumb-item {
    border-color: #cc4e26;
}

.page-photo-detail .photo-thumb-swiper .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.page-photo-detail .photo-thumb-swiper img {
    display: block;
    height: auto;
    max-height: 72px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    background: #f5f5f5;
    margin: 0 auto;
}

@media only screen and (min-width: 1024px) {
    .page-photo-detail .photo-thumb-swiper .thumb-item {
        height: 92px;
    }

    .page-photo-detail .photo-thumb-swiper img {
        max-height: 88px;
        max-width: 180px;
    }
}

.page-photo-detail .photo-detail-gallery .swiper-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.page-photo-detail .photo-detail-gallery .swiper-button-prev,
.page-photo-detail .photo-detail-gallery .swiper-button-next {
    pointer-events: auto;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.page-photo-detail .photo-detail-gallery .swiper-button-prev:after,
.page-photo-detail .photo-detail-gallery .swiper-button-next:after {
    font-size: 14px;
    font-weight: 700;
}

.page-photo-detail .photo-gallery-swiper .swiper-button-prev {
    left: 12px;
}

.page-photo-detail .photo-gallery-swiper .swiper-button-next {
    right: 12px;
}

.page-photo-detail .photo-thumb-swiper .swiper-button-prev,
.page-photo-detail .photo-thumb-swiper .swiper-button-next {
    width: 28px;
    height: 28px;
    margin-top: -14px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-photo-detail .photo-thumb-swiper .swiper-button-prev:after,
.page-photo-detail .photo-thumb-swiper .swiper-button-next:after {
    font-size: 12px;
}

.page-photo-detail .photo-thumb-swiper .swiper-button-prev {
    left: 0;
}

.page-photo-detail .photo-thumb-swiper .swiper-button-next {
    right: 0;
}

.page-photo-detail .sidebar-card-cases .wui-card-hd .wui-card-text::before {
    content: "\e6a8";
}

@media only screen and (min-width: 1024px) {
    .detail .detail-wrap .detail-header .detail-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .detail .detail-wrap .detail-header .detail-meta {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .detail .detail-wrap .detail-container {
        padding: 24px 0;
        font-size: 16px;
        line-height: 28px;
    }
}

.backing {
    position: relative;
}

.backing:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.crumb {
    background-color: #d9d9d9;
}

.crumb .crumb-wrap {
    text-align: center;
    padding: 8px 0;
}

@media only screen and (min-width: 1024px) {
    .crumb .crumb-wrap {
        text-align: left;
        padding: 12px 0;
    }
}

.page-products .crumb .w104-crumb-list,
.page-products-detail .crumb .w104-crumb-list,
.page-detail .crumb .w104-crumb-list,
.page-about .crumb .w104-crumb-list,
.page-contact .crumb .w104-crumb-list,
.page-page .crumb .w104-crumb-list,
.page-404 .crumb .w104-crumb-list,
.page-jump .crumb .w104-crumb-list,
.page-inquiry .crumb .w104-crumb-list,
.page-sitemap .crumb .w104-crumb-list,
.page-tags-list .crumb .w104-crumb-list,
.page-news .crumb .w104-crumb-list,
.page-downloads .crumb .w104-crumb-list,
.page-case .crumb .w104-crumb-list,
.page-search .crumb .w104-crumb-list,
.page-tags .crumb .w104-crumb-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}

@media only screen and (min-width: 1024px) {

    .page-products .crumb .w104-crumb-list,
    .page-products-detail .crumb .w104-crumb-list,
.page-detail .crumb .w104-crumb-list,
    .page-about .crumb .w104-crumb-list,
    .page-contact .crumb .w104-crumb-list,
.page-page .crumb .w104-crumb-list,
.page-404 .crumb .w104-crumb-list,
.page-jump .crumb .w104-crumb-list,
.page-inquiry .crumb .w104-crumb-list,
.page-sitemap .crumb .w104-crumb-list,
.page-tags-list .crumb .w104-crumb-list,
    .page-news .crumb .w104-crumb-list,
.page-downloads .crumb .w104-crumb-list,
    .page-case .crumb .w104-crumb-list,
    .page-search .crumb .w104-crumb-list,
    .page-tags .crumb .w104-crumb-list {
        justify-content: flex-start;
    }
}

.page-products .crumb .w104-crumb-item,
.page-products-detail .crumb .w104-crumb-item,
.page-detail .crumb .w104-crumb-item,
.page-about .crumb .w104-crumb-item,
.page-contact .crumb .w104-crumb-item,
.page-page .crumb .w104-crumb-item,
.page-404 .crumb .w104-crumb-item,
.page-jump .crumb .w104-crumb-item,
.page-inquiry .crumb .w104-crumb-item,
.page-sitemap .crumb .w104-crumb-item,
.page-tags-list .crumb .w104-crumb-item,
.page-news .crumb .w104-crumb-item,
.page-downloads .crumb .w104-crumb-item,
.page-case .crumb .w104-crumb-item,
.page-search .crumb .w104-crumb-item,
.page-tags .crumb .w104-crumb-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    color: #333333;
}

.page-products .crumb .w104-crumb-item a,
.page-products-detail .crumb .w104-crumb-item a,
.page-detail .crumb .w104-crumb-item a,
.page-about .crumb .w104-crumb-item a,
.page-contact .crumb .w104-crumb-item a,
.page-page .crumb .w104-crumb-item a,
.page-404 .crumb .w104-crumb-item a,
.page-jump .crumb .w104-crumb-item a,
.page-inquiry .crumb .w104-crumb-item a,
.page-sitemap .crumb .w104-crumb-item a,
.page-tags-list .crumb .w104-crumb-item a,
.page-news .crumb .w104-crumb-item a,
.page-downloads .crumb .w104-crumb-item a,
.page-case .crumb .w104-crumb-item a,
.page-search .crumb .w104-crumb-item a,
.page-tags .crumb .w104-crumb-item a {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-products .crumb .w104-crumb-item a:hover,
.page-products-detail .crumb .w104-crumb-item a:hover,
.page-detail .crumb .w104-crumb-item a:hover,
.page-about .crumb .w104-crumb-item a:hover,
.page-contact .crumb .w104-crumb-item a:hover,
.page-page .crumb .w104-crumb-item a:hover,
.page-404 .crumb .w104-crumb-item a:hover,
.page-jump .crumb .w104-crumb-item a:hover,
.page-inquiry .crumb .w104-crumb-item a:hover,
.page-sitemap .crumb .w104-crumb-item a:hover,
.page-tags-list .crumb .w104-crumb-item a:hover,
.page-news .crumb .w104-crumb-item a:hover,
.page-downloads .crumb .w104-crumb-item a:hover,
.page-case .crumb .w104-crumb-item a:hover,
.page-search .crumb .w104-crumb-item a:hover,
.page-tags .crumb .w104-crumb-item a:hover {
    color: #000;
}

.page-products .crumb .w104-crumb-item:first-child a::before,
.page-products-detail .crumb .w104-crumb-item:first-child a::before,
.page-detail .crumb .w104-crumb-item:first-child a::before,
.page-about .crumb .w104-crumb-item:first-child a::before,
.page-contact .crumb .w104-crumb-item:first-child a::before,
.page-page .crumb .w104-crumb-item:first-child a::before,
.page-404 .crumb .w104-crumb-item:first-child a::before,
.page-jump .crumb .w104-crumb-item:first-child a::before,
.page-inquiry .crumb .w104-crumb-item:first-child a::before,
.page-sitemap .crumb .w104-crumb-item:first-child a::before,
.page-tags-list .crumb .w104-crumb-item:first-child a::before,
.page-news .crumb .w104-crumb-item:first-child a::before,
.page-downloads .crumb .w104-crumb-item:first-child a::before,
.page-case .crumb .w104-crumb-item:first-child a::before,
.page-search .crumb .w104-crumb-item:first-child a::before,
.page-tags .crumb .w104-crumb-item:first-child a::before {
    font-family: "iconfont";
    content: "\eda5";
    margin-right: 6px;
    font-size: 16px;
    color: #cc4e26;
}

.page-products .crumb .w104-crumb-item span,
.page-products-detail .crumb .w104-crumb-item span,
.page-detail .crumb .w104-crumb-item span,
.page-about .crumb .w104-crumb-item span,
.page-contact .crumb .w104-crumb-item span,
.page-page .crumb .w104-crumb-item span,
.page-404 .crumb .w104-crumb-item span,
.page-jump .crumb .w104-crumb-item span,
.page-inquiry .crumb .w104-crumb-item span,
.page-sitemap .crumb .w104-crumb-item span,
.page-tags-list .crumb .w104-crumb-item span,
.page-news .crumb .w104-crumb-item span,
.page-downloads .crumb .w104-crumb-item span,
.page-case .crumb .w104-crumb-item span,
.page-search .crumb .w104-crumb-item span,
.page-tags .crumb .w104-crumb-item span {
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
    font-size: 0;
    color: transparent;
}

.page-products .crumb .w104-crumb-item span::before,
.page-products-detail .crumb .w104-crumb-item span::before,
.page-detail .crumb .w104-crumb-item span::before,
.page-about .crumb .w104-crumb-item span::before,
.page-contact .crumb .w104-crumb-item span::before,
.page-page .crumb .w104-crumb-item span::before,
.page-404 .crumb .w104-crumb-item span::before,
.page-jump .crumb .w104-crumb-item span::before,
.page-inquiry .crumb .w104-crumb-item span::before,
.page-sitemap .crumb .w104-crumb-item span::before,
.page-tags-list .crumb .w104-crumb-item span::before,
.page-news .crumb .w104-crumb-item span::before,
.page-downloads .crumb .w104-crumb-item span::before,
.page-case .crumb .w104-crumb-item span::before,
.page-search .crumb .w104-crumb-item span::before,
.page-tags .crumb .w104-crumb-item span::before {
    font-family: "iconfont";
    content: "\ef32";
    font-size: 14px;
    color: #bbbbbb;
}

.page-products .crumb .w104-crumb-item:last-child a,
.page-products-detail .crumb .w104-crumb-item:last-child a,
.page-detail .crumb .w104-crumb-item:last-child a,
.page-about .crumb .w104-crumb-item:last-child a,
.page-contact .crumb .w104-crumb-item:last-child a,
.page-page .crumb .w104-crumb-item:last-child a,
.page-404 .crumb .w104-crumb-item:last-child a,
.page-jump .crumb .w104-crumb-item:last-child a,
.page-inquiry .crumb .w104-crumb-item:last-child a,
.page-sitemap .crumb .w104-crumb-item:last-child a,
.page-tags-list .crumb .w104-crumb-item:last-child a,
.page-news .crumb .w104-crumb-item:last-child a,
.page-downloads .crumb .w104-crumb-item:last-child a,
.page-case .crumb .w104-crumb-item:last-child a,
.page-search .crumb .w104-crumb-item:last-child a,
.page-tags .crumb .w104-crumb-item:last-child a {
    pointer-events: none;
    color: #666666;
}

.page-products .product-list-pager,
.page-news .news-list-pager,
.page-downloads .downloads-list-pager,
.page-case .case-list-pager,
.page-search .product-list-pager,
.page-tags .product-list-pager {
    margin-top: 32px;
    padding: 16px 0 8px;
    border-top: 1px solid #f0f0f0;
}

.page-products .product-list-pager .w103-pagination-list,
.page-news .news-list-pager .w103-pagination-list,
.page-downloads .downloads-list-pager .w103-pagination-list,
.page-case .case-list-pager .w103-pagination-list,
.page-search .product-list-pager .w103-pagination-list,
.page-tags .product-list-pager .w103-pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    font-size: 14px;
    color: #999999;
}

.page-products .product-list-pager .w103-pagination-item,
.page-news .news-list-pager .w103-pagination-item,
.page-downloads .downloads-list-pager .w103-pagination-item,
.page-case .case-list-pager .w103-pagination-item,
.page-search .product-list-pager .w103-pagination-item,
.page-tags .product-list-pager .w103-pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 1;
    color: #333333;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.page-products .product-list-pager .w103-pagination-item span,
.page-news .news-list-pager .w103-pagination-item span,
.page-downloads .downloads-list-pager .w103-pagination-item span,
.page-case .case-list-pager .w103-pagination-item span,
.page-search .product-list-pager .w103-pagination-item span,
.page-tags .product-list-pager .w103-pagination-item span {
    display: inline;
}

.page-products .product-list-pager .w103-pagination-item:hover,
.page-news .news-list-pager .w103-pagination-item:hover,
.page-downloads .downloads-list-pager .w103-pagination-item:hover,
.page-case .case-list-pager .w103-pagination-item:hover,
.page-search .product-list-pager .w103-pagination-item:hover,
.page-tags .product-list-pager .w103-pagination-item:hover {
    color: #cc4e26;
    border-color: #cc4e26;
    box-shadow: 0 2px 8px rgba(204, 78, 38, 0.12);
}

.page-products .product-list-pager .w103-pagination-item.active,
.page-news .news-list-pager .w103-pagination-item.active,
.page-downloads .downloads-list-pager .w103-pagination-item.active,
.page-case .case-list-pager .w103-pagination-item.active,
.page-search .product-list-pager .w103-pagination-item.active,
.page-tags .product-list-pager .w103-pagination-item.active {
    color: #ffffff;
    background-color: #cc4e26;
    border-color: #cc4e26;
    box-shadow: 0 2px 8px rgba(204, 78, 38, 0.2);
    cursor: default;
    pointer-events: none;
}

.page-products .product-list-pager .w103-pagination-item.prev,
.page-products .product-list-pager .w103-pagination-item.next,
.page-news .news-list-pager .w103-pagination-item.prev,
.page-news .news-list-pager .w103-pagination-item.next,
.page-downloads .downloads-list-pager .w103-pagination-item.prev,
.page-downloads .downloads-list-pager .w103-pagination-item.next,
.page-case .case-list-pager .w103-pagination-item.prev,
.page-case .case-list-pager .w103-pagination-item.next,
.page-search .product-list-pager .w103-pagination-item.prev,
.page-search .product-list-pager .w103-pagination-item.next,
.page-tags .product-list-pager .w103-pagination-item.prev,
.page-tags .product-list-pager .w103-pagination-item.next {
    min-width: 40px;
    padding: 0 12px;
    font-size: 16px;
    font-weight: 600;
}

.grid .grid-item {
    display: block;
}

.grid .grid-item .grid-item-title {
    font-size: 18px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    font-weight: 500;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.grid .grid-item .grid-item-desc {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2;
}

.grid .grid-item .grid-item-price {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    height: 24px;
    color: #7DAF32;
}

.grid .grid-item:hover .grid-item-title {
    color: #cc4e26;
}

.infinite .infinite-spinner {
    display: none;
    text-align: center;
    pointer-events: none;
    margin-top: 16px;
}

.infinite .infinite-trigger {
    display: none;
    text-align: center;
    margin-top: 16px;
}

.infinite .infinite-last {
    display: none;
}

.infinite .infinite-last .infinite-no-more {
    display: block;
    font-size: 16px;
    line-height: 40px;
    padding: 0;
    color: #999999;
    text-align: center;
}

.infinite .infinite-navigator {
    display: block;
}

.sidebar {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .sidebar {
        display: block;
    }
}

.product-card-wrap {
    position: relative;
}

.product-card-wrap > .product-intro-action {
    position: absolute;
    right: 0;
    bottom: 8px;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    -webkit-flex: none;
    flex: none;
}

.product-card-wrap-inner > .product-intro-action {
    bottom: 9px;
    right: 8px;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-inquiry-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    overflow: visible;
    border-bottom: 1px solid #f0f0f0;
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-inquiry-item:last-child {
    border-bottom: 0;
}

.header-inquiry-item .header-inquiry-link {
    display: block;
    position: relative;
    flex: 1;
    min-width: 0;
    text-align: left;
    font-size: 14px;
    padding: 10px 0 10px 56px;
    line-height: 32px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-inquiry-item .header-inquiry-link>img {
    display: block;
    position: absolute;
    top: 10px;
    left: 16px;
    width: 32px;
    height: 32px;
    background-color: whitesmoke;
}

.header-inquiry-item .header-inquiry-link:hover {
    color: #333333;
}

.header-inquiry-item .header-inquiry-remove {
    flex: none;
    width: 28px;
    height: 28px;
    margin-right: 12px;
    border: none;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.06);
    color: #888;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.header-inquiry-item .header-inquiry-remove:hover {
    color: #FE5050;
    background: rgba(254, 80, 80, 0.12);
}

.header-inquiry-item:hover {
    background-color: #f2f2f2;
}

.inquiry-cart-toast {
    position: fixed;
    left: 50%;
    top: 88px;
    z-index: 10050;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: min(420px, calc(100vw - 32px));
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, -12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.inquiry-cart-toast.is-success {
    background: #2f8f46;
}

.inquiry-cart-toast.is-info {
    background: #555;
}

.inquiry-cart-toast .iconfont {
    flex: none;
    font-size: 16px;
    line-height: 1;
}

.inquiry-cart-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.inquiry-cart-tip {
    position: fixed;
    z-index: 10051;
    max-width: 220px;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(22, 30, 33, 0.94);
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.inquiry-cart-tip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-intro-action.js-inquiry-add.is-just-added .product-action-icon {
    animation: inquiry-cart-pulse 0.55s ease;
}

@keyframes inquiry-cart-pulse {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.18);
        color: #FE5050;
    }

    100% {
        transform: scale(1);
    }
}

.page-inquiry-cart {
    margin-bottom: 24px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.page-inquiry-cart-head {
    padding: 18px 20px;
    background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.page-inquiry-cart-head-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.page-inquiry-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(204, 78, 38, 0.12);
    color: #cc4e26;
}

.page-inquiry-cart-icon .iconfont {
    font-size: 22px;
    line-height: 1;
}

.page-inquiry-cart-head-text {
    min-width: 0;
}

.page-inquiry-cart-title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #222;
}

.page-inquiry-cart-meta {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #888;
}

.inquiry-cart-summary-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 16px 20px 20px;
    list-style: none;
}

.inquiry-cart-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px 12px 12px 14px;
    border: 1px solid #ececec;
    border-left: 3px solid #cc4e26;
    border-radius: 8px;
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.inquiry-cart-summary-item:hover {
    background: #fff;
    border-color: #ddd;
    border-left-color: #cc4e26;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.inquiry-cart-summary-cover {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}

.inquiry-cart-summary-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-cart-summary-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #bbb;
    background: #f0f0f0;
}

.inquiry-cart-summary-placeholder .iconfont {
    font-size: 22px;
}

.inquiry-cart-summary-body {
    flex: 1;
    min-width: 0;
}

.inquiry-cart-summary-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    color: #333;
    text-decoration: none;
    word-break: break-word;
}

a.inquiry-cart-summary-name:hover {
    color: #cc4e26;
}

.inquiry-cart-summary-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.05);
    color: #888;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.inquiry-cart-summary-remove .iconfont {
    font-size: 14px;
    line-height: 1;
}

.inquiry-cart-summary-item--hidden {
    display: none !important;
}

.inquiry-cart-summary-more {
    padding: 0 20px 20px;
    text-align: center;
}

.inquiry-cart-summary-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 10px 22px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    background: #fff;
    color: #cc4e26;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-cart-summary-toggle:hover {
    color: #a33e1e;
    background: #fff8f5;
    border-color: #cc4e26;
    box-shadow: 0 4px 12px rgba(204, 78, 38, 0.12);
}

.inquiry-cart-summary-remove:hover {
    color: #fff;
    background: #FE5050;
    transform: scale(1.05);
}

@media only screen and (max-width: 767px) {
    .inquiry-cart-summary-list {
        grid-template-columns: 1fr;
        padding: 14px 14px 16px;
    }

    .page-inquiry-cart-head {
        padding: 14px 14px 16px;
    }

    .page-inquiry-cart-title {
        font-size: 16px;
    }
}

.product-card-wrap-inner {
    display: block;
    height: 100%;
}

.product-card-wrap-inner > .product-card.product-card-inner {
    display: block;
}

.js-inquiry-add.active .icon-shopping-cart {
    color: #FE5050;
}

.page-products-detail .detail-intro-action .js-inquiry-add .iconfont {
    color: #fff;
}

.page-products-detail .detail-intro-action .js-inquiry-add.active .icon-shopping-cart,
.page-products-detail .detail-intro-action .js-inquiry-add.active .iconfont {
    color: #fff;
}

.page-products-detail .detail-intro-action .js-inquiry-add.active .icon-shopping-cart:before {
    content: "\ee9d" !important;
}

.product-card {
    display: block;
    position: relative;
}

.product-card .product-card-cover {
    border: 1px solid #d9d9d9;
}

.product-card .product-card-intro {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    padding: 8px 0;
}

.product-card .product-card-intro .product-intro-info {
    -webkit-flex: auto;
    flex: auto;
    padding-right: 8px;
    width: 0;
}

.product-card .product-card-intro .product-intro-info .product-info-title {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.product-card .product-card-intro .product-intro-info .product-info-title:hover {
    color: #cc4e26;
}

.product-card .product-card-intro .product-intro-info .product-info-price {
    font-size: 16px;
    line-height: 24px;
    color: #7DAF32;
}

.product-card .product-card-intro .product-intro-action {
    -webkit-flex: none;
    flex: none;
}

.product-card .product-card-intro .product-intro-action .product-action-icon {
    display: block;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    border-radius: 16px;
    color: #333333;
}

.product-card .product-card-intro .product-intro-action .product-action-icon>i {
    font-size: inherit;
}

.product-card .product-card-intro .product-intro-action:hover .product-action-icon {
    color: #FE5050;
    background-color: rgba(0, 0, 0, 0.05);
}

.product-card .product-card-intro .product-intro-action.active .product-action-icon .icon-shopping-cart {
    color: #FE5050;
}

.product-card .product-card-intro .product-intro-action.active .product-action-icon .icon-shopping-cart:before {
    content: "\ee9d" !important;
}

.product-card .product-card-intro .product-intro-action.active .product-action-icon .icon-wish-list {
    color: #FE5050;
}

.product-card .product-card-intro .product-intro-action.active .product-action-icon .icon-wish-list:before {
    content: "\ef9b" !important;
}

.product-card.product-card-inner .product-card-intro {
    position: absolute;
    bottom: 1px;
    left: 1px;
    right: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px;
}

.advantage {
    margin-top: 32px;
    background-color: #333;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed;
}

.advantage .advantage-wrap {
    padding: 24px 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.advantage .advantage-wrap .advantage-cover {
    display: block;
    width: 100%;
    position: relative;
}

.advantage .advantage-wrap .advantage-cover .advantage-cover-wrap {
    width: 100%;
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-title {
    font-size: 24px;
    color: #fff;
    position: relative;
    text-align: center;
    text-transform: Uppercase;
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-icon {
    -webkit-flex: none;
    flex: none;
    font-size: 32px;
    line-height: 88px;
    width: 48px;
    text-align: left;
    margin-right: 8px;
    font-weight: 500;
    color: #7DAF32;
    position: relative;
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info {
    -webkit-flex: auto;
    flex: auto;
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info .advantage-info-title {
    font-size: 18px;
    line-height: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info .advantage-info-desc {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2;
}

@media only screen and (min-width: 1024px) {
    .advantage {
        margin-top: 7%;
    }

    .advantage .advantage-wrap {
        padding: 48px 0 72px;
    }

    .advantage .advantage-wrap .advantage-cover {
        height: 100%;
        min-height: 520px;
    }

    .advantage .advantage-wrap .advantage-cover .advantage-cover-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .advantage .advantage-wrap .advantage-intro {
        padding-left: 15%;
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-title {
        font-size: 36px;
        line-height: 90px;
        text-align: left;
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-title:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 120px;
        height: 3px;
        background-color: #fff;
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item {
        padding: 16px 0;
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-icon {
        font-size: 50px;
        line-height: 88px;
        width: 64px;
        margin-right: 64px;
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-icon:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: -48px;
        width: 32px;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info {
        -webkit-flex: auto;
        flex: auto;
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info .advantage-info-title {
        font-size: 24px;
        line-height: 40px;
        height: 40px;
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info .advantage-info-desc {
        font-size: 16px;
        line-height: 24px;
        height: 48px;
        text-align: justify;
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
}

.page-home .banner {
    display: block;
    background-color: #ddd;
}

.page-home .banner .banner-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%;
}

.page-home .banner .banner-wrapper:nth-child(2),
.page-home .banner .banner-wrapper.banner-h5 {
    display: none;
}

.page-home .banner.has-mobile .banner-wrapper {
    padding-bottom: 50%;
}

.page-home .banner.has-mobile .banner-wrapper:nth-child(1),
.page-home .banner.has-mobile .banner-wrapper.banner-pc {
    display: none;
}

.page-home .banner.has-mobile .banner-wrapper:nth-child(2),
.page-home .banner.has-mobile .banner-wrapper.banner-h5 {
    display: block;
}

.page-home .banner .banner-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-home .banner .banner-container .banner-swiper {
    width: 100%;
    height: 100%;
}

.page-home .banner .banner-container .banner-swiper .swiper-slide>a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-home .banner .banner-container .banner-swiper .swiper-slide>a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-home .banner .banner-swiper .swiper-lazy-preloader {
    display: none !important;
}

@media only screen and (min-width: 1024px) {
    .page-home .banner.has-mobile .banner-wrapper {
        padding-bottom: 40%;
    }

    .page-home .banner.has-mobile .banner-wrapper:nth-child(1),
    .page-home .banner.has-mobile .banner-wrapper.banner-pc {
        display: block;
    }

    .page-home .banner.has-mobile .banner-wrapper:nth-child(2),
    .page-home .banner.has-mobile .banner-wrapper.banner-h5 {
        display: none;
    }

    .page-home .banner .banner-container .banner-swiper .swiper-button-prev,
    .page-home .banner .banner-container .banner-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .page-home .banner .banner-container .banner-swiper .swiper-button-prev:after,
    .page-home .banner .banner-container .banner-swiper .swiper-button-next:after {
        font-size: 20px;
    }
}

.page-home .news .news-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #cc4e26;
    position: relative;
    text-transform: Uppercase;
}

.page-home .news .news-wrap .news-list .news-item {
    background-color: #fff;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro {
    padding: 12px 16px;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
    display: block;
    font-size: 16px;
    line-height: 32px;
    height: 32px;
    color: #333333;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title:hover {
    color: #cc4e26;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
    display: block;
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    color: #999999;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date {
    font-size: 16px;
    line-height: 24px;
    height: 24px;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-icon {
    color: #7DAF32;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-icon>i {
    font-size: inherit;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-days {
    color: #7DAF32;
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-year {
    color: #999999;
}

@media only screen and (min-width: 1024px) {
    .page-home .news .news-title {
        font-size: 36px;
        padding: 16px 0;
    }

    .page-home .news .news-title:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -50px;
        width: 100px;
        height: 3px;
        background-color: #cc4e26;
    }

    .page-home .news .news-wrap .news-list .news-item .news-item-intro {
        padding: 20px 24px;
    }

    .page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-desc {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date {
        font-size: 20px;
    }
}

.page-home .product {
    position: relative;
}

.page-home .product .product-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #cc4e26;
    text-transform: Uppercase;
}

.page-home .product .product-wrap {
    position: relative;
}

.page-home .product .product-wrap .product-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.page-home .product .product-wrap .product-list .product-item-wrap {
    position: relative;
    display: block;
    height: 100%;
}

.page-home .product .product-wrap .product-list .product-item {
    display: block;
    position: relative;
    height: 100%;
}

.page-home .product .product-wrap .product-list .product-item .product-beam {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item {
    display: block;
    position: relative;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:before,
.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:after {
    display: block;
    position: absolute;
    content: '';
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:first-child {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:first-child:before {
    left: -90%;
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:first-child:after {
    right: -90%;
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:last-child {
    height: 100%;
    width: 1px;
    left: 50%;
    top: 0;
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:last-child:before {
    top: -90%;
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:last-child:after {
    bottom: -90%;
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
    pointer-events: none;
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro .product-intro-title {
    display: block;
    font-size: 14px;
    padding: 0 16px;
    color: #fff;
    margin-bottom: 8px;
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro .product-intro-price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #7DAF32;
    margin-bottom: 8px;
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro .product-intro-action {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 12px;
    pointer-events: auto;
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro-action-cart {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro-action-cart .product-action-icon {
    display: block;
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 36px;
    text-align: center;
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    transition: color 0.2s ease, background 0.2s ease;
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro-action-cart:hover .product-action-icon {
    color: #FE5050;
    background: rgba(255, 255, 255, 0.28);
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro-action-cart.active .product-action-icon .icon-shopping-cart {
    color: #FE5050;
}

.page-home .product .product-wrap .product-list .product-item-wrap .product-intro-action-cart.active .product-action-icon .icon-shopping-cart:before {
    content: "\ee9d" !important;
}

.page-home .product .product-wrap .product-list .swiper-slide:hover .product-item-wrap .product-intro {
    opacity: 1;
}

.page-home .product .product-wrap .product-list .swiper-slide:hover .product-beam .product-beam-item {
    opacity: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (min-width: 1024px) {
    .page-home .product .product-title {
        display: none;
    }

    .page-home .product .product-wrap .product-list .product-item-wrap .product-intro .product-intro-title {
        font-size: 18px;
        line-height: 24px;
        padding: 0 32px;
        margin-bottom: 16px;
    }

    .page-home .product .product-wrap .product-list .product-item-wrap .product-intro .product-intro-price {
        font-size: 18px;
        margin-bottom: 16px;
    }
}

.page-home .about .about-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #cc4e26;
    position: relative;
    text-transform: Uppercase;
}

.page-home .about .about-wrap .about-intro {
    height: 100%;
    padding: 16px;
    background-color: #fff;
}

.page-home .about .about-wrap .about-intro .about-intro-title {
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #333333;
    position: relative;
}

.page-home .about .about-wrap .about-intro .about-intro-title:after {
    content: '';
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 2px;
    background-color: #cc4e26;
}

.page-home .about .about-wrap .about-intro .about-intro-desc {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    margin: 16px 0;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 7;
}

.page-home .about .about-wrap .about-intro .about-intro-action {
    text-align: center;
}

.page-home .about .about-wrap .about-cover {
    display: block;
    position: relative;
    color: #fff;
    height: 100%;
}

.page-home .about .about-wrap .about-cover .about-video-mask {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: inherit;
}

.page-home .about .about-wrap .about-cover .about-video-mask:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0;
}

.page-home .about .about-wrap .about-cover .about-video-mask .about-video-play {
    display: inline-block;
    vertical-align: middle;
    width: 64px;
    height: 64px;
}

.page-home .about .about-wrap .about-cover .about-video-mask .about-video-play>i {
    font-size: 64px;
}

.page-home .about .about-wrap .about-cover.about-video .about-video-mask {
    display: block;
}

.page-home .about .about-wrap .about-cover:hover {
    color: #cc4e26;
}

@media only screen and (min-width: 1024px) {
    .page-home .about .about-title {
        font-size: 36px;
        padding: 16px 0;
    }

    .page-home .about .about-title:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -50px;
        width: 100px;
        height: 3px;
        background-color: #cc4e26;
    }

    .page-home .about .about-wrap .about-intro {
        padding: 32px;
    }

    .page-home .about .about-wrap .about-intro .about-intro-title {
        font-size: 30px;
        line-height: 40px;
        padding: 20px 0;
        text-align: left;
    }

    .page-home .about .about-wrap .about-intro .about-intro-title:after {
        display: block;
    }

    .page-home .about .about-wrap .about-intro .about-intro-desc {
        font-size: 16px;
        line-height: 30px;
        margin: 40px 0;
    }

    .page-home .about .about-wrap .about-intro .about-intro-action {
        text-align: right;
    }

    .page-home .about .about-wrap .about-cover {
        min-height: 500px;
    }
}

.page-home .faq .faq-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #cc4e26;
    position: relative;
    text-transform: Uppercase;
}

.page-home .faq .faq-wrap .faq-list .faq-item {
    display: block;
    background-color: #7DAF32;
    padding: 16px;
    margin: 0;
}

.page-home .faq .faq-wrap .faq-list .faq-item .faq-item-title {
    display: block;
    font-size: 16px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.page-home .faq .faq-wrap .faq-list .faq-item .faq-item-desc {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2;
}

.page-home .faq .faq-wrap .faq-list .faq-item:nth-child(2) {
    margin: 1px 0;
}

.page-home .faq .faq-wrap .faq-list .faq-item:hover .faq-item-title {
    color: #fff;
}

@media only screen and (min-width: 1024px) {
    .page-home .faq .faq-title {
        font-size: 36px;
        padding: 16px 0;
    }

    .page-home .faq .faq-title:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -50px;
        width: 100px;
        height: 3px;
        background-color: #cc4e26;
    }

    .page-home .faq .faq-wrap .faq-list {
        display: -webkit-flex;
        display: flex;
    }

    .page-home .faq .faq-wrap .faq-list .faq-item {
        display: block;
        -webkit-flex: auto;
        flex: auto;
        width: 0;
        padding: 32px;
    }

    .page-home .faq .faq-wrap .faq-list .faq-item .faq-item-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .page-home .faq .faq-wrap .faq-list .faq-item .faq-item-desc {
        font-size: 16px;
    }

    .page-home .faq .faq-wrap .faq-list .faq-item:nth-child(2) {
        margin: 0 1px;
    }
}

.page-home .catalog {
    position: relative;
    z-index: 2;
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    padding: 16px;
    background-color: #cc4e26;
    color: inherit;
    text-decoration: none;
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-cover {
    -webkit-flex: none;
    flex: none;
    width: 48px;
    height: 48px;
    margin-right: 8px;
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-cover .catalog-cover-inner {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro {
    -webkit-flex: auto;
    flex: auto;
    padding-left: 8px;
    width: 0;
    position: relative;
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -16px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro .catalog-intro-title {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro .catalog-intro-desc {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2;
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item:last-child .catalog-item-intro:after {
    display: none;
}

.page-home .catalog .catalog-wrap .catalog-info {
    position: relative;
    margin-top: 1px;
}

.page-home .catalog .catalog-wrap .catalog-info .catalog-info-content {
    background-color: #666;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding: 16px;
}

@media only screen and (min-width: 1024px) {
    .page-home .catalog.catalog-offset {
        margin-top: -186px;
        padding-bottom: 32px;
    }

    .page-home .catalog .catalog-wrap .catalog-list {
        display: -webkit-flex;
        display: flex;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item {
        -webkit-flex: auto;
        flex: auto;
        width: 100%;
        padding: 32px;
        background-color: rgba(204, 78, 38, 0.8);
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-cover {
        width: 72px;
        height: 72px;
        margin-right: 16px;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro {
        padding-left: 16px;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro:after {
        width: 1px;
        height: 100%;
        top: 0;
        left: 0;
        bottom: auto;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro .catalog-intro-title {
        font-size: 24px;
        line-height: 1;
        height: 36px;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro .catalog-intro-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item:nth-child(2) {
        margin: 0 1px;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item:last-child .catalog-item-intro:after {
        display: block;
    }

    .page-home .catalog .catalog-wrap .catalog-info .catalog-info-content {
        padding: 24px;
        text-align: center;
        font-size: 18px;
    }
}

.page-about .detail .detail-wrap .detail-tabs {
    display: none;
    line-height: 1;
    font-size: 0;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 32px;
}

.page-about .detail .detail-wrap .detail-tabs .wui-btn {
    margin: 0 8px;
}

.page-about .detail .detail-wrap .detail-content .detail-container {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: #666666;
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-title {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    text-transform: Uppercase;
    margin: 12px 0;
    color: #cc4e26;
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery {
    position: relative;
    float: none;
    clear: both;
    color: #fff;
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery .detail-video-mask {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: inherit;
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery .detail-video-mask:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0;
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery .detail-video-mask .detail-video-play {
    display: inline-block;
    vertical-align: middle;
    width: 64px;
    height: 64px;
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery .detail-video-mask .detail-video-play>i {
    font-size: 64px;
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery.detail-video .detail-video-mask {
    display: block;
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery:hover {
    color: #cc4e26;
}

@media only screen and (min-width: 1024px) {
    .page-about .detail .detail-wrap .detail-tabs {
        display: block;
    }

    .page-about .detail .detail-wrap .detail-content .detail-container {
        font-size: 16px;
        line-height: 28px;
    }

    .page-about .detail .detail-wrap .detail-content .detail-container .detail-title {
        font-size: 40px;
        text-align: left;
        margin: 0 0 24px;
        line-height: 1.4;
        padding-bottom: 8px;
        position: relative;
        color: #333333;
    }

    .page-about .detail .detail-wrap .detail-content .detail-container .detail-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 128px;
        height: 2px;
        background-color: #cc4e26;
    }

    .page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery {
        float: right;
        margin: 0 0 0 24px;
        width: 50%;
    }
}

.page-about .meta .meta-list .meta-item {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: "center";
    align-items: center;
    background-color: rgba(204, 78, 38, 0.8);
    padding: 16px;
    margin: 0;
}

.page-about .meta .meta-list .meta-item .meta-item-cover .meta-cover-inner {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.page-about .meta .meta-list .meta-item .meta-item-intro {
    color: #fff;
    padding-left: 8px;
}

.page-about .meta .meta-list .meta-item .meta-item-intro .meta-intro-label {
    display: block;
    font-size: 14px;
    line-height: 24px;
}

.page-about .meta .meta-list .meta-item .meta-item-intro .meta-intro-value {
    display: block;
    font-size: 24px;
    line-height: 28px;
}

.page-about .meta .meta-list .meta-item:nth-child(2) {
    margin: 1px 0;
}

@media only screen and (min-width: 1024px) {
    .page-about .meta .meta-list {
        display: -webkit-flex;
        display: flex;
    }

    .page-about .meta .meta-list .meta-item {
        -webkit-flex: auto;
        flex: auto;
        width: 100%;
        text-align: left;
        padding: 32px;
    }

    .page-about .meta .meta-list .meta-item .meta-item-cover .meta-cover-inner {
        display: block;
        width: 48px;
        height: 48px;
    }

    .page-about .meta .meta-list .meta-item .meta-item-intro {
        padding-left: 16px;
    }

    .page-about .meta .meta-list .meta-item .meta-item-intro .meta-intro-label {
        font-size: 16px;
    }

    .page-about .meta .meta-list .meta-item .meta-item-intro .meta-intro-value {
        font-size: 36px;
        line-height: 48px;
    }

    .page-about .meta .meta-list .meta-item:nth-child(2) {
        margin: 0 1px;
    }
}

.page-about .cert .cert-wrap .cert-swiper {
    width: 100%;
    height: 100%;
}

.page-about .service .service-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #cc4e26;
    position: relative;
    text-transform: Uppercase;
}

.page-about .service .service-wrap {
    background-color: #fff;
    padding: 16px;
}

.page-about .service .service-wrap .service-list .service-item {
    display: -webkit-flex;
    display: flex;
}

.page-about .service .service-wrap .service-list .service-item .service-item-cover {
    padding-right: 16px;
    -webkit-flex: none;
    flex: none;
}

.page-about .service .service-wrap .service-list .service-item .service-item-cover .service-cover-inner {
    display: block;
    width: 72px;
    height: 72px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.page-about .service .service-wrap .service-list .service-item .service-item-intro {
    display: block;
    width: 0;
    -webkit-flex: auto;
    flex: auto;
}

.page-about .service .service-wrap .service-list .service-item .service-item-intro .service-intro-title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: Uppercase;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.page-about .service .service-wrap .service-list .service-item .service-item-intro .service-intro-desc {
    display: block;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    text-align: justify;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2;
}

@media only screen and (min-width: 1024px) {
    .page-about .service {
        background-color: #fff;
    }

    .page-about .service .service-title {
        font-size: 36px;
        margin: 0;
        padding: 48px 0 24px;
        color: #333333;
    }

    .page-about .service .service-wrap {
        padding: 32px 0 72px;
        background-color: transparent;
    }

    .page-about .service .service-wrap .service-list .service-item .service-item-cover {
        padding-right: 24px;
    }

    .page-about .service .service-wrap .service-list .service-item .service-item-cover .service-cover-inner {
        width: 100px;
        height: 100px;
    }

    .page-about .service .service-wrap .service-list .service-item .service-item-intro .service-intro-title {
        font-size: 18px;
        line-height: 32px;
    }

    .page-about .service .service-wrap .service-list .service-item .service-item-intro .service-intro-desc {
        font-size: 16px;
        height: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        word-break: break-word;
        white-space: normal;
        -webkit-line-clamp: 3;
    }
}

.page-case .page-case-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
    text-align: center;
}

.page-case .faq .faq-wrap .faq-list .faq-item {
    display: block;
    margin-bottom: 24px;
    word-break: break-word;
    white-space: normal;
}

.page-case .faq .faq-wrap .faq-list .faq-item .faq-item-q {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
}

.page-case .faq .faq-wrap .faq-list .faq-item .faq-item-a {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}

.page-case .hot .hot-wrap .hot-intro .hot-intro-title {
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 12px;
    color: #cc4e26;
}

.page-case .hot .hot-wrap .hot-intro .hot-intro-desc {
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 6;
}

.page-case .hot .hot-wrap .hot-intro .hot-intro-action {
    display: none;
}

.page-case .hot .hot-wrap .hot-cover {
    display: block;
}

@media only screen and (min-width: 1024px) {
    .page-case .hot .hot-wrap .hot-intro .hot-intro-title {
        text-align: left;
        font-size: 36px;
        margin-bottom: 24px;
    }

    .page-case .hot .hot-wrap .hot-intro .hot-intro-desc {
        font-size: 16px;
        line-height: 28px;
    }

    .page-case .hot .hot-wrap .hot-intro .hot-intro-action {
        display: block;
        margin-top: 32px;
    }

    .page-case .page-case-title {
        font-size: 32px;
        text-align: left;
        margin-bottom: 24px;
    }
}

.page-contact .contact .contact-wrap .contact-header .contact-intro {
    display: flex;
    align-items: center;
    height: 100%;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-inner {
    width: 100%;
    padding: 8px 0;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-title {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    margin-bottom: 0;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    color: #cc4e26;
    font-size: 22px;
    line-height: 1;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-body {
    flex: 1;
    min-width: 0;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-label {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #aaa;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-value {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    word-wrap: break-word;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-value a {
    color: #333;
    text-decoration: none;
    transition: color .2s ease;
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-value a:hover {
    color: #cc4e26;
}

.page-page .page-wrap .page-header {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

.page-page .page-page-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: #cc4e26;
    margin: 0;
}

.page-page .page-container {
    padding: 8px 0 16px;
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    text-align: justify;
}

.page-page .page-container img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

@media only screen and (min-width: 1024px) {
    .page-page .page-page-title {
        font-size: 32px;
    }

    .page-page .page-container {
        padding: 16px 0 24px;
        font-size: 16px;
    }
}

.page-inquiry .page-inquiry-product {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.page-inquiry .page-inquiry-product strong {
    color: #cc4e26;
    font-weight: 600;
}

.page-inquiry .page-container p:last-child {
    margin-bottom: 0;
}

.page-jump .page-jump-box {
    padding: 32px 16px 48px;
    text-align: center;
}

.page-jump .page-jump-icon {
    margin: 0 auto 20px;
    width: 72px;
    height: 72px;
}

.page-jump .page-jump-svg {
    width: 72px;
    height: 72px;
    display: block;
    stroke-width: 2;
    stroke-miterlimit: 10;
}

.page-jump .page-jump-svg.done .circle {
    stroke: #cc4e26;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    fill: none;
    animation: page-jump-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.page-jump .page-jump-svg.done .check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #cc4e26;
    fill: none;
    animation: page-jump-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.page-jump .page-jump-svg.error .circle {
    stroke: #e74c3c;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    fill: none;
    animation: page-jump-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.page-jump .page-jump-svg.error .line {
    stroke: #e74c3c;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    fill: none;
    animation: page-jump-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.page-jump .page-jump-svg.error .line:nth-child(2) {
    animation-delay: 0.95s;
}

@keyframes page-jump-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.page-jump .page-jump-title {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.page-jump .page-jump-desc {
    margin: 0 auto 8px;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    max-width: 520px;
}

.page-jump .page-jump-contact {
    margin: 0 auto 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #888888;
}

.page-jump .page-jump-contact a {
    color: #cc4e26;
    text-decoration: none;
}

.page-jump .page-jump-contact a:hover {
    text-decoration: underline;
}

.page-jump .page-jump-actions {
    margin-top: 24px;
}

.page-jump .page-jump-actions .wui-btn {
    min-width: 180px;
}

@media only screen and (min-width: 1024px) {
    .page-jump .page-jump-box {
        padding: 48px 16px 64px;
    }

    .page-jump .page-jump-title {
        font-size: 28px;
    }
}

.page-404 .page-404-box {
    padding: 32px 16px 40px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

.page-404 .page-404-code {
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    color: #cc4e26;
    margin-bottom: 12px;
}

.page-404 .page-404-title {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.page-404 .page-404-desc {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.page-404 .page-404-btn {
    min-width: 160px;
}

.page-sitemap-block,
.page-sitemap .page-container {
    padding-top: 8px;
}

.page-sitemap-title,
.page-sitemap .page-sitemap-block .page-sitemap-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

.page-sitemap-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-sitemap-item {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px;
    line-height: 1.6;
}

.page-sitemap-item:last-child {
    border-bottom: none;
}

.page-sitemap-item a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-sitemap-item a:hover {
    color: #cc4e26;
}

.page-sitemap-item-root {
    font-weight: 600;
}

.page-sitemap-item-level-1 {
    padding-left: 16px;
}

.page-sitemap-item-level-2 {
    padding-left: 32px;
    font-size: 14px;
    color: #666666;
}

.page-tags-list .page-tags-intro {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #888888;
    font-weight: 400;
}

.page-tags-list .page-tags-body {
    text-align: left;
    padding-top: 8px;
}

.page-tags-list .page-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.page-tags-list .page-tags-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 14px 16px;
    background: #fafafa;
    border: 1px solid #ebebeb;
    border-left: 3px solid #cc4e26;
    border-radius: 8px;
    color: #333333;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-tags-list .page-tags-card:hover {
    background: #fff;
    border-color: #cc4e26;
    box-shadow: 0 4px 16px rgba(204, 78, 38, 0.12);
    transform: translateY(-1px);
}

.page-tags-list .page-tags-card-label {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-tags-list .page-tags-card-label::before {
    content: "#";
    margin-right: 6px;
    color: #cc4e26;
    font-weight: 600;
}

.page-tags-list .page-tags-card:hover .page-tags-card-label {
    color: #cc4e26;
}

.page-tags-list .page-tags-card-count {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 14px;
    background: #cc4e26;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.page-tags-list .page-tags-empty {
    padding: 48px 16px;
    text-align: center;
    color: #999999;
    font-size: 15px;
}

@media only screen and (min-width: 768px) {
    .page-tags-list .page-tags-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .page-tags-list .page-tags-card {
        min-height: 60px;
        padding: 16px 18px;
    }

    .page-tags-list .page-tags-card-label {
        font-size: 15px;
    }
}

@media only screen and (min-width: 1200px) {
    .page-tags-list .page-tags-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .page-tags-list .page-tags-intro {
        font-size: 15px;
    }
}

.page-contact .contact .contact-wrap .contact-container {
    margin-top: 24px;
}

.page-contact .contact .contact-wrap .contact-container .contact-list .contact-item {
    height: 100%;
    padding: 24px;
    background-color: #faede9;
    border: 1px solid #d9d9d9;
}

.page-contact .contact .contact-wrap .contact-container .contact-list .contact-item .contact-item-name {
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
    color: #cc4e26;
}

.page-contact .contact .contact-wrap .contact-container .contact-list .contact-item .contact-item-info .contact-info-col {
    font-size: 16px;
    line-height: 32px;
    color: #666666;
}

@media only screen and (min-width: 1024px) {
    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-inner {
        padding: 16px 32px 16px 0;
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-title {
        font-size: 36px;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type {
        gap: 32px;
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item {
        gap: 24px;
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-icon {
        width: 28px;
        height: 28px;
        font-size: 24px;
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-value {
        font-size: 16px;
    }

    .page-contact .contact .contact-wrap .contact-header .contact-cover {
        padding: 0 0 24px 24px;
    }

    .page-contact .contact .contact-wrap .contact-header .contact-cover .contact-cover-wrap {
        position: relative;
    }

    .page-contact .contact .contact-wrap .contact-header .contact-cover .contact-cover-wrap:after {
        content: '';
        display: block;
        position: absolute;
        z-index: -1;
        bottom: -24px;
        left: -24px;
        width: 140px;
        height: 120px;
        background-color: #cc4e26;
    }
}

.page-news .page-news-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
    text-align: center;
}

.page-search .page-search-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
    text-align: center;
}

.page-tags .page-tags-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
    text-align: center;
}

.page-search .search-empty,
.page-tags .search-empty {
    padding: 48px 16px;
    text-align: center;
}

.page-search .search-empty .iconfont,
.page-tags .search-empty .iconfont {
    display: block;
    font-size: 48px;
    line-height: 1;
    color: #cccccc;
    margin-bottom: 16px;
}

.page-search .search-empty-title,
.page-tags .search-empty-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

.page-search .search-empty-desc,
.page-tags .search-empty-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1024px) {
    .page-search .page-search-title,
    .page-tags .page-tags-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
}

.page-news .news .news-wrap .news-gallery .news-swiper {
    width: 100%;
    height: 100%;
}

.page-news .news .news-wrap .news-list {
    margin-top: 16px;
}

.page-news .news .news-wrap .news-list .news-item {
    margin-bottom: 16px;
    background-color: whitesmoke;
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro {
    padding: 16px;
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date {
    font-weight: 500;
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-days {
    font-size: 18px;
    color: #cc4e26;
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-year {
    font-size: 14px;
    color: #666666;
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 8px 0;
    color: #333333;
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-desc {
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2;
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-action {
    display: none;
    margin-top: 24px;
}

.page-news .news .news-wrap .news-list .news-item:hover .news-item-intro .news-intro-title {
    color: #cc4e26;
}

@media only screen and (min-width: 1024px) {
    .page-news .news .news-wrap .news-list {
        margin-top: 24px;
    }

    .page-news .news .news-wrap .news-list .news-item {
        margin-bottom: 24px;
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-days {
        font-size: 32px;
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-year {
        font-size: 24px;
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title {
        font-size: 20px;
        margin: 12px 0;
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-desc {
        font-size: 16px;
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-action {
        display: block;
    }

    .page-news .page-news-title {
        font-size: 32px;
        text-align: left;
        margin-bottom: 16px;
    }
}

.page-products .product .product-list .product-item {
    margin-bottom: 16px;
}

.page-products .product .product-list .product-item .product-item-intro {
    padding: 8px 0;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-title {
    display: block;
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-title:hover {
    color: #cc4e26;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-desc {
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin: 8px 0;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-price {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #7DAF32;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-tags {
    font-size: 0;
    line-height: 1;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-tags .product-tags-item {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 24px;
    padding: 0 8px;
    text-align: center;
    background-color: whitesmoke;
    color: #999999;
    margin: 0 8px 8px 0;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-tags .product-tags-item:hover {
    color: #cc4e26;
    background-color: #faede9;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action {
    margin-top: 8px;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action:before,
.page-products .product .product-list .product-item .product-item-intro .product-intro-action:after {
    display: table;
    content: "";
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action:after {
    clear: both;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action .wui-btn {
    float: left;
    width: 49%;
    padding: 0;
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action .wui-btn:first-child {
    margin-right: 2%;
}

@media only screen and (min-width: 1024px) {
    .page-products .product .product-list .product-item {
        margin-bottom: 24px;
        background-color: whitesmoke;
    }

    .page-products .product .product-list .product-item .product-item-intro {
        padding: 16px 24px;
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-title {
        font-size: 24px;
        line-height: 32px;
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-desc {
        margin: 12px 0;
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-price {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
        margin-bottom: 12px;
        color: #7DAF32;
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-tags .product-tags-item {
        line-height: 32px;
        padding: 0 16px;
        background-color: #fff;
        margin: 0 8px 8px 0;
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-action .wui-btn {
        float: none;
        width: auto;
        padding: 0 32px;
        margin-right: 16px;
    }
}

.page-products-detail .detail .detail-intro .detail-intro-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #cc4e26;
    margin-bottom: 8px;
}

.page-products-detail .detail .detail-intro .detail-intro-price {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #7DAF32;
}

.page-products-detail .detail .detail-intro .detail-intro-desc {
    margin: 8px 0;
    font-size: 14px;
    line-height: 22px;
    color: #666666;
}

.page-products-detail .detail .detail-intro .detail-intro-desc p {
    margin: 0 0 8px;
}

.page-products-detail .detail .detail-intro .detail-intro-desc p:last-child {
    margin-bottom: 0;
}

.page-products-detail .detail .detail-intro .detail-intro-model .detail-attr-label {
    font-weight: 500;
    color: #7DAF32;
}

.page-products-detail .detail .detail-intro .detail-intro-attr {
    margin: 12px 0 16px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    background-color: #fafafa;
    overflow: hidden;
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 6px 14px;
    font-size: 14px;
    line-height: 22px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    border-left: 3px solid #cc4e26;
    transition: background-color 0.2s ease, border-left-color 0.2s ease;
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item:last-child {
    border-bottom: none;
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item:hover {
    background-color: #fdf8f6;
    border-left-color: #e88a0a;
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item .detail-attr-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #cc4e26;
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item .detail-attr-value {
    min-width: 0;
    color: #666666;
    word-break: break-word;
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item .detail-attr-value .detail-attr-link {
    display: block;
}

.page-products-detail .detail .detail-intro .detail-intro-number {
    padding: 8px 0;
}

.page-products-detail .detail .detail-intro .detail-intro-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 12px 0;
}

.page-products-detail .detail .detail-intro .detail-intro-share .detail-share-label {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #333333;
}

.page-products-detail .detail .detail-intro .detail-intro-share .detail-share-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.page-products-detail .detail .detail-intro .detail-intro-share .detail-share-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #666666;
    background-color: #f5f5f5;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.page-products-detail .detail .detail-intro .detail-intro-share .detail-share-item>i {
    font-size: 18px;
    line-height: 1;
}

.page-products-detail .detail .detail-intro .detail-intro-share .detail-share-item .detail-share-svg {
    display: block;
    width: 18px;
    height: 18px;
}

.page-products-detail .detail .detail-intro .detail-intro-share .detail-share-item:hover {
    color: #cc4e26;
    background-color: rgba(204, 78, 38, 0.1);
}

.page-products-detail .detail .detail-intro .detail-intro-action:before,
.page-products-detail .detail .detail-intro .detail-intro-action:after {
    display: table;
    content: "";
}

.page-products-detail .detail .detail-intro .detail-intro-action:after {
    clear: both;
}

.page-products-detail .detail .detail-intro .detail-intro-action .wui-btn {
    float: left;
    width: 49%;
    padding: 0;
}

.page-products-detail .detail .detail-intro .detail-intro-action .wui-btn:first-child {
    margin-right: 2%;
}

.page-products-detail .detail .detail-content {
    padding: 24px 0;
}

.page-products-detail .detail .detail-content .wui-alert {
    margin-bottom: 20px;
}

.page-products-detail .detail .detail-content .content-container {
    padding: 4px 0 12px;
    font-size: 15px;
    line-height: 1.75;
    color: #666666;
}

.page-products-detail .detail .detail-content .content-container p {
    margin: 0 0 12px;
}

.page-products-detail .detail .detail-content .content-container p:last-child {
    margin-bottom: 0;
}

.page-products-detail .detail .detail-related .related-gallery {
    padding: 24px 0;
}

.page-products-detail .detail .detail-tags .tags-wrap .tags-list {
    display: block;
    padding: 12px 0;
    font-size: 0;
    line-height: 1;
}

.page-products-detail .detail .detail-tags .tags-wrap .tags-list .tags-item {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    font-size: 14px;
    margin: 0 8px 8px 0;
    color: #666666;
    background-color: whitesmoke;
}

.page-products-detail .detail .detail-tags .tags-wrap .tags-list .tags-item:hover {
    color: #cc4e26;
    background-color: #faede9;
}

@media only screen and (min-width: 1024px) {
    .page-products-detail .detail .detail-intro .detail-intro-title {
        font-size: 24px;
        line-height: 32px;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .page-products-detail .detail .detail-intro .detail-intro-price {
        font-size: 28px;
        line-height: 40px;
    }

    .page-products-detail .detail .detail-intro .detail-intro-attr {
        margin: 0 0 16px;
        padding: 0;
        border-bottom: none;
    }

    .page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 8px 20px;
        padding: 7px 16px;
        align-items: start;
    }

    .page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item .detail-attr-label {
        font-size: 13px;
        line-height: 22px;
        color: #333333;
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-title {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 8px;
        color: #7DAF32;
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row {
        font-size: 0;
        line-height: 1;
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col {
        display: inline-block;
        position: relative;
        vertical-align: top;
        margin: 0 12px 12px 0;
        overflow: hidden;
        padding: 4px;
        cursor: pointer;
        color: #333333;
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col:after {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 100%;
        border: 1px solid #d9d9d9;
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col .detail-sku-icon {
        display: block;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        opacity: 1;
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col .detail-sku-text {
        display: block;
        height: 32px;
        line-height: 32px;
        background-color: #fff;
        font-size: 16px;
        min-width: 32px;
        font-weight: 700;
        text-align: center;
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col:hover,
    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col.active {
        color: #cc4e26;
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col:hover:after,
    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col.active:after {
        border: 2px solid #cc4e26;
    }

    .page-products-detail .detail .detail-intro .detail-intro-number {
        padding: 16px 0;
    }

    .page-products-detail .detail .detail-intro .detail-intro-action .wui-btn {
        float: none;
        width: auto;
        padding: 0 32px;
        margin: 0 16px 16px 0;
    }

    .page-products-detail .detail .detail-content {
        padding: 32px 0;
    }

    .page-products-detail .detail .detail-content .wui-alert {
        margin-bottom: 24px;
    }

    .page-products-detail .detail .detail-content .content-container {
        padding: 8px 0 16px;
    }

    .page-products-detail .detail .detail-related .related-gallery {
        padding: 32px 0;
    }

    .page-products-detail .detail .detail-tags .tags-wrap .tags-list {
        padding: 24px 0;
    }

    .page-products-detail .detail .detail-tags .tags-wrap .tags-list .tags-item {
        height: 40px;
        line-height: 40px;
        padding: 0 16px;
        font-size: 14px;
        margin: 0 12px 12px 0;
    }
}

.page-products-detail .sidebar .sidebar-card-categories {
    padding: 0;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.page-products-detail .sidebar .sidebar-card-categories .wui-card-hd {
    padding: 16px 20px;
    border-bottom: none;
    background: linear-gradient(135deg, #cc4e26 0%, #d85f32 100%);
}

.page-products-detail .sidebar .sidebar-card-categories .wui-card-hd .wui-card-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.page-products-detail .sidebar .sidebar-card-categories .wui-card-hd .wui-card-text::before {
    content: "\ef61";
    font-family: "iconfont";
    font-size: 18px;
    line-height: 1;
    opacity: 0.92;
}

.page-products-detail .sidebar .sidebar-card-categories .wui-card-bd {
    padding: 12px 16px 16px;
    background-color: #fff;
}

.page-products-detail .sidebar .sidebar-category-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-products-detail .sidebar .sidebar-category-menu.wui-menu-border>.wui-menu-item {
    border-bottom-color: #f2f2f2;
}

.page-products-detail .sidebar .sidebar-category-menu.wui-menu-border>.wui-menu-item:last-child {
    border-bottom: none;
}

.page-products-detail .sidebar .sidebar-category-menu>.wui-menu-item {
    padding-top: 4px;
    padding-bottom: 4px;
}

.page-products-detail .sidebar .sidebar-category-menu>.wui-menu-item>.wui-menu-link {
    padding: 10px 32px 10px 12px;
    font-size: 14px;
    line-height: 22px;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.page-products-detail .sidebar .sidebar-category-menu>.wui-menu-item>.wui-menu-link:hover {
    color: #cc4e26;
    background-color: #fdf6f3;
}

.page-products-detail .sidebar .sidebar-category-menu>.wui-menu-item>.wui-menu-arrow {
    top: 8px;
    right: 4px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 6px;
}

.page-products-detail .sidebar .sidebar-category-menu>.wui-menu-item>.wui-menu-arrow:hover {
    background-color: rgba(204, 78, 38, 0.08);
}

.page-products-detail .sidebar .sidebar-category-menu>.wui-menu-item.open>.wui-menu-link,
.page-products-detail .sidebar .sidebar-category-menu>.wui-menu-item.active>.wui-menu-link {
    color: #cc4e26;
    font-weight: 600;
    background-color: rgba(204, 78, 38, 0.08);
    box-shadow: inset 3px 0 0 #cc4e26;
}

.page-products-detail .sidebar .sidebar-category-menu>.wui-menu-item>.wui-menu-sublist {
    margin: 4px 0 6px;
    padding: 6px 0;
    background-color: #fafafa;
    border-radius: 6px;
}

.page-products-detail .sidebar .sidebar-category-menu .wui-menu-sublist .wui-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-products-detail .sidebar .sidebar-category-menu .wui-menu.wui-menu-prefix>.wui-menu-item>.wui-menu-link {
    padding: 8px 12px 8px 22px;
    font-size: 13px;
    line-height: 20px;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.page-products-detail .sidebar .sidebar-category-menu .wui-menu.wui-menu-prefix>.wui-menu-item>.wui-menu-link:before {
    left: 8px;
    margin-top: -2px;
    border-color: transparent transparent transparent #cc4e26;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.page-products-detail .sidebar .sidebar-category-menu .wui-menu.wui-menu-prefix>.wui-menu-item>.wui-menu-link:hover {
    color: #cc4e26;
    background-color: #fff;
}

.page-products-detail .sidebar .sidebar-category-menu .wui-menu.wui-menu-prefix>.wui-menu-item>.wui-menu-link:hover:before {
    opacity: 1;
}

.page-products-detail .sidebar .sidebar-category-menu .wui-menu.wui-menu-prefix>.wui-menu-item.active>.wui-menu-link {
    color: #cc4e26;
    font-weight: 600;
    background-color: #fff;
    box-shadow: inset 2px 0 0 #cc4e26;
}

.page-products-detail .sidebar .sidebar-category-menu .wui-menu.wui-menu-prefix>.wui-menu-item.active>.wui-menu-link:before {
    opacity: 1;
    border-left-color: #cc4e26;
}

.page-products-detail .sidebar .sidebar-card-featured {
    padding: 0;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.page-products-detail .sidebar .sidebar-card-featured .wui-card-hd {
    padding: 16px 20px;
    border-bottom: none;
    background: linear-gradient(135deg, #6a9a28 0%, #7DAF32 100%);
}

.page-products-detail .sidebar .sidebar-card-featured .wui-card-hd .wui-card-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.page-products-detail .sidebar .sidebar-card-featured .wui-card-hd .wui-card-text::before {
    content: "\ef7e";
    font-family: "iconfont";
    font-size: 18px;
    line-height: 1;
    opacity: 0.92;
}

.page-products-detail .sidebar .sidebar-card-featured .wui-card-bd {
    padding: 14px 16px 18px;
    background-color: #fff;
}

.page-products-detail .sidebar .sidebar-featured-swiper {
    margin: 0;
    overflow: hidden;
}

.page-products-detail .sidebar .sidebar-featured-swiper .swiper-slide {
    height: auto;
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-card-inner {
    display: block;
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-card-inner:hover {
    border-color: rgba(125, 175, 50, 0.45);
    background-color: #fff;
    box-shadow: 0 6px 16px rgba(125, 175, 50, 0.12);
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-card-cover {
    border: none;
    border-radius: 6px;
    overflow: hidden;
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-card-intro {
    padding: 10px 0 0;
    align-items: center;
    justify-content: center;
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-intro-info {
    padding-right: 0;
    width: 100%;
    text-align: center;
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-info-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: #333333;
    min-height: 40px;
    text-align: center;
    -webkit-box-pack: center;
    margin: 0 auto;
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-card-inner:hover .product-info-title {
    color: #7DAF32;
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-info-price {
    margin-top: 4px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
}

.page-products-detail .sidebar .sidebar-featured-swiper .product-intro-action {
    display: none;
}

.page-detail .sidebar .sidebar-card-news {
    padding: 0;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.page-detail .sidebar .sidebar-card-news .wui-card-hd {
    padding: 16px 20px;
    border-bottom: none;
    background: linear-gradient(135deg, #cc4e26 0%, #d85f32 100%);
}

.page-detail .sidebar .sidebar-card-news .wui-card-hd .wui-card-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.page-detail .sidebar .sidebar-card-news .wui-card-hd .wui-card-text::before {
    content: "\ef61";
    font-family: "iconfont";
    font-size: 18px;
    line-height: 1;
    opacity: 0.92;
}

.page-detail .sidebar .sidebar-card-news .wui-card-bd {
    padding: 12px 16px 16px;
    background-color: #fff;
}

.page-detail .sidebar .sidebar-news-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-detail .sidebar .sidebar-news-item {
    border-bottom: 1px solid #f0f0f0;
}

.page-detail .sidebar .sidebar-news-item:last-child {
    border-bottom: none;
}

.page-detail .sidebar .sidebar-news-item a {
    display: block;
    padding: 12px 0;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.page-detail .sidebar .sidebar-news-item a:hover {
    opacity: 0.85;
}

.page-detail .sidebar .sidebar-news-item a:hover .sidebar-news-title {
    color: #cc4e26;
}

.page-detail .sidebar .sidebar-news-cover {
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
}

.page-detail .sidebar .sidebar-news-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.page-detail .sidebar .sidebar-news-title {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    color: #333;
    transition: color 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-detail .sidebar .sidebar-news-desc {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-detail .sidebar .sidebar-news-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #cc4e26;
    text-decoration: none;
}

.page-detail .sidebar .sidebar-news-more:hover {
    text-decoration: underline;
}

.inquiry .wui-form-item-phone {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.inquiry .wui-form-item-phone .wui-input:first-child {
    flex: 0 0 132px;
    width: 132px;
    min-width: 132px;
    max-width: 40%;
}

.inquiry .wui-form-item-phone .wui-input:last-child {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.page-shopping-cart .cart .cart-tips {
    margin-bottom: 16px;
}

.page-shopping-cart .cart .cart-card {
    background-color: #fff;
}

.page-shopping-cart .cart .cart-card .cart-card-hd {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    -webkit-flex: auto;
    flex: auto;
}

.page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-action {
    display: block;
    -webkit-flex: none;
    flex: none;
}

.page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-action .cart-card-payment {
    display: block;
}

.page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-action .cart-card-payment>img {
    display: block;
    width: auto;
    height: 28px;
}

.page-shopping-cart .cart .cart-card .cart-card-bd {
    padding: 8px;
}

.page-shopping-cart .cart .cart-card .cart-card-bd.cart-card-near {
    padding: 0;
}

.page-shopping-cart .cart .cart-card .cart-card-ft {
    border-top: 1px solid #f0f0f0;
    padding: 8px;
}

.page-shopping-cart .cart .cart-card+.cart-card {
    margin-top: 16px;
}

.page-shopping-cart .cart .cart-wrap .cart-table {
    table-layout: auto;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.page-shopping-cart .cart .cart-wrap .cart-table>thead>tr>th {
    font-size: 14px;
    line-height: 32px;
    text-align: left;
    padding: 4px 8px;
    font-weight: 500;
    color: #333333;
    overflow-wrap: break-word;
    border-bottom: 1px solid #d9d9d9;
    background-color: #f3f3f3;
}

.page-shopping-cart .cart .cart-wrap .cart-table>tbody>tr>td {
    overflow-wrap: break-word;
    padding: 8px;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
    color: #666666;
    border-bottom: 1px solid #f0f0f0;
}

.page-shopping-cart .cart .cart-wrap .cart-table>tbody>tr:last-child>td {
    border: 0;
}

.page-shopping-cart .cart .cart-wrap .cart-table .cart-table-shrink {
    white-space: normal;
    min-width: 1px;
}

.page-shopping-cart .cart .cart-wrap .cart-table .cart-table-auto {
    width: 1px;
    word-break: keep-all;
    white-space: nowrap;
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-cover {
    width: 32px;
    height: 32px;
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-info {
    display: none;
    padding-left: 16px;
    line-height: 24px;
    color: #333333;
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-info:hover {
    color: #cc4e26;
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-price {
    font-weight: 500;
    color: #7DAF32;
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-action {
    text-align: center;
    cursor: pointer;
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-action .cart-action-delete {
    display: inline-block;
    vertical-align: middle;
    color: #666666;
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-action .cart-action-delete:hover {
    color: #FE5050;
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item:before,
.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item:after {
    display: table;
    content: "";
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item:after {
    clear: both;
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item .cart-cashier-label {
    display: block;
    float: left;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item .cart-cashier-value {
    display: block;
    float: right;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent {
    font-weight: 500;
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent .cart-cashier-label {
    font-size: 16px;
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent .cart-cashier-value {
    font-size: 20px;
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-action {
    margin-top: 16px;
}

.page-shopping-cart .cart .cart-action-list {
    font-size: 0;
    line-height: 1;
}

.page-shopping-cart .cart .cart-action-list .cart-action-item {
    display: inline-block;
    vertical-align: middle;
}

.page-shopping-cart .cart .cart-action-list .cart-action-item+.cart-action-item {
    margin-left: 16px;
}

.page-shopping-cart .cart .cart-pay-list .cart-pay-item {
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.page-shopping-cart .cart .cart-pay-list .cart-pay-item:last-child {
    border: 0;
}

@media only screen and (min-width: 1024px) {
    .page-shopping-cart .cart .cart-card .cart-card-hd {
        padding: 16px;
    }

    .page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-title {
        font-size: 18px;
    }

    .page-shopping-cart .cart .cart-card .cart-card-bd {
        padding: 16px;
    }

    .page-shopping-cart .cart .cart-card .cart-card-bd.cart-card-near {
        padding: 0;
    }

    .page-shopping-cart .cart .cart-card .cart-card-ft {
        padding: 16px;
    }

    .page-shopping-cart .cart .cart-card+.cart-card {
        margin-top: 24px;
    }

    .page-shopping-cart .cart .cart-wrap .cart-table>thead>tr>th {
        padding: 8px 16px;
    }

    .page-shopping-cart .cart .cart-wrap .cart-table>tbody>tr>td {
        padding: 16px;
    }

    .page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: "center";
        align-items: center;
    }

    .page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-cover {
        -webkit-flex: none;
        flex: none;
        width: 48px;
        height: 48px;
    }

    .page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-info {
        display: block;
    }

    .page-shopping-cart .cart .cart-cashier {
        position: sticky;
        top: 96px;
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item .cart-cashier-label {
        font-size: 16px;
        line-height: 32px;
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item .cart-cashier-value {
        font-size: 16px;
        line-height: 32px;
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent .cart-cashier-label {
        font-size: 18px;
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent .cart-cashier-value {
        font-size: 24px;
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-action {
        margin-top: 24px;
    }

    .page-shopping-cart .cart .cart-action-list .cart-action-item+.cart-action-item {
        margin-left: 24px;
    }

    .page-shopping-cart .cart .cart-pay-list .cart-pay-item {
        padding: 16px;
    }
}

.page-respond .respond .respond-wrap {
    text-align: center;
    padding: 20vh 0;
}

.page-respond .respond .respond-wrap .respond-icon {
    margin-bottom: 24px;
    color: #26BB79;
}

.page-respond .respond .respond-wrap .respond-title {
    font-size: 24px;
    line-height: 32px;
    color: #26BB79;
}

.page-respond .respond .respond-wrap .respond-desc {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}

@media only screen and (min-width: 1024px) {
    .page-respond .respond .respond-wrap {
        text-align: center;
        padding: 22vh 0;
    }

    .page-respond .respond .respond-wrap .respond-icon {
        margin-bottom: 32px;
    }

    .page-respond .respond .respond-wrap .respond-title {
        font-size: 32px;
        line-height: 40px;
    }

    .page-respond .respond .respond-wrap .respond-desc {
        font-size: 24px;
        line-height: 32px;
    }
}

.page-respond .respond.error .respond-wrap .respond-icon {
    color: #FE5050;
}

.page-respond .respond.error .respond-wrap .respond-title {
    color: #FE5050;
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item {
    margin-bottom: 16px;
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-title {
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
    background-color: #cc4e26;
    color: #fff;
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 8px;
    color: #cc4e26;
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-link {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-link:hover {
    color: #333333;
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item.sitemap-border {
    padding: 16px;
    border: 1px solid #d9d9d9;
}

@media only screen and (min-width: 1024px) {
    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item {
        margin-bottom: 24px;
    }

    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-title {
        font-size: 28px;
        line-height: 48px;
        padding: 16px 0;
    }

    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-link {
        font-size: 16px;
        line-height: 32px;
    }

    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item.sitemap-border {
        padding: 24px;
    }
}

.page-factory .factory .detail-tabs {
    display: none;
    line-height: 1;
    font-size: 0;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 32px;
}

.page-factory .factory .detail-tabs .wui-btn {
    margin: 0 8px;
}

.page-factory .factory .factory-list .factory-item {
    display: block;
}

.page-factory .factory .factory-list .factory-item .factory-item-cover {
    width: 100%;
}

.page-factory .factory .factory-list .factory-item .factory-item-intro {
    width: 100%;
}

.page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-title {
    text-align: center;
    font-size: 20px;
    margin: 12px 0;
    color: #cc4e26;
}

.page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-desc {
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 6;
}

.page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-action {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .page-factory .factory .detail-tabs {
        display: block;
    }

    .page-factory .factory .factory-list .factory-item {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: "center";
        align-items: center;
    }

    .page-factory .factory .factory-list .factory-item .factory-item-cover {
        -webkit-flex: auto;
        flex: auto;
        width: calc(50% - 16px);
        overflow: hidden;
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro {
        -webkit-flex: auto;
        flex: auto;
        width: calc(50% + 16px);
        padding: 32px 0;
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap {
        padding: 32px;
        overflow: hidden;
        background-color: whitesmoke;
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-title {
        text-align: left;
        font-size: 36px;
        margin: 0 0 16px;
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-desc {
        font-size: 16px;
        line-height: 28px;
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-action {
        display: block;
    }

    .page-factory .factory .factory-list .factory-item:nth-child(odd) .factory-item-cover {
        order: 2;
    }

    .page-factory .factory .factory-list .factory-item:nth-child(odd) .factory-item-intro {
        order: 1;
    }
}

.page-downloads .page-downloads-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
    text-align: center;
}

.page-downloads .downloads-list {
    margin-top: 16px;
}

.page-downloads .downloads-list .downloads-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.page-downloads .downloads-list .downloads-row:last-child {
    border-bottom: none;
}

.page-downloads .downloads-list .downloads-row-icon {
    flex: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(204, 78, 38, 0.1);
    color: #cc4e26;
}

.page-downloads .downloads-list .downloads-row-icon .iconfont {
    font-size: 22px;
    line-height: 1;
}

.page-downloads .downloads-list .downloads-row-body {
    flex: 1;
    min-width: 0;
}

.page-downloads .downloads-list .downloads-row-date {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #999999;
}

.page-downloads .downloads-list .downloads-row-title {
    display: block;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-downloads .downloads-list .downloads-row-title:hover,
.page-downloads .downloads-list .downloads-row:hover .downloads-row-title {
    color: #cc4e26;
}

.page-downloads .downloads-list .downloads-row-desc {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-downloads .downloads-list .downloads-row-actions {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 4px;
}

.page-downloads .downloads-list .downloads-row-actions .wui-btn {
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .page-downloads .downloads-list .downloads-row {
        flex-wrap: wrap;
    }

    .page-downloads .downloads-list .downloads-row-actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1024px) {
    .page-downloads .page-downloads-title {
        font-size: 28px;
    }

    .page-downloads .downloads-list .downloads-row-title {
        font-size: 20px;
    }
}

.page-downloads .downloads .downloads-wrap .downloads-item {
    position: relative;
    display: block;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap {
    -webkit-flex: auto;
    flex: auto;
    width: 0;
    padding: 0 4px;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap .downloads-intro-title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap .downloads-intro-title>a {
    color: rgba(255, 255, 255, 0.85);
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap .downloads-intro-title>a:hover {
    color: #cc4e26;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap .downloads-intro-desc {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-action {
    -webkit-flex: none;
    flex: none;
    padding: 0 4px;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-action .downloads-action-inner {
    display: block;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #fff;
    padding: 0 16px;
    background-color: #cc4e26;
    border-radius: 16px;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-action .downloads-action-inner:hover {
    background-color: #a33e1e;
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-action .downloads-action-inner>i {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .layout-root {
        padding-bottom: 0;
    }

    .footer-bar {
        margin-bottom: calc(50px + env(safe-area-inset-bottom));
    }

    .footer .footer-contact {
        padding: 24px 0 28px;
    }

    .footer .footer-contact .layout-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer .footer-contact .wui-grid.wui-grid-xs>.wui-grid-row.footer-contact-row {
        margin: -10px 0 0;
    }

    .footer .footer-contact .wui-grid.wui-grid-xs>.wui-grid-row.footer-contact-row>.wui-grid-col {
        width: 100%;
        padding: 10px 0 0;
    }

    .footer .footer-contact .footer-contact-item {
        padding: 0;
        height: auto;
    }

    .footer .footer-contact .footer-contact-card {
        min-height: 0;
        padding: 16px;
        gap: 14px;
    }

    .footer .footer-contact .footer-contact-card:hover {
        -webkit-transform: none;
        transform: none;
    }

    .footer .footer-contact .footer-contact-icon {
        width: 44px;
        height: 44px;
    }

    .footer .footer-contact .footer-contact-icon>i {
        font-size: 24px;
    }

    .footer .footer-contact .footer-contact-label {
        margin-bottom: 6px;
    }

    .footer .footer-contact .footer-contact-value {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer .footer-contact .footer-contact-value a {
        display: inline-block;
        max-width: 100%;
        word-break: break-all;
    }

    .footer .footer-contact .footer-contact-phone {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer .footer-contact .footer-contact-divider {
        display: none;
    }

    .footer .footer-info {
        padding: 14px 0 12px;
    }

    .footer .footer-info .layout-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer .footer-info-inner {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        gap: 12px;
    }

    .footer .footer-info-copyright {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
    }

    .footer .footer-info-copy-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer .footer-info-meta {
        margin-top: 2px;
    }

    .footer .footer-info-link {
        margin-top: 6px;
    }

    .footer .footer-info-social {
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .docker {
        display: none;
    }

    .mfoot_box {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #f8f8f8;
        border: none;
        border-top: 1px solid #e8e8e8;
        border-radius: 0;
        min-height: 50px;
        margin: 0;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
        z-index: 1030;
        padding-bottom: constant(safe-area-inset-bottom);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mfoot_box .navbar-collapse {
        display: none;
    }

    .mfoot_inner {
        display: flex;
        align-items: stretch;
        height: 50px;
    }

    .mfoot_nav {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        border-right: 1px solid #e8e8e8;
        float: none;
        width: auto;
        background: transparent;
    }

    .mfoot_nav:last-child {
        border-right: none;
    }

    .mfoot_nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #555;
        padding: 5px 2px;
        height: 100%;
        width: 100%;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        transition: color 0.28s ease, background 0.28s ease;
    }

    .mfoot_box.navbar-default .mfoot_nav a {
        color: #555;
        background: transparent;
    }

    .mfoot_nav:not(.mfoot_nav_top) a:hover,
    .mfoot_nav:not(.mfoot_nav_top) a:focus {
        color: #0c4d89;
        background: rgba(12, 77, 137, 0.07);
        text-decoration: none;
    }

    .mfoot_box.navbar-default .mfoot_nav:not(.mfoot_nav_top) a:hover,
    .mfoot_box.navbar-default .mfoot_nav:not(.mfoot_nav_top) a:focus {
        color: #0c4d89;
        background: rgba(12, 77, 137, 0.07);
    }

    .mfoot_nav .fa {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 3px;
        transition: transform 0.28s ease, color 0.28s ease;
    }

    .mfoot_nav:not(.mfoot_nav_top) a:hover .fa,
    .mfoot_nav:not(.mfoot_nav_top) a:focus .fa {
        transform: translateY(-2px);
    }

    .mfoot_label {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.2;
        display: block;
        letter-spacing: 0.02em;
        transition: color 0.28s ease;
    }

    .mfoot_nav:first-child a:hover,
    .mfoot_nav:first-child a:focus,
    .mfoot_box.navbar-default .mfoot_nav:first-child a:hover,
    .mfoot_box.navbar-default .mfoot_nav:first-child a:focus {
        color: #128C7E;
        background: rgba(18, 140, 126, 0.08);
    }

    .mfoot_nav:first-child a:hover .fa,
    .mfoot_nav:first-child a:focus .fa {
        color: #128C7E;
    }

    .mfoot_nav_top a {
        padding: 0;
    }

    .mfoot_top_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #555;
        color: #fff;
        transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    }

    .mfoot_nav_top a:hover .mfoot_top_btn,
    .mfoot_nav_top a:focus .mfoot_top_btn {
        background: linear-gradient(135deg, #FF9E16 0%, #e88a0a 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 158, 22, 0.35);
    }

    .mfoot_top_btn .fa {
        margin-bottom: 0;
        font-size: 15px;
    }
}