
.listWraper
{
    position: fixed;
    top: 30%;
    right: 0;
}
.listBox
{
    position: relative;
}
.listBox > li
{
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
}
.listBox > li:last-child
{
    background: #9e9e9e;
}
.listBox > li:last-child:hover
{
    background: #2196f3;
}
.listBox > li:first-child
{
    background: #1a6bb9;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 15px 15px 0 0;
}
.listBox > li:first-child:hover
{
    background: #1a6bb9;
}
.listBox > li:first-child:hover .process_box
{
    display: block;
}
.process_box
{
    width: 250px;
    height: 120px;
    border: 1px solid #6995F1;
    position: absolute;
    background: #ffffff;
    box-sizing: border-box;
    box-shadow: -2px 5px 8px #006699;
    border-radius: 3px; /*top: 50%;*/
    top: 0%;
    right: 100%;
    border-radius: 3px 0 3px 3px;
    display: none;
    padding: 8px 0px 10px 10px;
}
.process_box > ul
{
    border-left: 2px solid #eaebe5;
}
.process_box > ul > li
{
    font-size: 12px;
    padding: 5px 5px 5px 10px; /*height: 34px;*/
    line-height: initial;
    text-align: left;
    position: relative;
}
.polygon
{
    display: none;
}
.small_circle
{
    width: 10px;
    left: -6px !important;
}
.process_box > ul > li:hover
{
    color: #55b0e4;
    background: #ddd;
}
.process_box > ul > li:hover .polygon
{
    display: inline-block;
}
.process_box > ul > li > img
{
    position: absolute;
    left: -8px;
    top: 10px;
}