

/* hover按钮区域 */

.bg.textCenter{

  display:flex;

  justify-content:center;

  gap:10px;

}

/* 按钮基础 */

.bg.textCenter a{

  width:46px;

  height:46px;

  border-radius:50% !important;

  background:#fff !important;

  display:flex;

  align-items:center;

  justify-content:center;

  transition:all .35s ease !important;

  box-shadow:
  0 2px 10px rgba(0,0,0,.05) !important;

  border:none !important;

  outline:none !important;

}

/* 图标 */

.bg.textCenter a i{

  color:#666 !important;

  font-size:18px;

  transition:all .35s ease;

}

/* hover */

.bg.textCenter a:hover{

  transform:
  translateY(-3px);

  background:#9F2A2A !important;

  box-shadow:
  0 10px 24px rgba(0,0,0,.12) !important;

}

/* hover图标 */

.bg.textCenter a:hover i{

  color:#fff !important;

}

/* 点击状态 */

.bg.textCenter a:focus,
.bg.textCenter a:active{

  outline:none !important;

  border:none !important;

  background:#9F2A2A !important;

  box-shadow:
  0 0 0 2px #fff !important;

}

/* 去掉UEEshop默认蓝圈 */

.bg.textCenter .add_cart,
.bg.textCenter .add_favorite,
.bg.textCenter .icon3{

  border:none !important;

  outline:none !important;

}


/* 整个搜索框 */
form[action="/search/"]{
    display:flex;
    align-items:center;
    border:1px solid #A0A0A0;
    border-radius:999px;
    overflow:hidden;
    height:46px;
    background:#fff;
    max-width:600px;
}

/* 输入框 */
form[action="/search/"] .text{
    flex:1;
    border:none !important;
    background:transparent;
    padding:0 18px;
    height:46px;
    font-size:15px;
    outline:none;
    box-shadow:none !important;
}

/* 搜索按钮 */
form[action="/search/"] .button{
    width:52px;
    height:46px;
    border:none;
    background:transparent;
    color:#6B6966;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

/* placeholder */
form[action="/search/"] .text::placeholder{
    color:#9A9895;
}

/* 清除原有布局 */
form[action="/search/"] .fl,
form[action="/search/"] .fr{
    float:none !important;
}

form[action="/search/"] .clear{
    display:none;
}



