@charset "UTF-8";

.container-fluid {
  width: 100%;
  padding-bottom: 10px;
}

.carect {
  position: relative;
  width: 0;
  height: 0;
  margin-left: 5px;
  margin-bottom: 2px;
  border-top: 6px solid;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-radius: 10px;
  display: inline-block;
}

/*
    导航组件
*/
nav {
  position:fixed;
  right:0;
  height: 60px;
  padding: 20px 0;
  z-index:99999;
}
nav li, nav a {
  text-decoration: none;
  list-style: none;
}
nav .nav-logo {
  width: auto;
  height: 100%;
  margin-left: 20px;
  float: left;
}
nav .nav-logo a, nav .nav-logo li, nav .nav-logo ol, nav .nav-logo span, nav .nav-logo p {
  font-size: 30px;
  font-weight: bold;
  list-style: none;
  color: #1f79ec;
  text-decoration: none;
}
nav .nav-logo img {
  max-width: 100%;
  max-height: 100%;
}
nav ::-webkit-scrollbar {
  display: none;
}
nav .nav-list {
  /*nav-list*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  margin-right: 20px;
}
  nav .nav-list {
    position: fixed;
    height: 100%;
    top: 0;
    padding-top: 5%;
    text-align:center;
    background: #a73e00 url(../images/hyt_nav_bg2.png) no-repeat right;
    background-size:100% 100%;
    width: 32%;
    left: -32%;
    -webkit-transition: 1s;
    transition: 1s;

  }
  nav .nav-list .nav-ul > li {
    width: 100%;
    margin: 0;
    overflow: hidden;
    margin-bottom: 15px;

  }
  nav .nav-list .nav-ul > li:first-child{
    margin-bottom:8%;

  }

/*nav .nav-list > li .active {
  color: #fff;
  background: #094fb7;
}*/
nav .nav-list .nav-ul > li a {
  color: #fff;
  display: inline-block;
  line-height: 32px;
  padding: 1px 15px;
  margin: 0 10px;
  font-size: 22px;
  text-decoration: none;
}

@media (max-width: 1200px) {
  nav .nav-list{
    padding-top:20%;
    width: 70%;
    left: -70%;
  }
  nav .nav-list .nav-ul > li:first-child{
    margin-bottom:15%;

  }
  nav .nav-list .nav-ul > li a {
    width: 100%;
    margin: 0;
    font-size:18px;
  }
}
nav .nav-list .nav-ul > li .menu {
  min-width: 100px;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px #ccc;
  box-shadow: 0 2px 10px #ccc;
  position: absolute;
  border-radius: 5px;
  white-space: nowrap;
  left: 0;
  height: 0;
  overflow: hidden;
}
@media (max-width: 1200px) {
  nav .nav-list .nav-ul > li .menu {
    position: relative;
    width: 100%;
    text-align: center;
    border-radius: 0;
    -webkit-box-shadow: 0 -1px 7px #ccc inset;
    box-shadow: 0 -1px 7px #ccc inset;
  }
}
nav .nav-list .nav-ul > li .menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
nav .nav-list .nav-ul > li:hover .menu {
  height: auto;
  display:contents;
}
nav .nav-menu {
  display: block;
  z-index: 999;
  background: #fff;
  cursor: pointer;
}

  nav .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    float: right;
    padding: 10px 13px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 20px;
  }
  nav .nav-menu .cd{
    margin-right:6px;
    font-size:18px;
    font-weight:bold;
  }
  nav .nav-menu span {
    height: 3px;
    width: 26px;
    display: block;
    background: #333;
    border-radius: 10px;
  }
  nav .nav-menu span + span {
    margin-top: 6px;
  }

nav .open {
  left: 0%;
  overflow: auto;
}
