input[type=password], input[type=text], textarea {
    word-wrap: break-word;
    -webkit-appearance: none;
    outline: 0;
    resize: none;
    white-space: pre-wrap
}

.el-input__inner {
    --el-input-inner-height: calc(var(--el-input-height, 32px) - 2px);
    -webkit-appearance: none;
    background: 0 0;
    border: none;
    box-sizing: border-box;
    color: var(--el-input-text-color,var(--el-text-color-regular));
    flex-grow: 1;
    font-size: inherit;
    height: var(--el-input-inner-height);
    line-height: var(--el-input-inner-height);
    outline: 0;
    padding: 0;
    width: 100%
}

header {
    background-color: rgb(255, 255, 255);
}

@media (max-width: 1500px) {
    .container {
        max-width: 1300px
    }

    .container_s {
        max-width: 1270px
    }
}

header {
    background-color: rgb(255, 255, 255);
}

.topBanner {
    font-size: 16px;
    height: 66px;
    line-height: 66px;
}

    .topBanner .container > div {
        align-items: center;
        display: flex;
        padding-left: 150px;
    }

        .topBanner .container > div > div {
            background-color: rgb(131, 26, 14);
            border-radius: 20px;
            color: rgb(255, 204, 0);
            cursor: pointer;
            line-height: normal;
            margin-left: 32px;
            padding: 6px 25px;
        }

    .topBanner p {
        color: rgb(255, 255, 255);
    }

        .topBanner p span {
            color: rgb(255, 241, 0);
            font-family: Inter-Medium;
        }

    .topBanner a {
        background-color: rgb(131, 26, 14);
        border-radius: 20px;
        color: rgb(255, 204, 0);
        line-height: normal;
        margin-left: 32px;
        padding: 6px 25px;
    }

.langMain {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    position: relative;
}

    .langMain > div:hover .allLangBox {
        display: block;
    }

    .langMain .langBtn {
        display: flex;
        justify-content: flex-end;
        padding: 10px 10px 10px 0px;
        position: relative;
    }

        .langMain .langBtn::after {
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 4px solid rgb(52, 52, 52);
            content: "";
            display: block;
            position: absolute;
            right: 0px;
            top: 50%;
            transform: translateY(-50%);
        }

        .langMain .langBtn > div {
            align-items: center;
            cursor: pointer;
            display: flex;
        }

        .langMain .langBtn img {
            height: 14px;
            margin-right: 2px;
            width: 21px;
        }

        .langMain .langBtn span {
            font-size: 12px;
        }

    .langMain .allLangBox {
        display: none;
        padding-top: 35px;
        position: absolute;
        right: 0px;
        top: 0px;
        width: 568px;
        z-index: 10;
    }

        .langMain .allLangBox.showLang {
            display: block;
        }

        .langMain .allLangBox > ul {
            background-color: rgb(255, 255, 255);
            border-radius: 4px;
            box-shadow: rgba(0, 46, 96, 0.12) 0px 0px 10px 4px;
            display: grid;
            font-size: 12px;
            gap: 10px 20px;
            grid-template-columns: 1fr 1fr 1fr;
            padding: 22px 20px 26px;
        }

            .langMain .allLangBox > ul li {
                align-items: center;
                display: flex;
            }

                .langMain .allLangBox > ul li:hover a, .langMain .allLangBox > ul li:hover span {
                    color: rgb(0, 123, 255);
                    text-decoration: underline;
                }

                .langMain .allLangBox > ul li a, .langMain .allLangBox > ul li span {
                    color: rgb(87, 87, 87);
                    cursor: pointer;
                    display: block;
                }

                .langMain .allLangBox > ul li img {
                    display: block;
                    height: 14px;
                    margin-right: 4px;
                    object-fit: contain;
                    width: 21px;
                }

.headerCenter {
    align-items: center;
    display: flex;
}

.headerLogo {
    align-items: flex-end;
    display: flex;
    transform: translateY(-6px);
}

    .headerLogo a {
        display: block;
    }

    .headerLogo img {
        display: block;
        height: auto;
        width: 180px;
    }

    .headerLogo span {
        font-size: 12px;
        transform: translateY(-4px);
    }

.headerSearch {
    border: 1px solid rgb(100, 100, 100);
    border-radius: 4px;
    flex: 1 1 0%;
    height: 38px;
    line-height: 38px;
    margin-left: 70px;
    margin-right: 10px;
    overflow: hidden;
}

    .headerSearch > div {
        align-items: center;
        display: flex;
    }

        .headerSearch > div input {
            border: none;
            flex: 1 1 0%;
            font-size: 18px;
            padding: 0px 15px;
        }

        .headerSearch > div > div {
            align-items: center;
            background-color: rgb(0, 106, 255);
            cursor: pointer;
            display: flex;
            height: 38px;
            justify-content: center;
            padding: 0px 20px;
        }

            .headerSearch > div > div img {
                display: block;
                height: auto;
                width: 27px;
            }

.headerInfo, .headerInfo .headerUser {
    align-items: center;
    display: flex;
}

    .headerInfo .headerUser {
        position: relative;
    }

        .headerInfo .headerUser .headerUser_icon {
            cursor: pointer;
            padding: 10px;
        }

            .headerInfo .headerUser .headerUser_icon img {
                display: block;
                height: 30px;
                width: 30px;
            }

        .headerInfo .headerUser .headerUser_account {
            padding-right: 10px;
        }

            .headerInfo .headerUser .headerUser_account > div:first-of-type {
                font-size: 12px;
                margin-bottom: 4px;
            }

                .headerInfo .headerUser .headerUser_account > div:first-of-type a, .headerInfo .headerUser .headerUser_account > div:first-of-type span {
                    cursor: pointer;
                }

                    .headerInfo .headerUser .headerUser_account > div:first-of-type a:first-of-type, .headerInfo .headerUser .headerUser_account > div:first-of-type span:first-of-type {
                        margin-right: 10px;
                    }

                    .headerInfo .headerUser .headerUser_account > div:first-of-type a:hover, .headerInfo .headerUser .headerUser_account > div:first-of-type span:hover {
                        text-decoration: underline;
                    }

            .headerInfo .headerUser .headerUser_account .headerUser_accountName {
                cursor: pointer;
                font-size: 16px;
                position: relative;
            }

                .headerInfo .headerUser .headerUser_account .headerUser_accountName::after {
                    border-width: 4px;
                    border-style: solid;
                    border-color: rgb(100, 100, 100) transparent transparent;
                    border-image: initial;
                    content: "";
                    display: block;
                    position: absolute;
                    right: -15px;
                    top: 50%;
                    transform: translateY(-50%);
                }

        .headerInfo .headerUser:hover .headerUser_tipBox {
            display: block;
        }

        .headerInfo .headerUser .headerUser_tipBox {
            display: none;
            font-size: 14px;
            padding-top: 15px;
            position: absolute;
            right: -10px;
            top: 42px;
            width: 260px;
            z-index: 10;
        }

            .headerInfo .headerUser .headerUser_tipBox > div {
                background-color: rgb(255, 255, 255);
                border-radius: 0px 0px 4px 4px;
                box-shadow: rgba(0, 46, 96, 0.12) 0px 0px 10px 4px;
                padding: 20px 15px;
            }

            .headerInfo .headerUser .headerUser_tipBox .h_btn1 {
                background-color: rgb(0, 106, 255);
                border-radius: 4px;
                color: rgb(255, 255, 255);
                cursor: pointer;
                font-size: 16px;
                line-height: 36px;
                margin: 15px 0px;
                text-align: center;
            }

            .headerInfo .headerUser .headerUser_tipBox .h_text2 {
                margin-bottom: 15px;
                text-align: center;
            }

            .headerInfo .headerUser .headerUser_tipBox .h_text3 {
                color: rgb(233, 0, 0);
                cursor: pointer;
                font-size: 16px;
                text-align: center;
            }

                .headerInfo .headerUser .headerUser_tipBox .h_text3 a:hover {
                    text-decoration: underline;
                }

            .headerInfo .headerUser .headerUser_tipBox ul {
                border-top: 1px solid rgb(236, 238, 242);
                margin-top: 15px;
                padding-top: 15px;
            }

                .headerInfo .headerUser .headerUser_tipBox ul li {
                    align-items: center;
                    cursor: pointer;
                    display: flex;
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                    .headerInfo .headerUser .headerUser_tipBox ul li:hover span {
                        text-decoration: underline;
                    }

                    .headerInfo .headerUser .headerUser_tipBox ul li img {
                        height: 34px;
                        width: 34px;
                    }

                    .headerInfo .headerUser .headerUser_tipBox ul li span {
                        color: rgb(63, 63, 63);
                    }

                    .headerInfo .headerUser .headerUser_tipBox ul li:nth-of-type(3) {
                        padding-bottom: 10px;
                        position: relative;
                    }

                        .headerInfo .headerUser .headerUser_tipBox ul li:nth-of-type(3)::before {
                            background-color: rgb(236, 238, 242);
                            bottom: 0px;
                            content: "";
                            display: block;
                            height: 1px;
                            left: 0px;
                            position: absolute;
                            width: 100%;
                        }

            .headerInfo .headerUser .headerUser_tipBox .signOutBtn {
                background-color: rgb(246, 248, 252);
                border-radius: 4px;
                color: rgb(63, 63, 63);
                cursor: pointer;
                display: block;
                font-size: 16px;
                height: 40px;
                line-height: 40px;
                text-align: center;
            }

    .headerInfo .headerInfo_cart, .headerInfo .headerInfo_rfq {
        cursor: pointer;
        margin-left: 30px;
        position: relative;
        text-align: center;
    }

        .headerInfo .headerInfo_cart img, .headerInfo .headerInfo_rfq img {
            height: 30px;
            width: 30px;
        }

        .headerInfo .headerInfo_cart span, .headerInfo .headerInfo_rfq span {
            display: block;
            font-size: 12px;
        }

        .headerInfo .headerInfo_cart i, .headerInfo .headerInfo_rfq i {
            background-color: rgb(233, 0, 0);
            border-radius: 50%;
            color: rgb(255, 255, 255);
            font-size: 12px;
            height: 16px;
            line-height: 16px;
            position: absolute;
            right: -4px;
            text-align: center;
            top: -4px;
            width: 16px;
        }

.headerMenu {
    border-bottom: 1px solid rgb(0, 106, 255);
    margin-top: 15px;
    height: 34px
}

    .headerMenu .container > div {
        display: flex;
    }

    .headerMenu .container .headerMenuLeft {
        flex: 0 0 263px;
        margin-right: 30px;
    }

*, :after, :before {
    box-sizing: border-box;
    margin: 0
}

.headerMenu .container .headerMenuLeft > div {
    background-color: rgb(0, 106, 255);
    border-radius: 5px 5px 0px 0px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 16px;
    line-height: 34px;
    padding-left: 16px;
    position: relative;
}

ol, ul {
    list-style: none;
}

.headerMenu .container .headerMenuLeft > div:hover span {
    text-decoration: underline;
}

.headerMenu .container .headerMenuLeft > div > img {
    bottom: 0px;
    position: absolute;
    right: 0px;
}

.headerMenu .container .headerMenuCenter {
    flex: 1 1 0%;
    margin-top: -3px;
}

    .headerMenu .container .headerMenuCenter ul {
        display: flex;
    }

        .headerMenu .container .headerMenuCenter ul li {
            line-height: 34px;
            margin-right: 20px;
            position: relative;
            text-align: center;
        }

            .headerMenu .container .headerMenuCenter ul li:hover .headerMenu1 {
                background-color: rgb(242, 242, 242);
            }

            .headerMenu .container .headerMenuCenter ul li:hover .headerMenu2 {
                display: block;
            }

    .headerMenu .container .headerMenuCenter .headerMenu1 {
        border-radius: 4px 4px 0px 0px;
        color: rgb(87, 87, 87);
        cursor: pointer;
        font-size: 16px;
        padding: 0px 20px;
    }

        .headerMenu .container .headerMenuCenter .headerMenu1 a {
            display: block;
        }

a, a:active, a:focus, a:hover, a:visited {
    color: inherit;
    text-decoration: none;
}

.headerMenu .container .headerMenuCenter .headerMenu2 {
    background-color: rgb(255, 255, 255);
    border-radius: 0px 0px 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 4px;
    display: none;
    font-size: 14px;
    left: 0px;
    padding: 10px 0px;
    position: absolute;
    top: 34px;
    width: 160px;
    z-index: 3;
}

    .headerMenu .container .headerMenuCenter .headerMenu2::before {
        background-color: transparent;
        content: "";
        height: 12px;
        left: 0px;
        position: absolute;
        top: -8px;
        width: 100%;
    }

    .headerMenu .container .headerMenuCenter .headerMenu2 p a, .headerMenu .container .headerMenuCenter .headerMenu2 p span {
        border-radius: 4px;
        color: rgb(87, 87, 87);
        cursor: pointer;
        display: inline-block;
        padding: 0px 15px;
    }

        .headerMenu .container .headerMenuCenter .headerMenu2 p a:hover, .headerMenu .container .headerMenuCenter .headerMenu2 p span:hover {
            background-color: rgb(0, 106, 255);
            color: rgb(255, 255, 255);
        }

.headerMenu .container .headerMenuRight {
    flex: 0 0 100px;
}

.langDialog {
    background-color: rgba(0, 0, 0, 0.3);
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
}

    .langDialog .langDialogMain {
        background-color: rgb(255, 255, 255);
        left: 50%;
        max-height: 100%;
        max-width: 100%;
        overflow: auto;
        padding: 30px 30px 40px;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 568px;
    }

        .langDialog .langDialogMain > p {
            margin-top: 30px;
            text-align: center;
        }

            .langDialog .langDialogMain > p span {
                color: rgb(0, 123, 255);
                cursor: pointer;
                text-decoration: underline;
            }

    .langDialog .langDialogTitle {
        border-bottom: 1px solid rgb(221, 221, 221);
        font-family: Inter-SemiBold;
        font-size: 24px;
        margin-bottom: 24px;
        padding-bottom: 24px;
        text-align: center;
    }

        .langDialog .langDialogTitle span {
            cursor: pointer;
            display: block;
            height: 22px;
            position: absolute;
            right: 16px;
            top: 16px;
            width: 22px;
        }

            .langDialog .langDialogTitle span::after, .langDialog .langDialogTitle span::before {
                background-color: rgb(102, 102, 102);
                content: "";
                display: block;
                height: 22px;
                position: absolute;
                right: 50%;
                top: 50%;
                width: 2px;
            }

            .langDialog .langDialogTitle span::before {
                transform: translate(-50%, -50%) rotate(45deg);
            }

            .langDialog .langDialogTitle span::after {
                transform: translate(-50%, -50%) rotate(-45deg);
            }

    .langDialog .langDialoglist ul {
        display: grid;
        gap: 26px;
        grid-template-columns: 1fr 1fr;
    }

        .langDialog .langDialoglist ul li {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .langDialog .langDialoglist ul img {
            display: block;
            height: auto;
            width: auto;
        }

        .langDialog .langDialoglist ul p {
            font-size: 16px;
            margin-top: 14px;
            text-align: center;
        }

@media screen and (max-width: 1700px) {
    .topBanner .container > div {
        justify-content: center;
        padding-left: 50px;
    }
}

footer {
    padding-bottom: 50px;
    padding-top: 46px;
}

.footerColumn ul {
    display: flex;
    justify-content: space-between;
}

.footerColumn li {
    max-width: 300px;
}

.footerColumn .fTitle {
    color: rgb(63, 63, 63);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footerColumn .footerColumn1 {
    font-size: 14px;
    margin-bottom: 42px;
    min-height: 160px;
}

    .footerColumn .footerColumn1 p {
        color: rgb(87, 87, 87);
        margin-bottom: 14px;
    }

        .footerColumn .footerColumn1 p:last-of-type {
            margin-bottom: 0px;
        }

    .footerColumn .footerColumn1 .fContact {
        display: flex;
        margin-top: 14px;
    }

        .footerColumn .footerColumn1 .fContact > a {
            margin-right: 10px;
        }

        .footerColumn .footerColumn1 .fContact:last-of-type {
            margin-bottom: 0px;
        }

.footerColumn .footerColumn2 > div.fTitle {
    font-size: 16px;
    margin-bottom: 24px;
}

.footerColumn .footerColumn2 > img {
    height: auto;
    max-width: 100%;
    width: auto;
}

.footerColumn .footerColumn2.fShare .footerShare {
    display: flex;
    margin-bottom: 16px;
}

    .footerColumn .footerColumn2.fShare .footerShare > div {
        cursor: pointer;
        margin-right: 10px;
    }

        .footerColumn .footerColumn2.fShare .footerShare > div img {
            height: 40px;
            width: 40px;
        }

.footerColumn .footerColumn2.fShare > p {
    color: rgb(87, 87, 87);
    line-height: 26px;
}

.footerColumn .footerColumn2.fSubscribe > p {
    color: rgb(87, 87, 87);
    line-height: 26px;
    white-space: nowrap;
}

.footerColumn .footerColumn2 .subscribeBox {
    border: 1px solid rgb(109, 122, 132);
    border-radius: 40px;
    height: 36px;
    margin-bottom: 16px;
    overflow: hidden;
    padding-right: 100px;
    position: relative;
    width: 290px;
}

    .footerColumn .footerColumn2 .subscribeBox .el-input__wrapper {
        box-shadow: none;
        margin-top: 3px;
        margin-left: 10px;
    }

    .footerColumn .footerColumn2 .subscribeBox .subscribeBtn {
        align-items: center;
        background-color: rgb(0, 123, 255);
        border-radius: 30px;
        bottom: 2px;
        color: rgb(255, 255, 255);
        cursor: pointer;
        display: flex;
        font-size: 13px;
        justify-content: center;
        position: absolute;
        right: 2px;
        text-align: center;
        top: 2px;
        width: 90px;
    }

.footerColumn .footerLink a:hover {
    color: rgb(0, 123, 255);
    text-decoration: underline;
}

.footerCoryright {
    border-top: 1px solid rgb(221, 221, 221);
    color: rgb(87, 87, 87);
    flex-direction: column;
    justify-content: center;
    margin-top: 34px;
    padding-top: 26px;
}

    .footerCoryright, .footerCoryright .footerPay ul {
        align-items: center;
        display: flex;
    }

        .footerCoryright .footerPay > img {
            display: block;
            height: auto;
            margin: 0px auto;
            width: auto;
        }

        .footerCoryright .footerCoryrightInfo {
            align-items: center;
            display: flex;
            margin-top: 16px;
        }

            .footerCoryright .footerCoryrightInfo ul {
                align-items: center;
                display: flex;
                margin-left: 20px;
            }

            .footerCoryright .footerCoryrightInfo li {
                margin: 0px 5px;
                position: relative;
            }

                .footerCoryright .footerCoryrightInfo li a {
                    text-decoration: underline;
                }

                .footerCoryright .footerCoryrightInfo li::after {
                    background-color: rgb(173, 173, 173);
                    content: "";
                    display: block;
                    height: 14px;
                    position: absolute;
                    right: -5px;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 1px;
                }

                .footerCoryright .footerCoryrightInfo li:last-of-type::after {
                    display: none;
                }
