@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  padding: 0;
  font-family: Roboto, -apple-system, sans-serif; /* 添加字体回退 */
}

/* 通用链接样式重置 */
a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  color: inherit; /* 新增继承颜色 */
}

/* Product Card Hover Effects */
.product-card-container {
  transition: all 0.3s ease;
  will-change: transform; /* 提升动画性能 */
}
.product-card-container:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* STYLE1 */
.STYLE1 {
  font-family: Roboto; /* 改用继承 */
  font-size: 15px;
  color: #232323;
  font-weight: bold;
}
.STYLE1 a:link,
.STYLE1 a:visited {
  color: #232323;
}
.STYLE1 a:hover,
.STYLE1 a:active {
  color: #ff6a02;
}

/* STYLE2 */
.STYLE2 {
  font-family: Roboto;
  font-size: 13px;
  color: #333;
  font-weight: normal;
}
.STYLE2 a:link,
.STYLE2 a:visited {
  color: #333;
}
.STYLE2 a:hover,
.STYLE2 a:active {
  color: #ff6a02;
}

/* STYLE3 */
.STYLE3 {
  font-family: Roboto;
  font-size: 15px;
  color: #DCD9DC;
}
.STYLE3 a:link,
.STYLE3 a:visited {
  color: #DCD9DC;
}
.STYLE3 a:hover,
.STYLE3 a:active {
  color: #ff6a02;
}

/* STYLE4 */
.STYLE4 {
  font-family: Roboto;
  font-size: 16px;
  color: #DCD9DC;
  font-weight: bold;
}
.STYLE4 a:link,
.STYLE4 a:visited {
  color: #DCD9DC;
}
.STYLE4 a:hover,
.STYLE4 a:active {
  color: #ff6a02;
}

/* STYLE5 */
.STYLE5 {
  font-family: Roboto;
  font-size: 18px;
  color: #333;
}

/* STYLE6 */
.STYLE6 {
  font-family: Roboto;
  font-size: 35px;
  color: #232323;
}

/* STYLE7 */
.STYLE7 {
  font-family: Roboto;
  font-size: 20px;
  color: #333;
}
.STYLE7 a:link,
.STYLE7 a:visited {
  color: #232323;
}
.STYLE7 a:hover,
.STYLE7 a:active {
  color: #ff6a02;
}

/* STYLE8 */
.STYLE8 {
  font-family: Roboto;
  font-size: 16px;
  color: #333;
}

/* STYLE9 */
.STYLE9 {
  font-family: Roboto;
  font-size: 18px;
  color: #333;
  display: inline-block;
  padding: 5px 10px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}
.STYLE9::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FF9E7D;
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 0.3s, background-color 0.3s;
}
.STYLE9:hover,
.STYLE9.active {
  color: #2A7FFF;
}
.STYLE9:hover::after,
.STYLE9.active::after {
  transform: scaleX(1);
  background-color: #2A7FFF;
}

/* STYLE10 */
.STYLE10 {
  font-family: Roboto;
  font-size: 32px;
  color: #333;
}

/* STYLE11 */
.STYLE11 {
  font-family: Roboto;
  font-size: 15px;
  color: #FFF;
  font-weight: bold;
  display: inline-block;
  padding: 8px 20px;
  margin: 10px;
  background-color: #708EDA;
  border-radius: 3px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.STYLE11:hover {
  color: white;
  background-color: #345FCB;
  transform: scale(1.01);
}

/* STYLE12 */
.STYLE12 {
  font-family: Roboto;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}

/* STYLE13 */
.STYLE13 {
  font-family: Arial;
  font-size: 12px;
  color: #999;
}

/* ===== 产品图片效果 ===== */
.product-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.5s ease-out;
  transform: translateY(0);
}

/* 悬停时的浮动效果 */
.product-image:hover {
  animation: gentleFloat 2s ease-in-out infinite;
  box-shadow: 
    0 5px 15px rgba(0,0,0,0.12),
    0 2px 5px rgba(0,0,0,0.1);
}

/* 浮动动画关键帧 */
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* 卡片悬停时的同步效果 */
.product-card-container:hover .product-image {
  animation: none; /* 取消独立浮动 */
  transform: translateY(-3px);
  box-shadow: 
    0 6px 25px rgba(0,0,0,0.15),
    0 3px 10px rgba(0,0,0,0.1);
}