@charset "utf-8";
/* CSS Document */
* {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    body {
      background: #f8fafc;
      margin: 0;
      padding: 0;
    }
    .in_industries {
      max-width: 1500px;
      margin: 0px auto;
      width: 100%;
      margin-top: 80px;
      padding-bottom: 100px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .in_industries_tit {
      font-size: 34px;
      line-height: 40px;
      font-weight: 600;
      margin-bottom: 2rem;
    }
    .industries-layout {
      display: flex;
      gap: 50px;
      flex-wrap: wrap;
    }
    .industries-desc {
      flex: 1.2;
      min-width: 220px;
      font-size: 1.1rem;
      line-height: 1.5;
      color: #2c3e50;
      
      padding: 1.8rem;
      border-radius: 28px;
      align-self: flex-start;
      
    }
    /* 滚动容器核心样式 */
    .scroll-carousel-container {
      flex:5;
      min-width: 0;
      position: relative;
    }
    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
    }
    .scroll-track {
      overflow-x: auto;
      scroll-behavior: auto;
      cursor: grab;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .scroll-track::-webkit-scrollbar {
      display: none;
    }
    .scroll-track.dragging {
      cursor: grabbing;
      user-select: none;
    }
    .cards-container {
      display: flex;
      gap: 24px;
      padding: 8px 4px 16px 4px;
      flex-wrap: nowrap;
    }
    /* 卡片样式 */
    .card-item {
      flex-shrink: 0;
      background: #ffffff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.12);
      transition: transform 0.25s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .card-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.2);
    }
    .card-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .card-item:hover img {
      transform: scale(1.02);
    }
    .card-body-custom {
      padding: 1.2rem 1rem 1.5rem;
    }
    .card-body-custom h5 {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: #1e2a3e;
    }
    .card-body-custom p {
      font-size: 0.9rem;
      color: #475569;
      margin-bottom: 0;
    }
    .badge-industry {
      background: #eef2ff;
      color: #0d6efd;
      border-radius: 40px;
      padding: 0.25rem 1rem;
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
    }
    /* 自定义滚动条 + 箭头区域 */
    .scroll-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 24px;
      gap: 16px;
    }
    .scrollbar-area {
      flex: 1;
      position: relative;
    }
    .custom-scrollbar {
      background: #e2e8f0;
      height: 6px;
      border-radius: 10px;
      position: relative;
      cursor: pointer;
      transition: height 0.1s;
      width: 100%;
    }
    .custom-scrollbar:hover {
      height: 8px;
    }
    .custom-scroll-thumb {
      position: absolute;
      left: 0%;
      top: 0;
      height: 100%;
      background: linear-gradient(135deg, #0d6efd, #0a58ca);
      border-radius: 10px;
      cursor: grab;
      transition: none;
      min-width: 30px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }
    .custom-scroll-thumb:active {
      cursor: grabbing;
    }
    .arrows-group {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }
    .arrow-btn {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 60px;
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
      color: #1e2a3e;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .arrow-btn:hover {
      background: #0d6efd;
      border-color: #0d6efd;
      color: white;
      transform: scale(1.02);
    }
    .arrow-btn:active {
      transform: scale(0.96);
    }
    @media (max-width: 559px) {
      .industries-layout {
        flex-direction: column;
      }
    }
    @media (max-width: 640px) {
      .arrow-btn {
        width: 38px;
        height: 38px;
      }
      .custom-scrollbar {
        height: 5px;
      }
		
	 
		
    }
	
	@media (max-width: 760px){
	.industries-desc {     
      min-width: 100%;      
    }	
		
		
	}

