﻿
@font-face {
    font-family: 'SourceHanSans-Medium';
    src: url('SourceHanSans-Medium.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'SourceHanSans-Medium';
}
.layout {
    width:1400px;
    margin:0 auto;
}
.header_pack {
    display:flex;
    align-items:center;
}
header {
    border-bottom: 1px solid #707070;
}
.logo {
    padding:25px 0;
    height:90px ;
}
.navlist {
    margin-left:35px;
}
.w_nav {
    display:flex;

}
    .w_nav li a {
        font-size: 22px;
        color: #666666;
        text-transform:uppercase;
        padding:0 40px;
        display:block;
    }
        .w_nav li a:hover {
            color: #1F85EB;
        }
.products {
    padding:18px 0 90px;
}
.products_pcak {
    display:flex;
}
.products_left {
    width:260px;
}
.search {
    display: flex;
    padding: 0 25px;
    border-radius: 25px;
    border: 1px solid #707070;
    width: 90%;
    align-items: center;
    margin:0 auto;
}
.search i {
    display:inline-block;
    width:23px;
    height:23px;
    background:url(../images/search.png) no-repeat center/100% 100%;
}
    .search input {
        width: calc(100% - 33px);
        margin-left: 10px;
        border: none;
        outline: none;
        font-size: 22px;
        line-height:44px;
        color: #666666;
    }
.products_classify {
    margin-top:25px;
}
    .products_classify > li > a {
        font-size: 22px;
        line-height: 37px;
        text-transform: capitalize;
        
        display: block;
        padding:5px 0;
    border-bottom:1px solid #666;

    }
.products_er_classify {
    padding:30px 0 15px;
    border-bottom:1px solid #666;
}
    .products_er_classify li {
        height:54px;
        display:flex;
        align-items:center;
        padding:0 30px;
    }
    .products_er_classify li a {
        font-size: 18px;
        line-height: 24px;
        color: #666666;
        display: block;
    }
        .products_er_classify li:hover,
        .products_er_classify .active{
            background: #1F85EB;
        }
            .products_er_classify li:hover a,
            .products_er_classify .active a {
                color: #fff;
            }
.products_right {
    width:calc(100% - 260px);
    padding-left:50px;
}
.products_right h4 {
    font-size: 22px;
    line-height: 37px;
    color: #000000;
    text-align: center;
    text-transform:uppercase;
    font-weight:bold;
}
.products_list {
    display:flex;
    flex-wrap:wrap;
    margin:0 -15px;
}
.products_list li {
    padding:0 15px;
    width:25%;
    margin-top:40px;
}
    .products_list li a {
        display:block;
    }
.products_list_img {
    overflow:hidden;
}
.products_list_img img {
    width: 100%;
    display: block;
    transition:all .5s;
}
.products_list_cont {
    padding:20px;
    background:rgba(31,133,235,10%);
    transition:all .5s;
}
    .products_list_cont h4 {
        font-size: 20px;
        line-height: 34px;
        color: #333333;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
    .products_list_cont p {
        font-size: 16px;
        line-height: 26px;
        color: #666666;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .products_list_cont span {
        display: block;
        width: 87px;
        line-height: 30px;
        border: 1px solid #1F85EB;
        color: #1F85EB;
        font-size:14px;
        text-align:center;
        border-radius:15px;
        margin:20px auto 0;
    }
.products_list li a:hover .products_list_cont {
    background: rgba(31,133,235,100%);
}
    .products_list li a:hover .products_list_cont h4,
    .products_list li a:hover .products_list_cont p{
        color: #fff;
    }
.products_list li a:hover .products_list_cont span {
    background:#fff;
}
.products_list li a:hover img {
    transform:scale(1.1);
}
footer {
    background: #2A2A2A;
}
.footer_pack {
    padding: 60px 0 80px;
    display: flex;
    justify-content: space-between;
    align-items:center;
}
.footer_cont {
    display:flex;
}
.footer_desc {
    font-size:18px;
    line-height:34px;
    color:#fff;
    text-transform:uppercase;
}
.footer_email {
    width:272px;
    margin-left:70px;
}
.footer_email input {
    font-size: 18px;
    line-height: 31px;
    padding-bottom: 10px;
    outline:none;
    border:none;
    background:transparent;
    border-bottom: 2px solid #FFFFFF;
    color:#fff;
    text-transform:capitalize;
   width:100%;
}
    .footer_email input::-webkit-input-placeholder {
        color:#fff;
    }
    .footer_email a {
        display: block;
        width: 87px;
        line-height: 30px;
        color: #fff;
        background: #1F85EB;
        border-radius: 15px;
        font-size: 14px;
        text-align: center;
        margin-top: 20px;
    }
.copyright {
    background: #000000;
    line-height:40px;
    font-size:14px;
    text-align:center;
    color:rgba(255,255,255,50%);
}
.copyright a {
    display:inline-block;
    margin-right:40px;
}
.prodetail_cont h4 {
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    font-weight: bold;
    border-bottom: 2px solid #1F85EB;
    padding-bottom:10px;
}
.prodetail_cont {
    margin-top:50px;
}
.pro_details {
    width:100%;
    overflow:hidden;
}
.imgs img {
    width:100%;
    height:435px;
    object-fit:cover;
    display:block;
}
.pro_img {
    padding-top:50px;
}
.contact_img {
    width:50%;
}
    .contact_img img {
        width:100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
    .pro_details {
        margin-top: 30px;
    }
/*.detail {
    padding-top:60px;
}*/
.messages {
    margin:100px -10px 0;
    overflow:hidden;
}
.messages li {
    width:33.33333%;
    float:left;
    padding:0 10px;
}
.messages_pack {
    background: #F7FAFE;
    padding:33px 0;
    text-align:center;
    cursor:pointer;
}
.messages_cont {
    font-size: 24px;
    line-height: 34px;
    color: #333333;
    margin-top:10px;
    font-weight:bold;
}
.Popups,
.mess2,
.mess3 {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,50%);
    z-index: 99;
    top: 0;
    left: 0;
    display: none;
}
.contact_Popups {
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    display:flex;
    width:1000px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.messages_img {
    width:50%;
}
.messages_img img {
    width:100%;
    display:block;
}
.contact_list {
    padding:50px 30px;
    width:50%;
}
    .contact_list h4 {
        font-size: 36px;
        color: #333333;
    }
.contact_cont {
    margin-top:26px;
    display:flex;
    align-items:center;
}
.contact_cont label {
    width:65px;
    font-size:18px;
    line-height:28px;
    font-weight:500;
    text-align:right;
}
    .contact_cont input {
        width: calc(100% - 75px);
        margin-left: 10px;
        border: none;
        outline: none;
        background: #F3F9FF;
        border-radius: 4px;
        font-size: 16px;
        padding:0 24px;
        line-height:42px;
    }
        .contact_cont input::-webkit-input-placeholder {
            color: #A5AFC7;
        }
.contact_submit {
    width:260px;
    line-height:40px;
    border-radius:20px;
    background:#1F85EB;
    color:#fff;
    font-size:20px;
    text-align:center;
    margin:45px auto 0;
    cursor:pointer;
}
.contact_submit:hover {
    opacity:.8;
}
.message_succeed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 480px;
    padding: 39px 0;
    background: #565656;
    border-radius:5px;
    z-index:9;
    display:none;
}
.message_succeed i {
    display:block;
    width:60px;
    height:60px;
    background:url(../images/scc.png) no-repeat center/100% 100%;
    margin:0 auto;
}
.message_succeed p {
    font-size:24px;
    line-height:32px;
    color:#fff;
    margin-top:20px;
    text-align:center;
}
.mess2_cont_pack {
    width: 950px;
    background: url(../images/Jasmine_Pat.jpg) no-repeat center/cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: flex-end;
    border-radius: 30px;
    overflow:hidden;
}
.mess3_cont_pack {
    width: 950px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    border-radius: 30px;
    overflow:hidden;
   background:#fff;
}
.mess3_img {
    width:60%;
}
    .mess3_img img {
        width:100%;
        display:block;
    }
.mess3_cont_text {
    width:40%;
    padding:20px;
    position:relative;
}
.mess2_right {
    width: 380px;
    padding: 60px 20px;
    background: #fff;
}
    .mess2_right h4,
    .mess3_cont_text h4{
        font-size: 24px;
        line-height: 130%;
        color: #404040;
        display: flex;
        align-items: center;
    }
        .mess3_cont_text h4 img {
            margin-right:15px;
        }
#select {
    width:100%;
    padding:0 10px;
    font-size:14px;
    color:#333;
    height:30px;
    line-height:30px;
}

.mess2_right h4 i {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url(../images/Chat.svg) no-repeat center/100% 100%;
    margin-right: 10px;
}
.mess2_cont {
    margin-top:15px;
}
    .mess2_cont textarea {
        width: 100%;
        padding: 10px;
        border: none;
        outline: none;
        border-bottom: 1px solid #9e9e9e;
        resize: none;
        font-size: 14px;
    }
        .mess2_cont textarea::-webkit-input-placeholder,
        .mess2_cont input::-webkit-input-placeholder,
        .mess3_cont input {
            color: #9e9e9e;
        }
        .mess2_cont {
            display: flex;
            justify-content: space-between;
        }
            .mess2_cont input,
            .mess3_cont input {
                width: 46%;
                border: none;
                outline: none;
                border-bottom: 1px solid #9e9e9e;
                padding: 10px;
                font-size: 14px;
            }
            .mess2_cont #email2,
            .mess3_cont input {
                width: 100%;
            }
                .mess3_cont input {
                    margin-top:20px;
                }
                .mess2_btn, .mess3_btn {
                    width: 108px;
                    line-height: 32px;
                    background: grey;
                    text-align: center;
                    font-size: 16px;
                    color: #fff;
                    border-radius: 16px;
                    margin-top: 40px;
                    cursor: pointer;
                }

.mess3_checked {
    margin-top:20px;
}
    .mess3_checked a {
        font-size: 14px;
        line-height: 20px;
        color: #2196f3;
    }
    .mess3_checked a:hover {
        text-decoration:underline;
    }
.details_cont h4 {
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    margin-top: 60px;
}

    .details_cont h4::after {
        content: "";
        display: block;
        width: 34px;
        height: 5px;
        margin: 10px auto 0;
        background: #1F85EB;
    }

.details_cont div p {
    padding-left: 20px;
    font-size: 18px;
    line-height: 34px;
    color: #333333;
    position: relative;
    margin-top: 30px;
}

    .details_cont div .text::before {
        content: "";
        display: inline-block;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #1F85EB;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
.pro_detailnav {
    margin-top: 20px;
   
}
.detail_nav {
    position: sticky;
    top: 20px;
}
.pro_detailnav a {
    display: block;
    font-size: 18px;
    line-height: 36px;
text-transform:uppercase;
}
        .pro_detailnav a:hover {
            color:#1F85EB;
        }
.mess_content {
    font-size:16px;
    line-height:26px;
    text-align:center;
}
.messtab_cont2 {
    padding-top:100px;
    display:none;
}
.messtab_cont2 a {
    display: block;
    width: 200px;
    text-transform: uppercase;
    background: #f90;
    color: #fff;
    text-align: center;
    line-height: 54px;
    font-size: 16px;
    margin: 60px auto 0;
}
.xing_cont {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: none;
}
    .xing_cont h4 {
        font-size:16px;
        line-height:26px;
    }
    .xing_cont p {
        font-size:14px;
        line-height:26px;
    }
.messtab_cont h3 {
    font-size:32px;
    line-height:42px;
    color:#333;
}
.mess_content img {
    width:70px;
    display:block;
    margin:20px auto 0 ;
}
.mess_content p {
    font-size:16px;
    line-height:32px;
    text-align:center;
}
.messtab_cont3 {
    display:none;
}
.messtab_cont3 a {
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    display: block;
    text-decoration: underline;
    color: #333;
}
.mess3_btn.active {
    background:#1F85EB;
    color:#fff;
}
@media (max-width:1500px) {
    .layout {
            width:1200px;
        }
        .messages_cont {
            font-size:20px;
        }
        .w_nav li a {
            font-size:18px;
        }
        .products_list li {
            width:33.33333%;
        }
        .search input {
            font-size:18px;
        }
    }
@media (max-width:1300px) {
    .layout {
        width: 1100px;
    }

    .messages_cont,
    .products_classify > li > a,
    .products_right h4,
    .prodetail_cont h4 {
        font-size: 18px;
    }

    .w_nav li a,
    .search input,
    .products_er_classify li a,
    .products_list_cont h4,
    .footer_desc {
        font-size: 16px;
    }
    .products_list_cont p {
        font-size:14px;
    }
    .products_list li {
        width: 33.33333%;
    }
    .contact_Popups {
        width:950px;
    }
}
@media(max-width:1000px) {
    .layout {
        width:100%;
    }
    .messtab_cont2 {
        padding-top:0;
    }
    .mess_content{
        font-size:14px;
        line-height:24px;
    }
    .messtab_cont2 a {
        width:200px;
        line-height:45px;
        font-size:14px;
    }
    .products_left {
        width: 100%;
    }
    .products_pcak {
        /*display:block;*/
        flex-direction:column-reverse;
    }
    .products_right {
        width:100%;
        padding:0 0 0;

    }
    .footer_pack {
        display:block;
    }
    .footer_cont {
        display:block;
    }
    .footer_pack {
        padding:30px 15px;
    }
    .w_nav li a, .search input, .products_er_classify li a, .products_list_cont h4, .footer_desc {
        font-size:14px;
        line-height:24px;

    }
    .footer_desc {
        text-align:center;
    }
    .footer_email {
        width:100%;
        margin:20px 0 0;
    }
    .footer_logo {
        max-width:100%;
        text-align:center;
        margin-top:20px;
    }
    .copyright a {
        margin:0;
        font-size:14px;
        line-height:24px;
        display:block;
        text-align:center;
    }
    .messages {
        margin:0;
    }
    .messages li {
        width: 100%;
        margin-bottom: 20px;
        padding:0;
    }
    .messages_cont, .products_classify > li > a, .products_right h4, .prodetail_cont h4 {
        font-size:16px;
        line-height:26px;
    }
    .products {
        padding:30px 15px;
    }
    .prodetail_cont {
        margin-top:20px;
    }
    .w_nav li a {
        padding:0 5px;
    }
    .logo {
        height:60px;
        padding:10px 5px;
    }
    .products_list {
        margin:20px -5px 0;
    }
    .products_list li {
        width: 50%;
        padding: 0 5px;
        margin:10px 0;
    }
    .products_list_cont{
        padding:10px;
    }
        .products_list_cont span {
            font-size:12px;
            width:70px;
            line-height:25px;
            margin-top:15px;
        }
    .search input {
        line-height:40px;
        font-size:16px;
    }
    .contact_Popups {
        width:80%;
        display:block;
    }
    .contact_img {
        display:none;
    }
    .contact_list,
    .contact_img {
        width: 100%;
    }
    .contact_list {
        padding:25px 15px;
    }
        .contact_list h4 {
            font-size:20px;
            line-height:35px;
        }
    .contact_cont label,
    .contact_cont input {
        font-size: 14px;
    }
    .contact_cont input {
        line-height:35px;
    }
    .contact_submit {
        width:80%;
        font-size:14px;
        margin-top:20px;
    }
    .contact_cont {
        margin-top:15px;
    }
    .imgs img {
        height:200px;
    }
    .mess2_cont_pack,
    .mess3_cont_pack {
        width: 90%;
    }
.xing_cont {
	    position: static;
}
.navlist {
	margin:0;
}

    .mess3_img {
        display:none;
    }
    .mess3_cont_text {
        width:100%;
    }
    .products_er_classify {
        display:none;
    }
    .products_classify > li > a {
        position:relative;
    }
        .products_classify > li > a::after {
            content: ">";
            transform: rotate(90deg);
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%) rotate(90deg);
        }
    .prodetail_cont {
        display: none;
    }
    .products_classify {
        margin:0;
    }
    .pro_detailnav:last-child {
        margin:0;
    }
    .pro_detailnav a {
        background: #333;
        color: #fff;
        border-bottom: 1px solid #fff;
        padding: 0 15px;
        position: relative;
        border-radius: 30px;
        font-size: 14px;
    }
    .pro_detailnav a::after {
        content:">";
        position:absolute;
        right:10px;
        top:50%;
        transform:translateY(-50%);
    }
.pro_img {
   padding-top:0;
}
    .detail {
        margin-top:20px;
    }
    .pro_details {
        margin-top:10px;
    }
    .details_cont h4 {
        margin-top:30px;
    }
    .details_cont div p {
        margin-top:10px;
        font-size:14px;
    }
}
.messtab_cont p {
    font-size: 14px;
    color: #333;
    padding: 5px 0;
}