.zhucaidan{ font-size:17px; color:4e4e4e; font-family:"幼圆"}


.animenu {
  display: block;
  margin-top:35px
  
}
.animenu ul {
  padding: 0;
  list-style: none;
  
}
.animenu li, .animenu a {
  display: inline-block;
 /* font-size: 12px;*/

}
.animenu a {
  /*color: #aaaaaa;*/
  text-decoration: none;
}

.animenu__nav {  /*background-color: #4a245e;*/}


.animenu__nav > li {
  position: relative; /*下拉菜单有个小倒三角*/
  border-right: 1px solid #FFFFFF; width:110px; /*导航条 的固定宽度去了，就可以自适应宽度了*/ 
   height:20px; 
   line-height:0px; /*新加的，导右边小竖条 和文字能上下距中*/
;
   
   
}
.animenu__nav > li > a {
 /*padding: 10px 20px;/*各导航条的间距*/
  color:#FFFFFF;
  margin:10px 20px;
  text-transform: uppercase;
  font-weight:bold;
  
}
.animenu__nav > li > a:first-child:nth-last-child(2):before {
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-bottom: 0;
  border-top-color: currentColor;
  top: 50%;
  margin-top: -2px;
  right: 10px;
}
.animenu__nav > li:hover > ul {
  opacity: 1;
  visibility: visible;
  margin: 0;
}
.animenu__nav > li:hover > a {

  color: #ff6600;
  font-weight:bold
}

.animenu__nav__child {
  min-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  margin: 20px 0 0 0;
  
  
  background-color: #432055;
  
  /*background-color: #4a245e;*/
  transition: margin .15s, opacity .15s;
}
.animenu__nav__child > li {
  width: 100%;
 /* border-bottom: 1px solid #714786;*/
  height:20px;
  margin-top:10px;
  white-space: nowrap; /*新加了一个属性，是为了下拉菜单的二级目录字数过多然后自适应字符的长度*/
}
.animenu__nav__child > li:first-child > a:after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  left: 1em;
  top: -6px;
  border: 6px solid transparent;
  border-top: 0;
  border-bottom-color: inherit;
}
.animenu__nav__child > li:last-child {
  border: 0;
  
}
.animenu__nav__child a {
  color:#FFFFFF;
  padding: 10px;
  width: 100%;
  border-color: #432055;
}
.animenu__nav__child a:hover {
 /* background-color: #355cdc;
  border-color: #355cdc;*/
  color: #ffffff;
  font-weight:bold
}



@media screen and (max-width: 767px) {
  .animenu__toggle {
    display: inline-block;
  }

  .animenu__nav,
  .animenu__nav__child {
    display: none;
  }

  .animenu__nav {
    margin: 10px 0;
  }
  .animenu__nav > li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #432055;
  }
  .animenu__nav > li:last-child {
    border: 0;
  }
  .animenu__nav > li:first-child > a:after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    left: 1em;
    top: -6px;
    border: 6px solid transparent;
    border-top: 0;
    border-bottom-color: inherit;
  }
  .animenu__nav > li > a {
    width: 100%;
    padding: 10px;
    border-color: #432055;
    position: relative;
  }
  .animenu__nav a:hover {
    background-color: #432055;
    border-color: #432055;
    color: #000000;
  }

  .animenu__nav__child {
    position: static;
    background-color: #432055;
    margin: 0;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  .animenu__nav__child > li:first-child > a:after {
    content: none;
  }
  .animenu__nav__child a {
    padding-left: 20px;
    width: 100%;
  }
}
.animenu__nav--open {
  display: block !important;
}
.animenu__nav--open .animenu__nav__child {
  display: block;
}
