html {
		  box-sizing: border-box;
		}
		*, *:before, *:after {
		  box-sizing: inherit; /* 统一继承 */
		}
		table {
			width: 100%;
		}
		tbody > :nth-child(-n+3) {
			text-align: center;
		}
		tbody > :nth-child(-n+3) > td {
			padding: 16px;
			height: 22px;
			line-height: 22px;
			font-size: 14px;
			border-bottom: 1px solid rgb(224, 224, 224);
		}
		tbody > :nth-child(1) > td {
			position: relative;
			background: #fafafa;
		}
		tbody > :nth-child(1) > td:not(:last-child):before {
			position: absolute;
			top: 50%;
			right: 0;
			width: 1px;
			height: 1.6em;
			background-color: rgba(0, 0, 0, .06);
			transform: translateY(-50%);
			transition: background-color .3s;
			content: "";
		}
		tbody > :nth-child(4) > td{
			padding-top: 40px;
			font-size: 12px;
			color:  rgb(153, 153, 153);
		}