/* 自定义样式 */
.transition-transform[data-v-791edae2] {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* 确保组件在移动设备上的响应式显示 */
@media (max-width: 640px) {
.container[data-v-791edae2] {
    padding-left: 1rem;
    padding-right: 1rem;
}
}

.line-clamp-2[data-v-21ef0dc6] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promotion-price[data-v-21ef0dc6] {
  color: #dc2626;
  font-weight: 600;
}
.original-price[data-v-21ef0dc6] {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.75rem;
}
.price-section[data-v-21ef0dc6] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.login-form[data-v-6bab3132] {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
}
.compact-form input[data-v-6bab3132] {
  font-size: 1rem;
  transition: all 0.2s ease;
}
.compact-form input[data-v-6bab3132]:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
@media (max-width: 640px) {
.login-form[data-v-6bab3132] {
    padding: 1.5rem;
    margin: 0 1rem;
}
}

.register-form[data-v-4523026a] {
  max-width: 400px;
  margin: 0 auto;
}
.compact-form input[data-v-4523026a] {
  font-size: 1rem;
  transition: all 0.2s ease;
}
.compact-form input[data-v-4523026a]:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
@media (max-width: 640px) {
.register-form[data-v-4523026a] {
    padding: 1.5rem;
    margin: 0 1rem;
}
.grid-cols-2[data-v-4523026a] {
    grid-template-columns: 1fr;
}
}

.modal-container[data-v-46c9d92e] {
  max-height: 90vh;
}

.bg-aaaa-gray {
  background-color: rgb(152, 152, 152) !important;
}
.bg-bbbb-blue {
  background-color: rgb(230, 238, 254);
}

/* 添加平滑动画效果 */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 确保高度、透明度和位移的过渡更加平滑 */
header > div {
  transition: opacity 0.5s ease, height 0.5s ease, transform 0.5s ease,
    padding 0.5s ease;
  transform-origin: top;
  opacity: 1;
}

/* 滚动时的元素状态 */
header > div.opacity-0 {
  opacity: 0;
}

/* 确保元素在隐藏时不占用空间 */
header > div.h-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.bg-custom-blue[data-v-609f4be8] {
  background-color: rgb(9, 33, 67);
}
.bg-bbbb-blue[data-v-609f4be8]{
  background-color: rgb(230, 238, 254);
}

.live-chat-container[data-v-6e052448] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.chat-button[data-v-6e052448] {
  display: flex;
  align-items: center;
  background-color: #2563eb;
  color: white;
  padding: 12px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-size: 0.875rem;
}
.chat-button[data-v-6e052448]:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}
.chat-button i[data-v-6e052448] {
  margin-right: 6px;
  font-size: 16px;
}
.chat-window[data-v-6e052448] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  height: 580px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chat-header[data-v-6e052448] {
  position: relative;
}
.close-button[data-v-6e052448] {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
.chat-body[data-v-6e052448] {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 12px;
}
.chat-interface[data-v-6e052448] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.messages-container[data-v-6e052448] {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 12px;
  padding-right: 4px;
}
.input-area[data-v-6e052448] {
  flex-shrink: 0;
}

/* 滚动条样式优化 */
.messages-container[data-v-6e052448]::-webkit-scrollbar {
  width: 4px;
}
.messages-container[data-v-6e052448]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.messages-container[data-v-6e052448]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}
.messages-container[data-v-6e052448]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 优化后的消息样式 */
.message-wrapper[data-v-6e052448] {
  width: 100%;
  margin-bottom: 8px;
}
.message[data-v-6e052448] {
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: auto;
  line-height: 1.4;
  white-space: pre-wrap;
  text-align: left; /* 强制左对齐 */
  display: inline-block;
  max-width: 75%;
}
.user-message[data-v-6e052448] {
  background-color: #3b82f6;
  color: white;
  border-radius: 18px 18px 4px 18px;
  text-align: left; /* 用户消息内容也左对齐 */
}
.agent-message[data-v-6e052448] {
  background-color: #f3f4f6;
  color: #374151;
  border-radius: 18px 18px 18px 4px;
  text-align: left; /* 客服消息内容左对齐 */
}

/* 确保图片和文件消息也能正确显示 */
.message-image img[data-v-6e052448] {
  display: block;
  border-radius: 8px;
  max-width: 100%;
}
.message-file a[data-v-6e052448] {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.message-file a[data-v-6e052448]:hover {
  text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 640px) {
.chat-window[data-v-6e052448] {
    width: 90%;
    height: 70vh;
    bottom: 10px;
    right: 5%;
    left: 5%;
}
.chat-button[data-v-6e052448] {
    right: 10px;
    padding: 6px 10px;
    font-size: 0.8rem;
}
.chat-button i[data-v-6e052448] {
    font-size: 14px;
}
.grid-cols-2[data-v-6e052448] {
    grid-template-columns: 1fr;
}
.message[data-v-6e052448] {
    max-width: 85%;
}
}

/* 输入框聚焦样式 */
input[data-v-6e052448]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}

/* 新增和修改的样式 */
.message-input-box[data-v-6e052448] {
  transition: all 0.2s ease;
}
.message-input-box[data-v-6e052448]:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}
.emoji-picker[data-v-6e052448] {
  position: absolute;
  bottom: 50px;
  right: 5px;
  width: 280px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
}
.emoji-icon[data-v-6e052448] {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
}
.action-btn[data-v-6e052448] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  transition: all 0.2s;
}
.message-input-box textarea[data-v-6e052448] {
  transition: height 0.2s ease;
}
.action-btn[data-v-6e052448]:hover {
  background-color: rgba(59, 130, 246, 0.1);
}

/* 确保表情选择器在移动设备上也能正常显示 */
@media (max-width: 640px) {
.emoji-picker[data-v-6e052448] {
    width: 90%;
    left: 5%;
    right: 5%;
}
}

/* 时间戳分隔线样式 */
.timestamp-divider[data-v-6e052448] {
  position: relative;
  margin: 16px 0;
}
.timestamp-divider span[data-v-6e052448] {
  position: relative;
  z-index: 2;
  background-color: #f9fafb;
  padding: 0 12px;
  color: #6b7280;
  font-size: 12px;
}

/* 最小化的全局样式 - 避免干扰Google Maps */
#app {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
#app * {
  box-sizing: border-box;
}

/* 全局样式重置 */
body {
  margin: 0;
  padding: 0;
}


/* 自定义高度类 */
.h-3-4-screen[data-v-4625960d] {
  height: 75vh;
}

/* 确保轮播图在移动设备上也能全屏显示 */
@media (max-width: 768px) {
.carousel-container[data-v-4625960d] {
    height: 70vh;
}
}

/* 动画效果 */
@keyframes slideInLeft-4625960d {
from {
    transform: translateX(-100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
@keyframes slideInRight-4625960d {
from {
    transform: translateX(100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
.animate-slide-in-left[data-v-4625960d] {
  animation: slideInLeft-4625960d 1s ease-out forwards;
}
.animate-slide-in-right[data-v-4625960d] {
  animation: slideInRight-4625960d 1s ease-out forwards;
}

/* 隐藏滚动条但保留滚动功能 */
.hide-scrollbar[data-v-4633ad8e] {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.hide-scrollbar[data-v-4633ad8e]::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

/* 类别卡片悬停效果 */
.category-card:hover .category-image[data-v-4633ad8e] {
  transform: scale(1.15);
  filter: brightness(1.1);
}

/* 图片过渡效果 */
.category-image[data-v-4633ad8e] {
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

/* 确保图片容器正确设置 */
.category-image-container[data-v-4633ad8e] {
  overflow: hidden;
}

/* 可选：添加微妙的遮罩效果 */
.category-card:hover .category-image-container[data-v-4633ad8e]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* 移动端适配 */
@media (max-width: 768px) {
.top-categories-section[data-v-4633ad8e] {
    padding: 2rem 0;
}
}

.hide-scrollbar[data-v-464fdc90] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar[data-v-464fdc90]::-webkit-scrollbar {
  display: none;
}

/* 隐藏滚动条但保留滚动功能 */
.hide-scrollbar[data-v-467a2313] {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hide-scrollbar[data-v-467a2313]::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* 隐藏滚动条但保留滚动功能 */
.hide-scrollbar[data-v-46883a94] {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hide-scrollbar[data-v-46883a94]::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.home-container[data-v-2181b162] {
  margin-top: 0rem; /* 抵消导航栏的高度，使轮播图完全铺满 */
}

/* 自定义高度类 */
.h-3-4-screen[data-v-2181b162] {
  height: 75vh;
}

/* 确保轮播图在移动设备上也能全屏显示 */
@media (max-width: 768px) {
.carousel-container[data-v-2181b162] {
    height: 70vh;
}
}

/* 动画效果 */
@keyframes slideInLeft-2181b162 {
from {
    transform: translateX(-100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
@keyframes slideInRight-2181b162 {
from {
    transform: translateX(100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
.animate-slide-in-left[data-v-2181b162] {
  animation: slideInLeft-2181b162 1s ease-out forwards;
}
.animate-slide-in-right[data-v-2181b162] {
  animation: slideInRight-2181b162 1s ease-out forwards;
}

/* 隐藏滚动条但保留滚动功能 */
.hide-scrollbar[data-v-2181b162] {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hide-scrollbar[data-v-2181b162]::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* 移动端适配 */
@media (max-width: 768px) {
.top-categories-section[data-v-2181b162] {
    padding: 2rem 0;
}
}

/* 产品轮播图样式 */
.product-slide[data-v-2181b162] {
  width: 280px;
  transition: all 0.5s ease;
}
.product-slide.active[data-v-2181b162] {
  transform: scale(1);
  z-index: 10;
  opacity: 1;
}
.product-slide.prev[data-v-2181b162],
.product-slide.next[data-v-2181b162] {
  transform: scale(0.8);
  z-index: 5;
  opacity: 0.8;
}

/* 产品切换动画 */
@keyframes zoomIn-2181b162 {
from {
    transform: scale(0.8);
    opacity: 0.8;
}
to {
    transform: scale(1);
    opacity: 1;
}
}
.product-slide.active[data-v-2181b162] {
  animation: zoomIn-2181b162 0.5s ease forwards;
}

/* 产品卡片悬停效果 */
.product-card:hover .product-image[data-v-6eb415e7] {
  transform: scale(1.15);
  filter: brightness(1.1);
}

/* 图片过渡效果 */
.product-image[data-v-6eb415e7] {
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

/* 确保图片容器正确设置 */
.image-container[data-v-6eb415e7] {
  overflow: hidden;
}

/* 可选：添加微妙的遮罩效果 */
.product-card:hover .image-container[data-v-6eb415e7]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.animate-pulse[data-v-6eb415e7] {
  animation: pulse-6eb415e7 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-6eb415e7 {
0%,
  100% {
    opacity: 1;
}
50% {
    opacity: 0.5;
}
}
.line-clamp-2[data-v-6eb415e7] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price[data-v-6eb415e7] {
  margin-top: 10px;
}
.promotion-price[data-v-6eb415e7] {
  color: #ff4d4f;
  font-weight: bold;
  font-size: 16px;
}
.original-price[data-v-6eb415e7] {
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 12px;
}
.normal-price[data-v-6eb415e7] {
  font-weight: bold;
  font-size: 16px;
}

/* 平滑过渡效果 */
.divide-y > div[data-v-27cc2c7d] {
  transition: all 0.3s ease;
}

/* 骨架屏动画 */
@keyframes pulse-15f72344 {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.5;
}
}
.animate-pulse[data-v-15f72344] {
  animation: pulse-15f72344 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 移动端适配 */
@media (max-width: 768px) {
.product-reviews[data-v-15f72344] {
    padding: 0 1rem;
}
}

/* Ensure rich text content displays correctly */
.application-content[data-v-9d197820] img {
  max-width: 100%;
  height: auto;
}
.application-content[data-v-9d197820] table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.application-content[data-v-9d197820] table td,
.application-content[data-v-9d197820] table th {
  border: 1px solid #e2e8f0;
  padding: 0.5rem;
}

/* Product card row styles */
.product-card-row[data-v-9d197820] {
  height: 120px; /* Fixed height for the border frame */
  overflow: visible;
}

/* 3D effect for product image */
.product-image-container[data-v-9d197820] {
  height: 120px;
  display: flex;
  align-items: flex-end;
}
.product-image-3d[data-v-9d197820] {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

/* .product-image-3d:hover {
  transform: rotateY(5deg) rotateX(5deg);
} */
.product-image[data-v-9d197820] {
  position: relative;
  z-index: 2;
  /*border: 3px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);*/
  transition: all 0.3s ease;
}

/* .product-image-3d::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(147, 51, 234, 0.1)
  );
  border-radius: 0.5rem;
  z-index: 1;
  transition: all 0.3s ease;
} */

/* .product-image-3d:hover::before {
  transform: translate(4px, 4px);
  opacity: 0.8;
} */

/* Product info styles */
.product-info-content[data-v-9d197820] {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-name[data-v-9d197820] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-summary[data-v-9d197820] {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* View more button styles */
.view-more-btn[data-v-9d197820] {
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
  transform: translateY(0);
  transition: all 0.2s ease;
}
.view-more-btn[data-v-9d197820]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.35);
  text-decoration: none;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.product-card-row[data-v-9d197820] {
    height: auto;
    min-height: 120px;
}
.product-card-row .flex[data-v-9d197820] {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}
.product-image-container[data-v-9d197820] {
    align-self: center;
    height: auto;
}
.product-image[data-v-9d197820] {
    width: 120px;
    height: 150px;
}
.view-more-btn[data-v-9d197820] {
    align-self: center;
    width: -moz-fit-content;
    width: fit-content;
}
}

/* Hide scrollbar but keep scroll functionality */
.scrollbar-hide[data-v-9d197820] {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.scrollbar-hide[data-v-9d197820]::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* 骨架屏样式 */
.application-skeleton[data-v-9d197820] {
  animation: skeleton-loading-9d197820 1.5s ease-in-out infinite alternate;
}
.product-skeleton[data-v-9d197820] {
  overflow: hidden;
  position: relative;
}
.product-skeleton[data-v-9d197820]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: skeleton-shimmer-9d197820 1.5s infinite;
}
@keyframes skeleton-shimmer-9d197820 {
0% {
    left: -100%;
}
100% {
    left: 100%;
}
}
@keyframes skeleton-loading-9d197820 {
0% {
    opacity: 1;
}
100% {
    opacity: 0.7;
}
}

/* 富文本内容样式 */
.rich-text-content[data-v-279c983f] {
  line-height: 1.6;
}
.rich-text-content[data-v-279c983f] h1,
.rich-text-content[data-v-279c983f] h2,
.rich-text-content[data-v-279c983f] h3,
.rich-text-content[data-v-279c983f] h4,
.rich-text-content[data-v-279c983f] h5,
.rich-text-content[data-v-279c983f] h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.rich-text-content[data-v-279c983f] p {
  margin-bottom: 1em;
}
.rich-text-content[data-v-279c983f] ul,
.rich-text-content[data-v-279c983f] ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.rich-text-content[data-v-279c983f] li {
  margin-bottom: 0.5em;
}
.rich-text-content[data-v-279c983f] img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

/* 加载动画 */
@keyframes spin-279c983f {
to {
    transform: rotate(360deg);
}
}
.animate-spin[data-v-279c983f] {
  animation: spin-279c983f 1s linear infinite;
}

/* 骨架屏动画 */
@keyframes pulse-279c983f {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: .5;
}
}
.animate-pulse[data-v-279c983f] {
  animation: pulse-279c983f 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 响应式调整 */
@media (max-width: 640px) {
.flex[data-v-279c983f] {
    flex-wrap: wrap;
}
button[data-v-279c983f] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
}

#youtube-player iframe[data-v-1e159bad] {
  width: 100% !important;
  height: 100% !important;
}

/* 添加自定义滚动条样式 */
.custom-scrollbar[data-v-1e159bad]::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar[data-v-1e159bad]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.custom-scrollbar[data-v-1e159bad]::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.custom-scrollbar[data-v-1e159bad]::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* 确保图片容器有固定高度 */
.rounded-lg.overflow-hidden[data-v-1e159bad] {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* YouTube播放器样式 */
#youtube-player[data-v-1e159bad],
#fullscreen-youtube-player[data-v-1e159bad] {
  width: 100% !important;
  height: 100% !important;
}

/* 骨架屏动画 */
@keyframes pulse-1e159bad {
0%,
  100% {
    opacity: 1;
}
50% {
    opacity: 0.5;
}
}
.animate-pulse[data-v-1e159bad] {
  animation: pulse-1e159bad 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.google-map-wrapper[data-v-1211eca2] {
  position: relative;
  min-height: 200px;
}
.loading-container[data-v-1211eca2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.loading-spinner[data-v-1211eca2] {
  width: 40px;
  height: 40px;
  border: 4px solid #e3e3e3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin-1211eca2 1s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin-1211eca2 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.error-container[data-v-1211eca2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 8px;
  color: #e53e3e;
}
.error-icon[data-v-1211eca2] {
  font-size: 24px;
  margin-bottom: 8px;
}
.retry-btn[data-v-1211eca2] {
  margin-top: 12px;
  padding: 8px 16px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.retry-btn[data-v-1211eca2]:hover {
  background-color: #2980b9;
}
.map-container[data-v-1211eca2] {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.map-element[data-v-1211eca2] {
  width: 100%;
  height: 100%;
}

/* 查看大图按钮 - 改为文字样式 */
.view-large-btn[data-v-1211eca2] {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.view-large-btn[data-v-1211eca2]:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.view-large-btn[data-v-1211eca2]:active {
  transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
.view-large-btn[data-v-1211eca2] {
    font-size: 12px;
    padding: 6px 10px;
}
}

/* 自定义滚动条样式 */
.max-h-60[data-v-1043eae1]::-webkit-scrollbar {
  width: 6px;
}
.max-h-60[data-v-1043eae1]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.max-h-60[data-v-1043eae1]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.max-h-60[data-v-1043eae1]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 隐藏滚动条但保持滚动功能 */
.scrollbar-hide[data-v-c5f489c8] {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.scrollbar-hide[data-v-c5f489c8]::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* 移动端优化 */
@media (max-width: 640px) {
.container[data-v-c5f489c8] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
}

/* 文本截断样式 */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 弹框动画效果 */
.modal-enter-active,
.modal-leave-active {
  transition: opacity 0.3s;
}
.modal-enter,
.modal-leave-to {
  opacity: 0;
}

/* 卡片悬停效果增强 */
.case-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 响应式调整 */
@media (max-width: 768px) {
.container {
    padding-left: 1rem;
    padding-right: 1rem;
}
}

/* 富文本内容样式 */
.rich-text strong {
  font-weight: 600;
  color: #374151;
}
.rich-text em {
  font-style: italic;
  color: #059669;
}

/* 滚动条样式 */
.overflow-y-auto::-webkit-scrollbar {
  width: 6px;
}
.overflow-y-auto::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.overflow-y-auto::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.overflow-y-auto::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.global-service-map-wrapper[data-v-00f3bd64] {
  position: relative;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.map-container[data-v-00f3bd64] {
  position: relative;
  width: 100%;
  height: 100%;
}
.map-element[data-v-00f3bd64] {
  width: 100%;
  height: 100%;
}
.map-hidden[data-v-00f3bd64] {
  visibility: hidden;
}

/* 加载状态样式 */
.loading-overlay[data-v-00f3bd64] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  z-index: 1000;
}
.loading-spinner[data-v-00f3bd64] {
  width: 40px;
  height: 40px;
  border: 4px solid #e3e3e3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin-00f3bd64 1s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin-00f3bd64 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

/* 错误状态样式 */
.error-overlay[data-v-00f3bd64] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
  color: #e53e3e;
  z-index: 1000;
}
.error-icon[data-v-00f3bd64] {
  font-size: 24px;
  margin-bottom: 8px;
}
.retry-btn[data-v-00f3bd64] {
  margin-top: 12px;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.retry-btn[data-v-00f3bd64]:hover {
  background-color: #0056b3;
}

/* 信息面板样式 */
.info-panel[data-v-00f3bd64] {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 280px;
  max-width: 350px;
}
.info-header[data-v-00f3bd64] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #e9ecef;
}
.info-header h3[data-v-00f3bd64] {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.close-btn[data-v-00f3bd64] {
  background: none;
  border: none;
  font-size: 24px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.close-btn[data-v-00f3bd64]:hover {
  background-color: #f8f9fa;
  color: #495057;
}
.info-content[data-v-00f3bd64] {
  padding: 12px 20px 16px;
}
.info-content p[data-v-00f3bd64] {
  margin: 0 0 8px 0;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
}
.info-content p[data-v-00f3bd64]:last-child {
  margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
.info-panel[data-v-00f3bd64] {
    left: 10px;
    right: 10px;
    min-width: auto;
    max-width: none;
}
.info-header h3[data-v-00f3bd64] {
    font-size: 16px;
}
.info-content[data-v-00f3bd64] {
    padding: 10px 16px 14px;
}
}

/* 富文本内容样式 */
.rich-text-content[data-v-37ac599a] {
  line-height: 1.6;
}
.rich-text-content[data-v-37ac599a] h1,
.rich-text-content[data-v-37ac599a] h2,
.rich-text-content[data-v-37ac599a] h3,
.rich-text-content[data-v-37ac599a] h4,
.rich-text-content[data-v-37ac599a] h5,
.rich-text-content[data-v-37ac599a] h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.rich-text-content[data-v-37ac599a] p {
  margin-bottom: 1em;
}
.rich-text-content[data-v-37ac599a] ul,
.rich-text-content[data-v-37ac599a] ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.rich-text-content[data-v-37ac599a] li {
  margin-bottom: 0.5em;
}
.rich-text-content[data-v-37ac599a] img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

.animate-pulse[data-v-4cc4eb7a] {
  animation: pulse-4cc4eb7a 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-4cc4eb7a {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.5;
}
}

/* 可以添加自定义样式 */
.sticky-summary[data-v-1d7531bb] {
  position: relative;
  /* height: 100%; */
}
.sticky-price-container[data-v-1d7531bb] {
  /*position: sticky;
  top: 20px;  调整为更小的值，确保在滚动时更早地固定 */
  background-color: white;
  padding: 16px;
  border-radius: 8px;
  z-index: 100; /* 提高z-index确保在其他元素上方 */
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
.sticky-price-container[data-v-1d7531bb] {
    position: relative;
    top: 0;
    box-shadow: none;
}
}

/* 骨架屏动画 */
@keyframes pulse-1d7531bb {
0% {
    opacity: 0.6;
}
50% {
    opacity: 1;
}
100% {
    opacity: 0.6;
}
}
.animate-pulse[data-v-1d7531bb] {
  animation: pulse-1d7531bb 1.5s infinite ease-in-out;
}

/* 营销价格样式 */
.promotion-price[data-v-04bf3778] {
  color: #dc2626;
  font-weight: 600;
}
.original-price[data-v-04bf3778] {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.75rem;
}
.price-section[data-v-04bf3778],
.subtotal-section[data-v-04bf3778] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 768px) {
.price-section[data-v-04bf3778],
  .subtotal-section[data-v-04bf3778] {
    align-items: center;
}
}

/* 确保在移动端价格显示正确对齐 */
@media (max-width: 767px) {
.price-section[data-v-04bf3778],
  .subtotal-section[data-v-04bf3778] {
    align-items: flex-end;
}
}

/* 富文本内容样式 */
.prose[data-v-b67022e8] {
  color: #374151;
  line-height: 1.6;
}
.prose h1[data-v-b67022e8], .prose h2[data-v-b67022e8], .prose h3[data-v-b67022e8], .prose h4[data-v-b67022e8], .prose h5[data-v-b67022e8], .prose h6[data-v-b67022e8] {
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.prose p[data-v-b67022e8] {
  margin-bottom: 1em;
}
.prose ul[data-v-b67022e8], .prose ol[data-v-b67022e8] {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.prose img[data-v-b67022e8] {
  max-width: 100%;
  height: auto;
}
.prose a[data-v-b67022e8] {
  color: #3b82f6;
  text-decoration: underline;
}
.prose a[data-v-b67022e8]:hover {
  color: #1d4ed8;
}

/* Custom styles */
.order-card[data-v-50f31b9d] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.order-card[data-v-50f31b9d]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.order-card[data-v-50f31b9d]:active {
  transform: translateY(-1px);
}

/* 文本截断样式 */
.line-clamp-2[data-v-50f31b9d] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 移动端优化 */
@media (max-width: 640px) {
.order-card[data-v-50f31b9d] {
    margin: 0 -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
}
.order-card[data-v-50f31b9d]:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
}

/* 加载动画优化 */
@keyframes pulse-50f31b9d {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.5;
}
}
.animate-pulse[data-v-50f31b9d] {
  animation: pulse-50f31b9d 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 自定义样式 */
.animate-spin[data-v-7f74718c] {
  animation: spin-7f74718c 1s linear infinite;
}
@keyframes spin-7f74718c {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}

