﻿
/*my_header*/
.my_header {
    height: 70px;
    position: relative;
    background: #fff;
}
.fixednav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
    box-shadow: 0px 0px 5px #ccc;
}
.my_header i {
    display: inline-block;
    line-height: 70px;
    height: 70px;
    float: left;
    margin-left: 118px;
}
.my_header i img {
    vertical-align: middle;
    margin-top: -3px;
}
.my_header i.mobile {
    display: none;
}
.my_header nav {
    float: right;
    margin-top: 38px;
    margin-right: 80px;
}
.my_header nav ul {
    position: relative;
}
.my_header nav li {
    float: left;
    margin-left: 46px;
}
.my_header nav li a {
    padding: 12px 16px;
    font-weight: 600;
}
.my_header nav li.curr a {
    color: #f08300;
    border-bottom: #f08300 2px solid;
}
.my_header nav li:hover a {
    color: #f08300;
    border-bottom: #f08300 2px solid;
}

.my_header em {
    display: none;
}

@media all and (max-width: 720px) {

    .my_header i img {
        width: 70px;
    }
    .my_header i {
        margin-left: 3%;
    }
    .my_header i.pc {
        display: none;
    }
    .my_header i.mobile {
        display: block;
    }

    .my_header nav {
        margin-top: 0px;
        margin-right: 0px;
        position: absolute;
        right: 0px;
        top: 70px;
        width: 120px;
        display: none;
    }
    .my_header nav b {
        position: absolute;
        display: inline-block;
        width: 10px;
        height: 9px;
        background: url("../img/i-arrow-up.png");
        background-size: 100%;
        top: -8px;
        right: 20px;
    }
    .my_header nav li {
        display: block;
        width: 120px;
        margin: 0px;
        height: 35px;
        line-height: 35px;
        background: #f08200;
        text-align: center;
        border-bottom: #fff 1px solid;
    }
    .my_header nav li:last-child{
        border-bottom: none;
    }
    .my_header nav li a {
        font-size: 12px;
        padding: 0px;
        color: #fff;
        font-weight: normal;
        display: block;
    }
    .my_header nav li.curr a {
        color: #fff;
        border-bottom: none;
    }
    .my_header nav li:hover a {
        color: #fff;
        border-bottom: none;
    }

    .my_header em {
        display: block;
        float: right;
        height: 70px;
        line-height: 70px;
        margin-right: 10px;
    }
    .my_header em img {
        width: 30px;
        vertical-align: middle;
        margin-top: -3px;
    }
}

@media all and (max-width: 380px) {

    .my_header nav li a {
        font-size: 10px;
        padding: 4px 3px;
    }
}

/*banner_box*/
.banner_box {
    background: url("../img/bg-banner.png") no-repeat;
    background-size: cover;
    height: 540px;
    line-height: 540px;
}
.banner_box span {
    display: block;
    text-align: center;
}
.banner_box span img {
    vertical-align: middle;
    margin-top: -3px;
    max-width: 100%;
}

@media all and (max-width: 720px) {

    .banner_box {
        height: auto;
        line-height: normal;
    }
    .banner_box span {
        padding: 30px 0px;
    }
    .banner_box span img {
        max-width: 85%;
    }
}

/*pain_point_box*/
.pain_point_box {
    padding-bottom: 100px;
}
.pain_point_title {
    text-align: center;
    width: 100%;
}
.pain_point_title h5 {
    display: block;
    font-size: 37px;
    color: #333333;
    margin-bottom: 5px;
}
.pain_point_title strong {
    display: block;
    font-size: 19px;
    color: #333333;
}
.pain_point_title span {
    display: block;
    padding-top: 99px;
    padding-bottom: 36px;
}
.pain_point_title em {
    display: block;
    margin-bottom: 60px;
    color: #333333;
}
.pain_point_title em b {
    color: #f08300;
}

@media all and (max-width: 720px) {

    .pain_point_box {
        padding-bottom: 80px;
    }
    .pain_point_title img {
        width: 30%;
    }
    .pain_point_title h5 {
        font-size: 22px;
        margin-bottom: 3px;
    }
    .pain_point_title strong {
        font-size: 12px;
    }
    .pain_point_title span {
        padding-top: 50px;
        padding-bottom: 36px;
    }
    .pain_point_title em {
        padding: 0px 20px;
        margin-bottom: 40px;
        font-size: 12px;
    }
}

/*pain_point_list*/
.pain_point_list {
    text-align: center;
}
.pain_point_list ul {
    width: 1209px;
    margin: auto;
}
.pain_point_list li {
    background: #f6f3ee;
    height: 260px;
    width: 400px;
    display: inline-block;
    float: left;
    margin: 1.5px 1.5px;
    color: #202020;
}
.pain_point_list li i {
    display: block;
    height: 130px;
    line-height: 130px;
}
.pain_point_list li i img {
    vertical-align: bottom;
}
.pain_point_list li h5 {
    display: block;
    margin-bottom: 15px;
    margin-top: 30px;
}
.pain_point_list li span {
    font-size: 12px;
}

@media all and (max-width: 720px) {

    .pain_point_list ul {
        width: auto;
    }
    .pain_point_list li {
        background: #f6f3ee;
        height: 260px;
        width: calc(100% - 3px);
        display: inline-block;
        float: none;
        margin: 1.5px 1.5px;
        color: #202020;
    }
}

/*solution_box*/
.solution_box {
    clear: both;
    background: #f6f3ee;
    padding-bottom: 60px;
    padding-top: 96px;
}
.solution_box.while {
    background: #fff;
}
.solution_cont {
    width: 1012px;
    margin: auto;
}
.solution_box h3 {
    text-align: center;
    font-size: 26px;
    display: block;
    margin-bottom: 58px;
    font-weight: 600;
}
.solution_box span {
    display: block;
    line-height: 26px;
    padding-bottom: 50px;
}
.solution_box em {
    display: block;
    text-align: center;
    padding-bottom: 40px;
}


.solution_title {
    text-align: center;
    display: block;
    padding-bottom: 58px;
}
.solution_title h5 {
    display: block;
    font-size: 37px;
    color: #333333;
    margin-bottom: 5px;
}
.solution_title strong {
    display: block;
    font-size: 19px;
    color: #333333;
}

@media all and (max-width: 720px) {

    .solution_box {
        padding-bottom: 36px;
        padding-top: 50px;
    }
    .solution_title {
        padding-bottom: 38px;
    }
    .solution_title img {
        width: 60%;
    }
    .solution_title h5 {
        font-size: 22px;
        margin-bottom: 3px;
    }
    .solution_title strong {
        font-size: 12px;
    }
    .solution_cont {
        width: auto;
        padding: 0px 15px;
    }
    .solution_box h3 {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .solution_box span {
        line-height: 22px;
        font-size: 12px;
        padding-bottom: 30px;
    }
    .solution_box em img {
        max-width: 80%;
    }
    .solution_box em {
        padding-bottom: 20px;
    }
}

/*case_box*/
.case_title {
    text-align: center;
    margin-bottom: 60px;
}
.case_title h5 {
    display: block;
    font-size: 37px;
    color: #333333;
    margin-bottom: 5px;
}
.case_title strong {
    display: block;
    font-size: 19px;
    color: #333333;
}
.case_box {
    background: #f6f3ee;
    padding-top: 90px;
    padding-bottom: 65px;
}
.case_box ul {
    width: 1012px;
    margin: auto;
    clear: both;
}
.case_box ul h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    margin-top: 40px;
}
.case_box ul li {
    width: 235px;
    float: left;
    margin: 0px 9px;
    text-align: center;
    margin-bottom: 10px;
}
.case_box ul li img {
    width: 235px;
    height: 82px;
    opacity: 0.6;
}
.case_box ul li img:hover{
    opacity: 1;
    box-shadow: 2px 2px 10px #d4d4d4;
}
.case_box ul li span {
    font-size: 10px;
    display: block;
    height: 50px;
    line-height: 50px;
}

@media all and (max-width: 720px) {

    .case_title {
        margin-bottom: 30px;
    }
    .case_title img {
        width: 30%;
    }
    .case_title h5 {
        font-size: 22px;
        margin-bottom: 3px;
    }
    .case_title strong {
        font-size: 12px;
    }
    .case_box ul h3 {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 20px;
        margin-top: 20px;
        margin-left: 10px;
    }
    .case_box ul {
        width: auto;
    }
    .case_box {
        padding-top: 40px;
        padding-bottom: 35px;
    }
    .case_box ul li {
        width: 50%;
        margin: 0px;
        margin-bottom: 10px;
    }
    .case_box ul li img {
        width: 180px;
        height: 63px;
    }
    .case_box ul li span {
        font-size: 10px;
        height: 30px;
        line-height: 30px;
        width: 180px;
    }
}
/*honour_box*/
.honour_title {
    text-align: center;
    width: 100%;
    padding-top: 98px;
    padding-bottom: 35px;
}
.honour_title h5 {
    display: block;
    font-size: 37px;
    color: #333333;
    margin-bottom: 5px;
}
.honour_title strong {
    display: block;
    font-size: 19px;
    color: #333333;
}
.honour_title h3 {
    display: block;
    font-size: 30px;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 5px;
}
.honour_box span {
    max-width: 1010px;
    display: block;
    margin: auto;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 50px;
}
.honour_box em {
    max-width: 1010px;
    margin: auto;
    display: block;
    margin-bottom: 50px;
    text-align: center;
}
.honour_box em img {
    max-width: 1010px;
}

@media all and (max-width: 720px) {

    .honour_title {
        padding-top: 48px;
        padding-bottom: 25px;
    }
    .honour_title img {
        width: 50%;
    }
    .honour_title h5 {
        font-size: 22px;
        margin-bottom: 3px;
    }
    .honour_title h3 {
        font-size: 20px;
        margin-bottom: 3px;
    }
    .honour_title strong {
        font-size: 12px;
    }
    .honour_box span {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0px 10px;
    }
    .honour_box em img {
        max-width: 80%;
    }
}

/*form_box*/
.form_box {
    background: url("../img/bg-form.jpg") no-repeat;
    width: 100%;
    background-size: cover;
    color: #fff;
    padding-bottom: 70px;
}
.form_box h3 {
    font-size: 24px;
    text-align: center;
    width: 100%;
    padding-top: 82px;
    padding-bottom: 36px;
}
.form_box ul {
    width: 516px;
    margin: auto;
}
.form_box li {
    margin-bottom: 9px;
}
.form_box li em {
    font-size: 16px;
    float: left;
    line-height: 32px;
}
.form_box li input {
    width: 378px;
    padding: 0px 10px;
    height: 32px;
    line-height: 32px;
    border: #fff 2px solid;
    border-radius: 5px;
    background: none;
    color: #fff;
}
.form_box li textarea {
    width: 378px;
    padding: 10px 10px;
    height: 78px;
    line-height: 20px;
    border: #fff 2px solid;
    border-radius: 5px;
    background: none;
    color: #fff;
}
.form_box_btn {
    text-align: center;
    padding-top: 15px;
}
.form_box_btn button {
    border: #fff 2px solid;
    border-radius: 5px;
    width: 144px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #f07f19;
    color: #fff;
    font-size: 16px;
}

@media all and (max-width: 720px) {

    .form_box {
        padding-bottom: 40px;
    }
    .form_box h3 {
        font-size: 14px;
        padding: 0px 15px;
        padding-top: 42px;
        padding-bottom: 20px;
        width: auto;
    }
    .form_box ul {
        width: 320px;
    }
    .form_box li input {
        width: 300px;
        padding: 0px 10px;
        height: 32px;
        line-height: 32px;
        border: #fff 2px solid;
        border-radius: 5px;
        background: none;
        color: #fff;
    }
    .form_box li textarea {
        width: 300px;
        padding: 10px 10px;
        height: 78px;
        line-height: 20px;
        border: #fff 2px solid;
        border-radius: 5px;
        background: none;
        color: #fff;
    }
    .form_box li em {
        font-size: 12px;
        line-height: 32px;
    }
}

/*contact_box*/
.contact_title {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 34px;
}
.contact_title h5 {
    display: block;
    font-size: 37px;
    color: #fff;
    margin-bottom: 5px;
}
.contact_title strong {
    display: block;
    font-size: 19px;
    color: #fff;
}
.contact_box {
    background: #1a1a1a;
    color: #ffffff;
    padding-bottom: 54px;
}

.about_cont {
    float: left;
    width: 398px;
}
.about_cont h3 {
    margin-bottom: 28px;
    font-size: 24px;
    font-weight: 600;
}
.about_cont span {
    line-height: 24px;
}

.contact_list {
    float: right;
}
.contact_list h3 {
    margin-bottom: 28px;
    font-size: 24px;
    font-weight: 600;
}
.contact_list li {
    float: left;
    width: 258px;
}
.contact_list li span {
    display: block;
    line-height: 24px;
}
.contact_list li em {
    width: 97px;
    display: inline-block;
    margin-left: 28px;
    margin-top: 10px;
}
.contact_list li em img {
    width: 97px;
    height: 97px;
}
.contact_list li em strong {
    display: block;
    width: 100%;
    text-align: center;
}

@media all and (max-width: 720px) {

    .contact_title {
        padding-top: 40px;
        padding-bottom: 15px;
    }
    .contact_title img {
        width: 22%;
    }
    .contact_title h5 {
        font-size: 22px;
        margin-bottom: 3px;
    }
    .contact_title strong {
        font-size: 12px;
    }
    .contact_list h3 {
        margin-bottom: 15px;
        font-size: 14px;
    }
    .about_cont {
        float: none;
        width: 90%;
        padding: 0px 5%;
        margin-left: 0px;
        margin-bottom: 15px;
    }
    .about_cont h3 {
        margin-bottom: 15px;
        font-size: 14px;
    }
    .about_cont span {
        line-height: 12px;
        font-size: 12px;
    }

    .contact_list {
        float: none;
        margin: 0px 5%;
    }
    .contact_list h3 {
        margin-bottom: 15px;
        font-size: 14px;
    }
    .contact_list li {
        float: left;
        width: 50%;
        margin-bottom: 15px;
    }
}



















