@charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 12px;
    width: 100%;
    height: 100%;
    /*overflow-x: hidden; 加上会导致fexed元素覆盖在body滚动条上*/
    -webkit-text-size-adjust: none;
}

body {
    font-size: 1rem;
    min-width: 100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-family:  Arial,'Microsoft Yahei', "微软雅黑", "宋体", Helvetica, sans-serif, serif;
    position: relative;
    background-color: #fff;
}

body,
p,
dl,
h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

p,
a,
span,
li,
em,
small {
    font-family: Arial, 'Microsoft Yahei', "微软雅黑", "宋体", Helvetica, sans-serif, serif;
}

img {
    outline: none;
    vertical-align: middle;
    border: none;
}

button{
    outline: none;
}

cite,
em,
i {
    font-style: normal;
}

.clearfix {
    clear: both;
}

table{
    border-spacing: 0;
    border-collapse: collapse;
}

.fr {
    float: right;
}

.fl {
    float: left;
}
.pos-r{
    position: relative;
}

.full-section {
    width: 100%;
    position: relative;
    /*overflow: hidden;*/
}

font {
    color: #666;
}

.section {
    width: 1100px;
    margin: 0 auto;
    position: relative;
}

.cf:before,
.section:before,
.cf:after,
.section:after {
    display: table;
    content: "";
}

.cf:after,
.section:after{
    clear: both;
}


.caret-right{
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-left: 4px dashed;
    border-right: 4px solid\9;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    color: #a5a5a5;
}







/***************media screen **********************/

@media(max-width:1099px) {
    .section {
        width: 970px;
    }
}

@media(max-width:991px) {
    .section {
        width: 740px;
    }
}

@media(max-width:767px) {
    .section {
        width: 100%;
        padding: 0 15px;
    }
    .hidden-xs {
        display: none !important;
    }
    .visible-xs-block {
        display: block !important;
    }
    .navbar-toggle {
        display: block;
    }
}

