header {
  background: #fff;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  line-height: 80px;
}

.header .left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.header .left .logo {
  margin-right: 50px;
}

.header .left .nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.header .left .nav .li {
  margin-right: 50px;
}

.header .left .nav .lii a {
  color: #4560ff;
}

.header .right {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header .right .btn {
  width: 100px;
  height: 35px;
  line-height: 35px;
  text-align: center;

  background: linear-gradient(to right, #2b9efb, #3ab9e8);
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  margin: 0 20px;
}

.header .right .tel {
  color: #56c3eb;
}

.fixed {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 99999;
}

.fixed .top {
  width: 50px;
  height: 50px;
  background: #e9e9e9;
  text-align: center;
  line-height: 50px;
  margin-bottom: 10px;
}

.fixed .icon {
  width: 50px;
  height: 50px;
  background: #304fff;
  text-align: center;
  line-height: 50px;
  margin-bottom: 10px;
  position: relative;
}

.fixed .icon .sub {
  position: absolute;
  right: 105%;
  top: 50%;
  transform: translate(0%, -50%);
  width: 200px;
  background: #fff;
  border-radius: 5px;
  display: none;
}

.fixed .icon:hover .sub {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crumbs {
  border: solid 1px #f0f0f0;
}

.crumbs>div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  line-height: 50px;
}

.crumbs>div>span {
  margin-right: 5px;
  color: #8f8f8f;
}



















.footer {
  /* background: url("../images/bgpic002.png") no-repeat center; */
  background-color: #2b2c2e;
}

.footer .con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #7e7e7e;
  padding: 30px;
}

.footer .con .left {
  display: flex;
  flex-direction: column;
}

.footer .con .left .list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0;
}


.footer .con .left .list a {
  color: #7e7e7e;
  margin-right: 30px;
}

.footer .con .left .desc p {
  line-height: 25px;
  color: #7e7e7e;
}

.footer .con .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer .con .right .wxcode {
  width: 120px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer .con .right .wxcode .pic {
  margin-bottom: 20px;
}

.footer>.text {
  color: #7e7e7e;
  text-align: center;
  padding: 20px 0;
  border-top: solid 1px #555658;
}