/* 沿用 worldmap 的金色系 --gold:#c8a24a (rgb 200,162,74) */
#timeline {
	position: relative;
	max-width: 760px;
	margin: 10px auto 0;
	padding: 10px 0 30px;
}

/* 貫穿的時間軸主線 */
#timeline:before {
	content: "";
	position: absolute;
	left: 120px;
	top: 0;
	bottom: 0;
	width: 2px;
}

.tl-year {
	position: relative;
	margin: 26px 0 14px 0;
	padding-left: 150px;
	font-size: 22px;
	font-weight: bold;
	color: white;
	text-shadow: black 2px 2px;
	letter-spacing: 2px;
}

.tl-year:before {
	content: "";
	position: absolute;
	left: 113px;
	top: 50%;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-radius: 50%;
	background: #c8a24a;
	box-shadow: 0 0 8px rgba(200, 162, 74, 0.8);
}

.tl-item {
	position: relative;
	padding-left: 150px;
	min-height: 40px;
	margin: 14px 0;
}

/* 每筆事件的小圓點 */
.tl-dot {
	position: absolute;
	left: 115px;
	top: 14px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #060b07;
	border: 2px solid #c8a24a;
	box-shadow: 0 0 5px rgba(200, 162, 74, 0.6);
}

/* 日期徽章,固定在主線左側 */
.tl-when {
	position: absolute;
	left: 0;
	top: 10px;
	width: 100px;
	text-align: right;
	font-size: 14px;
	color: #aaaaaa;
	letter-spacing: 1px;
}

.tl-card {
	background: rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(200, 162, 74, 0.25);
	border-radius: 8px;
	padding: 10px 14px;
	width: 80%;
}

.tl-card:hover {
	border-color: rgba(200, 162, 74, 0.7);
	transform: translateX(3px);
}

.tl-who {
	font-size: 17px;
	margin-bottom: 4px;
}

.tl-what {
	font-size: 15px;
	color: #cccccc;
	line-height: 1.5;
}

.tl-empty {
	text-align: center;
	color: #888;
	padding: 40px 0;
}

.phone #timeline:before {
	left: 18px;
}

.phone .tl-year {
	padding-left: 46px;
}

.phone .tl-year:before {
	left: 11px;
}

.phone .tl-item {
	padding-left: 46px;
}

.phone .tl-dot {
	left: 13px;
}

.phone .tl-when {
	position: static;
	width: auto;
	text-align: left;
	margin-bottom: 4px;
}
