* {   
    padding: 0;
    margin: 0; 
}
@font-face {
    font-family: 'YouSheBiaoTiYuan';
    src: url('/ipSource/css/fonts/YouSheBiaoTiYuan-2.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Source Han Sans CN';
    src: url('/ipSource/css/fonts/SourceHanSansCN-VF-2.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* 酌情修改 */
body {
    min-width: 1280px;
    background:#fff;
    color:#333;
    font-size: 12px;
    font-family:Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,SimSun,sans-serif;
    font-display: swap;
}
input,button {
    background: none;
    outline: none;
    border: none;
}
/* 短引用的内容可取值：''或"" */
q:before,q:after {content:'';}  

/* 缩写，图片等无边框 */
fieldset,img,abbr,acronym {border: 0 none;}
abbr,acronym {font-variant: normal;}
legend {color:#000;}

/* 清除特殊标记的字体和字号 */
address,caption,cite,code,dfn,em,strong,th,var,i {   
    font-weight: normal;   
    font-style: normal;   
}
/* 输入框历史 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition-delay: 999999999s;
    transition: color 999999999s ease-out, background-color 999999999s ease-out;
    -webkit-transition-delay: 999999999s;
    -webkit-transition: color 999999999s ease-out, background-color 999999999s ease-out;
    -webkit-text-fill-color: #000;
}

/* 文本禁止选中 */
.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

/* 上下标 */
sup {vertical-align: text-top;}
sub {vertical-align: text-bottom;}

/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/
table {   
    border-collapse: collapse;   
    border-spacing: 0;   
}   

/* 表格标题及内容居左显示 */
caption,th {text-align: left;}
input,img,select {vertical-align:middle;}

/* 清除列表样式 */
ol,ul {list-style: none;}  

/* 输入控件字体 */
input,button,textarea,select,optgroup,option {
    font-family:inherit;
    font-size:inherit;
    font-style:inherit;
    font-weight:inherit;
}

/* 标题元素样式清除 */ 
h1,h2,h3,h4,h5,h6 {   
    font-weight: normal;   
    font-size: 100%;   
}  

/* a span标签转行内块 */
a,span{
    display: inline-block;
}

/* 链接样式，颜色可酌情修改 */
del,ins,a {text-decoration:none;}
a:link {color: #69acf8;}
a:visited {color: #69acf8;}
a:hover,a:active,a:focus {color: #69acf8; text-decoration:none;} 

/* 鼠标样式 */
input[type="submit"] {cursor: pointer;}
button {cursor: pointer;}
input::-moz-focus-inner { border: 0; padding: 0;}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar{
    width: 8px;
    height: 8px;
    /* border-radius: 8px; */
    background-color: #F2F2F2;
    
}
  /*定义滚动条轨道 内阴影+圆角 */
::-webkit-scrollbar-track {
    background-color: rgb(245, 247, 248); 
}
  /*定义滑块 内阴影+圆角 background-color:  rgb(133, 133, 130); */
::-webkit-scrollbar-thumb{
    border-radius: 8px;
    background-color:  rgba(144,147,153,.5);
}
