1
2
3
4
5
6
7
8
/*資訊欄收底下*/
.dash-segment-profile .segment-content:nth-child(1) {
	/*這些不動*/ position:fixed; z-index:6000; margin:0; transition:bottom .6s;
	/*收起時露出多少*/ bottom:calc(-96px + 30px); /*前面96勿改,後面才是露出多少的部分*/
	/*距離左邊*/ left:20px;
	/*寬度*/ width:300px;
}
.dash-segment-profile .segment-content:nth-child(1):hover { bottom:20px; }