.progress-axis-Y {
	max-height: 600px;
	padding-top: 20px;
	padding-buttom: 20px;
	border: 1px solid #eee;
}
.progress-axis-Y .point-item, .progress-axis-X .point-item {
    list-style: none;
    position: relative;
}
.progress-axis-Y .point-item:before,  .progress-axis-X .point-item:before {
    content: '';
    position: absolute;
    z-index: 0;
    background-color: #e2e2e2;
}
.progress-axis-Y .point-icon,  .progress-axis-X .point-icon {
    position: absolute;
    z-index: 10;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border:2px solid #5FB878;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    background: #FFFFFF;
}
.progress-axis-Y .point-icon:hover,  .progress-axis-X .point-icon:hover {
    background:#5FB878;
    transition: background 0.5s;
    -moz-transition: background 0.5s; /* Firefox 4 */
    -webkit-transition: background 0.5s; /* Safari 和 Chrome */
    -o-transition: background 0.5s; /* Opera */
}
.progress-axis-Y .point-item {
    padding-bottom: 20px;
}
.progress-axis-Y .point-item:before {
    left: 5px;
    top: 0;
    width: 1px;
    height: 100%;
}
.progress-axis-Y .point-content, .progress-axis-Y  .point-title {
    padding-left: 25px;
}
.progress-axis-Y .point-icon {
    left: -5px;
    top: 0;
}
.progress-axis-X {
   border: 1px solid #eee;
   text-align: center;
   white-space: nowrap;
   overflow: auto;
   padding-top:10px;
   margin-top: 24px;
}
.progress-axis-X .point-item {
    display: inline-block;
    max-width: 200px;
    vertical-align: top;
}
.progress-axis-X .point-item .point-content {
    white-space: normal; 
    padding:10px;
}
.progress-axis-X .point-item:before {
    left: 0px;
    top: 50px;
    width: 103%;
    height: 1px;
}
.progress-axis-X .point-item .point-title {
    height:50px;
    overflow-y: visible;
    margin-bottom: 15px;
}
.progress-axis-X .point-icon {
    position: absolute;
    left: 50%;
    top: 40px;
    margin-left: -12px;
}
.point-item .point-title, .point-item .point-content {
	font-size: 12px;
}
/**.progress-axis-X .point-item:first-child:before {
    left: 50%;
}
.progress-axis-X .point-item:last-child:before {
    left: -50%;
}*/