/* 头部导航 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.1s ease;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: rgba(255, 255, 255, 1);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* .logoModel{
  display: flex;
  align-items: flex-end;
  float: unset;
  justify-content: flex-start;
} */

.logo {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  font-style: italic;
  text-decoration: none;
  /* background: url(./assets/images/pageLogo.jpg) no-repeat center center;
  background-size: 100% 100%;
  width: 98px;
  height: 42px;
  display: inline-block; */
}

.logosub {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.header.scrolled .logo,
.header.scrolled .logosub {
  color: #0066ff;
}
/* .header.scrolled .logo{
  background: url(./assets/images/pageLogo1.jpg) no-repeat center center;
  background-size: 100% 100%;
} */

.layui-nav {
  background: transparent;
  padding: 0;
}

.layui-nav-item a {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 15px;
}

.header.scrolled .layui-nav-item a {
  color: #333 !important;
}

.layui-nav .layui-this:after,
.layui-nav-bar {
  background: #0066ff;
}