/**
 * 右侧浮动菜单
 */
@charset "utf-8";
.navigation{width:80px;height:auto;position:fixed;background-color:#9c231c;top:25%;right:0;border-radius:0 40px 0 40px;z-index:99999}
.navigation-text{height:80px;width:100%;line-height:80px;text-align:center;border-bottom:5px solid #fff;cursor: pointer;}
.navigation .navigation-text:nth-child(0){border-radius:0 25% 0 0}
.navigation .navigation-text:last-of-type{border-radius:0 0 0 40px;background-color:#9d9d9d}
.navigation .navigation-text ul,li{margin:0;padding:0;list-style:none;}
.navigation .navigation-text ul{width:80px;min-height:80px;position:relative;display:none;margin-left:-80px;margin-top:-80px}
.navigation .navigation-text ul li div{width:80px;min-height:80px;background-color:#fff}
.navigation .navigation-text ul li div img{width:80px;min-height:80px}.navigation .navigation-text:hover ul{display:block}