@charset "UTF-8";

/*css 初始化 清除默认样式*/
html,body,ul,li,ol,dl,dd,dt,p,h1,h2,h3,h4,h5,h6,form,fieldset,legend,img,div,input,button,select,section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*{
  box-sizing: border-box;
}
li {
  list-style: none;
}
fieldset,img,input,button {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
    background: transparent;
}
button{
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
input {
  padding-top: 0;
  padding-bottom: 0;
  font-family: "SimSun", "宋体";
  padding-left: 20px;
}
select,input {
  vertical-align: middle;
}
select,input,textarea {
  font-size: 14px;
  margin: 0;
  outline: none
}
/*防止拖动*/
textarea {
  resize: none;
}
/*  去掉图片低测默认的3像素空白缝隙*/
img {
  border: 0;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
a,a:hover,a:focus {
  color: inherit;
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
  text-decoration: none;
  font-weight: normal;
  font-size: 100%;
}
s,i,em {
  font-style: normal;
  /*字体没有样式*/
  text-decoration: none;
}
body{
  font-family: PingFangSC-Regular,FDCfont-Regular,"lucida Grande",Verdana,"Microsoft YaHei",sans-serif, 'Microsoft YaHei','Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #262626;
  font-size: 14px;
  height: 100%;
}


/* 公共属性 */
.clear:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0
}
.clear {
  zoom: 1
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.fx {
  display: flex;
}
.fx_ai {
  display: flex;
  align-items: center;
}
.fx_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.f1 {
  flex: 1
}
body,html{
  height: 100%;
}
.borb {
  border-bottom: solid 1px #cdcdcd;
}
.bor {
  border: 1px solid #cdcdcd;
}
.bgblue{background: rgb(25, 102, 165);}
.blue{color: rgb(25, 102, 165);}
.gray {
  color: rgb(242,242,242);
}
.cf {
  color: #fff;
}
.bgf {
  background: #fff;
}
.f12 {font-size: 12px;}
.f14 {font-size: 14px;}
.f16 {font-size: 16px;}
.f20 {font-size: 20px;}
.f22 {font-size: 22px;}
.txtr {
  text-align: right
}
.txtc {
  text-align: center
}
.width{
  width: 100%;
}
.shadow{
  box-shadow:0px 3px 6px rgba(13,54,97,0.09);
}
.over{
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.layout{
  max-width: 1100px;
  margin: auto;
}

.center .right::-webkit-scrollbar {/*滚动条整体样式*/
  width: 8px;     /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

.center .right::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  border-radius: 10px;
  background: rgb(25, 102, 165);
}

.center .right::-webkit-scrollbar-track {/*滚动条里面轨道*/
  border-radius: 10px;
  background: #EDEDED;
}