@charset "UTF-8";

:root {
    --headerBg: rgb(16, 33, 43);
    --headerBgHover: rgb(13, 50, 69);
}
body{
  background-image: url(https://www.yamaha-motor.com.cn/marine/product/outboards/img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.container{
    overflow: hidden;
}
.search-area{
    margin: 30px 0
}
.search-ul{
    display: flex;
}
.search-ul li{
    width: 33%;
    align-items: stretch;
    outline: 0;
}
.search-ul li.btn{
    width: 14%;
    padding: 0;
    outline: 0;
    border: none;
}
.search-ul li.custom-input{
    width: 20%;
}

.search-ul li.btn a{
    background: #fff;
    color: #084AAA;
    display: inline-block;
    padding: 10px 0;
    border-radius: 5px;
    width: 70%;
    border: 1px solid #084AAA;
}
.search-ul li.btn a:hover{
  background: #084AAA;
  color: #fff;
  border: 1px solid #fff;
}

/* .set-selet{
    font-size: 16px;
    padding: 10px;
} */
/* 下拉框基础样式 */
.set-selet{
    width: 90%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none; /* 移除默认箭头 */
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%236c757d" viewBox="0 0 16 16"><path d="M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
  }
  
  /* 鼠标悬停效果 */
  .set-selet select:hover {
    border-color: #888;
  }
  
  /* 选中时的效果 */
  .set-selet select:focus {
    border-color: #555;
    outline: none;
    box-shadow: 0 0 5px rgba(85, 85, 85, 0.5);
  }
  
  /* 输入框基础样式 */
  .custom-input input {
    width: 90%;
    padding: 10px 15px; /* 内边距 */
    font-size: 16px; /* 字体大小 */
    border: 1px solid #ccc; /* 边框颜色 */
    border-radius: 5px; /* 圆角 */
    background-color: #fff; /* 背景颜色 */
    transition: border-color 0.3s, box-shadow 0.3s; /* 平滑过渡效果 */
  }
  
  /* 占位符样式 */
  .custom-input input::placeholder {
    color: #aaa; /* 占位符文字颜色 */
    font-style: italic; /* 占位符字体样式 */
  }
  
  /* 鼠标悬停效果 */
  .custom-input input:hover {
    border-color: #888; /* 悬停时边框颜色 */
  }
  
  /* 获取焦点时的效果 */
  .custom-input input:focus {
    border-color: #555; /* 焦点时边框颜色 */
    outline: none; /* 移除默认轮廓 */
    box-shadow: 0 0 8px rgba(85, 85, 85, 0.5); /* 添加阴影效果 */
  }
  
  /* 错误状态样式（例如验证失败） */
  .custom-input input:invalid {
    border-color: #e74c3c; /* 错误时边框颜色 */
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.3); /* 错误时阴影效果 */
  }

  .result-view{
    display: flex;
    flex-wrap: wrap;
  }
  .result-view a{
    width: 32%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 1%;
    color: #111;
    position: relative;
    margin-bottom: 20px;
  }
  .afd{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);

  }
  .result-view a span,
  .result-view a em{
    display: block;
    width: 90%;
    word-break: keep-all;
  }
  .result-view a span{
    font-weight: bold;
  }
  .result-view a em{
    font-style: normal;
    font-size: 15px;
  }
  .load-more-div{
    text-align: center;
  }
  .load-more-div .load-more-btn{
    background: none;
    border: none;
    outline: none;
    font-size: 13px;
    color: #666;
  }
  .product-group{
    margin-top: 30px;
  }
  .product-group h2{
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 15px;
  }
  .btnAs{
    margin-right: 10px;
  }
  @media screen and (min-width: 200px) and (max-width: 991px) {
    .result-view a{
      width: 100%;
    }
    .search-ul{
      flex-wrap: wrap;
    }
    .search-ul li{
      width: 50%;
      margin-bottom: 15px;
    }
    .search-ul li.custom-input{
      width: 70%;
    }
    .search-ul li.btn{
      width: 30%;
    }
    .product-group h2{
      text-align: center;
      font-size: 24px;
    }
  }

@media screen and (min-width: 200px) and (max-width: 991px) {
}
@media screen and (min-width: 200px) and (max-width: 400px){
   
}