.sticky {
	z-index: 1;
}

.item .storeName {
	border-bottom: none;
}

.process {
	border-top: 1px dashed #ededed;
	position: relative;
}

.schedule {
	display: flex;
	margin-left: 10px;
	display: none;
}

.process-tit {
	padding: 10px 0px;
	font-weight: bold;
}

.schedule .circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 5px;
}

.schedule .circle span {
	width: 10px;
	height: 10px;
	border: 1px solid #ccc;
	border-radius: 50%;
}

.schedule.active .circle span {
	border: 1px solid #00b198;
	background-color: #00b198;
}

.schedule .circle::after {
	content: "";
	width: 1px;
	flex: 1;
	background-color: #ccc;
}

.schedule.active .circle::after {
	background-color: #00b198;
}

.schedule .right-box {
	flex: 1;
	margin-left: 15px;
	padding-bottom: 15px;
}

.schedule .right-box>div {
	margin-bottom: 8px;
}

.schedule .right-box>div:nth-child(2) {
	color: #787878;
}

.item .status.not-uploaded {
	color: red;
	background-color: transparent;
	font-weight: bold;
}

.item .status.in-approval {
	color: #FF9800;
	background-color: transparent;
	font-weight: bold;
}

.item .status.finished {
	color: #00b198;
	background-color: transparent;
	font-weight: bold;
}

.open-btn {
	position: absolute;
	left: 75px;
	top: 10px;
	color: #00b198;
	display: flex;
}

.open-btn::after {
	content: "";
	width: 8px;
	height: 8px;
	border-width: 1px;
	border-color: #00b198 #00b198 transparent transparent;
	border-style: solid;
	transform: rotate(135deg);
	position: absolute;
	right: -16px;
	top: 2px;
}

.open-btn.close::after {
	transform: rotate(-45deg);
	top: 7px;
}
