@charset "UTF-8";

/*reset--css*/
body,h1,h2,h3,h4,h5,p,ul,li{
    padding: 0;
    margin: 0;
    list-style: none;
}
body{
    font-family: "微软雅黑";
    font-size: 14px;
}
article, aside, details, figcaption, figure, footer, header,section { display: block; }
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin: 0;padding: 0;}
a{text-decoration: none;}

/****************** 公共单行省略号  ****************/
.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.clear{
    clear: both;
}
/*手机导航*/
.t_m_header{
    position: relative;
    z-index: 1000;
}
.t_m_header .top{
    background: #edf0ef;
    padding: 10px 0;
    position: relative;
}
.t_m_header .top .left{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding:15px 15px 10px 15px;
}
.t_m_header .top .left span{
    width: 20px;
    height: 15px;
    display: block;
    background: url("http://www.techuangyi.com/statics/images/bootstrap/new_website_1/m_nav_icon_1.png") no-repeat;
    background-size: 100% 100%;
    transition: background .3s;
}
.t_m_header .top .left.cur span{
    width: 15px;
    height: 15px;
    background: url("http://www.techuangyi.com/statics/images/bootstrap/new_website_1/m_nav_icon_2.png") no-repeat;
    background-size: 100% 100%;
}
.t_m_header .top .center{
    text-align: center;
}
.t_m_header .top .center img{
    width: 100px;
}
.t_m_header .top .right{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.t_m_header .top .right a{
    padding: 2px 7px;
    color: #333333;
    border: 2px solid #333333;
    border-radius: 3px;
    text-decoration: none;
    margin: 5px 15px;
    display: block;
}
.t_m_header .top .right .portrait{
    position: relative;
}
.t_m_header .top .right .portrait img{
    border-radius: 100%;
    width: 30px;
    height: 30px;
    margin: 8px 15px 0 0;
}
.t_m_header .top .right .portrait span{
    position: absolute;
    right: 15px;
    top: 5px;
    display: block;
    width: 8px;
    height: 8px;
    background: #ef1926;
    border-radius: 100%;
}
.t_m_header .m_nav,
.t_m_header .after_login{
    position: absolute;
    left: 0;
    top: 50px;
    display: none;
    width: 100%;
    z-index: 1;
}
.t_m_header .m_nav_con,
.t_m_header .after_login_con{
    position: relative;
    background: #fff;
    padding: 15px 5px 15px 15px;
    font-size: 16px;
    color: #333333;
    letter-spacing: 3px;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
}
.t_m_header a,
.t_m_header a:hover{
    text-decoration: none;
}
.t_m_header .has_con{
    position: relative;
}
.t_m_header .has_con p{
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 10px 8px 15px;
}
.t_m_header .has_con p span{
    width: 8px;
    height: 13px;
    display: block;
    background: url("../../../../statics/images/bootstrap/new_website_1/arrow_right2.png") no-repeat;
    background-size: 100% 100%;
}
.t_m_header .has_con.unfold p{
    padding: 10px 10px 8px 15px;
}
.t_m_header .has_con.unfold p span{
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: rotate90;
    animation-name: rotate90;
}
@-webkit-keyframes rotate90 {
    0% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    100% {
        -webkit-transform:  rotate3d(0,0,1,90deg);
        -ms-transform:  rotate3d(0,0,1,90deg);
        transform:  rotate3d(0,0,1,90deg);
    }
}
@keyframes rotate90 {
    0% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    100% {
        -webkit-transform:  rotate3d(0,0,1,90deg);
        -ms-transform:  rotate3d(0,0,1,90deg);
        transform:  rotate3d(0,0,1,90deg);
    }
}
.t_m_header .hr{
    height: 1px;
    background: #e9f0f6;
    margin: 8px 10px 8px 0 ;
}
.t_m_header .m_nav h4 a,
.t_m_header .m_nav h3 a,
.t_m_header .m_nav ul li a,
.t_m_header .after_login_con a{
    font-size: 16px;
    color: #333333;
    letter-spacing: 3px;
    padding: 8px 0;
    display: block;
    text-decoration: none;
    font-weight: 500;
}
.t_m_header .m_nav ul{
    display: none;
}
.t_m_header .has_con.unfold ul{
    display: block;
}
.t_m_header .m_nav ul li{
    padding-left: 19px;
}
.t_m_header .m_nav .triangle,
.t_m_header .after_login_con .triangle{
    position: absolute;
    left: 17px;
    top: -5px;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
    box-shadow: -1px -1px 3px rgba(0,0,0,0.1);
}
.t_m_header .after_login_con .triangle{
    left: initial;
    right: 30px;
}
.t_m_header .after_login_con span{
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #ef1926;
    vertical-align: middle;
    margin: 0 5px;
}
.t_m_header_layer{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.01);
    z-index: 999;
    display: none;
}
/*首页顶部广告banner*/
.top_banner{
    width: 100%;
    margin: auto;
    height: 44px;
    background: rgba(124,172,237,0.74);
    display: none;
}
.top_banner .container{
    padding-top: 11px;
    padding-bottom: 17px;
    padding-right: 10px;
}
.top_banner .container p{
    float: left;
    width: 93%;
}
.top_banner .container p a{
    padding-left: 3%;
    text-align: center;
    color: #ffffff;
    font-size: 1.1em;
    text-decoration: none;
    display: block;
    height: 20px;
    width: 100%;
    text-overflow:ellipsis;
    overflow:hidden;
    white-space:nowrap;
}
.top_banner .container span{
    display: block;
    width: 20px;
    height: 20px;
    float: right;
    font-size: 24px;
    font-weight: bold;
    line-height: .75;
    color: #ffffff;
    text-shadow: 0 1px 0 #fff;
    filter:alpha(opacity=100);
    opacity: 1;
}
.top_banner .container span:hover{
    filter:alpha(opacity=80);
    opacity: .8;
}
section{
    padding: 0 15px;
}
#section_1{
    background: #f9e200;
    padding-bottom: 30px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#section_1 .m_banner{
    /*padding: 40px 0 55px;*/
    text-align: center;
}
#section_1 .m_banner img{
    display: inline-block;
    width: 100%;
}
#section_1 .p_1{
    font-size: 15px;
    color: #666666;
    letter-spacing: 1px;
    padding-bottom: 20px;
}
.m_form{
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    margin-bottom: 15px;
    height: 183px;
}
.m_form .inp_1{
    border-bottom: 1px solid #F2F2F2;
    overflow: hidden;
    margin: 0 5px;
}
.m_form .inp_2{
    overflow: hidden;
    border-bottom: 1px solid #F2F2F2;
    margin: 0 5px;
}
.m_form .inp_3{
    position: relative;
    height: 61px;
}
.m_form .inp_1 label,
.m_form .inp_2 label,
.m_form .inp_3 label{
    color: #333333;
    font-size: 18px;
    float: left;
    width: 28%;
    line-height: 60px;
    letter-spacing: 3px;
    text-align: center;
    font-weight: bold;
}
.m_form .inp_1 select,.m_form .inp_2 select{
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(http://statics.techuangyi.com/statics/images/bootstrap/mobile/arrow_bottom.png) no-repeat right center transparent;
    padding-right: 20px;
    color: #333;
    font-size: 16px;
    float: left;
    width: 70%;
    margin: 10px 0;
    line-height: 40px;
    height: 40px;
    letter-spacing: 3px;
    -webkit-tap-highlight-color: transparent;
}
.m_form .inp_2 input{
     width: 70%;
     float: left;
     display: inline-block;
     padding-top: 21px;
     border: none;
     font-size: 16px;
     letter-spacing: 3px;
     color: #333;
     -webkit-tap-highlight-color: transparent;
 }
.m_form .inp_2 input:focus{
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
}
.m_form .inp_3 input{
    width: 70%;
    float: left;
    display: inline-block;
    padding-top: 21px;
    border: none;
    font-size: 16px;
    color: #333;
    -webkit-tap-highlight-color: transparent;
}
.m_form .inp_3 input:focus{
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
}
/*信息表单填写第二部,输入公司名称。step_two*/
.m_form.add_step{
    height: 122px;
    box-shadow: none;
    background: none;
}
.m_form .step_one{
    box-shadow: 0 0 10px 1px rgba(105,169,255,0.34);
    background: #fff;
}
.m_form .step_two{
    border: none;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 10px 1px rgba(105,169,255,0.34);
}
.m_form.add_step .step_two{
    border: 2px solid #7fadeb;
    border-radius: 3px;
    background: #fff;
}
.m_form.add_step .step_two .tips_title{
    height: 60px;
    line-height: 60px;
}
.m_form .step_two .tips_title{
    height: 122px;
    text-align: center;
    line-height: 118px;
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    letter-spacing: 2px;
}
.m_form .step_two .inp_1{
    margin: 0 10px;
    border-top: 1px solid #EEEEEE;
    border-bottom: none;
}
.m_form .step_two .inp_1 select{
    height: 60px;
    width: 100%;
    text-indent: 10px;
    background-position: 98% center;
    margin: 0;
}
.m_form .step_two .inp_3{
    height: 60px;
}
.m_form .step_two .inp_3 input{
    width: 100%;
    text-indent: 20px;
}

.m_form .step_one.add_animation_hide{
    opacity: 0;
    animation: pop_hide 0.5s linear;
    -webkit-animation: pop_hide 0.5s linear;
}
.m_form .step_two.add_animation_show{
    opacity: 1;
    animation: pop_show 0.5s linear;
    -webkit-animation: pop_show 0.5s linear;
}
@keyframes pop_show {
    0%{
        transform: translate(80%,0);
        -ms-transform: translate(80%,0);
        -webkit-transform: translate(80%,0);
        -moz-transform: translate(80%,0);
        opacity: 0.2;
    }
    50%{
        opacity: 0.5;
    }
    80%{
        opacity: 0.8;
    }
    100%{
        transform: translate(0,0);
        -ms-transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        opacity: 1;
    }
}
@-webkit-keyframes pop_show {
    0%{
        transform: translate(80%,0);
        -ms-transform: translate(80%,0);
        -webkit-transform: translate(80%,0);
        -moz-transform: translate(80%,0);
        opacity: 0.2;
    }
    50%{
        opacity: 0.5;
    }
    80%{
        opacity: 0.8;
    }
    100%{
        transform: translate(0,0);
        -ms-transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        opacity: 1;
    }
}
@keyframes pop_hide{
    0%{
        transform: translate(-10%,0);
        -ms-transform: translate(-10%,0);
        -webkit-transform: translate(-10%,0);
        -moz-transform: translate(-10%,0);
        opacity: 0.7;
    }
    50%{
        opacity: 0.5;
    }
    80%{
        opacity: 0.2;
    }
    100%{
        transform: translate(-100%,0);
        -ms-transform: translate(-100%,0);
        -webkit-transform: translate(-100%,0);
        -moz-transform: translate(-100%,0);
        opacity: 0;
    }
}
@-webkit-keyframes pop_hide {
    0%{
        transform: translate(-10%,0);
        -ms-transform: translate(-10%,0);
        -webkit-transform: translate(-10%,0);
        -moz-transform: translate(-10%,0);
        opacity: 0.7;
    }
    50%{
        opacity: 0.5;
    }
    80%{
        opacity: 0.2;
    }
    100%{
        transform: translate(-100%,0);
        -ms-transform: translate(-100%,0);
        -webkit-transform: translate(-100%,0);
        -moz-transform: translate(-100%,0);
        opacity: 0;
    }
}


/***公共咨询按钮，蓝底****/
.zixun_btn{
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #7FADEB;
    height: 60px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    line-height: 60px;
    display: block;
    font-size: 21px;
    margin-bottom: 30px;
    width: 100%;
    outline: none;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
}
/*公共自动滚动公告*/
.vslider{
    height: 20px;
    overflow: hidden;
    padding-left: 22px;
    background: url(http://www.techuangyi.com/statics/images/bootstrap/mobile/gonggao_2.png) 3px 5px no-repeat;
    background-size: 12px;
}
#section5 .vslider{
    /*height: 20px;*/
    /*padding-left: 0;*/
    /*text-align: center;*/
    /*background: none;*/
}
.vslider li span{
    font-size: 12px;
    padding: 0 2px;
}
.vslider li span b{
    font-weight: normal;
}
.vslider li span span{
    color: #fff !important;
}
.vslider li .span_time{
    color: #7fadeb;
}
/***公共头部标题***/
.m_common_title{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: #f9e105;
    padding: 31px 15px 40px;
    margin: 0 10px;
    border-radius: 6px;
}
.m_common_title>div{
    font-size: 25px;
    color: #333333;
    letter-spacing: 5px;
    letter-spacing: 0;
    font-weight: 500;
    text-align: center;
}
.m_common_title p{
    font-size: 20px;
    color: #666666;
    text-align: center;
    -webkit-appearance: none;
    outline: none;
}
.m_common_title p i{
    font-size: 18px;
    font-style: normal;
}
.m_common_title span{
    display: block;
    width: 18px;
    height: 3px;
    background: #7fadeb;
}
#section_2{
    padding: 0 15px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#section_2 .m_anli_con ul:after{
    display: block;
    content: "";
    clear: both;
    width: 0;
    height: 0;
    visibility: hidden;
}
#section_2 .m_anli_con ul li{
    width: 100%;
    /*float: left;*/
    padding-bottom: 15px;
    float: left;
}
#section_2 .m_anli_con ul li:nth-child(2n-1){
    /*margin-right: 5%;
    clear: both;*/
}
#section_2 .m_anli_con ul li a{
    display: block;
}
#section_2 .m_anli_con ul li img{
    display: block;
    width: 100%;
}
#section_2 .m_anli_con ul li p{
    font-size: 14px;
    color: #666666;
    padding-top: 15px;
}
.common_bth_more{
    width: 175px;
    height: 50px;
    border: 3px solid #666666;
    text-align: center;
    line-height: 45px;
    letter-spacing: 3px;
    color: #4c4c4c;
    font-size: 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    display: block;
    margin: 0 auto 30px;
}
.common_line{
    width: 100%;
    height: 1px;
    background: #EEEEEE;
}
#section_3 .m_common_title span{
    background: #FF517C;
}
#section_3  .m_customer{
    margin-bottom: 20px;
}
#section_3  .m_customer .customer_con{
    /*height: 116px;*/
    overflow: hidden;
    margin-bottom: 9px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    color: #ffffff;
    padding: 15px 12px;
}
#section_3  .m_customer .customer_con:nth-child(3n+1){
    background: #7FADEB;
}
#section_3  .m_customer .customer_con:nth-child(3n+2){
    background: #FF517C;
}
#section_3  .m_customer .customer_con:nth-child(3n+3){
    background: #47E7B9;
}
#section_3  .m_customer .customer_con p{
    font-size: 14px;
    line-height: 22px;
    width: 67%;
    float: left;
    letter-spacing: 1px;
}
#section_3  .m_customer .customer_con p span{
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
#section_3  .m_customer .customer_con img{
    display: block;
    width: 30%;
    float: right;
    box-shadow: -5px -5px 20px -5px rgba(0,0,0,0.2);
}
#section_4{
    padding: 0 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#section_4 img{
    width: 100%;
}
#section5{
    padding: 0 15px 25px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#section5 .m_protect{
    margin-top: 25px;
}
#section5 .m_protect ul li{
    margin-bottom: 30px;
}
#section5 .m_protect ul li .left{
    width: 45%;
    float: left;
}
#section5 .m_protect ul li .left img{
    display: block;
    width: 35px;
    margin: 0 auto;
}
#section5 .m_protect ul li .left span{
    display: block;
    margin: 9px auto;
    font-size: 18px;
    color: #666666;
    letter-spacing: 2px;
    text-align: center;
}
#section5 .m_protect ul li .right{
    width: 55%;
    float: left;

}
#section5 .m_protect ul li .right p{
    font-size: 14px;
    color: #666666;
    letter-spacing: 2px;
    line-height: 24px;
}
#section5 .m_protect ul li .right p span{
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #7FADEB;
    margin-right: 5px;
}
#section_6{
    padding: 10px 0;
    background: #F7F7F7;
}
#section_6 a{
    display: block;
    -webkit-tap-highlight-color: transparent;
}
#section_6 img{
    width: 100%;
    display: block;
}
footer{
    padding-bottom: 70px;
    position: relative;
}
footer .phone_zixun img{
    display: block;
    width: 60px;
    margin: 30px auto 15px;
}
footer .phone_zixun .p_1{
    color: #666666;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
}
footer .phone_zixun .p_2{
    text-align: center;
    padding: 25px 0 0;
}
footer .phone_zixun .p_1 a{
    color: #666666;
}
footer .phone_zixun .p_2 a{
    color: #666666;
    font-size: 15px;
    margin-top: 27px;
}
footer .m_copy{
    font-size: 12px;
    color: #999999;
    line-height: 20px;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 25px;
}
footer .back_top{
    width: 16px;
    bottom: 65px;
    right: 15px;
    position: absolute;
}
footer .back_top img{
    width: 16px;
    height: 20px;
}

/*底部悬浮*/
.m_fixed_bars{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
    overflow: hidden;
    background: #fff;
    text-align: center;
    padding: 7px 0;
    -webkit-box-shadow: 0 -5px 10px rgba(0,0,0,0.1);
    box-shadow: 0 -5px 10px rgba(0,0,0,0.1);
}
.m_fixed_bars .box_wrap{
    float: left;
    width: 33%;
    padding: 0 8px;
}
.m_fixed_bars .box_wrap .box{
    color: #fff;
    border-radius: 3px;
    padding: 8px 0;
    margin: 0 auto;
    background: #44e7b9;
    font-size: 14px;
}
.m_fixed_bars .box_wrap .box2{
    background: #7caded;
}
.m_fixed_bars .box_wrap .box3{
    background: #ff507c;
}
.m_fixed_bars .box_wrap .box a{
    color: #fff;
    text-decoration: none;
    padding-left: 16px;
    background: url(http://www.techuangyi.com/statics/images/online_search.png) no-repeat left 3px;
    background-size: 14px 14px;
}
.m_fixed_bars .box_wrap .box2 a{
    background: url(http://www.techuangyi.com/statics/images/online_phone.png) no-repeat left 3px;
    background-size: 14px 14px;
}
.m_fixed_bars .box_wrap .box3 a{
    background: url(http://www.techuangyi.com/statics/images/online_curstom.png) no-repeat left 2px;
    background-size: 14px 14px;
}
/*快速发布弹出层*/
.ksfb_bg{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 499;
    background: rgba(0,0,0,0.5);
    display: none;
}
.m_wrap{
    position: relative;
    background: #fff;
}
.ksfb_wrap{
    background: #fff;
    width: 86%;
    border-radius: 3px;
    position: fixed;
    left: 7%;
    top: 100px;
    z-index: 500;
    padding: 20px 0;
    display: none;
}
.ksfb_wrap .ksfb .tips{
    text-align: center;
    font-size: 20px;
    letter-spacing: 3px;
    padding-bottom: 10px;
}
.ksfb_wrap .input_wrap{
    font-size: 14px;
    color: #666;
    padding: 0 20px 15px;
}
.ksfb_wrap .inp_con{
    position: relative;
}
.ksfb_wrap .inp_con input{
    width: 96%;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    margin-left: 4%;
    border: 0;
    border-bottom: 1px solid #ededed;
}
.ksfb_wrap .inp_con input:focus{
    border: 0;
    border-bottom: 1px solid #6ea2eb;
    outline: none;
}
.ksfb_wrap .inp_con .star {
    position: absolute;
    left: 0;
    top: 19px;
    color: #f00;
}
.ksfb_wrap .s_tips {
    font-size: 12px;
    color: #999;
    padding: 0 20px 10px;
}
.btn_blue{
    display: inline-block;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 3px;
    background: #7caced;
    color: #fff;
    letter-spacing: 5px;
    border: 0;
    font-size: 18px;
    padding: 0;
    text-decoration: none;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-property: background;
    transition-property: background;
}
.ksfb_wrap .tj_w {
    padding: 0 20px;
}
.ksfb_wrap .btn_blue{
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
}

