body {
    background: #fff
}

.select2-search--dropdown {
    padding: 8px !important
}

.select2-search--dropdown .select2-search__field {
    height: 32px !important
}

.select2-search--dropdown .select2-search__field {
    font-size: 16px;
    padding: 0 8px !important
}

.select2-results__option[aria-selected] {
    transition: .4s ease
}

.select2-dropdown {
    border: 1px solid #EBEBEB !important;
    border-top: 1px solid transparent !important
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dcdee2 !important
}

.select2-results__option {
    padding: 12px 16px !important;
    font-size: 14px
}

@keyframes roteAnimate {
    100% {
        transform: rotate(360deg)
    }
}

.fixed_alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 1s
}

.fixed_alert.on {
    opacity: 1;
    pointer-events: auto
}

.fixed_alert .black {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4)
}

.fixed_alert .content {
    width: 820px;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 54px 58px 48px 61px;
    position: relative;
    z-index: 5
}

.fixed_alert .content .close {
    position: absolute;
    left: calc(100% + 6px);
    top: 0;
    width: 43px;
    height: 43px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .6s ease
}

.fixed_alert .content .close:hover {
    background: var(--color)
}

.fixed_alert .content .close:hover img {
    filter: invert(1)
}

.fixed_alert .content .close img {
    width: 13px;
    transition: .6s ease
}

.fixed_alert .content .p1 {
    font-weight: bold;
    font-size: 30px;
    color: #111111;
    margin: 0 0 20px;
    text-align: center;
    text-transform: uppercase
}

.fixed_alert .content .p2 {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    margin: 0 0 30px;
    text-align: center
}

.fixed_alert .content textarea {
    width: 100%;
    height: 188px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    padding: 18px 21px;
    font-weight: 400;
    font-size: 16px
}

.fixed_alert .content textarea::placeholder {
    color: #999999
}

.fixed_alert .content .click {
    width: 150px;
    height: 48px;
    background: #E61F18;
    border-radius: 24px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer
}

.fixed_alert .content .click.on .iconfont {
    display: block
}

.fixed_alert .content .click .iconfont {
    color: #fff;
    font-size: 16px;
    animation: roteAnimate 2s infinite linear;
    margin: 0 10px 0 0;
    display: none
}

.common_banner {
    height: 31.25vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.common_banner .pro_box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    width: 1560px;
    background: #FFFFFF;
    border-radius: 4px;
    z-index: 5;
    padding: 26px 32px;
    display: flex;
    justify-content: space-between
}

.common_banner .pro_box .flex {
    width: 480px
}

.common_banner .pro_box .flex .list {
    width: 480px;
    height: 40px
}

.common_banner .pro_box .flex .list input {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #EBEBEB;
    padding: 0 14px;
    font-weight: 400;
    font-size: 16px;
    transition: .6s ease
}

.common_banner .pro_box .flex .list input:focus {
    border: 1px solid var(--color)
}

.common_banner .pro_box .flex .list input::placeholder {
    color: #999999
}

.common_banner .pro_box .flex select {
    width: 100%
}

.common_banner .pro_box .flex .select2 {
    width: 480px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #EBEBEB;
    margin: 10px 0 0 0
}

.common_banner .pro_box .flex .select2-container .select2-selection--single {
    height: 100%;
    border: none
}

.common_banner .pro_box .flex .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px
}

.common_banner .pro_box .flex .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    top: -1px
}

.common_banner .pro_box .flex .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 14px
}

.common_banner .pro_box .flex .other {
    display: flex;
    margin: 10px 0 0 0
}

.common_banner .pro_box .flex .other .btn {
    margin: 0 20px 0 0;
    width: 100px;
    height: 40px;
    background: #E5E5E5;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    color: #111111;
    cursor: pointer;
    transition: .6s ease
}

.common_banner .pro_box .flex .other .btn:hover {
    background: #bdbdbd
}

.common_banner .pro_box .flex .other .btn.on {
    background: #E61F18;
    color: #fff
}

.common_banner .pro_box .flex .other .btn.on:hover {
    background: #c51812
}

.pro_paging {
    display: flex
}

.pro_paging a {
    height: 30px;
    background: #FAFAFA;
    border-radius: 2px;
    border: 1px solid #E6E6E6;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
    margin: 0 3px
}

.pro_paging a.on {
    border: none;
    background: transparent;
    color: var(--color)
}

.pro_paging a.point {
    border: none;
    background: #fff;
    line-height: 25px
}

.pro_paging a p {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    margin: 0 5px 0 0
}

.pro_paging a:first-child .iconfont {
    transform: rotate(-180deg)
}

.pro_paging a:last-child .iconfont {
    color: var(--color)
}

.products1 {
    padding: 44px 0 71px
}

.products1 .wrap .top {
    display: flex;
    justify-content: center
}

.products1 .wrap .top .item {
    height: 48px;
    background: #E5E5E5;
    border-radius: 24px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center
}

.products1 .wrap .top .item.on {
    background: #323437
}

.products1 .wrap .top .item.on p {
    color: #FFFFFF
}

.products1 .wrap .top .item:not(:last-child) {
    margin: 0 30px 0 0
}

.products1 .wrap .top .item img {
    object-fit: contain;
    margin: 0 9px 0 0
}

.products1 .wrap .top .item p {
    font-weight: 400;
    font-size: 16px;
    color: #111111
}

.products1 .wrap .end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 63px 0 20px 0
}

.products1 .wrap .end.flex_end {
    justify-content: flex-end
}

.products1 .wrap .end .all {
    font-weight: 400;
    font-size: 16px;
    color: #111111
}

.products1 .wrap .content table {
    width: 100%
}

.products1 .wrap .content table tr th {
    width: 9%;
    height: 60px;
    background: #F7F7F7;
    font-weight: 400;
    font-size: 16px;
    color: #111111;
    text-align: left
}

.products1 .wrap .content table tr th:first-child {
    text-align: center
}

.products1 .wrap .content table tr th:last-child {
    width: 5%
}

.products1 .wrap .content table tr td {
    width: 9%;
    padding: 18px 0;
    border-bottom: 1px solid #F0F0F0;
    font-weight: 400;
    font-size: 16px;
    color: #111111
}

.products1 .wrap .content table tr td:first-child {
    padding: 18px 26px
}

.products1 .wrap .content table tr td:last-child {
    width: 5%
}

.products1 .wrap .content table tr td .dis {
    display: flex;
    align-items: center
}

.products1 .wrap .content table tr td .dis img {
    width: 16px;
    margin: 3px 6px 0 0
}

.products1 .wrap .content table tr td .dis p {
    font-weight: 400;
    font-size: 16px;
    color: #111111
}

.products1 .wrap .content table tr td .img {
    width: 143px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center
}

.products1 .wrap .content table tr td .img:hover img {
    transform: scale(1.05)
}

.products1 .wrap .content table tr td .img img {
    width: 100%;
    object-fit: contain;
    transition: .6s ease
}

@media screen and (max-width: 1919px) {
    .select2-search--dropdown{
        padding: 0.4166666667vw !important;
    }
    .select2-search--dropdown .select2-search__field{
        height: 1.6666666667vw !important;
    }
    .select2-search--dropdown .select2-search__field{
        font-size: 0.8333333333vw;
        padding: 0px 0.4166666667vw !important;
    }
    .select2-results__option{
        font-size: 0.7291666667vw;
        padding: 0.625vw 0.8333333333vw !important;
    }
    .fixed_alert .content{
        width: 42.7083333333vw;
        border-radius: 0.3125vw;
        padding: 2.8125vw 3.0208333333vw 2.5vw 3.1770833333vw;
    }
    .fixed_alert .content .close{
        left: calc(100% + 0.3125vw);
        width: 2.2395833333vw;
        height: 2.2395833333vw;
        border-radius: 0.2083333333vw;
    }
    .fixed_alert .content .close img{
        width: 0.6770833333vw;
    }
    .fixed_alert .content .p1{
        font-size: 1.5625vw;
        margin: 0px 0px 1.0416666667vw;
    }
    .fixed_alert .content .p2{
        font-size: 0.8333333333vw;
        line-height: 1.3541666667vw;
        margin: 0px 0px 1.5625vw;
    }
    .fixed_alert .content textarea{
        height: 9.7916666667vw;
        padding: 0.9375vw 1.09375vw;
        font-size: 0.8333333333vw;
    }
    .fixed_alert .content .click{
        width: 7.8125vw;
        height: 2.5vw;
        border-radius: 1.25vw;
        margin: 1.5625vw auto 0px;
        font-size: 0.8333333333vw;
    }
    .fixed_alert .content .click .iconfont{
        font-size: 0.8333333333vw;
        margin: 0px 0.5208333333vw 0px 0px;
    }

    .common_banner .pro_box{
        bottom: 1.5625vw;
        width: 81.25vw;
        border-radius: 0.2083333333vw;
        padding: 1.3541666667vw 1.6666666667vw;
    }
    .common_banner .pro_box .flex{
        width: 25vw;
    }
    .common_banner .pro_box .flex .list{
        width: 25vw;
        height: 2.0833333333vw;
    }
    .common_banner .pro_box .flex .list input{
        border-radius: 0.1041666667vw;
        padding: 0px 0.7291666667vw;
        font-size: 0.8333333333vw;
    }
    .common_banner .pro_box .flex .select2{
        width: 25vw;
        height: 2.0833333333vw;
        border-radius: 0.1041666667vw;
        margin: 0.5208333333vw 0px 0px;
    }
    .common_banner .pro_box .flex .select2-container--default .select2-selection--single .select2-selection__rendered{
        line-height: 2.0833333333vw;
    }
    .common_banner .pro_box .flex .select2-container--default .select2-selection--single .select2-selection__arrow{
        height: 2.0833333333vw;
    }
    .common_banner .pro_box .flex .select2-container .select2-selection--single .select2-selection__rendered{
        padding: 0px 0.7291666667vw;
    }
    .common_banner .pro_box .flex .other{
        margin: 0.5208333333vw 0px 0px;
    }
    .common_banner .pro_box .flex .other .btn{
        margin: 0px 1.0416666667vw 0px 0px;
        width: 5.2083333333vw;
        height: 2.0833333333vw;
        border-radius: 0.1041666667vw;
        font-size: 0.8333333333vw;
    }
    .pro_paging a{
        height: 1.5625vw;
        border-radius: 0.1041666667vw;
        padding: 0px 0.5208333333vw;
        font-size: 0.7291666667vw;
        margin: 0px 0.15625vw;
    }
    .pro_paging a.point{
        line-height: 1.3020833333vw;
    }
    .pro_paging a p{
        font-size: 0.7291666667vw;
        margin: 0px 0.2604166667vw 0px 0px;
    }
    .products1{
        padding: 2.2916666667vw 0px 3.6979166667vw;
    }
    .products1 .wrap .top .item{
        height: 2.5vw;
        border-radius: 1.25vw;
        padding: 0px 1.3020833333vw;
    }
    .products1 .wrap .top .item:not(:last-child){
        margin: 0px 1.5625vw 0px 0px;
    }
    .products1 .wrap .top .item img{
        margin: 0px 0.46875vw 0px 0px;
    }
    .products1 .wrap .top .item p{
        font-size: 0.8333333333vw;
    }
    .products1 .wrap .end{
        margin: 3.28125vw 0px 1.0416666667vw;
    }
    .products1 .wrap .end .all{
        font-size: 0.8333333333vw;
    }
    .products1 .wrap .content table tr th{
        height: 3.125vw;
        font-size: 0.8333333333vw;
    }
    .products1 .wrap .content table tr td{
        padding: 0.9375vw 0px;
        font-size: 0.8333333333vw;
    }
    .products1 .wrap .content table tr td:first-child{
        padding: 0.9375vw 1.3541666667vw;
    }
    .products1 .wrap .content table tr td .dis img{
        width: 0.8333333333vw;
        margin: 0.15625vw 0.3125vw 0px 0px;
    }
    .products1 .wrap .content table tr td .dis p{
        font-size: 0.8333333333vw;
    }
    .products1 .wrap .content table tr td .img{
        width: 7.4479166667vw;
        height: 5.46875vw;
    }
}

@media screen and (max-width: 1024px) {
    .common_banner{
        height: auto!important;
        padding: 100px 0 30px;
        display: block;
    }
    .common_banner .pro_box{
        position: static;
        transform: none;
        width: 90%;
        margin: 25px auto 0;
        border-radius: 5px;
        padding: 15px;
        flex-direction: column;
        gap: 8px;
    }

    .common_banner .pro_box .flex{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .common_banner .pro_box .flex .select2-container--default .select2-selection--single .select2-selection__arrow{
        height: 35px;
    }
    .common_banner .pro_box .flex .list{
        width: 100%;
        height: auto;
    }
    .common_banner .pro_box .flex .list input{
        border-radius: 0;
        padding: 6px 15px;
        font-size: 14px;
    }
    .common_banner .pro_box .flex .select2{
        border-radius: 0;
        height: 35px;
        font-size: 14px;
    }
    .common_banner .pro_box .flex .select2-container .select2-selection--single .select2-selection__rendered{
        border-radius: 0;
        height: 35px;
        font-size: 14px;
    }
    .common_banner .pro_box .flex{
        width: 100%;
    }
    .common_banner .pro_box .flex .select2-container--default .select2-selection--single .select2-selection__rendered{
        line-height: 35px;
    }
    .common_banner .pro_box .flex .select2-container .select2-selection--single .select2-selection__rendered{
        padding: 0 15px;
    }
    .select2-search--dropdown .select2-search__field{
        font-size: 14px;
        padding: 20px 15px;
    }
    .select2-results__option{
        padding: 7px 5% !important;
        font-size: 14px;
        line-height: 30px;
    }

    .select2-search--dropdown .select2-search__field {
        height: 35px !important;
        padding: 0 15px!important;
    }
    .select2-search--dropdown{
        padding: 10px!important;
    }
    .common_banner .pro_box .flex .other .btn {
        margin: 0 12px 0 0;
        width: 80px;
        height: 36px;
        border-radius: 2px;
        font-size: 13px;
    }
    .common_banner .pro_box .flex .other{
        margin: 20px 0 0 0;
    }

    /**/
    .products1{
        padding: 50px 0;
    }
    .products1 .wrap .top .item {
        height: 35px;
        border-radius: 24px;
        padding: 0 10px;
    }
    .products1 .wrap .top .item img{
        margin: 0 7px 0 0;
    }
    .products1 .wrap .top .item p{
        font-size: 11px;
    }
    .products1 .wrap .top .item:not(:last-child) {
        margin: 0 12px 0 0;
    }
    .products1 .wrap .end{
        margin: 35px 0;
        flex-direction: column;
        align-items: unset;
    }
    .products1 .wrap .end .all{
        font-size: 13px;
    }
    .pro_paging{
        margin: 20px 0 0 0 ;
        flex-wrap: wrap;
        gap: 10px 0;
    }
    .pro_paging a p{
        font-size: 13px;
        margin: 0 5px 0 0;
    }
    .pro_paging a {
        height: 30px;
        border-radius: 2px;
        border: 1px solid #E6E6E6;
        padding: 0 10px;
        font-size: 12px;
        margin: 0 3px;
    }
    .products1 .wrap .content table tr th{
        height: 50px;
        width: auto;
        font-size: 12px;
        padding: 15px 20px;
    }
    .products1 .wrap .content table{
        display: block;
        overflow: hidden;
        overflow-x: scroll;
    }

    .products1 .wrap .content table tbody{
        width: max-content;
        display: table-caption;
    }
    .products1 .wrap .content table tr td:first-child{
        padding: 10px 5px;
    }
    .products1 .wrap .content table tr td .img{
        width: 70px;
        height: auto;
    }
    .products1 .wrap .content table tr td{
        padding: 15px 20px;
        width: auto;
        font-size: 13px;
    }
    .products1 .wrap .content table tr td .dis img{
        width: 16px;
        margin: 0 7px 0 0;
    }
    .products1 .wrap .content table tr td .dis p{
        font-size: 13px;
    }
    .fixed_alert .content {
        width: 90vw;
        border-radius: 10px;
        padding: 35px 5%;
    }
    .fixed_alert .content .p1 {
        font-size: 18px;
        margin: 0 0 15px;
    }
    .fixed_alert .content .p2 {
        font-size: 12px;
        line-height: 22px;
        margin: 0 0 15px;
    }
    .fixed_alert .content textarea {
        height: 90px;
        padding: 15px;
        font-size: 13px;
    }
    .fixed_alert .content .click {
        width: 123px;
        height: 40px;
        border-radius: 25px;
        margin: 25px auto 0;
        font-size: 14px;
    }
    .fixed_alert .content .close {
        left: unset;
        right: 0;
        width: 32px;
        height: 32px;
        border-radius: 4px;
        top: -42px;
    }
    .fixed_alert .content .close img {
        width: 13px;
    }
    .fixed_alert .content .click .iconfont{
        font-size: 13px;
        margin: 0 5px 0 0;
    }
}
