.type {
	margin: 20px 0;
	height: 40px;
	background: #ffffff;
	overflow: hidden;
	border-bottom: 1px solid rgba(100,149,237,0.5);
}

.type .item {
	float: left;
	margin-top: 10px;
	width: 120px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-right: 1px solid #dedede;
	position: relative;
	cursor: pointer;
}

.type .item.active {
	color: #6495ED;
}

.type .item.active::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 54px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 5px solid #6495ED;
}

.type .item:last-of-type {
	border-right: none;
}

.task ,
.achievement {
	margin-bottom: 20px;
	padding: 20px;
    background: #ffffff;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
}

.task-head {
	border-left: 4px solid #6495ED;
	padding-left: 8px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
}

.task-content {
	margin-top: 15px;
	height: 100px;
	overflow: hidden;
}

.task-content.open {
	height: auto;
}
 
.task-more {
	text-align: center;
	margin-top: 10px;
	color: #999;
	cursor: pointer;
}

.task-more .iconfont {
	display: inline-block;
	transform: rotate(180deg);
	margin-left: 3px;
}

.task-content.open ~ .task-more .iconfont {
	transform: rotate(0deg);
}

.achievement {
	display: flex;
}

.number-box {
	flex-grow: 1;
	text-align: center;
}

.number-box .icon img {
	width: 100px;
}

.number-box .title {
	font-size: 14px;
	color: #666;
}

.number-box .number {
	font-size: 18px;
	color: #000;
}

.subitems .item {
	width: 100%;
	background: #fff;
	-moz-border-radius: 3px;
	     border-radius: 3px;
	-webkit-box-shadow: 2px 2px 4px rgba(0,0,0,.15);
	   -moz-box-shadow: 2px 2px 4px rgba(0,0,0,.15);
	        box-shadow: 2px 2px 4px rgba(0,0,0,.15);
	padding: 0 0.3rem;
	margin-bottom: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
	transition: all .2s;
	cursor: pointer;
}
.subitems.collect-list .item {
	padding: 0.05rem 0.3rem;
}
.subitems .item:hover {
	transform: translateX(6px);
}
.subitems .item .desc {
	flex-grow: 1;
}
.subitems .item .title {
	margin-top: 15px;
	font-size: 18px;
	color: #333;
}
.subitems .item .duration {
	color: #aaa;
}
.subitems .item .arrow {
	flex-shrink: 0;
	color: #aaa;
}
.subitems .item .arrow .iconfont {
	font-size: 24px;
}
.subitems.collect-list .item .arrow .iconfont {
	font-size: 20px;
}
.subitems .item .unfinished {
	border: 1px solid #28da89;
	border-radius: 3px;
	font-size: 14px;
	color: #28da89;
	padding: 3px 8px;
	margin-left: 15px;
}