@charset "UTF-8";
.ProductDetailPage {
  background-color: #fff;
  font-family: "Helvetica", "Arial", sans-serif;
  color: #333;
  line-height: 1.5;
  padding-bottom: 70px;
}

.ProductCarousel .ProductInspectArea {
  width: 100%;
  position: relative;
}
.ProductCarousel .ProductInspectArea .product-video {
  width: 100%;
  display: none;
  object-fit: cover;
}
.ProductCarousel .ProductInspectArea .product-video.active {
  display: block;
}
.ProductCarousel .ProductInspectArea .image-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: none;
}
.ProductCarousel .ProductInspectArea .image-carousel .carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}
.ProductCarousel .ProductInspectArea .image-carousel .carousel-track img {
  width: 100%;
  flex-shrink: 0;
}
.ProductCarousel .ProductInspectArea .image-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.ProductCarousel .ProductInspectArea .image-carousel .carousel-btn.prev {
  left: 10px;
}
.ProductCarousel .ProductInspectArea .image-carousel .carousel-btn.next {
  right: 10px;
}
.ProductCarousel .ProductInspectArea .image-carousel.active {
  display: block;
}
.ProductCarousel .MediaTabs {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.ProductCarousel .MediaTabs .tab-btn {
  flex: 1;
  border: none;
  background: #f5f5f5;
  padding: 10px 0;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.ProductCarousel .MediaTabs .tab-btn i {
  margin-right: 5px;
}
.ProductCarousel .MediaTabs .tab-btn.active {
  background: #2196f3;
  color: #fff;
}
.ProductCarousel .MediaTabs .tab-btn:not(:last-child) {
  border-right: 1px solid #e0e0e0;
}

.section-title {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 10px;
  padding-left: 10px;
  border-left: 4px solid #2196f3;
}

.ProductInfo {
  padding: 0 15px;
}
.ProductInfo .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ProductInfo .info-list li {
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px dashed #ddd;
}
.ProductInfo .info-list li span {
  font-weight: bold;
  margin-right: 8px;
}

.Specifications {
  padding: 0 15px;
}
.Specifications .spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.Specifications .spec-list li {
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px dashed #ddd;
}
.Specifications .spec-list li span {
  font-weight: bold;
  margin-right: 8px;
}

.Description {
  padding: 0 15px;
  font-size: 14px;
  color: #555;
}
.Description p {
  margin: 10px 0;
}
.Description p img {
  max-width: 350px;
}
.Description iframe {
  max-width: 350px;
}

.UserComment {
  padding: 0 15px;
}
.UserComment .UserCommentCard {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 10px;
}
.UserComment .UserCommentCard .username {
  font-weight: bold;
  margin-bottom: 4px;
}
.UserComment .UserCommentCard .comment {
  font-size: 14px;
  color: #444;
}
.UserComment .show-more-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: #2196f3;
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

.CommonArea {
  padding: 0 15px 15px;
}
.CommonArea .recommend-list {
  display: flex;
  gap: 10px;
}
.CommonArea .recommend-list .recommend-card {
  flex: 1;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}

.Additions {
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  margin-top: 16px;
}
.Additions .section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #222;
}
.Additions .addition-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.Additions .addition-card {
  display: flex;
  align-items: center;
  background: #fafafa;
  border-radius: 10px;
  padding: 10px 12px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.Additions .addition-card:hover {
  background: #f0f0f0;
}
.Additions .addition-card .addition-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #d9534f;
  flex-shrink: 0;
}
.Additions .addition-card .addition-icon i {
  font-size: 22px;
}
.Additions .addition-card .addition-icon.image-icon {
  background: none;
}
.Additions .addition-card .addition-icon.image-icon img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #eee;
}
.Additions .addition-card .addition-info {
  margin-left: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.Additions .addition-card .addition-info .addition-name {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.Additions .addition-card .addition-info .addition-meta {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.purchase-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 70%;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.purchase-popup .popup-header {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
.purchase-popup .popup-body {
  height: 100px;
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.purchase-popup .popup-footer {
  padding: 12px;
  border-top: 1px solid #eee;
  text-align: center;
}
.purchase-popup .popup-footer .confirm-btn {
  width: 100%;
  padding: 12px;
  background: #ff4d4f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.option-group {
  margin-bottom: 16px;
}
.option-group h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}
.option-group .sku-item {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  font-size: 14px;
  cursor: pointer;
}
.option-group .sku-item input {
  margin-right: 6px;
}
.option-group .quantity-selector {
  display: flex;
  align-items: center;
}
.option-group .quantity-selector .qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  background: #f8f8f8;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  text-align: center;
}
.option-group .quantity-selector .qty-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  margin: 0 4px;
}
.option-group.total-price {
  font-size: 16px;
  color: #ff4d4f;
  font-weight: bold;
}
.option-group.total-price span {
  margin-left: 8px;
}

.related-products-container {
  overflow-x: hidden;
  overflow-y: auto;
  /* Accessory SKU List (Modal Content Only) */
  /* 单个配件项 */
  /* 勾选框 */
  /* 配件图片 */
  /* 配件信息 */
  /* 数量控制 */
}
.related-products-container .product-spec {
  padding: 12px;
}
.related-products-container .accessory-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  gap: 10px;
}
.related-products-container .accessory-item:last-child {
  border-bottom: none;
}
.related-products-container .accessory-check {
  position: relative;
  flex-shrink: 0;
}
.related-products-container .accessory-check input {
  display: none;
}
.related-products-container .accessory-check .check-mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid #ccc;
  display: block;
  position: relative;
}
.related-products-container .accessory-check input:checked + .check-mark {
  background: #000;
  border-color: #000;
}
.related-products-container .accessory-check input:checked + .check-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.related-products-container .accessory-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f6f8;
}
.related-products-container .accessory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-products-container .accessory-info {
  flex: 1;
  min-width: 0;
}
.related-products-container .accessory-info .accessory-name {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
  margin-bottom: 4px;
}
.related-products-container .accessory-info .accessory-sku {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
  word-break: break-all;
}
.related-products-container .accessory-info .accessory-price {
  font-size: 13px;
  font-weight: 600;
  color: #e5533d;
}
.related-products-container .accessory-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-products-container .accessory-qty .qty-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: #f7f7f7;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}
.related-products-container .accessory-qty .qty-btn:active {
  background: #e5e5e5;
}
.related-products-container .accessory-qty .qty-input {
  width: 36px;
  height: 26px;
  border: none;
  text-align: center;
  font-size: 13px;
  outline: none;
  /* 移除 number 输入箭头 */
}
.related-products-container .accessory-qty .qty-input::-webkit-outer-spin-button, .related-products-container .accessory-qty .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*# sourceMappingURL=ProductDetails.css.map */
