
.container03 {
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.container03 .left {
    width: 31.25%;
    background: #002573;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.container03 .left h3 {
    font-size: 1.75rem;
    color: #fff;
    font-family: HelveticaNeueLTPro-HvCn;
    text-transform: uppercase;
}
.container03 .left h5 {
    font-size: 1.5rem;
    color: #fff;
}
.container03 .left h6 {
    font-size: 1.125rem;
    color: #fff;
    opacity: .8;
    padding: 0px 20px;
    line-height: 40px;
}
.container03 .right {
    width: calc(100% - 31.25%);
    padding: 1.25rem 0 1.25rem 3.5rem;
    background: #fdfdfd;
    border-top: #e8e9eb 1px solid;
    border-bottom: #e8e9eb 1px solid;
}
.container03 .right .right_box {
;
}
.list_box_03 {
    display: flex;
    margin: 0 -.5em;
    flex-wrap: wrap;
}
.list_box_03 li {
    width: 20%;
    padding: 5px .5rem;
}
.list_box_03 li a {
    position: relative;
    display: block;
}
.list_box_03 li a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: #e5e5e5 1px solid;
}
.list_box_03 li .img .img_hezi {
    padding-bottom: 50% !important;
}

/* CSS Variables */
:root {
--radius: 0.5rem;
--background: oklch(1 0 0);
--foreground: oklch(0.13 0.028 261.692);
--card: oklch(1 0 0);
--card-foreground: oklch(0.13 0.028 261.692);
--primary: oklch(0.55 0.18 250);
--primary-foreground: oklch(1 0 0);
--secondary: oklch(0.97 0.005 260);
--secondary-foreground: oklch(0.13 0.028 261.692);
--muted: oklch(0.97 0.005 260);
--muted-foreground: oklch(0.55 0.02 260);
--border: oklch(0.92 0.01 260);
}
.dark {
--background: oklch(0.15 0.02 260);
--foreground: oklch(0.98 0.005 260);
--card: oklch(0.18 0.02 260);
--card-foreground: oklch(0.98 0.005 260);
--primary: oklch(0.65 0.18 250);
--primary-foreground: oklch(0.15 0.02 260);
--secondary: oklch(0.25 0.02 260);
--secondary-foreground: oklch(0.98 0.005 260);
--muted: oklch(0.25 0.02 260);
--muted-foreground: oklch(0.65 0.02 260);
--border: oklch(0.3 0.02 260);
}
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.4;
}
/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
.container {
}
}

@media (min-width: 1024px) {
.container {
}
}
/* Page Section */
.page-section {
    min-height: 60vh;
    background-color: var(--secondary);
    padding: 3rem 0 0 0;
}

@media (min-width: 768px) {
.page-section {
}
}
/* Page Section */
.page-wg {
    min-height: 170px;
   
}

@media (min-width: 768px) {
.page-wg {
}
}
.wrap2-2 {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    background-color: var(--secondary);
    padding: 0px;
}
/* Header */

.section-title-1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
      font-weight: bold;
      color: #111827;
  
    max-width: 20rem;
    margin: 0 auto;
    
    
    
}

@media (min-width: 768px) {
.section-title {
    font-size: 1.875rem;
}
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
.product-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1024px) {
.product-grid {
    grid-template-columns: repeat(5, 1fr);
}
}

/* Product Card */
.product-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}
/* Product Image */
.product-image-wrapper {
    aspect-ratio: 4 / 3;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(243, 244, 246, 1));
    display: flex;
    align-items: center;
    justify-content: center;
}
.dark .product-image-wrapper {
    background: linear-gradient(to bottom right, rgba(55, 65, 81, 1), rgba(31, 41, 55, 1));
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Product Content */
.product-content {
    padding: 1.25rem;
}
.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}
.product-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.tag-link {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.tag-link:hover {
    background-color: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}
.dark .tag-link {
    background-color: rgba(59, 130, 246, 0.2);
}
.dark .tag-link:hover {
    background-color: rgba(59, 130, 246, 0.3);
}
/* Specs */
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.spec-item {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}
.spec-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

   
   

    /* Main content */
    .main-1 {
      max-width: 1400px;
      margin: 0 auto;
      padding: 3.375rem 0rem 0;
    }

    .sections-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 1400px;
      margin-top: 3.375rem;
    }

    @media (min-width: 768px) {
      .sections-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Expert section card */
    .expert-section {
      background: white;
      border-radius: 0.75rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
    }

    .section-header {
     
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem; 
 
    }

.section-description {
    color: var(--muted-foreground);
    max-width: 20rem;
    margin: 0 auto;
}


    .section-title {
     font-size: 1.675rem;
    line-height: 1.675rem;
      font-weight: bold;
      color: #111827; width:80%;float: left;
    }



    .view-all-link {
      font-size: 1rem;
      font-weight: 700;
      color: #046ebb;
      text-decoration: none;
      transition: color 0.2s;width:20%;
     
      
      
    }

    .view-all-link:hover {
      color: #047857;
    }

    /* Scroll container with floating arrows */
    .scroll-wrapper {
      position: relative;
      overflow: hidden;
    }

    .scroll-container {
      display: flex;
      gap: 1.25rem;
      overflow-x: auto;
      padding-bottom: 1rem;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
      scrollbar-color: #046ebb #f3f4f6;
      -webkit-overflow-scrolling: touch;
      width: calc(186px * 3 + 1.25rem * 2);
    }

    .scroll-container::-webkit-scrollbar {
      height: 6px;
    }

    .scroll-container::-webkit-scrollbar-track {
      background: #f3f4f6;
      border-radius: 3px;
    }

    .scroll-container::-webkit-scrollbar-thumb {
      background: #046ebb;
      border-radius: 3px;
    }

    /* Floating arrow buttons - always visible */
    .scroll-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition: all 0.2s;
      cursor: pointer;
      border: none;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(4px);
    }

    .scroll-arrow.left {
      left: 0.5rem;
    }

    .scroll-arrow.right {
      right: 0.5rem;
    }

    .scroll-arrow:hover {
      background: white;
    }

    .scroll-arrow svg {
      width: 1.5rem;
      height: 1.5rem;
      color: #374151;
    }

    /* Doctor card wrapper */
    .doctor-item {
      flex-shrink: 0;
      width: 186px;
      scroll-snap-align: start;
    }

    .doctor-card {
      width: 186px;
      height: 124px;
      background: white;
      border-radius: 0.75rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      border: 1px solid #f3f4f6;
      overflow: hidden;
      transition: all 0.3s;
    }

    .doctor-card:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transform: translateY(-0.25rem);
    }

    .doctor-avatar {
      width: 100%;
      height: 100%;
     
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    
    .doctor-avatar img{
     width: 100%;
      height: 100%;
    
    }
    

    .doctor-avatar svg {
      width: 100%;
      height: 100%;
      color: #046ebb;
    }

    .doctor-name {
      text-align: center;
      margin-top: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: #111827;
      white-space: nowrap;/* 文字不换行 */
  overflow: hidden;    /* 超出容器隐藏 */
  text-overflow: ellipsis; /* 超出末尾显示省略号... */
      
      
      
    }
