﻿/* 采购公告样式 */
.announcement {
  padding: 60px 0 0px 0;
  background-color: #fff;
}

/* 公告标签样式 */
.announcement-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.announcement-tabs .tab-btn {
  padding: 10px 20px 20px 20px;
  margin-right: 30px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.announcement-tabs .tab-btn:hover {
  color: var(--primary-color);
}

.announcement-tabs .tab-btn.active {
  color: var(--primary-color);
}

.announcement-tabs .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  /* background-color: var(--primary-color); */
}

.announcement-tabs .more-link {
  margin-left: auto;
  color: #b91b22;
  font-size: 16px;
}

/* 公告内容区域样式 */
.announcement-content {
  display: block; /* 默认显示 */
}

.announcement-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.announcement-item {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dashed #ddd;
  width: 100%;
  line-height: 20px;
  justify-content: space-between;
}

.announcement-item::before {
  content: '•';
  color: #999;
  margin-right: 10px;
  font-size: 20px;
  flex-shrink: 0;
  /* width: 3%; */
}

.announcement-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}

.announcement-info h4 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s;
  font-size: 16px;
  le t text-align: lett;
  letter-spacing: 1px;
}

.announcement-info h4:hover {
  color: var(--primary-color);
}

.announcement-info p {
  color: #999;
  flex-shrink: 0;
}

/* 针对性修复标题样式 */
@media (min-width: 768px) {
  /* 采购公告 */
  .announcement .section-title .more-link {
    display: none; /* 在公告标题中隐藏更多链接，因为已在标签页中显示 */
  }
}

/* 响应式样式 */
@media (max-width: 767px) {
  .announcement {
    padding: 30px 0;
  }
  
  .announcement .container {
    width: 100%;
    padding: 0 15px;
    max-width: 100%;
  }

  .announcement-info {
    /* flex-direction: column; */
    align-items: center;
    width: 100%;
    justify-content: space-between;
    width: 100%;
    width: 93%;
  }
  
  .announcement-info h4 {
    width: 100%;
    /* margin-bottom: 10px; */
    white-space: normal;
    word-break: break-word;
    line-height: 1.5;
    font-size: 14px;
  }
  
  .announcement-item {
    padding: 10px 0;
    line-height: 10px;
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
  }
  
  .announcement-item::before {
    margin-top: 2px;
  }
  
  /* 移动端标签适配 */
  .announcement-tabs {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  
  .announcement-tabs .tab-btn {
    margin-bottom: 10px;
    font-size: 14px;
    padding: 5px 10px;
    margin-right: 15px;
  }
  
  .announcement-tabs .more-link {
    margin-left: 0;
    width: 100%;
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
  }

  .about{
    padding:30px 0px;
     background-repeat:no-repeat;
  }
  .mobile_business,.performance{
    padding-top:30px !important;
  }

.title-idx-news,.anlizhanshi{
   padding-top:0px !important;
}
}