@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-width: 0px;
  padding: 0px;
  margin: 0px;
  margin: 0;
  padding: 0;
  font-family: Arial, Verdana, sans-serif, Helvetica, "microsoft yahei", 微软雅黑, 黑体, 宋体;
  font-size: 14px;
  --width: 1200px;
}

/* div {
  user-select: none;
  -moz-user-select: none;
} */

dl,
ul,
ol,
li {
  list-style: none;
  border-width: 0px;
  padding: 0px;
  margin: 0px;
}

img {
  border: 0;
}

a {
  text-decoration: none
}

a:link {
  color: #000000
}

a:visited {
  color: #000000
}

a:hover {
  color: #FF0000
}

a:active {
  color: #0000ff
}

/*去除input后的x*/
input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

input:valid+.clear {
  display: inline;
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
  background-color: #FFF;
}

::-webkit-scrollbar:hover {
  background: #F4F4F4;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  margin: 3px;
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: #A8A8A8;
}

.center {
  margin: 0 auto;
  width: var(--width);
}

.titlebar {
  min-width: var(--width);
  height: 70px;
  background-color: #FFF;
  border-bottom: solid #EAEAEA 1px;
  box-shadow: 0 1px 10px #BBB;
}

.titlebar .center {
  display: flex;
  justify-content: space-between;
}

.titlebar .logo {
  display: flex;
  align-items: center;
  column-gap: 12px;
  height: 70px;
  background-position: left center;
  background-repeat: no-repeat;
}

.titlebar .nav {
  display: flex;
  font-size: 14px;
}

.titlebar .nav li {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
}

/**/
.footer {
  min-width: var(--width);
}

.footer-below {
  min-width: var(--width);
  background-color: #2052A1;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-below .footer-below-center {
  text-align: center;
  color: #999;
  height: 60px;
  line-height: 60px;
}