/* 吸顶条 */
/* 吸顶条 */
.navbar {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #f7f7f7;
    box-shadow: 0 0 30px rgb(0 0 0 / 20%);
    text-align: center;
    display: none;
    z-index: 9999;
  }
  .position {
    width: 100%;
    height: 40px;
  }
  /* 方式一：添加类 */
  .fixed {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
  }
  /* 方式二：使用属性选择器
    .navbar[data-fixed="fixed"] {
      position: fixed;
      top: 0;
      left: 0;
    }
    */
  .hidea {
    display: none;
  }
  .navbar_left {
    float: left;
  }
  .navbar_left label{
    float: left;
    background: #ffdde1;
    font-size: 14px;
    color: #333;
    padding: 0 10px;
  }
  .navbar_left label span{
    margin-right: 35px;
  }
  .navbar_left ul {
    display: flex;
  }
  .navbar_left ul li {
    height: 40px;
    line-height: 40px;
  }
  .navbar_left ul li a {
    padding: 0 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
  }
  .navbar_left ul li:hover {
    border-bottom: 1px solid #c71b2d;
  }
  .navbar_left ul li a:hover {
    color: #c71b2d;
  }
  .navbar_right {
    float: right;
  }
  .navbar_right_con{
      display: flex;
  }
  .navbar_right form {
    display: flex;
  }
  .navbar_right form input {
    width: 250px;
    height: 38px;
    border: none;
    outline: none;
    color: #333;
    text-indent: 1em;
    border: 1px solid #ccc;
  }
  .navbar_right form .search_btn {
    cursor: pointer;
    width: 100px;
    height: 40px;
    background: linear-gradient(270deg, #b90014, #d23143);
    border: 0;
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    text-align: center;
  }
  .navbar_right form .search_btn img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
  }
  .navbar_right ul{
      display: flex;
      margin-left: 10px;
  }
  .navbar_right ul li{
      height: 40px;
      line-height: 40px;
  }
  .navbar_right ul li:nth-child(1){
      background: #cd401a;
  }
  .navbar_right ul li:nth-child(2){
      background: #cd1a51;
  }
  .navbar_right ul li:nth-child(3){
      background: #d23143;
  }
  .navbar_right ul li a{
      padding: 0 10px;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
  }