/* 底部整体 */
.bcom-footer {
  background: #333333;
  color: #cccccc;
  font-size: 12px;
  margin-top: 40px;
}

.bcom-footer a {
  color: #cccccc;
  text-decoration: none;
}

.bcom-footer a:hover {
  color: #4DBDC3; /* 和原站一致的蓝绿色高亮 */
}

/* 中间主体区域 */
.bcom-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* 左侧多栏链接 */
.bcom-footer-links {
  display: flex;
  gap: 60px;
}

.bcom-footer-links dl {
  margin: 0;
}

.bcom-footer-links dt {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}

.bcom-footer-links dd {
  margin: 0 0 6px;
}

.bcom-footer-links dd a {
  font-size: 12px;
  color: #cccccc;
}

/* 中间二维码区域 */
.bcom-footer-qrcode {
  text-align: center;
}

.bcom-footer-qrcode .qrcode-box {
  width: 96px;
  height: 96px;
  margin: 0 auto 8px;
  background: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.bcom-footer-qrcode .qrcode-box img {
  display: block;
  width: 100%;
  height: 100%;
}

.bcom-footer-qrcode .qrcode-box span {
  font-size: 12px;
  color: #888888;
}

.bcom-footer-qrcode p {
  margin: 0;
  line-height: 1.6;
  color: #cccccc;
}

/* 右侧电话区域 */
.bcom-footer-contact {
  text-align: right;
}

.bcom-footer-contact .phone {
  font-size: 20px;
  color: #4DBDC3;
  margin-bottom: 6px;
}

.bcom-footer-contact .time {
  font-size: 12px;
  color: #bbbbbb;
  margin-bottom: 12px;
}

.bcom-footer-contact .btn-contact {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid #4DBDC3;
  border-radius: 20px;
  font-size: 12px;
  color: #4DBDC3;
}

.bcom-footer-contact .btn-contact:hover {
  background: #4DBDC3;
  color: #ffffff;
}

/* 底部版权区域 */
.bcom-footer-bottom {
  border-top: 1px solid #444444;
  padding: 12px 0 20px;
  text-align: center;
  color: #777777;
  font-size: 12px;
}

.bcom-footer-bottom a {
  color: #4DBDC3;
}

.bcom-footer-bottom a:hover {
  text-decoration: underline;
}

/* 简单自适应：小屏改为上下排 */
@media (max-width: 960px) {
  .bcom-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 20px;
  }

  .bcom-footer-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
  }

  .bcom-footer-qrcode {
    margin-bottom: 20px;
  }

  .bcom-footer-contact {
    text-align: left;
  }
}
