@charset "utf-8";

/*样式初始化*/
html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
    margin: 0;
    padding: 0;
}

fieldset,
img,
input,
button {
    /*fieldset组合表单中的相关元素*/
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

html,
body {
    width: 100%;
    height: 100%;
    min-width: 1200px;
    /* overflow-x: auto; */
    /* min-height: 600px; */
    background-color: #ffffff;
}

body {
    margin: 0 auto;
    /* overflow-x: hidden; */
    --van-sidebar-selected-border-color: rgb(70, 100, 172);
}

ul,
ol {
    list-style: none;
    /*清除列表风格*/
}

em,
ul,
li {
    font-style: normal;
}

input {
    appearance: none;
    padding-top: 0;
    padding-bottom: 0;
    font-family: "PingFangSC-Regular", "Avenir", Helvetica, Arial, sans-serif, '宋体';
}

a {
    text-decoration: none;
}

a:focus {
    outline: none;
}

select,
input {
    vertical-align: middle;
}

select,
input,
textarea {
    margin: 0;
    outline-style: none;
}

textarea {
    resize: none;
}

/*防止多行文本框拖动*/
img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
}

/*  去掉图片低测默认的3像素空白缝隙*/
table {
    border-collapse: collapse;
    /*合并外边线*/
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
    /*IE/7/6*/
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(51, 51, 51, .3);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(51, 51, 51, .3);
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(51, 51, 51, .3);
}

:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(51, 51, 51, .3);
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    border-radius: 2px;
}

/*滚动区域背景*/
::-webkit-scrollbar-track-piece {
    background-color: transparent;
    border-radius: 6px;
}

/*竖向滚动条*/
::-webkit-scrollbar-thumb:vertical {
    height: 0px;
    width: 0px;
    background-color: #2673e6;
    border-radius: 3px;
    -webkit-border-radius: 6px;
}

/*横向滚动条*/
::-webkit-scrollbar-thumb:horizontal {
    width: 0px;
    height: 0px;
    border-radius: 2px;
    background-color: #2673e6;
    -webkit-border-radius: 6px;
}

.cursorp {
    cursor: pointer;
}

/* 数字字体 */
@font-face {
    font-family: 'DigitFont';
    src: url('../assets/fonts/digital-7.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pmzdFont';
    src: url('../assets/fonts/pmzd.ttf');
    font-weight: normal;
    font-style: normal;
}

#app {
    height: 100%;
    position: relative;
}