/* 全局样式重置和基础设置 */


    /* 搜索框样式 */
    .search-container {
      padding: 16px;
    }

    .search-box {
      display: flex;
      align-items: center;
      background-color: #fff;
      border-radius: 8px;
      padding: 8px 12px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .search-box input {
      flex: 1;
      border: none;
      outline: none;
      padding: 8px;
      font-size: 14px;
    }

    .search-box .search-icon {
      width: 34px;
      height: 37px;
	  background-image: url('../img/ss.png');
      background-repeat: no-repeat;
      background-position: center;
      cursor: pointer;
    }

    /* 政策咨询类型样式 */
    .policy-type-container {
      background-color: #fff;
      margin: 0 16px 16px;
      border-radius: 8px;
      padding: 16px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .policy-type-container h2 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 16px;
    }

    .policy-type-slider {
      position: relative;
    }

    .policy-type-tabs {
      display: flex;
      overflow-x: auto;
      padding-bottom: 12px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    .policy-type-tabs::-webkit-scrollbar {
      display: none;
    }

    .policy-type-tab {
      padding: 8px 16px;
      margin-right: 8px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
      white-space: nowrap;
      cursor: pointer;
      background-color: #fff;
      transition: all 0.3s ease;
      position: relative;
    }

    .policy-type-tab.active {
      background-color: #fff;
      color: #6dbda1;
      border-color: #6dbda1;
      font-weight: 500;
    }

    .policy-type-tab.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      right: -1px;
      width: 16px;
      height: 16px;
      background-color: #6dbda1;
      border-radius: 3px 3px 8px 0px;
      border-top: 1px solid #6dbda1;
      border-right: 1px solid #6dbda1;
    }

    .policy-type-tab.active::before {
      content: '';
      position: absolute;
      bottom: 3px;
      right: 3px;
      width: 6px;
      height: 3px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-45deg);
      z-index: 1;
    }

    .policy-type-tab:hover:not(.active) {
     /* background-color: #f0f0f0;*/
    }

    /* 滑动控制按钮 */
    .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
	  display:none;
    }

    .scroll-btn.left {
      left: -8px;
    }

    .scroll-btn.right {
      right: -8px;
    }

    .policy-type-slider:hover .scroll-btn {
      opacity: 1;
      visibility: visible;
    }

    .scroll-btn:hover {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* 指示器样式 */
    .slider-indicators {
      display: flex;
      justify-content: center;
      margin-top: 12px;
	  display:none;
    }

    .indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #ddd;
      margin: 0 3px;
      transition: background-color 0.3s ease;
    }

    .indicator.active {
      background-color: #4080ff;
    }

    /* 咨询列表样式 */
    .consultation-list-container {
      background-color: #fff;
      margin: 0 16px 16px;
      border-radius: 8px;
      padding: 16px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .consultation-item {
      display: flex;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .consultation-item:last-child {
      border-bottom: none;
    }

    .consultation-item .icon {
      width: 27px;
      height: 27px;
      background-image: url('../img/zi.png');
      background-repeat: no-repeat;
      background-position: center;
      margin-right: 12px;
    }

    .consultation-item .content {
      flex: 1;
      font-size: 14px;
      color: #333;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .consultation-item .date {
      font-size: 12px;
      color: #999;
      margin-left: 8px;
    }

  

   

    /* 悬浮咨询按钮样式 */
    .floating-consult-btn {
      position: fixed;
      bottom: 6%;
      right: 10px;
      z-index: 20;
      animation: float 3s ease-in-out infinite;
    }

    .floating-consult-btn a {
      display: block;
    }

    .floating-consult-btn img {
      width: 180px;
      height: auto;
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .floating-consult-btn img:hover {
      transform: scale(1.05);
    }
.policy-type-taba{
	    background-color: #fff;
		color:#333;
}