body {
    background: #F5F5F7
}

.customized1 {
    padding: 80px 0 108px
}

.customized1 .wrap .title {
    text-align: center;
    font-weight: 500;
    font-size: 32px;
    color: #000011;
    margin: 0 0 50px
}

.customized1 .wrap .content {
    display: flex;
    justify-content: center;
    gap: 16px
}

.customized1 .wrap .content .item {
    width: 275px;
    height: 330px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px;
    position: relative;
    z-index: 1;
    cursor: pointer
}

.customized1 .wrap .content .item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #0069AC;
    z-index: 2;
    pointer-events: none;
    border-radius: 12px;
    opacity: 0;
    transition: .6s ease
}

.customized1 .wrap .content .item:hover .text {
    color: var(--color)
}

.customized1 .wrap .content .item:hover .img img {
    transform: scale(1.05)
}

.customized1 .wrap .content .item.on:after {
    opacity: 1
}

.customized1 .wrap .content .item.on .text {
    color: var(--color)
}

.customized1 .wrap .content .item .img {
    height: 255px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden
}

.customized1 .wrap .content .item .img img {
    width: 100%;
    height: 100%;
    transition: .6s ease
}

.customized1 .wrap .content .item .text {
    margin: 23px 0 0 0;
    font-size: 16px;
    color: #111111;
    text-align: center;
    transition: .6s ease
}

.customized2 {
    padding: 120px 0 120px
}

.customized2 .wrap {
    width: 1760px;
    margin: auto
}

.customized2 .wrap .title {
    font-weight: 500;
    font-size: 32px;
    color: #000011;
    margin: 0 0 46px;
    text-align: center
}

.customized2 .wrap .choose {
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px 50px;
    flex-wrap: wrap;
}

html[lang="en"] .customized2 .wrap .choose{
    /*gap: 30px 85px;*/
    justify-content: unset;
    gap: 30px 0;
}

.customized2 .wrap .choose .list {
    cursor: pointer;
}
html[lang="en"] .customized2 .wrap .choose .list{
    width: 165px;
}

.customized2 .wrap .choose .list.on .img img:first-child {
    opacity: 0
}

.customized2 .wrap .choose .list.on .img img:last-child {
    opacity: 1
}

.customized2 .wrap .choose .list .img {
    width: 100px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto
}

.customized2 .wrap .choose .list .img img {
    width: 100%;
    object-fit: contain;
    transition: .6s ease
}

.customized2 .wrap .choose .list .img img:nth-child(2) {
    position: absolute;
    opacity: 0
}

.customized2 .wrap .choose .list .text {
    margin: 20px 0 0 0;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #333333
}

.customized2 .wrap .content {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
    height: 640px
}

.customized2 .wrap .content .big {
    height: 100%;
    width: 1260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 12px;
    position: relative
}

.customized2 .wrap .content .big .big_flex {
    position: relative
}

.customized2 .wrap .content .big .img {
    width: 600px;
    height: 600px;
    position: relative
}

.customized2 .wrap .content .big .img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0
}

.customized2 .wrap .content .big .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none
}

.customized2 .wrap .content .big .img img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0
}

.customized2 .wrap .content .big .more {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: fit-content;
    padding: 0 25px;
    height: 50px;
    background: #F5F5F7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #888888;
    transition: .6s ease;
    cursor: pointer
}

.customized2 .wrap .content .big .more:hover {
    background: #0069AC;
    color: #FFFFFF
}

.customized2 .wrap .content .side {
    width: 480px;
    height: 100%;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px 22px
}

.customized2 .wrap .content .side .matter {
    height: 100%;
    display: none
}

.customized2 .wrap .content .side .matter.on {
    display: block
}

.customized2 .wrap .content .side .matter::-webkit-scrollbar {
    display: none;
    width: 0
}

.customized2 .wrap .content .side .matter.scrollbar::-webkit-scrollbar{
    display: block;
    width: 4px
}

.customized2 .wrap .content .side .item {
    padding: 3px
}

.customized2 .wrap .content .side .item.on .show .add:before {
    opacity: 0
}

.customized2 .wrap .content .side .item .show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 20px;
    cursor: pointer
}

.customized2 .wrap .content .side .item .show p {
    font-weight: bold;
    font-size: 22px;
    color: #111111
}

.customized2 .wrap .content .side .item .hide {
    overflow: hidden;
    padding: 4px
}

.customized2 .wrap .content .side .item .hide > div {
    margin: 20px 0
}

.customized2 .wrap .content .side .item .hide .hide_choose .p1 {
    font-weight: bold;
    font-size: 16px;
    color: #111111;
    margin: 0 0 11px
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px 7px
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid .list {
    width: 100%;
    cursor: pointer;
    position: relative
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid .list .click_scale{
    position: absolute;
    right: 2%;
    top: 2%;
    width: 22px;
    cursor: pointer;
    z-index: 5;
}
.customized2 .wrap .content .side .item .hide .hide_choose .grid .list .click_scale img{
    width: 100%;
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid .list.on .img:after {
    opacity: 1
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid .list.on .text {
    color: var(--color)
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid .list .img {
    width: 100%;
    height: 88px;
    background: #F5F5F7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: .6s ease;
    position: relative
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid .list .img:after {
    content: '';
    position: absolute;
    width: calc(100% + 7px);
    height: calc(100% + 7px);
    top: 50%;
    left: 50%;
    border-radius: 4px;
    border: 1px solid #0069AC;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .6s ease
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid .list .img img {
    object-fit: contain;
    max-width: 70%
}

.customized2 .wrap .content .side .item .hide .hide_choose .grid .list .text {
    font-weight: 500;
    font-size: 12px;
    color: #999999;
    margin: 8px 0 0 0;
    text-align: center;
    transition: .6s ease
}

.customized2 .wrap .content .side .item .hide .hide_color {
    margin: 40px 0 0 0
}

.customized2 .wrap .content .side .item .hide .hide_color .p1 {
    font-weight: bold;
    font-size: 16px;
    color: #111111;
    margin: 0 0 11px
}

.customized2 .wrap .content .side .item .hide .hide_color .grid .grid_list {
    display: none;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px
}

.customized2 .wrap .content .side .item .hide .hide_color .grid .grid_list.on {
    display: grid
}

.customized2 .wrap .content .side .item .hide .hide_color .grid .list {
    width: 100%;
    height: 88px;
    border-radius: 4px;
    cursor: pointer;
    position: relative
}

.customized2 .wrap .content .side .item .hide .hide_color .grid .list.on:after {
    opacity: 1
}

.customized2 .wrap .content .side .item .hide .hide_color .grid .list:after {
    content: '';
    position: absolute;
    width: calc(100% + 7px);
    height: calc(100% + 7px);
    top: 50%;
    left: 50%;
    border-radius: 4px;
    border: 1px solid #0069AC;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .6s ease
}

/**/
.fixed_img{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: .6s ease;
}
.fixed_img.on{
    opacity: 1;
    pointer-events: auto;
}
.fixed_img .black{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
}
.fixed_img .content{
    width: 800px;
    height: 800px;
    background: #fff;
    position: relative;
    z-index: 5;
    border-radius: 20px;
}
.fixed_img .content .big_flex{
    width: 100%;
    height: 100%;
    position: relative;
}
.fixed_img .content .smallImg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}
.fixed_img .content .big_flex .img{
    position: relative;
}
.fixed_img .content .big_flex .img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/**/

.customized_alert{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .6s ease;
}
.customized_alert.on{
    opacity: 1;
    pointer-events: auto;
}
.customized_alert.on .content{
    opacity: 1;
    transform: translateY(0);
    transition-delay: .4s;
}
.customized_alert .black{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.3);
}

.customized_alert .content{
    width: 800px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 56px 90px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
}
.customized_alert .content .close{
    position: absolute;
    right: -55px;
    top: 0;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
}
.customized_alert .content .title{
    font-weight: bold;
    font-size: 24px;
    color: #111111;
    margin: 0 0 46px;
    text-align: center;
}
.customized_alert .content form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 26px 0;
}
.customized_alert .content form .item > p{
    font-weight: 500;
    font-size: 14px;
    color: #111111;
    margin: 0 0 12px 20px;
}
.customized_alert .content form .item {
    width: 300px;
}
.customized_alert .content form .item.all{
    width: 100%;
}
.customized_alert .content form .item input{
    width: 300px;
    height: 49px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #EFEFEF;
    padding: 0 20px;
    font-weight: 500;
    font-size: 14px;
    transition: .3s ease;
}
.customized_alert .content form .item .countries {
    --background: #F3F3F3;
}
.customized_alert .content form .item .countries .show{
    width: 300px;
    height: 49px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #EFEFEF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    cursor: pointer;
}
.customized_alert .content form .item .countries .pull{
    top: 100%;
    transition: .32s cubic-bezier(0.82, -0.22, 0.15, 1.21);
    transform: scaleY(0);
    transform-origin: center top;
    padding: 0 2px 0 0;
}
.customized_alert .content form .item .countries .pull.on{
    transform: scaleY(1);
    opacity: 1;
    box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.2);
}
.customized_alert .content form .item .countries .pull p:hover{
    color: #000!important;
}
.customized_alert .content form .item .countries .show p{
    font-weight: 500;
    font-size: 14px;
    color: #111111;
}
.customized_alert .content form .item .countries .show .iconfont{
    font-size: 10px;
    color: #000;
}

.customized_alert .content form .item input::placeholder{
    color: #999999;
}
.customized_alert .content form .item textarea{
    width: 620px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #EFEFEF;
    padding: 19px 21px;
    font-weight: 500;
    font-size: 14px;
    transition: .3s ease;
}
.customized_alert .content form .item textarea::placeholder{
    color: #999999;
}

.customized_alert .content form .item textarea:focus{
    border: 1px solid var(--color);
}
.customized_alert .content form .item input:focus{
    border: 1px solid var(--color);
}
.customized_alert .content form button{
    width: fit-content;
    padding: 0 32px;
    height: 45px;
    background: #0069AC;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
}

@media screen and (max-width: 1919px) {
    .customized_alert .content{
        width: 41.6666666667vw;
        border-radius: 1.0416666667vw;
        padding: 2.9166666667vw 4.6875vw;
        transform: translateY(1.0416666667vw);
    }
    .customized_alert .content .close{
        right: -2.8645833333vw;
        font-size: 0.8333333333vw;
    }
    .customized_alert .content .title{
        font-size: 1.25vw;
        margin: 0px 0px 2.3958333333vw;
    }
    .customized_alert .content form{
        gap: 1.3541666667vw 0px;
    }
    .customized_alert .content form .item > p{
        font-size: 0.7291666667vw;
        margin: 0px 0px 0.625vw 1.0416666667vw;
    }
    .customized_alert .content form .item{
        width: 15.625vw;
    }
    .customized_alert .content form .item input{
        width: 15.625vw;
        height: 2.5520833333vw;
        border-radius: 0.2604166667vw;
        padding: 0px 1.0416666667vw;
        font-size: 0.7291666667vw;
    }
    .customized_alert .content form .item .countries .show{
        width: 15.625vw;
        height: 2.5520833333vw;
        border-radius: 0.2604166667vw;
        padding: 0px 1.09375vw;
    }
    .customized_alert .content form .item .countries .pull{
        padding: 0px 0.1041666667vw 0px 0px;
    }
    .customized_alert .content form .item .countries .pull p{
        height: 2.0833333333vw;
        padding: 0px 0px 0px 0.78125vw;
        font-size: 0.7291666667vw !important;
    }
    .customized_alert .content form .item .countries .pull.on{
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 1.25vw 0px;
    }
    .customized_alert .content form .item .countries .show p{
        font-size: 0.7291666667vw;
    }
    .customized_alert .content form .item .countries .show .iconfont{
        font-size: 0.5208333333vw;
    }
    .customized_alert .content form .item textarea{
        width: 32.2916666667vw;
        height: 6.25vw;
        border-radius: 0.2604166667vw;
        padding: 0.9895833333vw 1.09375vw;
        font-size: 0.7291666667vw;
    }
    .customized_alert .content form button{
        padding: 0px 1.6666666667vw;
        height: 2.34375vw;
        border-radius: 0.2604166667vw;
        font-size: 0.7291666667vw;
    }
    .customized1{
        padding: 4.1666666667vw 0px 5.625vw;
    }
    .customized1 .wrap .title{
        font-size: 1.6666666667vw;
        margin: 0px 0px 2.6041666667vw;
    }
    .customized1 .wrap .content{
        gap: 0.8333333333vw;
    }
    .customized1 .wrap .content .item{
        width: 14.3229166667vw;
        height: 17.1875vw;
        border-radius: 0.625vw;
        padding: 0.5208333333vw;
    }
    .customized1 .wrap .content .item::after{
        border-radius: 0.625vw;
    }
    .customized1 .wrap .content .item .img{
        height: 13.28125vw;
        border-radius: 0.625vw;
    }
    .customized1 .wrap .content .item .text{
        margin: 1.1979166667vw 0px 0px;
        font-size: 0.8333333333vw;
    }
    .customized2{
        padding: 6.25vw 0px;
    }
    .customized2 .wrap{
        width: 91.6666666667vw;
    }
    .customized2 .wrap .title{
        font-size: 1.6666666667vw;
        margin: 0px 0px 2.3958333333vw;
    }
    .customized2 .wrap .choose{
        border-radius: 0.625vw;
        padding: 1.6666666667vw 2.6041666667vw;
    }
    html[lang="en"] .customized2 .wrap .choose{
        gap: 1.5625vw 0;
    }
    .customized2 .wrap .choose .list .img{
        width: 5.2083333333vw;
        height: 3.125vw;
    }
    html[lang="en"] .customized2 .wrap .choose .list{
        width: 8.59375vw;
    }
    .customized2 .wrap .choose .list .text{
        margin: 1.0416666667vw 0px 0px;
        font-size: 0.8333333333vw;
    }
    .customized2 .wrap .content{
        margin: 1.0416666667vw 0px 0px;
        height: 33.3333333333vw;
    }
    .customized2 .wrap .content .big{
        width: 65.625vw;
        border-radius: 0.625vw;
    }
    .customized2 .wrap .content .big .img{
        width: 31.25vw;
        height: 31.25vw;
    }
    .customized2 .wrap .content .big .more{
        bottom: 1.0416666667vw;
        left: 1.0416666667vw;
        padding: 0px 1.3020833333vw;
        height: 2.6041666667vw;
        border-radius: 0.4166666667vw;
        font-size: 0.8333333333vw;
    }
    .customized2 .wrap .content .side{
        width: 25vw;
        border-radius: 0.625vw;
        padding: 1.25vw 1.1458333333vw;
    }
    .customized2 .wrap .content .side .matter.scrollbar::-webkit-scrollbar{
        width: 0.2083333333vw;
    }
    .customized2 .wrap .content .side .item{
        padding: 0.15625vw;
    }
    .customized2 .wrap .content .side .item .show{
        padding: 0px 0px 1.0416666667vw;
    }
    .customized2 .wrap .content .side .item .show p{
        font-size: 1.1458333333vw;
    }
    .customized2 .wrap .content .side .item .hide{
        padding: 0.2083333333vw;
    }
    .customized2 .wrap .content .side .item .hide > div{
        margin: 1.0416666667vw 0px;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .p1{
        font-size: 0.8333333333vw;
        margin: 0px 0px 0.5729166667vw;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid{
        gap: 1.25vw 0.3645833333vw;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid .list .click_scale{
        width: 1.1458333333vw;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid .list .img{
        height: 4.5833333333vw;
        border-radius: 0.2083333333vw;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid .list .img::after{
        width: calc(100% + 0.3645833333vw);
        height: calc(100% + 0.3645833333vw);
        border-radius: 0.2083333333vw;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid .list .text{
        font-size: 0.625vw;
        margin: 0.4166666667vw 0px 0px;
    }
    .customized2 .wrap .content .side .item .hide .hide_color{
        margin: 2.0833333333vw 0px 0px;
    }
    .customized2 .wrap .content .side .item .hide .hide_color .p1{
        font-size: 0.8333333333vw;
        margin: 0px 0px 0.5729166667vw;
    }
    .customized2 .wrap .content .side .item .hide .hide_color .grid .grid_list{
        gap: 0.5208333333vw;
    }
    .customized2 .wrap .content .side .item .hide .hide_color .grid .list{
        height: 4.5833333333vw;
        border-radius: 0.2083333333vw;
    }
    .customized2 .wrap .content .side .item .hide .hide_color .grid .list::after{
        width: calc(100% + 0.3645833333vw);
        height: calc(100% + 0.3645833333vw);
        border-radius: 0.2083333333vw;
    }
    .fixed_img .content{
        width: 41.6666666667vw;
        height: 41.6666666667vw;
        border-radius: 1.0416666667vw;
    }
}

@media screen and (max-width: 768px) {
    .fixed_img .content{
        width: 90%;
        height: auto;
        min-height: 65vw;
        border-radius: 10px;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid .list .click_scale{
        width: 20px;
    }
    .customized2{
        padding: 50px 0;
    }
    .customized2 .wrap{
        width: 90%;
    }
    .customized2 .wrap .title{
        font-size: 22px;
        margin: 0 0 22px;
    }
    .customized2 .wrap .choose{
        gap: 10px!important;
        flex-wrap: wrap;
        border-radius: 7px;
        padding: 20px 5%;
        display: none;
    }
    .customized2 .wrap .choose.sj_choose{
        display: flex!important;
        margin: 20px 0 0 0;
    }
    .customized2 .wrap .choose .list .text{
        margin: 15px 0 0 0;
        font-size: 13px;
    }
    .customized2 .wrap .choose .list .img{
        width: 30px;
        height: 30px;
    }

    

    .customized2 .wrap .content{
        margin: 15px 0 0 0;
        height: auto;
        flex-direction: column;
    }
    .customized2 .wrap .content .big{
        width: 100%;
        border-radius: 7px;
        padding: 20px 0 50px;
    }
    .customized2 .wrap .content .side{
        width: 100%;
        margin: 15px 0 0 0;
        padding: 20px 5%;
    }
    .customized2 .wrap .content .big .more{
        width: fit-content;
        height: 40px;
        padding: 0 15px;
        border-radius: 7px;
        font-size: 13px;
        left: 10px;
        bottom: 10px;
    }
    .customized2 .wrap .content .big .img{
        width: 70vw;
        height: 70vw;
    }
    .customized2 .wrap .content .side .item .show{
        padding: 0 0 10px;
    }
    .customized2 .wrap .content .side .item .show p{
        font-size: 16px;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid{
        gap: 10px 15px;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid .list .img{
        height: 70px;
        border-radius: 6px;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid .list .img:after {
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        border-radius: 4px;
    }
    .customized2 .wrap .content .side .item .hide .hide_color{
        margin: 30px 0 0 0;
    }
    .customized2 .wrap .content .side .item .hide .hide_color .p1{
        font-size: 16px;
        margin: 0 0 15px;
    }
    .customized2 .wrap .content .side .item .hide .hide_color .grid .grid_list{
        gap: 10px 15px;
        padding: 0 3px;
        width: fit-content;
    }
    .customized2 .wrap .content .side .item .hide .hide_color .grid .grid_list.on{
        display: flex;
    }

    .customized2 .wrap .content .side .item .hide .hide_color .grid .list{
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }
    .customized2 .wrap .content .side .item .hide .hide_color .grid .list::after {
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        border-radius: 50%;
    }


    .customized2 .wrap .choose{
        justify-content: center;
    }
    .customized2 .wrap .content .side .item .hide .hide_choose .grid .list .text{
        font-size: 10px;
        margin: 5px 0 0 0;
    }

    .customized_alert .content{
        width: 90%;
        border-radius: 7px;
        padding: 30px 5%;
    }
    .customized_alert .content .title{
        font-size: 20px;
        margin: 0 0 15px;
    }
    .customized_alert .content form{
        gap: 10px;
    }
    .customized_alert .content form .item{
        width: 100%;
    }
    .customized_alert .content form .item > p{
        font-size: 14px;
        margin: 0 0 10px;
    }
    .customized_alert .content form .item input{
        width: 100%;
        height: 43px;
        border-radius: 7px;
        padding: 0 15px;
        font-size: 14px;
    }
    .customized_alert .content form .item .countries .show{
        width: 100%;
        height: 43px;
        border-radius: 7px;
        padding: 0 15px;
    }
    .customized_alert .content form .item .countries .show p{
        font-size: 14px;
    }
    .customized_alert .content form .item .countries .show .iconfont{
        font-size: 10px;
    }
    .customized_alert .content form .item .countries .pull p{
        height: 40px;
        padding: 0 0 0 15px;
        font-size: 14px!important;
    }
    .customized_alert .content form .item .countries .pull{
        height: 250px;
    }
    .customized_alert .content form .item textarea{
        width: 100%;
        height: 90px;
        border-radius: 7px;
        padding: 15px;
        font-size: 14px;
    }
    .customized_alert .content form button{
        padding: 0 15px;
        height: 40px;
        border-radius: 5px;
        font-size: 14px;
    }
    .customized_alert .content .close{
        top: -40px;
        right: 0;
        font-size: 14px;
    }

    .customized2 .wrap .content .side{
        border-radius: 4px;
    }
    /**/
    .down_pull2 {
        display: flex!important;
        align-items: center;
        position: relative;
        cursor: pointer;
        width: 100%;
        height: 52px;
        padding: 0 20px;
        border-radius: 4px;
        background: #fff;
        margin: 15px 0 0;
    }
    .down_pull2.on .dis .iconfont{
        transform: translateY(-50%) rotate(-90deg);
    }
    .down_pull2 .dis{
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .down_pull2 .dis img{
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    .down_pull2 .iconfont{
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        display: block;
        font-size: 10px;
        color: #000;
        transition: .3s ease;
    }

    .down_pull2 .down-input {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        opacity: 0;
        pointer-events: none;
    }

    .down_pull2 .txt {
        color: #000;
        cursor: pointer;
    }

    .down_pull2.selected .txt {
        color: #000;
    }

    .down_pull2.on .pull {
        pointer-events: auto;
    }

    .down_pull2.on .pull:before {
        opacity: 1;
    }

    .down_pull2.on .pull .pull_list {
        transform: scaleY(1);
        opacity: 1;
    }

    .down_pull2 .dis p {
        font-size: 14px;
    }

    .down_pull2 .pull {
        position: absolute;
        width: 100%;
        top: calc(100% + 15px);
        left: 0;
        pointer-events: none;
        z-index: 1;
    }

    .down_pull2 .pull:before {
        position: absolute;
        width: 10px;
        height: 10px;
        top: -4px;
        left: 24px;
        content: " ";
        transform: rotate(45deg);
        background: #fff;
        box-sizing: border-box;
        border: 1px solid #e4e7ed;
        border-top-left-radius: 2px;
        border-bottom-color: transparent !important;
        border-right-color: transparent !important;
        z-index: 2;
        opacity: 0;
        transition: .3s ease;
        clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
    }

    .down_pull2 .pull .pull_list {
        width: 100%;
        background: #fff;
        border: 1px solid #e4e7ed;
        filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.12));
        border-radius: 4px;
        max-height: 222px;
        overflow: hidden;
        overflow-y: auto;
        transition: 0.32s cubic-bezier(0.82, -0.22, 0.15, 1.21);
        transform: scaleY(0);
        transform-origin: center top;
        opacity: 0;
        padding: 6px 0;
    }

    .down_pull2 .pull .pull_list::-webkit-scrollbar {
        width: 0;
        display: none;
    }

    .down_pull2 .pull .pull_list p {
        padding: 7px 20px;
        font-size: 14px;
        cursor: pointer;
        transition: 0.3s;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .down_pull2 .pull .pull_list p .img{
        width: 30px;
        height: 30px;
        position: relative;
    }
    .down_pull2 .pull .pull_list p .img img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: .6s ease;
    }
    .down_pull2 .pull .pull_list p.on .img img:nth-child(2){
        opacity: 1;
    }
    .down_pull2 .pull .pull_list p.on .img img:nth-child(1){
        opacity: 0;
    }
    .down_pull2 .pull .pull_list p .img img:nth-child(2) {
        opacity: 0;
    }
    .down_pull2 .pull .pull_list p:hover {
        background: #F4F6F9;
    }

    .down_pull2 .pull .pull_list p.on {
        background: #eee;
    }
}
