* {
    margin: 0;
  }

  input:focus{
    outline:none;
  }

  a{
    white-space:nowrap;
    text-decoration: none;
  }

  li{
    list-style: none;
  }

  ::-webkit-scrollbar {
    width:4px;
    height: 4px;
  }

  ::-webkit-scrollbar-thumb{
    background:rgba(0, 0, 0, .2);
    border-radius:20px;
  }

  .w-20{
    width: 20%;
  }

  .w-50{
    width: 50%;
  }

  .w-80{
    width: 80%;
  }

  .w-100{
    width: 100%;
  }

  div,input{
    box-sizing: border-box;
  }

  .navbox,.catebox{
    width: 100%;
    background: url('/static/module/ztzg/images/header-nav-bg.png') no-repeat;
  }

  .container{
    width: 70%;
    margin: 0 auto;
  }

  .top-nav{
    height: 80px;
  }

  .flex-row{
    display: flex;
    flex-direction: row;
  }

  .flex-column{
    display: flex;
    flex-direction: column;
  }

  .top-nav a{
    color: white;
    text-decoration: none;
    font-size: 16px;
  }

  .top-nav .nav-li:hover{
    border-bottom: 2px solid #FFF;
  }

  .top-nav .nav-active{
    border-bottom: 2px solid #FFF;
  }

  .float-l{
    float: left;
  }

  .float-r{
    float: right;
  }

  .nav-ul li{
    float: left;
    line-height: 40px;
    margin: 20px;
  }

  .mid-bar{
    margin-right: 40px;
  }

  .left-bar,.right-bar{
    padding: 15px;
    position: relative;
  }

  .right-bar .icon-search{
    position: absolute;
    top:30px;
    right: 32px;
    transform:scale(1.4);
    color: #000;
  }

  .search-ipt{
    margin: 6px;
    width: 95%;
    height: 38px;
    padding: 5px 38px 2px 8px;
    color: #888;
    font-size: 14px;
    border: none;
    min-width: 100px;
  }

  .search-ipt::focus{
    border: 5px solid black;
  }

  .login-bar,.shop-bar{
    line-height: 40px;
    margin: 20px;
    color:#FFF;
  }

  .breadcrumb::before {
      padding: 0 0.4rem;
      color: #FFF;
      content: var(--tblr-breadcrumb-divider, "/");
  }

  .separate::before {
      padding: 0 0.4rem;
      color: #a3a3a3;
      content: var(--tblr-breadcrumb-divider, "|");
  }

  .search-icon{
    margin-top: 2px;
    cursor: pointer;
  }

  .avatar-box{
    width: 40px;
    height: 40px;
    margin-right: 35px;
  }

  .avatar-img{
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }

  .avatar-img:hover{
    transition: .1s linear;
    box-shadow: 0px 0px 9px #bddaff;
  }

  /* FOOTER */

  .footer{
        width: 100%;
        height: 150px;
        margin-top: 50px;
        border-top: 1px solid #eaeaea;
    }
    .footer-content{
        text-align: center;
        margin-top: 50px;
        font-size: 14px;
    }
    .footer-link{
        color: #a3a3a3;
    }
    .copyright{
        margin: 8px;
    }

  /* FOOTER */

  #msg-tip{
    position: fixed;
    left: 50%;
    top: 50%;
    padding: 8px 16px;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    background-color:rgb(96, 178, 249);
    border-radius: 3px;
    color: #FFF;
}


.info-title{
  margin-top: 10px;
  font-size: 28px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

.news-link{
  color: #999;
  font-size: 23px;
}

.news-link:hover{
  color: #000;
}

.news-content{
  margin: 3px 0 20px 0;
}



/* model */
.logoff-txt{
  margin-top: 5px;
  color: red;
  height: 20px;
}

.logoff-btn{
  /* width: 40%; */
  padding: 5px 20px;
  margin: 10px 20px 0 0;
  background-color: red;
  color: #FFF;
  text-align: center;
  font-size: 14px;
}

.close-model{
  background-color: #979797;
}

.logoff-p{
  margin: 5px 0;
}

.logoff-input{
  padding: 5px;
  width: 98%;
  height: 32px;
}

#modal-zoom-in {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
#modal-zoom-in.show {
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce-out {
  0% {
      top: -200%;
  }
  25% {
      top: 50%;
  }
  40% {
      top: 35%;
  }
  55% {
      top: 50%;
  }
  70% {
      top: 42%;
  }
  85% {
      top: 50%;
  }
  95% {
      top: 48%;
  }
  100% {
      top: 50%;
  }
}
/* Extra stuff just to make the demo pretty. */

.modal-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(69, 69, 69, 0.7);
  opacity: 0;
  pointer-events: none;
}
.modal-background.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: fadein 0.8s;
}
.modal-background.hide {
  animation: fadeout 0.8s;
}
@keyframes fadein {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
@keyframes fadeout {
  from {
      opacity: 1;
  }
  to {
      opacity: 0;
  }
}
.modal {
  position: absolute;
  padding: 35px;
  box-shadow: 0px 0px 8px 0px #333;
  background: #FFF;
  color: #000;
  text-align: left;
  transform-style: preserve-3d;
}
.modal .face-3d {
  backface-visibility: hidden;
}
.modal .back-3d {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background: #875794;
  transform: rotateY(180deg);
}
