.footer {
    background: var(--color1);
}

.filings {
    width: 100%;
    background: var(--color2);
    height: 60px;
    font-size: 16px;
    text-align: center;
    line-height: 60px;
}

.footer-info {
    width: 100%;
    height: 162px;
}

.footer-info-width {
    height: 162px;
    padding-top: 32px;
    box-sizing: border-box;
}

.footer-info-width .items {
    text-align: center;
    padding-top: 16px;
}

.footer-info-width .items a {
    color: var(--color11);
    font-size: 16px;
}

/* 移动端公共样式 */
@media screen and (max-width: 768px) {
	.footer{
		margin-top: 20px;
	}
	.footer-info-width .items{
		padding-top: 10px;
	}
	.footer-info-width .items:nth-child(2){
		padding-top: 0;
	}
	.footer-info-width .items .flex{
		flex-direction: column;
	}
	.footer-info-width .items .flex div{
		margin-top: 10px;
	}
}

/* pc端样式 */
@media screen and (min-width: 768px) {
	.footer-info-width .items .flex{
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer-info-width .items .flex div{
		margin-right: 10px;
	}
}