.twBx {
	max-width: 650px;
	border-radius: 4px;
	border: 1px solid #eeeeee;
}

.conxBox {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #eeeeee;
	background: #f8f8f8;
	overflow: hidden;
	display: block;
}

.tbx {
	border: 1px solid #eeeeee;
}

.tlt {
	width: 100%;
	height: 50px;
	border-bottom: 1px solid #eeeeee;
	background: #fafafa;
}

.tllt {
	height: 50px;
	padding-left: 25px;
	border-right: 1px solid #eeeeee;
}

.tllt:last-child {
	border: none;
}

.t2t {
	border-right: 1px solid #eeeeee;
}

.t2t:last-child {
	border: none;
}

.t3t {
	border-bottom: 1px solid #eeeeee;
}

.t3t:last-child {
	border: none;
}

.bossImg {
	width: 60px;
	height: 75px;
	border-radius: 4px;
}

.hdImg {
	width: 60px;
	height: 60px;
	border-radius: 4px;
}

.logo {
	width: 24px;
	height: 24px;
	border-radius: 50%;
}

.smallImg {
	width: 210px;
	height: 210px;
	border-radius: 4px;
	margin-top: 10px;
	margin-right: 10px;
}

.smallImg:nth-child(3n) {
	margin-right: 0;
}

.fileBox {
	width: 100%;
	height: 60px;
	border-radius: 4px;
	background: #f8f8f8;
}

.audioBox {
	width: 100%;
}

.dColn {
	color: #1d569c;
}

.videoImg {
	width: 650px;
	height: 365px;
	border-radius: 4px;
}

.videoIcon {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.videoidBox {
	width: 650px;
	border-radius: 4px;
	border: 1px solid #eeeeee;
	background: #f8f8f8;
	overflow: hidden;
}

.videoidImg {
	width: 650px;
	height: 365px;
	border-radius: 4px;
}

.sphModl {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.5);
}

.sphModeImg {
	width: 160px;
	height: 160px;
	display: block;
	margin: 0 auto;
}

progress {
	width: 640px;
	/* 设置进度条的宽度 */
	height: 5px;
	/* 设置进度条的高度 */
	color: #39b378;
	/* 设置进度条填充颜色 */
	border-radius: 20px;
}

/* 设置进度条轨道的样式 */
progress::-webkit-progress-bar {
	background-color: #dddddd;
	/* 轨道背景色 */
}

/* 设置进度条填充部分的样式 */
progress::-webkit-progress-value {
	background-color: #39b378;
	/* 填充颜色 */
}

/* 对于非WebKit浏览器（如Firefox），使用以下样式 */
progress[value] {
	/* 重置某些非WebKit浏览器的默认样式 */
	-moz-appearance: none;
	appearance: none;
}

progress[value]::-moz-progress-bar {
	background-color: #39b378;
	/* 填充颜色 */
}