
.navbar .head{
  max-width: 1600px;
  /*min-width: 1600px;*/
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 10px;
}

.navbar .navbar-logo{
  width: 20%;
  display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .update {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid;
}

.update .time-container p{
    color: #bb9a6c;
    position: relative; /* 使p元素成为定位容器 */
    overflow: hidden; /* 防止滚动条超出p元素范围 */
    background: linear-gradient(-48deg, #e5c3a1, #ffe5cc);
    -webkit-background-clip: text;
    color: transparent;
}

.update .time-container p:after{
    animation: move__cb01a7e3 1.5s ease-in-out infinite;
    background: #fff;
    content: "";
    height: 5px;
    left: 0;
    opacity: .15;
    position: absolute;
    top: -2.66667px;
    transform: rotate(-45deg);
    width: 100%;
    overflow: hidden;
}

@keyframes move__cb01a7e3 {
    0% {
        transform: translateX(-75%) rotate(-45deg)
    }

    to {
        transform: translateX(150%) rotate(-45deg)
    }
}
    
.navbar .search {
  width: 19%;
}
.navbar .searchs{
    
  position: relative;
}

.navbar .search input {
  width: 83%;
  height: 35px;
  padding: 0 10px;
  border: none;
  outline: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.navbar .search button {
  position: absolute;
  top: 0px;
  right: 4px;
  width: 21%;
  height: 35px;
  border: none;
  cursor: pointer;
  outline: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: linear-gradient(-48deg, #e5c3a1, #af8a66);
  color: #fff;
}

.navbar .navbar-menu{
  width: 48%;
}
.navbar .navbar-menu ul{
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
}

.navbar .navbar-menu ul li{
  width: 100%;
  list-style: none;
  position: relative;
  /*background-image: url(../images/btnweb.png);*/
  background-size: cover;
  background-position: center; /* 可选，确保图片居中显示 */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 10px;
}

.navbar .navbar-menu ul li:hover{
    color: #bb9a6c;
}

.navbar .navbar-menu ul li:hover:before{
    width: 100%;
}


.navbar .navbar-menu ul li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 0px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: url(../images/navbg.png) no-repeat center;
    background-size: auto;
    transition: all .5s;
}

.navbar .navbar-menu ul li:hover a{
    background: linear-gradient(-48deg, #e5c3a1, #ffe5cc);
    -webkit-background-clip: text;
    color: transparent;
}

.navbar .navbar-menu ul li:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  z-index: 0;
  border-left: 1px solid white;
  border-right: 1px solid white;
  background: #ffffff;
  background: rgba(26, 26, 26, 0.8);
  -webkit-transition: height .2s;
  -moz-transition: height .2s;
  -ms-transition: height .2s;
  -o-transition: height .2s;
  transition: height .2s;
}

/*.navbar .navbar-menu ul li:hover:after{*/
/*  height: 100%;*/
/*}*/

.navbar .navbar-menu ul li a {
  display: block;
  color: #ffffff;
  padding: 15px 20px;
  letter-spacing: 1px;
  font-size: 14px;
  z-index: 2;
  position: relative;
  text-decoration: none;
}

.nav_title {
  display: block;
  font-size: 20px;
  text-align: center;
}

.nav_sub_title {
  display: block;
  font-size: 12px;
}