.content {}

.banner {
  /* background: #F1F9F7; */
  width: 100%;
  height: 380px;
  background: url(../public/img/aboutus/AboutUsHeadBg.jpg) center no-repeat;
  background-size: auto 100%;
  padding: 0 12px;
  box-sizing: border-box;
}
.team-msg{
  text-align: center;
  line-height: 30px;
}
.banner-msg {
  max-width: 1200px;
  padding-top: 100px;
  width: 500px;
}

.banner-msg h1 {
  margin-bottom: 20px;
}

.banner-msg p {
  margin-bottom: 40px;
  max-width: 560px;
}

.datile-box {
  max-width: 1200px;
  margin: 0 auto;
}

.TitleBox {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}

.service-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.service-item a {
  text-decoration: none;
  color: #117865;
  margin-top: 50px;
}

.detail-tip {
  margin-bottom: 20px;
}

.detail-tip span {
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 5px;

}

.braner_Text_buttonline {
  margin: 0 auto;
}

.showAll {
  margin: 40px 0;
}

.video-msg {
  text-align: center;
  margin-top: 15px;
}

/* 公司地址板块整体样式 */
.company-address {

  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}

/* 标题样式 */
.address-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

/* 地址卡片容器样式，采用弹性布局 */
.address-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* 单个地址卡片样式 */
.address-card {
  flex: 1 1 calc(25% - 20px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.address-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 卡片内图片样式 */
.address-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* 卡片内标题和文本样式 */
.address-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px;
  color: #333;
}

.address-card p {
  font-size: 14px;
  color: #666;
  margin: 0 15px 15px;
}

/* 总部标识样式 */
.headquarters {
  display: inline-block;
  background: linear-gradient(90deg, #E2F2B3 0%, #D1EB91 50%, #9EDEB7 100%);

  color: #333;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

/* 媒体查询，适配移动端 */
@media (max-width: 768px) {
  .address-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .address-card {
    flex: 1 1 100%;
  }
}

/* 加入我们 */
/* 表格容器，设置最大宽度、居中、内边距，方便在小屏幕下有呼吸感 */
.table-container {

  margin: 0 auto;
  padding: 0 15px;
}

/* 表格样式，宽度100%，边框合并，设置单元格间距 */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

/* 表头单元格样式，背景色、文字颜色、内边距、文本对齐方式 */
th {
  background-color: #f5f5f5;
  color: #333;
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
  width: 25%;
}

/* 表格单元格样式，内边距、边框 */
td {
  padding: 10px;
  border: 1px solid #ddd;
}

/* 用于包裹折叠内容的容器，默认隐藏（最大高度0，溢出隐藏，过渡动画） */
.collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #f9f9f9;
}

/* 隐藏实际的checkbox，用label模拟交互 */
.toggle-checkbox {
  display: none;
}

/* label样式，设置为块级元素，方便点击，文字颜色、内边距、 cursor变化提示可点击 */
.toggle-label {
  display: block;
  color: #009688;
  padding: 5px 0;
  cursor: pointer;
}

/* 当checkbox被选中时，兄弟元素.collapse-content的最大高度设为一个较大值（展示内容） */
.toggle-checkbox:checked~.collapse-content {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

/* 移动端适配，当屏幕宽度小于768px时，调整内边距等，让内容更紧凑 */
@media (max-width: 768px) {
  .table-container {
    padding: 0 10px;
  }

  td,
  th {
    font-size: 14px;
  }
}


/* 折叠面板样式 */
.el-collapse {

  border-radius: 4px;
  background-color: #FFFFFF;
  overflow: hidden;
}

.el-collapse-item {
  border-bottom: 1px solid #EBEEF5;
}

.el-collapse-item:last-child {
  border-bottom: none;
}

.el-collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: #FFFFFF;
  color: #303133;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.el-collapse-header div{
   width: 25%;
}

.el-collapse-header:hover {
  background-color: #FAFAFA;
}

.el-collapse-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 15px;
 background: #F1F9F7;

  color: #606266;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.el-collapse-content.expanded {
  max-height: 1000px;
  opacity: 1;
  padding: 15px;
}

.el-collapse-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
  color: #909399;
}

.el-collapse-arrow.expanded {
  transform: rotate(180deg);
}

.el-nav-title {
  display: flex;
  height: 48px;
  line-height: 48px;
  background: #FAFAFA;

  font-size: 16px;
  justify-content: space-between;
  padding: 0px 16px;
  font-size: 16px;
}
.showyq{
  color: #117865;
}
.el-nav-title div{
  width: 25%;
}

/* 自定义折叠面板主题 */
.is-active{
  background: #F1F9F7;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .el-collapse-header {
    padding: 12px;
    font-size: 14px;
  }

  .el-collapse-content {
    font-size: 14px;
  }
}
.swiper-slide-imgbox{
  text-align: center;
}
.swiper-slide-imgbox img{
  height: 100%;
}
.myteam-box{
  margin-bottom: 80px;
}
.swiper-slide-viede{
  position: relative;
  overflow: hidden;
}
.swiper-slide-viede-bofang{
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
  cursor: pointer;
}
.swiper-button-prev{
  background-image: url('../public/img/aboutus/Group 427320839.png');
  background-size: 55px;
  width: 60px;
}
.swiper-button-next{
  background-image: url('../public/img/aboutus/Group 427320840.png');
  background-size: 55px;
  width: 60px;
}
.email{
  color: #117865;
  margin-top: 15px;
}