.bottom-caidan {
    background-color: #f5f3f0;
    padding: 20px 0;
}

.area {
    max-width: 1200px; /* 设置最大宽度 */
    margin: 25px auto;
    padding: 0 15px; /* 添加内边距以适应不同屏幕 */
}

.lists {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    justify-content: space-between;
}

.lists ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 14%; /* 初始宽度 */
    box-sizing: border-box;
}

.lists ul div {
    color: #333;
    font-size: 14pt;
    margin-bottom: 25px;
}

.lists ul li {
    margin-bottom: 10px;
}

.lists ul li a {
    text-decoration: none;
    color: #686868;
}
.href a{
	 text-decoration: none;
	 color: #333;
}
@media (max-width: 1450px) {
    .area{
		width: 80%;
		padding-left: 5%;
	}
}
/* 媒体查询 */
@media (max-width: 1024px) {
    .lists ul {
        width: 20%; /* 调整宽度 */
    }
}

@media (max-width: 768px) {
    .lists ul {
        width: 25%; /* 调整宽度 */
    }
}

@media (max-width: 480px) {
    .bottom-caidan{
		display: none;
	}
}
/*
.lists ul li a:hover {
    color: lightgray;
}*/