* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
}
.header_all {
  width: 100%;
  height: 450px;
  background: url(../images/tzxm_headerBg.png) no-repeat center center;
  background-size: 100% 100%;
  position: relative;
}
.header_up{
      padding-top: 20px;
    margin-left: 240px;
}
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 72px;
  width: auto;
}
#app {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* 页面标题 */
.page-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold; 
  color: #1a1a1a;
  margin-bottom: 30px;
}

/* 描述文本 */
.description-text {
  text-align: center;
  font-size: 18px;
  color: #606266;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* 轮播容器 */
.carousel-container {
  width: 60%;
  margin: 50px auto;
}

.carousel-container .el-carousel {
  border-radius: 8px;
  overflow: hidden;
}

.el-button:hover {
  background-color: #0238b4 !important;
}

/* 轮播容器仅图片，去掉背景色 */
.carousel-container .el-carousel__item {
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-container .el-carousel__item img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 覆盖 carousel 默认 indicator - 隐藏原始，外部插槽自定义 */
.carousel-container .el-carousel__indicators.el-carousel__indicators--outside {
  display: none;
}

/* 自定义轮播指示器 */
.custom-indicators {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 14px;
  user-select: none;
}

.custom-indicator {
  width: 12px;
  height: 12px;
  background: #e0e0e0;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.6, 1.46, 0.84, 1);
  cursor: pointer;
}

.custom-indicator.active {
  width: 32px;
  height: 12px;
  border-radius: 16px;
  background: #409eff;
  box-shadow: 0 0 5px #c3e2ff;
}

.el-tabs__item {
  font-size: 18px;
}

/* 主内容区域 */
.main-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.left-column {
  width: 50%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.right-column {
  width: 460px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 卡片样式 */
.section-card {
  background: #f9fafb;
  border-radius: 8px;
  padding: 25px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a;
}

.section-icon {
  width: 24px;
  height: 24px;
  color: #409eff;
}

/* 推进改革列表 */
.reform-list {
  list-style: none;
}

.reform-list li {
  padding: 12px 0;
  padding-left: 20px;
  position: relative;
  color: #606266;
  font-size: 18px;
  line-height: 1.6;
  transition: transform 0.25s cubic-bezier(0.6, 1.24, 0.64, 1);
}

.reform-list li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: none;
}

.reform-list li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: #409eff;
  font-weight: bold;
}

/* 推进改革列表：悬浮放大效果 */
.reform-list li:hover {
  transform: scale(1.01);
  z-index: 1;
  background: #f9f9f9;
}

/* 文件汇集列表 */
.document-list {
  display: flex;
  flex-direction: column;
}

.document-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f5f7fa;
  border-radius: 6px;
  /* transition: all 0.3s; */
}

.document-title {
  flex: 1;
  font-size: 18px;
  color: #303133;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 15px;
}

.view-btn {
  flex-shrink: 0;
}

/* 资料模板网格 */
.template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.el-button > span {
  font-size: 18px;
  padding: 10px;
}

.template-item {
  padding: 20px;
  text-align: center;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  font-size: 18px;
  color: #606266;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}

/* 资料模板列表：悬浮变灰，去蓝色、阴影 */
.template-item:hover {
  border-color: #dcdfe6;
  color: #303133;
  background: #eee !important;
  box-shadow: none;
  transform: none;
}

/* 业务咨询区域 */
.consultation-tabs {
  margin-bottom: 20px;
}

.consultation-tabs .el-tabs__header {
  margin-bottom: 20px;
}

.contact-scroll-container {
  height: 338px;
  overflow: hidden;
  position: relative;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: scroll-up 20s linear infinite;
}

.contact-list:hover {
  animation-play-state: paused;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.contact-item {
  padding: 20px;
  background: white;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.contact-item:hover {
  background: #ecf5ff;
  transform: translateX(5px);
}

.contact-info {
  flex: 1;
}

.contact-name {
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  margin-bottom: 5px;
}

.contact-role {
  font-size: 13px;
  color: #909399;
}

.contact-phone {
  font-size: 15px;
  color: #409eff;
  font-weight: 500;
}

.consultation-bar {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  border-bottom: 1px solid #e4e7ed;
}

.consultation-btn {
  display: inline-block;
  margin-right: 25px;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  transition: color 0.2s, border-bottom 0.2s;
}

.consult-active,
.consultation-btn:hover {
  color: #409eff;
  border-bottom: 3px solid #409eff;
  background: none;
}

.consultation-list-box {
  padding-top: 10px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .left-column {
    width: 100%;
  }

  .carousel-container {
    width: 100%;
  }

  .main-content {
    flex-direction: column;
  }

  .right-column {
    width: 100%;
  }

  .template-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reform-list li{
    font-size: 16px;
  }
  .document-title{
    font-size: 16px;
  }
  .el-button > span{
    font-size: 16px;
  }
  .template-item{
    font-size: 16px;
  }
  #app {
    padding: 20px 10px;
  }
.header_up{
    margin-left: 50px;
}
  .page-title {
    font-size: 24px;
  }

  .description-text {
    font-size: 16px;
  }

  .carousel-container {
    padding: 15px;
  }

  .section-card {
    padding: 20px;
  }

  .template-grid {
    grid-template-columns: 1fr;
  }

  .contact-scroll-container {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 70px;
    width: 85%;
}

.header_all {
    background-size: 200% 100%;
}
  .page-title {
    font-size: 20px;
  }

  .description-text {
    font-size: 16px;
  }

  .section-header {
    font-size: 22px;
  }

  .document-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .document-title {
    white-space: normal;
    margin-right: 0;
  }
}
