/*css common*/
@charset "utf-8";
@font-face {
    font-family: 'iconfont';
    src: url('iconfont/iconfont.eot'); /* IE9*/
    src: url('iconfont/iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('iconfont/iconfont.woff') format('woff'), /* chrome、firefox */
    url('iconfont/iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url('iconfont/iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
}

body {
    background-color: #fff;
}
/*网站头部*/
.header-wraper {
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #e9e7e7;
}
.header-wraper .logo {
    height: 70px;
    float: left;
    border: 0 none;
    padding: 0;
}
.header-wraper .wraper-center{
    height: 70px;
}
 .online-contact {
    padding: 0 10px;
    display: inline-block;
    margin-top: 14px;
}
.qq-online-contact{
    position: relative;
    top: -13px;
    display: inline-block;
    padding: 0 15px;
    font:14px/35px "微软雅黑";
    color: #fd782e;
    border: 1px solid #fd782e;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.qq-online-contact .iconfont{
    font: 18px/26px "微软雅黑";
    display: inline-block;
    margin-right: 10px;
    color: #fd782e;
}
.qq-online-contact:hover{
    color: #fff;
    background: #fd782e;
}
.qq-online-contact:hover .iconfont{
    color: #fff;
}

/*网站底部*/
.footer-wraper {
    height: 45px;
    background-color: #585555;
    border-top: 0 none;
}
.footer-wraper .wraper-center {
    height: 45px;
}
.footer-wraper .copy-center {
    text-align: center;
}
.footer-wraper .copy-center p {
    color: #fff;
    line-height: 45px;
}
.footer-wraper .copy-center a {
    color: #fff;
    text-decoration: none;
}

/*遮罩层*/
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
    opacity: 0.5;
    filter: alpha(opacity=50);
    display: none;
}