@charset "UTF-8";



.product_list {
    padding-bottom: 40px;
}

.product_list ul {
    margin-left: -12px;
    margin-right: -12px;
}

.product_list ul li {
    width: 33.33%;
    padding: 12px;
    float: left;
}

.product_list a {
    display: block;
    padding: 22px 32px;
    border-radius: 8px;
    border: 1px solid #CCC;
    background: #FFF;
    transition: border .3s;
}

.product_list .thumb {
    display: block;
    position: relative;
}

.product_list .thumb i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: block;
    /* width: calc(100% - 120px);
    height: calc(100% - 36px); */
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.product_list .t {
    margin-top: 18px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_list .pro_parameter {
    margin-top: 18px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_list .pro_des {
    margin-top: 22px;
    color: #666;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product_list .pro_more {
    margin-top: 20px;
    color: #1E746D;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.product_list a:hover {
    border-color: #1E746D;
}

.product_list a:hover .t {
    color: #1E746D;
}

/* form */
html.act {
    overflow: hidden;
}

.email_popup {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.email_popup.one {
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 100;

}
.email_popup.one .email_modal {
    transform: translateY(0);
}
.email_popup .tbox {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.email_popup .email_modal {
    margin: 0 auto;
    position: relative;
    transform: translateY(50%);
    padding: 48px;
    width: 692px;
    max-width: 95%;
    text-align: left;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.10);
    transition: transform 0.4s;
}

.email_popup .email_modal .out {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}
.email_form {
    overflow-y: auto;
    max-height: calc(90vh - 30px);
}
.email_form .w100 {
    width: 100%;
    flex-wrap: wrap;
    padding-bottom: 24px;
}

.email_form .w100 span {
    display: block;
    width: 100%;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.email_form .w100 span em {
    color: #E92736;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.email_form .input-container {
    margin-top: 8px;
    width: 100%;
    position: relative;
    line-height: 0;
}

.email_form .input-container input {
    display: inline-flex;
    width: 100%;
    height: 46px;
    padding: 0px 16px;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #DFE2E8;
    background: #FFF;
    outline: 0;
}

.email_form .input-container input:focus {
    border-color: #1E746D !important;
}

.email_form .input-container textarea {
    padding: 10px 16px;
    resize: none;
    width: 100%;
    height: 100px;
    border-radius: 4px;
    border: 1px solid #DFE2E8;
    background: #FFF;
    line-height: 1.2;
    outline: 0;
}

.email_form .input-container textarea:focus {
    border-color: #1E746D !important;
}

.email_form .col {
    width: 50%;
    padding: 0 8px 0 0;
    float: left;
}

.email_form .col:nth-child(2) {
    padding: 0 0 0 8px;
}

.email_form .message_code {
    display: flex;
    align-items: center;
}

.email_form .message_code .r img {
    height: 46px;
    width: 106px;
}

.email_form .message_code input {
    width: 168px;
    margin-right: 16px;
}

.email_form .submit {
    display: flex;
    width: 232px;
    height: 56px;
    padding: 10px 26px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #1E746D;
    border: none;
    outline: 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.email_form .text-area label {
    bottom: -16px;
    margin: 0;
    font-size: 12px;
    line-height: 1.1;
    color: #E92736;
}
@media all and (max-width:1279px) {
    /* .product_list .thumb i {
        width: calc(100% - 60px);
        height: calc(100% - 26px)
    } */

}
@media all and (max-width:991px) {
    /* .product_list .thumb i {
        width: calc(100% - 30px);
        height: calc(100% - 26px)
    } */
    .product_list a {
        padding: 22px 20px;
    }
}
@media all and (max-width:767px) {
    .email_popup .email_modal .out {
        top: 15px;
        right: 15px;
    }
    .email_popup .email_modal {
        padding: 30px 20px;
    }
    .email_form .w100 {
        display: block;
    }
    .email_form .col {
        width: 100%;
    }
    .email_form .col:nth-child(2) {
        padding: 0;
        margin-top: 24px;
        margin-bottom: 24px;
    }


}
@media all and (max-width:540px) {
    .product_list ul li {
        width: 100%;
    }
    .product_list a {
        padding: 22px 20px;
    }

}

/* product detail */
.pro_xq_one {
    display: flex;
    justify-content: space-between;
    padding: 35px 0 50px 0;
    border-bottom: 1px solid #CCC;
}

.pro_xq_one .left_pic {
    position: relative;
    width: 41%;
    max-width: 586px;
    padding: 26px 0;
}

.pro_xq_one .left_pic i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 180px);
    height: calc(100% - 52px);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pro_xq_one .right {
    padding-top: 60px;
    max-width: 676px;
    width: 50%;
}

.pro_xq_one .right .t {
    color: #1E746D;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}
.pro_xq_one .right .pro_xq_partner {
    /* padding: 24px 0; */
    padding-top: 20px;
    color: #333;
font-size: 20px;
font-weight: 400;
line-height: 1.2;
}
.pro_xq_one .right .des {
    margin-bottom: 20px;
    color:#666;
font-size: 16px;
font-weight: 400;
line-height: 26px;
/* min-height:130px; */
}
.pro_xq_button {
    /* padding-top: 50px; */
    padding-top: 20px;
    display: flex;
}
.pro_xq_button a{
    display: flex;
padding: 16px 24px;
justify-content: center;
align-items: center;
border-radius: 47px;
font-size: 14px;
font-weight: 400;
}
.pro_xq_button a:first-child {
margin-right: 28px;
    background: #1E746D;
color: #FFF;
}
.pro_xq_button a:nth-child(2) {
border: 1px solid #1E746D;
color: #1E746D;

}
.pro_xq_button a:nth-child(2):hover {
    background-color: #1E746D;
    color: #FFF;
}
.pro_xq_two {
    padding-top: 48px;
}
.pro_xq_title {
    color:#333;
font-size: 20px;
font-weight: 700;
}
.pro_key_list {
    padding-top: 18px;
}
.pro_key_list ul{
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    align-items: stretch;
}
.pro_key_list ul li {
    width: 25%;
    padding: 12px;
}
.pro_key_list .bg {
padding: 28px;
    width: 100%;
    height: 100%;
    border-radius: 4px;
background: #F5F5F5;
transition: all 0.3s;
}
.pro_key_list .bg .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #1E746D;
}
.pro_key_list .bg .title {
margin-top: 10px;
    color:#333;
font-size: 16px;
font-weight: 400;
text-align: center;
}
.pro_key_list .bg .list {
    padding-top: 8px;
}
.pro_key_list .bg .list p {
    position: relative;
    padding-left: 10px;
    color: #666;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px;
word-break: break-word;
}
.pro_key_list .bg .list p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
   width: 4px;
   height: 4px;
   border-radius: 50%;
   background-color: #666;
}
.pro_key_list .bg:hover {
    transform: translateY(-10px);
}
.pro_xq_three {
    padding-top: 26px;
}
.pro_xq_three .three_table {
padding-top: 30px;
}
.pro_three_des {
padding-top: 24px;
    color:#666;
font-size: 16px;
font-weight: 400;
}
.pro_xq_three .three_table table {
    border-spacing: 2px;
}
.pro_xq_three .three_table table {
    border-collapse: separate;
    border-spacing: 2px;
    text-align: center;
}
.pro_xq_three .three_table table td,.pro_xq_three .three_table table th {
    padding: 13px 10px;
}
.pro_xq_three .three_table table thead {
    background: #1E746D;
    color:#FFF;
    font-size: 16px;
}
.pro_xq_three .three_table table tbody tr td:first-child{
    background: #E9F2F2;
}
.pro_xq_three .three_table table tbody tr td:nth-child(2){
    background: #F5F5F5;
}
.pro_xq_three .three_table table tbody td {
    color: #303030;
font-size: 16px;
font-weight: 400;
}
.pro_down {
    padding-top: 48px;
    padding-bottom: 40px;
}
.pro_down .pro_down_list {
    padding-top: 30px;
}
.pro_down_list ul li {
    padding-bottom: 15px;
}
.pro_down_list .bg {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
background-color: #F5F5F5;
transition: background-color 0.3s;
}
.pro_down_list .bg .left {
flex: 1;
padding-right: 30px;
    color: #666;
font-size: 18px;
font-weight: 400;
}
.pro_down_list .bg .right img:nth-child(2){
    display: none;
}
.pro_down_list a:hover .bg {
background-color:#1E746D;
}
.pro_down_list a:hover .bg .left {
    color: #FFF;
}
.pro_down_list a:hover .bg .right img:nth-child(1) {
    display: none;
}
.pro_down_list a:hover .bg .right img:nth-child(2) {
    display: block;
}
@media all and (max-width:1279px) {
    .pro_xq_one .left_pic i {
        width: calc(100% - 100px);
        height: calc(100% - 52px);
    
    }
    .pro_xq_one .right {
        padding-top: 30px;
    }
    .pro_xq_one .right .t {
        font-size: 24px;
    }

}
@media all and (max-width:991px) {
    .pro_xq_one .left_pic {
        width: 44%;
    }
    .pro_xq_one .left_pic i {
        width: calc(100% - 80px);
        height: calc(100% - 40px);
    
    }
    .pro_xq_one .right .des {
        min-height: 104px;
    }
    .pro_xq_button {
        padding-top: 30px;
    }
    .pro_xq_one .right .t {
        font-size: 22px;
    }
    .pro_key_list ul {
        flex-wrap: wrap;
    }
    .pro_key_list ul li {
        width: 50%;
    }


}
@media all and (max-width:767px) {
    .pro_xq_one {
        flex-wrap: wrap;
    }
    .pro_xq_one .left_pic {
        width: 100%;
    }
    .pro_xq_one .right {
        padding-top: 30px;
        width: 100%;
    }
    .pro_xq_one .right .t {
        font-size: 20px;
    }
    .pro_xq_one .right .pro_xq_partner {
        font-size: 18px;
    }
    .pro_xq_one .right .des {
        min-height: auto;
    }
    .pro_xq_button {
        display: flex;
        justify-content: space-between;
    }
    .pro_xq_button a {
        width: calc(50% - 4px);
        padding: 12px 16px;
    }
    .pro_xq_button a:first-child {
        margin-right:0;
    }
    .pro_key_list ul li {
        width: 100%;
    }
    .pro_key_list .bg {
        padding: 28px 20px;
    }
    .pro_down_list .bg {
        padding: 26px 20px;
        align-items: center;
    }
    .pro_down_list .bg .left {
        font-size: 16px;
    }

}
/* 6.18 */
.pro_icon_list {

}
.pro_icon_list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
}
.pro_icon_list ul li {
    padding: 10px;
    width: 33.33%;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.pro_icon_list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
}
.pro_icon_list p {
    padding-top: 5px;
    font-size: 16px;
    height: 50px;
    line-height: 25px;
    color:#1E746D;
}

@media (max-width:767px) {
    .pro_icon_list span {
        width: 70px;
    }
    .pro_icon_list p {
        font-size: 14px;
        height: 44px;
        line-height: 22px;
    }
}
/* contact mess */
