.box1 {
	padding-top: 0.5rem;
	padding-bottom: 1.2rem;
}
.box1 .cate_list {
	display: flex;
}

.box1 .cate_list a {
	border: 0.01rem solid rgba(214, 214, 214, 1);
	border-radius: 0.5rem;
	width: fit-content;
	padding: 0 0.3rem;
	color: #333;
	line-height: 0.4rem;
	font-size: 0.18rem;
	display: block;
	margin-right: 0.4rem;
}

.box1 .cate_list a:hover,
.box1 .cate_list a.active {
	color: #fff;
	background: var(--c);
	border: 0.01rem solid var(--c);
}

.box1 .title {
	font-size: 0.2rem;
	color: #333333;
	line-height: 0.7rem;
	padding-left: 0.18rem;
	position: relative;
	transition: var(--s_tran);
}

.box1 .title::before {
	content: '';
	width: 0.08rem;
	height: 0.08rem;
	border-radius: 50%;
	display: block;
	background: var(--c);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.box1 .item {
	border-bottom: 0.01rem dashed #B6B6B6;
}

.box1 .date {
	white-space: nowrap;
	color: #8A8A8A;
	font-size: 0.16rem;
}

.box1 .container:hover .title {
	color: var(--c);
}
.box1 .container {
	justify-content: space-between;
}

.box1 .con_list {
	border-top: 0.01rem solid rgba(220, 220, 220, 1);
	margin-top: 0.5rem;
}
@media only screen and (max-width: 1024px) {
    .box1 .con_list{
        margin-top: .3rem;
    }
    .box1 .title{
        font-size: 0.24rem;
    }
    .box1 .date{
        font-size: 0.24rem;
    }
.box1 .cate_list a{
    font-size: 0.24rem;
}
.box1 .container{
    display: block;
}
}






