* {
	margin: 0px;
	font-size: 14px;
	font-family: Arial;
	box-sizing: border-box;
}
body {
	max-width: 1000px;
	margin: 0px auto;
	padding: 10px;
	padding-bottom: 5px;
	background: #f5f7fa;
}
summary {
    list-style: none;
}
.text {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.first {
	height: 100px;
	margin-bottom: 10px;
	position: relative;
}
.first-img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.point {
	height: 35px;
	line-height: 35px;
	margin-bottom: 10px;
	border-radius: 10px;
	background: #ffffff;
	position: relative;
	overflow: hidden;
}
.point-text {
	font-weight: bold;
	color: #4d53d6;
	position: absolute;
	white-space: nowrap;
	animation: scroll 15s linear infinite;
}
@keyframes scroll {
	0% { left: 100%; }
	100% { left: -100%; }
}

.main {
	gap: 10px;
	height: calc(100vh - 185px);
	display: flex;
}
.main-same {
	padding: 0px 10px;
	border-radius: 10px;
	background: #ffffff;
	overflow-y: auto;
}
.main-sort {
	width: 25%;
}
.main-sort::-webkit-scrollbar {
	display: none;
}
.main-cont {
	width: 75%;
}
.main-cont::-webkit-scrollbar {
	display: none;
}

.sort-list {
	height: 35px;
	line-height: 35px;
	margin: 10px 0px;
	padding: 0px 5px;
	border-radius: 8px;
	text-align: center;
	color: #333333;
	background: #f1f1f1;
}

.cont-sort {
	height: 25px;
	line-height: 25px;
	margin: 10px 0px;
	padding-left: 5px;
	border-left: 5px solid #4d53d6;
	font-size: 16px;
	font-weight: bold;
}
.cont-list {
	gap: 10px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
}
.cont-card {
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	color: #333333;
	background: #f1f1f1;
}
.cont-icon {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border-radius: 8px;
	float: left;
}
.cont-name {
	height: 25px;
	line-height: 25px;
	font-weight: bold;
}
.cont-desc {
	height: 15px;
	line-height: 15px;
	font-size: 12px;
	color: #666666;
}

.sort-list.dot,
.cont-card:hover {
	color: #ffffff;
	background: #4d53d6;
}

.footer {
	height: 10px;
	line-height: 10px;
	margin-top: 5px;
	font-size: 10px;
	text-align: center;
	color: #666666;
}