.group_footer_content {
  margin-bottom: 30px;
}

.group_footer_top {
  display: flex;
  justify-content: space-between;
}

.group_footer_left {
  flex: 1;
}

.group_fotter_left_item {
  margin-bottom: 20px;
}

.group_fotter_left_item_title {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.group_fotter_left_item_title p {
  margin: 0;
  font-weight: bold;
}

.group_fotter_left_item_title i {
  transition: transform 0.3s ease;
  margin-left: 5px;
  display: block !important;
}

.group_fotter_left_item_title i.expanded {
  transform: rotate(180deg);
}

.group_fotter_left_item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* PC端直接显示 */
@media screen and (min-width: 992px) {
  .group_fotter_left_item ul {
    max-height: none;
    display: block;
  }
}

/* 移动端通过点击展开 */
@media screen and (max-width: 991px) {
  .group_fotter_left_item ul {
    display: none;
    margin-top: 10px;
  }
  
  .group_fotter_left_item ul.expanded {
    display: block !important;
  }

  .group_fotter_left_item_title i {
    display: block !important;
  }
}

.group_fotter_left_item ul li {
  margin-bottom: 10px;
}

.group_fotter_left_item ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.group_fotter_left_item ul li a:hover {
  color: #333;
}

.group_footer_right {
  width: 300px;
}

.group_fotter_right_item_title {
  text-align: left! important;
}

.group_fotter_right_item_title p {
  margin: 0;
  font-weight: bold;
}

.icon_item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: left;
}

.iconBox {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

.iconBox:hover .icon_ewm {
  display: block;
}

.icon_ewm {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.icon_ewm img {
  width: 120px;
  height: 120px;
}

.icon_ewm i {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}

.fotter_statement {
  text-align: center;
  padding-top: 20px;
}

.fotter_statement_middel {
  display: inline-block;
}

.fotter_statement_middel .o_g {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.fotter_statement_middel a {
  color: #666;
  text-decoration: none;
}

.fotter_statement_middel .line {
  width: 1px;
  height: 12px;
  background: #ddd;
}

.iconBox .iconfont {
  font-size: 24px;
  color: #fff;
}

.iconBox:hover .iconfont {
  color: #fff;
}

/* 响应式样式 */
@media screen and (max-width: 991px) {
  .group_footer_top {
    flex-direction: column;
  }
  
  .group_footer_right {
    width: 100%;
    margin-top: 20px;
  }
  
  .group_fotter_left_item_title i {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .group_fotter_left_item {
    margin-bottom: 15px;
  }
  
  .icon_item {
    justify-content: center;
  }
} 

@media screen and (max-width: 600px) {
  .fotter_statement_middel .o_g{
    flex-direction: column;
  }
} 