/* 通用 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 标准色-红色 */
    --standard-red-color: #E60039;
    /* 字体色-中色 */
    --neutra-color: #6A6B6D;
    /* 字体色-深色 */
    --dark-color: #2A2B2E;
    /* 标准色-白色 */
    --white-color: #FFFFFF;
    /* 标准色-红色悬停态 */
    --standard-red-hover-color: #CC002D;
}

.n-project-info {
    padding-top: 80px;
    padding-bottom: 80px;
}
.n-page-title {
    color: #2A2B2E;
    text-align: center;
    font-size: 36px;
    line-height: 150%;
    width: 1400px;
    margin: 0 auto;
}
.n-page-desc{
    color: #6A6B6D;
    text-align: center;
    font-size: 20px;
    line-height: 150%;
    width: 1400px;
    margin: 16px auto 0;
}
.n-page-content{
    width: 1400px;
    margin: 60px auto 0 auto;
    position: relative;
}
.blueBg {
    padding: 80px 0 80px 0;
    background: #F4F4F4;
    margin-top: 0px;
}
.blueBg-half{
    /* 50% white then F4F4F4 */
    background: linear-gradient(#FFFFFF 62%, #F4F4F4 38%);
}

.n-main-btn{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 12px 32px;
    border-radius: 4px;
    background: var(--standard-red-color);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    width: fit-content;
    cursor: pointer;
    display: inline-block;
}
.n-main-btn:hover{
    background: var(--standard-red-hover-color);
    color:var(--white-color) ;
}

.whiteBtn{
    background-color: var(--white-color)!important;
    color: var(--standard-red-color)!important;
    border: 1px solid var(--standard-red-color);
}
.whiteBtn:hover{
    background-color: var(--standard-red-hover-color)!important;
    color:var(--white-color)!important;
}

.section{
    margin-bottom: 80px;
}

.n-txt-list{
    display: flex;
    gap: 24px;
}
.n-txt-card{
    padding: 24px 16px;
    background-color: #FFFFFF;
}
.n-txt-title{
    color: #292929;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%; /* 30px */
}
.n-txt-desc{
    color: #7D7D7D;
    font-size: 16px;
    line-height: 150%; /* 24px */
    margin-top: 16px;
}
.n-txt-card-bottom{
    margin-top: 24px;
    min-height: 255px;
}
.wrbox{
    display: none;
}
.blueBg-F6{
    background-color: #F6F6F6;
}
.n-txt-card2{
    padding: 16px;
}
.deviceSwiper{
    padding-bottom: 40px;
}
.device-next, .device-prev {
    position: absolute;
    top: calc(50% - 30px);
    z-index: 3;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #bfbfbf;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.device-prev {
    left: -80px;
}
.device-next {
    right: -80px;
}
.device-next:hover, .device-prev:hover {
    background: #e6224d;
}
.deviceSwiper .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    background: #FFFFFF;
    opacity: 1;
    border-radius: unset;
    margin: 0;
}

.deviceSwiper .swiper-pagination-bullet-active {
    background: #E60039;
}
.title-img{
    margin: 0 6px 6px 0;
}
.n-grid{
    display: grid;
    gap: 24px;
}
.n-grid-3{
    grid-template-columns: repeat(3, 1fr);
}
.n-data{
    color: #E6224D;
    font-size: 40px;
    font-weight: 700;
    line-height: 55px; /* 137.5% */
}
.n-data-desc{
    color: #2A2B2E;
    font-size: 16px;
    line-height: 150%; /* 24px */
}
.n-data-card{
    padding: 24px 0;
    text-align: center;
    position: relative;
}
.n-data-card1::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 58px;
    background-color: #E3E5E6;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
}

.blueBg-FA{
    background-color: #FAFAFA;
}
.n-grid-2{
    grid-template-columns: repeat(2, 1fr);
}
.img-desc{
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%; /* 30px */
}
.blueBg-E7{
    background: linear-gradient(289deg, #F5F5F5 40.53%, #E7E7E7 96.13%);
}
.tab-box{
    display: flex;
    justify-content: space-between;
}
.n-value-tabs{
    width: 320px;
}
.n-value-tabs div{
    padding: 16px;
    background-color: #FFFFFF;
    color: #2A2B2E;
    font-size: 16px;
    line-height: 150%; /* 24px */
    margin-bottom: 16px;
    cursor: pointer;
}
.n-value-tabs div:hover,.n-value-tabs .n-value-tab-active{
    border: 1px solid #0175E8;
    background: rgba(1, 117, 232, 0.05);
}

.n-value-content{
    width: 994px;
}
.n-value-content p{
    color: #2A2B2E;
    font-size: 20px;
    line-height: 150%; /* 30px */
    margin-bottom: 16px;
}
.n-value-content a:hover{
    color: #CC002D;
}
.n-value-content a{
    color: #E60039;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%; /* 30px */
    text-transform: capitalize;
}

.video-img{
    margin-top: 48px;
    position: relative;
}
.video-img1{ 
    cursor: pointer;
}
.video-img1::after{ 
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    background-image: url(../img-new/play.svg);
}
.video-img1:hover::after{ 
    background-image: url(../img-new/play-hov.svg);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 0 20px 20px 20px;
    border-radius: 5px;
    width: 70%;
    position: relative;
    text-align: right;
}

.close {
    display: block;
    cursor: pointer;
    font-size: 40px;
}

.modal-content iframe {
    width: 100%;
    height: 30vw;
}

.bus_box li {
    width: 24%;
    box-shadow: none;
}
.bus_box ul {
    padding-bottom: 80px;
}
.b_txt_box {
    height: 218px;
}
.b_txt h4 {
    min-height: 66px;
}

.resourceImg p {
    margin-top: 16px;
    font-size: 16px;
    margin-bottom: 12px;
}
.resourceImg span{
    font-size: 16px;
    color: #E60039;
    line-height: 150%; /* 24px */
}




@media screen and (max-width:1440px) {
    /* 通用 */
    .n-page-title {
        width: 1200px;
        font-size: 32px;
    }
    .n-page-desc{
        width: 1200px;
    }
    .n-page-content {
        width: 1200px;
        margin: 48px auto 0 auto;
    }
    .n-main-btn{
        padding: 10px 24px;
        font-size: 14px;
    }
    
}

@media screen and (max-width:1280px) {
    /*通用*/
    .n-page-title {
        width: 1080px;
        font-size: 28px;
    }
    .n-page-desc{
        font-size: 16px;
        width: 1080px;
    }
    .n-page-content {
        width: 1080px;
        margin: 40px auto 0 auto;
    }
    .n-project-info {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width:768px) {
    .n-page-title {
        font-size: 22px;
    }
    .n-project-info {
        padding: 40px 20px;
    }
    .n-page-content {
        width: 100%;
    }
    .blueBg {
        padding: 40px 20px 40px 20px;
        margin-top:0px;
    }
}

/*banner*/
.n-nav {
    position: relative;
    top: 0;
    height: 60px;
    display: flex;
    align-items: center;
    background: var(--white-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.n-nav-content {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    margin: 0 auto;
}

.n-breadcrumb {
    display: flex;
}

.n-nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--neutra-color);
    cursor: pointer;
}

.n-breadcrumb a::after {
    content: '>';
    display: block;
    margin: 2px 6px 0 6px;
}

.n-breadcrumb a:last-child:after {
    content: '';
}

.n-nav-content ul {
    display: flex;
}

.n-nav-content ul li {
    margin-right: 24px;
}

.n-nav-content ul li:last-child {
    margin-right: 0;
}

.n-nav-content .n-nav-active {
    color: #292929;
    font-weight: 700;
    border-bottom: 2px solid var(--standard-red-color);
}
.nav-show {
    display: none;
}
.n-banner {
    position: relative;
}
.n-banner img{
    width: 100%;
}
.n-banner-text {
    position: absolute;
    left: calc((100% - 1400px)/2);
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
}
.n-banner-text h1 {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 700;
}
.n-banner-text p {
    margin-top: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}
.n-banner-text a {
    margin-top: 48px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 11px 32px;
    border-radius: 4px;
    background: var(--standard-red-color);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    margin-right: 24px;
    cursor: pointer;
}

.n-banner-text a:last-child {
    margin-right: 0;
}

.n-banner-text a:hover{
    background: var(--standard-red-hover-color);
    color:var(--white-color)!important;
}

.banner-sub{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(91deg, #4E5059 0.88%, #514C51 60.67%, #2E353F 98.8%),  #3C0E0E;
}    
.banner-sub .n-page-content{
    margin: 0 auto;
    padding: 60px 0;
}
.n-desc{
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.banner-card{
    margin-top: 24px;
}
.n-card-list{
    display: grid;
    gap: 24px;
}
.n-card-list-4{
    grid-template-columns: repeat(4, 1fr);
}
.n-card-list-3{
    grid-template-columns: repeat(3, 1fr);
}
.n-banner-card{
    padding: 24px;
    border-radius: 4px;
    border: 0.5px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(37.349998474121094px);
}
.n-banner-card-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.n-banner-card-title span{
    color: var(--white-color);
    margin-left: 10px;
}
.n-banner-card-desc{
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    min-height: 66px;
}
.n-banner-remark{
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%; /* 21px */
    padding: 0 24px;
    margin-top: 4px;
}

.about_top{
    box-shadow: 0 0 0px rgba(100, 100, 100, .1);
    margin-top: 160px;
    padding: 0px;
}
.n-page-desc1{
    color: #2A2B2E;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%; /* 30px */
    margin: 24px 0 0px;
    text-align: center;
}
.n-page-box1{
    margin: 40px 0 60px;
    display: flex;
    text-align: center;
    justify-content: space-between;
}
.n-page-box1 img{
    width: 98px;
}
.n-page-btns{
    display: flex;
    gap: 24px;
    justify-content: center;
}

.n-card{
    padding: 24px;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.10);
    text-align: center;
    cursor: pointer;
}
.n-card img{
    width: 120px;
    margin-bottom: 10px;
}
.n-card p{
    color: #292929;
    font-size: 20px;
    min-height: 60px;
}
.btnfr {
    margin-top: 0!important;
}
.concat-mail{
    margin-top: 48px;
    text-align: center;
    color: #6A6B6D;
    text-align: center;
    font-size: 14px;
    line-height: 150%; /* 21px */
}
@media screen and (max-width:1440px) {
    .n-banner-text {
        left: calc((100% - 1200px)/2);
        width: 700px;
    }
    .n-banner-text h1 {
        font-size: 42px;
    }
    .n-banner-text h2 {
        margin-top: 8px;
        font-size: 20px;
    }
    .n-banner-text p {
        margin-top: 20px;
        font-size: 14px;
    }
    .n-banner-text a {
        margin-top: 24px;
        padding: 10px 24px;
        font-size: 14px;
    }
    .n-nav {
        height: 48px;
    }
    .n-nav-content {
        width: 1200px;
    }
    .n-value-content {
        width: 900px;
    }
    .n-value-tabs {
        width: 240px;
    }
    .about_top {
        margin-top: 120px;
    }
    .n-txt-card-bottom {
        min-height: 196px;
    }
    .n-data-card {
        padding: 12px 0;
    }
    .n-txt-title {
        font-size: 18px;
    }
}

@media screen and (max-width:1280px) {
    .n-banner-text h1 {
        font-size: 32px;
    }
    .n-banner-text p {
        margin-top: 16px;
    }
    .n-banner-text {
        left: calc((100% - 1080px)/2);
        width: 660px;
    }
    .n-banner-text a {
        margin-top: 20px;
    }
    .n-nav-content {
        width: 1080px;
    }
    .n-nav-content a {
        font-size: 12px;
    }
    .n-value-content {
        width: 800px;
    }
    .b_txt h4 {
        font-size: 20px;
    }
    .b_txt .more span {
        font-size: 14px;
    }
}

@media screen and (max-width:768px) {
    .show-pc{
        display: none;
    }
    .n-banner-text h1 {
        font-size: 22px;
    }
    .n-breadcrumb {
        display: none;
    }
    .n-nav {
        flex-direction: column;
        height: unset;
        align-items: flex-start;
        background: #DFE5EB;
    }
    .n-nav-content {
        display: none;
        width: 100%;
        position: absolute;
        background: #FFF;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin-top: 50px;
        background: #DFE5EB;
    }
    .n-nav-content ul {
        flex-direction: column;
        width: 100%;
    }
    .nav-show {
        width: 100%;
        display: flex;
        height: 50px;
        align-items: center;
        padding: 0 1.25rem;
        justify-content: space-between;
    }
    .nav-show span {
        font-weight: 400;
        font-size: 14px;
        color: #292929;
    }
    .nav-show div {
        display: flex;
        align-items: center;
    }
    .nav-show img {
        margin-left: 8px;
        width: 24px;
    }
    .nav-show .whiteBtn{
        display: none;
    }
    .n-nav-content ul li {
        padding: 10px 0 10px 1.25rem;
        width: 100%;
    }
    .n-nav .n-nav-content .n-nav-active {
        display: unset;
        border-bottom: 1px solid var(--standard-red-color);
        padding-bottom: 4px;
    }
    .arrow-active {
        transform: rotate(180deg);
    }
    .n-banner-text {
        left: 0;
        transform: unset;
        top: 0;
        width: 100%;
        padding: 30px 20px 0 20px;
    }
    .n-banner-text h2 {
        font-size: 20px;
    }
    .n-banner-text p {
        margin-top: 16px;
        font-size: 16px;
    }
    .n-banner-text a {
        margin-top: 32px;
        padding: 10px 40px;
    }
    .whiteBtn {
        background: var(--standard-red-color);
        padding: 6px 18px;
        color: var(--white-color);
        font-size: 14px;
        border-radius: 4px;
    }
    .n-desc {
        padding: 0 20px;
    }
    .n-card-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .n-banner-card {
        padding: 20px;
        border: unset;
        background: unset;
        backdrop-filter: unset;
    }
    .n-banner-remark {
        padding: 0 20px;
        margin-top: -40px;
    }
    .n-page-title {
        width: 100%;
    }
    .about_top {
        margin-top: 80px;
    }
    .n-page-desc {
        width: 100%;
        text-align: left;
    }
    .n-page-desc1 {
        text-align: left;
        font-size: 16px;
    }
    .n-page-box1 {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
    }
    .n-page-btns {
        flex-wrap: wrap;
    }
    .n-txt-list,.n-txt-list1 {
        flex-wrap: wrap;
    }
    .deviceSwiper .swiper-wrapper{
        flex-wrap: wrap;
        flex-direction: column;
    }
    .deviceSwiper .swiper-slide{
        height: auto;
        margin-bottom: 20px;
    }
    .deviceSwiper .swiper-slide:last-child{
        margin-bottom: 0px;
    }
    .n-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .n-value-tabs {
       display: none;
    }
    .showmorebtn{
        width: 280px;
    }
    .section {
        margin-bottom: 40px;
    }
    .video-img1::after {
        width: 48px;
        height: 48px;
        background-size: 100% 100%;
    }
    .tab-box{
        flex-wrap: wrap;
        gap: 40px;
    }
    .n-value-content{
        display: block!important;
    }
    .video-img {
        margin-top: 16px;
    }
    .bus_box li {
        width: 100%;
    }
    .productbox {
        margin-top: -40px;
    }
    .device-next,.device-prev{
        display: none;
    }
}

.saleeInfo {
    background-color: #FFF;
    padding: 48px 100px;
    margin-top: 30px;
}

.salee_t {
    width: 100%;
    overflow: hidden;
    color: #333333;
}

.salee_t h1 {
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 24px;
}

.salee_t p {
    width: 100%;
    overflow: hidden;
    line-height: 1.75;
}

.salee_t p a {
    color: #0175E8;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.salee_c {
    width: 100%;
    overflow: visible;
}

.salee_c ul {
    width: 100%;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 36px;
    grid-row-gap: 26px;
}

.salee_c ul li {
    width: 100%;
    overflow: visible;
    position: relative;
    padding-right: 20px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.salee_c ul li span {
    position: absolute;
    left: 10px;
    top: 15px;
    pointer-events: none;
    line-height: 20px;
    padding: 0px 5px;
    font-size: 16px;
    color: #9B9FA8;
    transition: 0.15s linear;
    -webkit-transition: 0.15s linear;
    -o-transition: 0.15s linear;
    -moz-transition: 0.15s linear;
    z-index: 1;
}

.salee_c ul li input.saleec_txt {
    width: 100%;
    height: 50px;
    border: 1px solid #d2dbe7;
    padding: 0px 15px;
    color: #000;
    border-radius: 3px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
}

.salee_c ul li input.saleec_txt:focus {
    border: 1px solid #6A6B6D;
}

.salee_c ul li label {
    width: 100%;
    display: block;
    overflow: visible;
}

.salee_c ul li i {
    color: #e72f52;
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 50px;
}

.salee_c ul li p {
    width: 100%;
    overflow: hidden;
    line-height: 25px;
}

.salee_c ul li p.err_msg {
    color: #e72f52;
}

.salee_c ul li em.em1 {
    width: 18px;
    height: 50px;
    display: block;
    overflow: hidden;
    background: url("https://singapore-1312056779.cos.accelerate.myqcloud.com/site_style/salesenquiry/upimg/se_01.png") center no-repeat;
    background-size: 100%;
    position: absolute;
    right: 36px;
    top: 0px;
    pointer-events: none;
}

.salee_c ul li em.em2 {
    width: 27px;
    height: 50px;
    display: block;
    overflow: hidden;
    background: url("https://singapore-1312056779.cos.accelerate.myqcloud.com/site_style/salesenquiry/upimg/se_02.png") center no-repeat;
    background-size: 100%;
    position: absolute;
    right: 20px;
    top: 0px;
    pointer-events: none;
    z-index: 99;
}

.salee_c ul li textarea {
    width: 100%;
    height: 75px;
    overflow: hidden;
    border: 1px solid #d2dbe7;
    padding: 15px;
    resize: none;
    color: #000;
    border-radius: 3px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
}

.salee_c ul li textarea:focus {
    border: 1px solid #6A6B6D;
}

.salee_c ul li em.em3 {
    position: absolute;
    right: 30px;
    bottom: 10px;
    z-index: 999;
    font-style: normal;
    color: #666;
    display: none;
}

.salee_c ul li .sel_select {
    width: calc(100% - 20px);
    /* height: 216px; */
    max-height: 216px;
    overflow: hidden;
    display: none;
    overflow-y: auto;
    position: absolute;
    left: 0px;
    top: 55px;
    padding: 10px 0px;
    background-color: #fff;
    z-index: 999;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -moz-box-shadow: 0px 5px 21px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 21px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 21px rgba(0, 0, 0, 0.1);
}

.salee_c ul li .sel_select .sc_li {
    width: 100%;
    overflow: hidden;
    color: #666;
    line-height: 40px;
    padding: 0px 15px;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.salee_c ul li .sel_select .sc_li:hover {
    background-color: #f1f3f5;
}

.salee_c ul li .sel_select .sc_li.select {
    color: #e72f52;
}

.salee_c ul li .sel_select::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.salee_c ul li .sel_select::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(255, 255, 255, 0);
}

.salee_c ul li .sel_select::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #d5d5d5;
}

.salee_c ul li .sel_select::-webkit-scrollbar-thumb:hover {
    border-radius: 5px;
    background: #d5d5d5;
}

.salee_c ul li .sel_select1 {
    width: calc(100% - 20px);
    max-height: 216px;
    overflow: hidden;
    display: none;
    overflow-y: auto;
    position: absolute;
    left: 0px;
    top: 55px;
    padding: 10px 0px;
    background-color: #fff;
    z-index: 999;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -moz-box-shadow: 0px 5px 21px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 21px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 21px rgba(0, 0, 0, 0.1);
}

.salee_c ul li .sel_select1 .sc_li {
    width: 100%;
    overflow: hidden;
    color: #666;
    line-height: 40px;
    padding: 0px 15px;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.salee_c ul li .sel_select1 .sc_li:hover {
    background-color: #f1f3f5;
}

.salee_c ul li .sel_select1 .sc_li.select {
    color: #e72f52;
}

.salee_c ul li .sel_select1::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.salee_c ul li .sel_select1::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(255, 255, 255, 0);
}

.salee_c ul li .sel_select1::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #f1f3f5;
}

.salee_c ul li .sel_select1::-webkit-scrollbar-thumb:hover {
    border-radius: 5px;
    background: #f1f3f5;
}

.salee_c ul li.li1 {
    grid-column: 1/span 2;
}

.salee_c ul li.on span,
.salee_c ul li#speSel span {
    left: 10px;
    top: -10px;
    background-color: #fff;
    color: #6A6B6D;
    font-weight: normal;
    font-size: 12px;
}

#speSel input {
    transition: unset;
    -webkit-transition: unset;
}

.iti {
    width: 100%;
}

ul.iti__country-list {
    display: block;
    width: unset;
    overflow-y: scroll;
}

ul.iti__country-list li span {
    position: unset;
    background-color: unset!important;
    line-height: unset;
    padding: unset;
    pointer-events: unset;
}

input.iti__search-input::placeholder,
#telephone::placeholder {
    color: #9B9FA8;
}

.iti__selected-country {
    padding-left: 14px;
}

.iti--allow-dropdown .iti__country-container .iti__selected-country {
    background: unset!important;
}

.salee_c ul li.error input.saleec_txt {
    border: 1px solid #e72f52;
}

.salee_c ul li.error textarea {
    border: 1px solid #e72f52;
}

.salee_c ul li.error span {
    color: #e72f52;
    font-weight: bold;
}

.salee_c ul li.on.error span {
    font-weight: normal;
}

.salee_b {
    width: 100%;
    overflow: hidden;
    line-height: 20px;
    color: #666;
    margin-top: 1.85vh;
    position: relative;
}

.salee_b input {
    float: left;
    width: 15px;
    height: 15px;
    outline: none;
    position: absolute;
    left: 0px;
    top: 0px;
    margin: 1px 0px 0px 0px;
    cursor: pointer;
    background: url("https://singapore-1312056779.cos.accelerate.myqcloud.com/site_style/salesenquiry/upimg/sel_03.svg") center no-repeat;
    background-size: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
}

.salee_b input:checked {
    background: url("https://singapore-1312056779.cos.accelerate.myqcloud.com/site_style/salesenquiry/upimg/sel_04.svg") center no-repeat;
    background-size: 100%;
    outline: none;
}

.salee_b i {
    float: left;
    color: #e72f52;
    margin-left: 10px;
    position: absolute;
    left: 15px;
    top: 0px;
}

.salee_b span {
    float: left;
    margin-left: 40px;
    margin-right: 20px;
}

.salee_sub {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 4.63vh;
}

.salee_sub input {
    width: 200px;
    height: 50px;
    background-color: #E60039;
    color: #fff;
    border-radius: 6px;
    border: 0px;
    cursor: pointer;
}

.saleeSucess {
    display: none;
    padding: 140px 0;
    margin-top: 30px;
    background-color: #FFF;
    text-align: center;
}

.successTitle {
    margin-top: 24px;
    color: #292929;
    font-size: 24px;
    font-weight: 700;
}

.successDesc {
    margin-top: 8px;
    color: #7D7D7D;
    font-size: 16px;
    font-weight: 400;
}

.fts_62 {
    font-size: 58px;
}

.fts_50 {
    font-size: 48px;
}

.fts_36 {
    font-size: 32px;
}

.fts_32 {
    font-size: 28px;
}

.fts_24 {
    font-size: 20px;
}

.fts_20 {
    font-size: 16px;
}

.fts_18 {
    font-size: 14px;
}

.fts_16 {
    font-size: 14px;
}

.fts_12 {
    font-size: 12px;
}

@media screen and (max-width: 1500px) {
    .fts_62 {
        font-size: 48px;
    }
    .fts_50 {
        font-size: 36px;
    }
    .fts_36 {
        font-size: 32px;
    }
    .fts_32 {
        font-size: 28px;
    }
    .fts_24 {
        font-size: 20px;
    }
    .fts_20 {
        font-size: 16px;
    }
    .fts_18 {
        font-size: 14px;
    }
    .fts_16 {
        font-size: 14px;
    }
    .fts_12 {
        font-size: 12px;
    }
}

@media screen and (max-width: 1440px) {
    .wraps_in {
        margin: 0px 5%;
    }
    .wraps_c {
        margin: 0px 5%;
    }
}

@media screen and (max-width: 1200px) {
    .salesenquiry .se_wrap {
        max-width: 900px;
    }
}

@media screen and (max-width: 990px) {
    .wraph {
        max-width: 100%;
        margin: 0px auto;
    }
    .wraph_in {
        margin: 0px 20px;
    }
    .wraph_c {
        margin: 0px 20px;
    }
    .w_pch {
        display: none !important;
    }
    .w_waph {
        display: block !important;
    }
    .salesenquiry {
        margin-top: 20px;
    }
    .salesenquiry .se_wrap {
        padding: 20px 10px;
        margin: 0px 10px;
    }
    .salee_c ul {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 10px;
    }
    .salee_c ul li.li1 {
        grid-column: 1;
    }
    .salee_b input {
        width: 20px;
        height: 20px;
    }
    .fts_62 {
        font-size: 32px;
    }
    .fts_50 {
        font-size: 20px;
    }
    .fts_36 {
        font-size: 22px;
    }
    .fts_32 {
        font-size: 18px;
    }
    .fts_24 {
        font-size: 20px;
    }
    .fts_20 {
        font-size: 16px;
    }
    .fts_18 {
        font-size: 14px;
    }
    .fts_16 {
        font-size: 14px;
    }
    .fts_12 {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .saleeInfo {
        padding: 48px 40px;
    }
    .saleeSucess {
        padding: 80px 40px;
    }
}

@media screen and (max-width: 526px) {
    .salee_c ul li span {
        font-size: 14px;
    }
    .saleeInfo {
        padding: 24px 20px;
    }
    .salee_c ul li span {
        max-width: calc(100% - 56px);
    }
    .salee_c ul li textarea {
        padding: 40px 15px 15px 15px;
        height: 85px;
    }
    .salee_c ul li span {
        max-width: calc(100% - 68px);
    }
    #channel {
        height: 75px;
    }
    .saleeSucess {
        padding: 40px 20px;
    }
    .successTitle {
        font-size: 20px;
    }
    .successDesc {
        font-size: 14px;
    }
    .successLogo {
        width: 200px;
        margin: 0 auto;
    }
    .successLogo img {
        width: 100%;
    }
}

@media screen and (max-width: 526px) {
    .salee_c li:last-child div {
        flex-wrap: wrap;
    }
    #imgCode {
        width: 60%;
        margin-top: 8px;
    }
}