  .product-detail {
    margin-top: 24px;
    display: flex;
    gap: 24px;
  }

  .product-detail-text {
    width: 474px;
  }

  .product-name {
    font-family: AlibabaPuHuiTi;
    font-size: 28px;
    font-weight: 500;
    line-height: 30px;
    color: #292929;
    padding-bottom: 20px;
    position: relative;
    word-break: break-word;
  }

  .product-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 95px;
    height: 2px;
    background-color: #3875F6;
    z-index: 0;
  }

  .product-description {
    font-family: AlibabaPuHuiTi;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    color: #646464;
  }

  .product-features {
    font-family: AlibabaPuHuiTi;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    color: #646464;
    margin-top: 20px;
  }

  .product-description {
    margin-bottom: 12px;
  }

  .feature-row-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .feature-row {
    display: flex;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }

  .feature-row-flex .feature-row:nth-child(odd) {
    width: 280px;
  }

  .feature-row-flex .feature-row:nth-child(even) {
    width: 190px;
  }

  .feature-label {
    position: relative;
    padding-left: 10px;
    white-space: nowrap;
  }

  .feature-label::before {
    content: '·';
    position: absolute;
    left: -4px;
    font-weight: 900;
    font-size: 16px;
    color: #646464;
  }

  .feature-value {
    flex: 1;
    word-break: break-word;
  }

  .action-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
  }

  .btn-primary {
    min-width: 99px;
    height: 34px;
    background-color: #3875F6;
    color: white;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.8s ease;
    padding: 0 16px;
  }

  .btn-primary:hover {
    background-color: #1B5BE2;
  }

  .btn-secondary {
    min-width: 140px;
    height: 34px;
    background-color: white;
    color: #3875F6;
    border: 1px solid #3875F6;
    box-sizing: border-box;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.8s ease;
    padding: 0 16px;
  }

  .btn-secondary:hover {
    background-color: #EFF4FF;
  }

  .product-detail-container {
    width: 100%;
    margin-top: 32px;
    border-top: 1px dashed #E7E9EC;
    box-sizing: border-box;
    padding-top: 24px;
    font-family: AlibabaPuHuiTi;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    color: #646464;
  }

  .product-detail-container img {
    max-width: 100% !important;
    height: auto;
    object-fit: contain;
  }

  /* 轮播图start */
  /* 轮播图容器 */
  .carousel-container {
    width: 406px;
    position: relative;
  }

  /* 上部显示区域 */
  .carousel-wrapper {
    position: relative;
    width: 100%;
    height: 185px;
  }

  /* 轮播图幻灯片容器 */
  .carousel-slides {
    position: relative;
    width: 330px;
    height: 185px;
    margin: 0 auto;
    overflow: hidden;
  }

  /* 单个幻灯片 */
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide img,
  video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.8s ease;
  }

  .carousel-slide img:hover {
    transform: scale(1.3);
  }

  /* 播放按钮 */
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/static/image/entInfo/play-btn2-b4b37e13999a217fc623d125cbf56eb7.png');
    width: 68px;
    height: 68px;
    background-size: 68px 68px;
    cursor: pointer;
    z-index: 10;
  }

  /* 箭头 */
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.8s ease;
    background-size: 36px 36px;
  }

  .carousel-prev:hover {
    background-image: url('/static/image/entInfo/nav-left-blue-3587662dc3a498334a0737cde79eae11.png');
  }

  .carousel-next:hover {
    background-image: url('/static/image/entInfo/nav-right-blue-7ef332e7e8dc0f870b945f463fcb9183.png');
  }

  .carousel-prev {
    background-image: url('/static/image/entInfo/nav-left-dfe01a5fe8a1934f71ff53e2355d33ec.png');
    left: 0;
  }

  .carousel-next {
    background-image: url('/static/image/entInfo/nav-right-46e1d507a32c34f13981d5f96e1c5677.png');
    right: 0;
  }

  /* 缩略图容器 */
  .thumbnail-container {
    height: 28px;
    display: flex;
    gap: 4px;
    margin-top: 20px;
    justify-content: center;
  }

  .thumbnail-item {
    width: 48px;
    height: 28px;
    padding: 2px;
    border: 1px solid #DBDEE2;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .thumbnail-item:hover {
    border-color: #3875F6;
    transform: scale(1.05);
  }

  .thumbnail-item.active {
    border-color: #3875F6;
    box-shadow: 0 0 0 2px rgba(56, 117, 246, 0.2);
  }

  .thumbnail-item img,
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 轮播图end */


  .video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }

  .video-modal-content video {
    max-width: 100%;
    max-height: 90vh;
  }