.menu-box {
  max-width: 750px;
  float: right;
  height: 40px;
  margin: 35px 10px 0px 0px;
}
.menu-box2 {
	display: none;
}
.animate-right{position:relative;animation: animateright 0.8s;}@keyframes animateright{from{right:-60px;opacity:0} to{right:0;opacity:1}}

.menu-box ul {
	padding: 0px;
	margin: 0px;
}
.menu-box li {
   float: left;
   list-style-type:none;
	margin: 0px 20px 0px 0px;
}
.menu-box .item_t {
	color: #f5f5f5;
	font: normal 16px Arial;
	text-decoration: none;
	float: left;
	padding: 7px;
	border: 1px dotted #0aff64;
	border-radius: 7px;
}

.menu-box .item_t:hover {
	border: 1px dotted transparent;
}

.menu-box .item_t::after {
    content: '';
    list-style-type:none;
    display: block;
    width: 0;
    height: 3px;
    background: #0aff64;
    transition: width .3s;
}

.menu-box .item_t:hover::after {
    width: 100%;
    //transition: width .3s;
}