/*css 初始化 */
html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
    margin: 0;
    padding: 0;
}
a:focus, a:hover {
     text-decoration: none!important;
}
/*将标签原有的默认内外边距去掉*/

fieldset,
img,
input,
button {
    border: none;
    /*去掉边框*/
    padding: 0;
    margin: 0;
    outline-style: none;
    /*去掉环绕边框*/
}

ul,
ol {
    list-style: none;
    /*去掉原样式中的小黑点*/
    /*ctrl+alt+l*/
}

input {
    padding-top: 0;
    padding-bottom: 0;

}

select,
input {
    vertical-align: middle;
    /*输入字居中显示*/
}

select,
input,
textarea {
    font-size: 14px;
    margin: 0;
}

/**/
textarea {
    resize: none;
    /*防止拖动*/
}

img {
    border: 0;
    vertical-align: middle;
    /*  去掉图片底部默认的3像素空白缝隙*/
}

table {
    border-collapse: collapse;
    /*合并外边线*/
}

[v-cloak]{
    display: none
}
body {
    font-family: Microsoft YaHei, Arial, "\5b8b\4f53";
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
    /*IE/7/6*/
    /*兼容IE6下的写法*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-decoration: none;
    /**/
    font-weight: normal;
    /*不加粗*/
    font-size: 100%;
}

a {
    text-decoration: none;
}

s,
i,
em {
    /*一般起装饰作用*/
    font-style: normal;
    /*将字体变成正常字体*/
    text-decoration: none;
    /*去掉中划线*/
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*解决chorome浏览器表单自动填充默认样式*/
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: rgb(250, 255, 189, 0) !important;
    background-image: none;
    color: rgb(0, 0, 0);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 99999s !important;
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out !important;
}



/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    /*background-color: #F5F5F5;*/
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
    /*background-color: #031720;*/
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #dedede;
    /*background-color: #F5F5F5;*/
}


/*去掉高德地图右下角内容，深色背景下给卡尺添加白色文字*/
/* .amap-ui-control-position-br, .amap-ui-control-position-rb,.amap-overview-button,.amap-overviewcontrol,.{
    display: none!important;
    }*/
.amap-logo{
    display: none!important;
}
/************input-placeholder颜色*********/
input::-webkit-input-placeholder {
    color: #ccc;
}
input::-moz-input-placeholder{
    color: #ccc;
}
input::-ms-input-placeholder {
    color: #ccc;
}
textarea::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #ccc;
}
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #ccc;
}
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #ccc;
}
textarea::-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #ccc;
}
/************input-placeholder颜色end*********/