@charset "UTF-8";
/*header——开始*/
.header-top {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.header-top .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.header-top .box span {
  font-size: 12px;
}

.header-top .box ul {
  display: flex;
  justify-content: space-between;
}

.header-top .box ul li {
  padding: 0 10px;
}

.header-top .box ul li a {
  color: #515151;
  font-size: 12px;
}

.header {
  background-color: #fff;
}

.header .box {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .box .logo {
  width: 250px;
}

.header .box .logo img {
  width: 100%;
}

.header .box .ul {
  display: flex;
}

.header .box .ul a {
  margin: 10px 20px;
  color: #333;
  font-size: 16px;
  transition: 0.5s;
}
.header .box .ul a:hover{
    color: var(--backColor);
    transition: 0.5s;
}
.header .box .icon-dasuolvetuliebiao {
  display: none;
}

@media screen and (max-width: 600px) {
  .header .box .ul {
    display: none;
  }
  .header .box .iconfont {
    display: block;
    font-size: 25px;
  }
}

/*header——结束*/
/*侧滑 开始*/
.nav {
  display: none;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
}

.nav .icon-xiangyou1 {
  float: right;
  margin-right: 10px;
  color: #fff;
  font-family: "宋体";
  font-weight: bold;
  transition: 0.3s;
}

.nav .cur {
  transform: rotate(90deg);
  transition: 0.3s;
}

.nav #collapase-nav {
  background: #333;
  display: block;
  height: 100%;
  width: 60%;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: 0.3s;
}

.nav #collapase-nav a {
  color: #fff;
  margin-left: 10px;
  font-size: 14px;
}

.nav .am-panel {
  line-height: 3em;
  border-bottom: 1px solid #444;
}

.nav .am-icon-angle-right {
  float: right;
  margin-right: 10px;
  color: #fff;
  font-family: "宋体";
  font-weight: bold;
}

.nav .am-collapse {
  display: none;
  transition: 0.3s;
}

.nav .top {
  writing-mode: tb;
  margin-top: 17px;
  margin-right: -7px;
}

/*侧滑 结束*/
