.footer-content {
	position: relative;
  width: 100%;
	display: flex;
  flex-direction: row;
  flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	font-size: 0.14rem;
	background-color: #ffffff;
	text-decoration: none;
	padding-bottom: 40px;
	text-align: left;
}
.footer-content-title{
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  padding: 30px 0;
}
.footer-content-item{
  flex: 1;
  max-width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px;
}
.friend-link-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.friend-link {
  font-size: 14px;
  margin: 6px 16px 6px 0;
  color: #333333;
  line-height: 1.7;
}
.friend-link-img-view{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 18px;
}
.friend-link-img{
  width: 100px;
  height: 100px;
  border: 1px solid #eeeeee;
  margin-top: 4px;
}

.friend-link-icon {
  width: 18px; 
  height: 18px; 
  background: #333333; 
  padding: 5px; cursor: pointer;
  border-radius: 6px;
  margin-right: 10px;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
	.friend-link-img{
    width: 60px;
    height: 60px;
  }
  .footer-content-item{
    max-width: 100%;
  }
}