/* margin的样式初始化 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p,
input {
  margin: 0;
}

/* padding的样式初始化 */
ul,
ol,
th,
td,
input,
option {
  padding: 0;
}

/* 列表的样式初始化 */
ul,
ol,
li {
  list-style: none;
}

/* 文本样式初始化 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

/**/
em,
i {
  font-style: normal;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
}

input,
textarea {
  outline: none;
}

input[type="file"] {
  display: none;
  width: 0;
  height: 0;
}

textarea {
  resize: none;
}

video,
img {
  vertical-align: top;
  border: none;
}

html,
body {
  min-width: 1200px;
  background: #0d0c14;
  font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, "\5FAE\8F6F\96C5\9ED1", helvetica neue, helvetica, ubuntu,
    roboto, noto, segoe ui, Arial, sans-serif !important;
}

/* 公共header */
.header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition-duration: 0.5s;
}
.header .headCon {
  width: 1460px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .headCon .headLeft {
  display: flex;
}
.headLeft ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
}
.headLeft ul li {
  margin-right: 36px;
}
.headLeft ul li a {
  color: #CECEE5;
}
.exit{
  color: #CECEE5;
}
.exit:hover{
  color:#FFFFFF ;
}
.headLeft ul li a:hover{
  color:#FFFFFF ;
}
.headRight {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
}
.headAvatar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.headAvatar span {
  margin-left: 10px;
  cursor: pointer;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  line-height: 42px;
  font-size: 18px;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-menu {
  text-align: center;
  width: 100px;
  border-radius: 2px;
  position: absolute;
  background: #ffffff;
  box-shadow: 0px 9px 28px 8px rgb(0 0 0 / 5%), 0px 6px 16px 0px rgb(0 0 0 / 8%),
    0px 3px 6px -4px rgb(0 0 0 / 12%);
}
.user-menu div {
  width: 100%;
  height: 30px;
  line-height: 30px;
}
.headAvatar img {
  width: 100%;
}
.headRight a {
  color: #fff;
}
.login {
  margin-right: 21px;
  cursor: pointer;
  color: #fff;
}
.register {
  cursor: pointer;
  background: #5b23ff;
  padding: 10px 33px;
  border-radius: 2px;
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.06) inset;
}

/* 公共footer */
footer {
  position: relative;
  width: 100%;
  height: 280px;
  background: #0d0c14;
}
footer .link {
  width: 1460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
}
footer .link a {
  display: inline-block;
}
footer .link img {
  margin-right: 20px;
}
footer .record {
  width: 252px;
  font-size: 12px;
  color: #fff;
  margin: 0 auto;
  margin-top: 114px;
  text-align: center;
}
footer .record p {
  margin-top: 6px;
}
