.upload {
	height: 1235px;
	height: 130px;
	background: #f6f9fb;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 0 58px;
	justify-content: space-between;
}

.upload-icon {
	margin-right: 22px;
}

.upload-title {
	font-weight: 900;
	margin-bottom: 8px;
}

.is-upload {
	font-size: 18px;
	color: #3b82f6;
	cursor: pointer;
}

.upload-desc {
	font-size: 16px;
	color: #646464;
}

.btn-upload {
	width: 150px;
	height: 50px;
	border-radius: 5px;
	background-color: rgb(59, 130, 246);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	cursor: pointer;
	position: relative;
}

.btn-upload img {
	margin-right: 15px;
}

.files-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.files-item {
	width: calc(33.3% - 10px);
	height: 204px;
	background: #f6f6f6;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 0 40px;
}

.files-item:nth-child(3) {
	margin-right: 0;
}

.files-item .close {
	position: absolute;
	top: 8px;
	right: 8px;
	transition: all 0.2s;
}

.files-item .close:hover {
	/* transform: rotate(90deg); */
	transform: scale(1.2) rotate(90deg);
}

.files-item .file-icon {
	margin: 28px auto 20px;
	display: block;
	cursor: pointer;
}

.files-item .file-title {
	text-align: center;
	color: #646464;
	font-weight: 900;
	margin-bottom: 15px;
	line-height: 24px;
	cursor: pointer;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.files-item .file-status {
	font-size: 16px;
	color: #999999;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.files-item .status-text {
	font-size: 14px;
	color: #3b82f6;
	padding: 2px 8px;
	background: #e3eaf6;
	margin-left: 10px;
}

.proress-box {
	width: 100%;
	height: 40px;
	border-radius: 4px;
	margin-top: 18px;
	position: relative;
	display: flex;
}

.proress {
	background-color: #f3f9ff;
	height: 100%;
	flex: 1;
	box-shadow: 0 5px 10px -5px #ccc;
	position: relative;
}

.proress-bar {
	width: 0%;
	height: 100%;
	background-color: #e2f0fe;
	position: absolute;
	left: 0;
	top: 0;
}

.proress-num {
	width: 100%;
	height: 100%;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	line-height: 40px;
	color: #000;
}

.proress-text {
	margin-left: 34px;
	line-height: 40px;
}

.c-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10;
}

.c-layer-content {
	width: 550px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -90%);
	border-radius: 15px;
	background-color: #f7f7f7;
	padding: 40px 50px;
}

.c-layer-title {
	font-size: 20px;
	font-weight: bold;
	color: #000;
}

.c-layer-desc {
	font-size: 14px;
	color: #999999;
	margin: 15px 0;
}

.c-layer-select {
	display: flex;
	justify-content: space-between;
}

.c-layer-select>div {
	width: 222px;
	height: 50px;
	background-color: #FFF;
	border-radius: 10px;
	font-size: 14px;
	text-align: center;
	line-height: 50px;
}

.c-layer-select .c-layer-active {
	background-color: #daeeff;
}

.c-layer-submit {
	border-radius: 5px;
	background: linear-gradient(180deg, rgb(83, 178, 255) 0%, rgb(44, 126, 255) 100%);
	width: 454px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	color: #FFF;
	font-size: 20px;
	margin-top: 30px;
}

.detail-title {
	font-size: 18px;
	font-weight: bold;
	color: rgb(0, 0, 0);
	margin-bottom: 85px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.detail-title .btn-upload {
	font-size: 18px;
	width: 150px;
	height: 50px;
	position: relative;
}

.detail-item .create-time {
	font-size: 14px;
	color: rgb(153, 153, 153);
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.detail-item .upload-user {
	border-radius: 2px;
	background: linear-gradient(180deg, rgb(230, 230, 230) 0%, rgb(210, 210, 210) 100%);
	padding: 2px 8px;
	margin-left: 10px;
	font-size: 12px;
}

.file-info {
	width: 728px;
	height: 74px;
	border-radius: 5px;
	background-color: rgb(238, 241, 244);
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	padding: 0 35px 0 10px;
}

.file-detail-info {
	display: flex;
	flex-direction: column;
	padding-top: 24px;
	margin-left: 12px;
	cursor: pointer;
}

.file-name {
	font-size: 14px;
	color: rgb(50, 50, 50);
	margin-bottom: 4px;
}

.file-size {
	font-size: 14px;
	color: #bbbbbb;
}

.file-close1 {
	cursor: pointer;
}

#upload {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}