.content-selects {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px 0;
  color: #000;
  font-size: 16px;
  font-family: 'Microsoft YaHei';
}

.link-box {
  width: 300px;
  height: 36px;
  margin: 0 65px 0 10px;
}

.link-box .select-btn {
  position: relative;
  padding: 0 20px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.link-box .select-btn span {
  background: url(../../images/icon/下.svg) center no-repeat;
  position: absolute;
  background-size: 18px;
  right: 0px;
  top: 26%;
  display: block;
  width: 40px;
  height: 20px;
}

.link-box .select-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  width: 100%;
  max-height: 176px;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 999;
  padding: 5px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s 0s,visibility .2s 0s;
}
.link-box .select-link.visible {
  opacity: 1;
  visibility: visible;
}
.link-box .select-link a {
  width: 25%;
  padding: 10px;
  color: #000;
  box-sizing: border-box;
}

.footer{
	min-height: 150px;
	margin-top: 20px;
  background-color: #f2f2f2;
  padding: 10px 0;
}

.footer_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer_left {
  width: 650px;
  text-align: center;
}

.footer_href_first,.footer_second,.footer_third{
	margin-bottom: 8px;
}

.footer_left .footer_href_first a,.footer_second a,.footer_third a{
	font-size: 14px;
	font-family: "Microsoft YaHei";
	color: #000;
	margin: 5px;
}

.footer_right{
	width: 650px;
}

.footer_right_text{
	display: inline-block;
	width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #e9e9e9;
}

.footer_right_contant img {
    height: 55px; /* 与文本链接的高度相同 */
    margin: 0 5px; /* 图片之间的间距 */
    vertical-align: middle; /* 确保图片垂直居中 */
  }

.footer_right_contant dd {
  font-size: 14px;
  color: #000;
  font-family: "Microsoft YaHei";
  margin-bottom: 5px;
}

.footer_line{
	border-bottom: 1px solid #e4e4e4; /* 2像素宽的黑色实线 */
	clear: both;
}

.footer_address{
	margin-top: 10px;
	text-align: center;
}

.footer_address a{
	font-size: 14px;
	font-family: 微软雅黑;
	color: #000;
}

.footer_address a:last-child{
	margin-left: 15px;
}

.footer-links .footer_href_first a ,.footer_second a{
	display: inline;
	margin-right: 10px; /* 为链接之间添加一些间距 */
}

.footer-links .footer_href_first a:last-child ,.footer_second a{
  	margin-right: 0; /* 移除最后一个链接右侧的间距 */
}

/* 移动端 */
@media (max-width: 768px) {
  .footer {
    width: 100%;
  }
  .content-selects{
    flex-wrap: wrap;
    gap: 6px;
  }
  .link-box {
    width: 100%;
    margin: 0;
    padding: 0 10px;
  }
  .footer_left {
    width: 100%;
  }
  .footer_right {
    width: 100%;
  }
  .footer_right_contant {
    padding-left: 10px;
  }
}
