/* 表单整体 */
.wpcf7-form {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

/* 输入框 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DADADA;
  border-radius: 6px;
  background-color: #FFF;
  font-size: 15px;
  transition: border-color 0.3s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #004C97;
  outline: none;
}

/* 按钮 */
.wpcf7-submit {
  background-color: #004C97;
  color: #FFF;
  padding: 14px 40px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #0066CC;
}

/* 错误提示与成功提示 */
.wpcf7-not-valid-tip {
  color: #D9534F;
  font-size: 14px;
}

.wpcf7-response-output {
  border: none;
  padding: 10px;
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
}
.wpcf7-mail-sent-ok {
  background-color: #E6F4EA;
  color: #1E7C35;
}
.wpcf7-validation-errors {
  background-color: #FBE9E9;
  color: #A33;
}


/* 鼠标悬停单个产品时，只有该产品图片放大 */
.product-hover-zoom {
    overflow: hidden; /* 防止图片放大溢出 */
}
.product-hover-zoom img {
    transition: transform 0.4s ease;
}
.product-hover-zoom:hover img {
    transform: scale(1.1);
}

.product-marquee {
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 10px 0;
  margin: 15px 0;
  box-sizing: border-box;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
}

.marquee-content span {
  display: inline-block;
  margin-right: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #0073aa;
  flex-shrink: 0;
}

.product-marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@media screen and (max-width: 768px) {
  .marquee-content span {
    font-size: 14px;
    margin-right: 30px;
  }
  .product-marquee {
    padding: 8px 0;
  }
}

