/* 少量CSS样式 */
    .site-footer1 {
      background-color: #2c2e3e; /* 深色背景 */
      color: #fff; /* 文字白色 */
      padding: 40px 0;
      font-family: "Microsoft Yahei", sans-serif;
    }
	.site-footer1 a, .site-footer1 a:link{
		color:rgba(255,255,255,.75);
	}

	.site-footer1 a:hover{
		color:rgba(255,255,255,.9);
	}



    .footer-top1 {
      display: flex;
      flex-wrap: wrap; /* 屏幕变窄时自动换行，实现自适应 */
      justify-content: space-around;
      margin-bottom: 30px;
    }

    .footer-column1 {
      flex: 1;
      min-width: 150px; /* 每列最小宽度，防止过度压缩 */
    
    }

    .footer-column1 h3 {
      font-size: 18px;
      margin-bottom: 15px;
      font-weight: normal;
    }

    .footer-column1 ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column1 ul li {
      margin-bottom: 10px;
      cursor: pointer; /* 鼠标悬浮变手型，暗示可点击 */
    }

    /* 联系我们列的特殊样式 */
    .footer-column.contact1 {
      text-align: center;
    }

    .phone1 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .qr-code1 {
      display: block;
      margin: 0 auto 10px; /* 二维码水平居中 */
      width: 100px; /* 二维码宽度，可根据实际调整 */
      height: 100px;
      background: #fff; /* 占位背景，实际替换为二维码图片 */
    }

    .footer-links1 {
      text-align: center;
      margin-bottom: 20px;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      margin: 0 5px;
    }

    .footer-copyright1 {
      text-align: center;
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-copyright img {
      vertical-align: middle; /* 公安图标垂直居中 */
    }
    
@media(max-width:850px){
    .site-footer1{
        padding:20px;
    }
     .footer-column1{
         width:50%;
         margin:0 0 30px 0;
     }
     .phone1 {
      font-size:18px;
    }
    .footer-copyright1{
        font-size:14px;
        line-height:1.5;
    }
}
    