.saler {
  position: fixed;
  top: 65%;
  right: 1%;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 讓內部內容整體靠右 */
  gap: 4px; /* 兩段文字之間留點間距 */
  margin: auto;
}

.saler-img{
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.saler-txt {
  background-color: rgb(255, 255, 255);
  color: rgb(46, 79, 80);
  font-size: 0.9rem;
  text-align: right; /* 文字靠右 */
  padding: 10px 20px;
  border: 3px solid #1997e3;
  border-radius: 4px;
  margin-top: -5px;
}

.saler-txt:hover {
  font-weight: 600;
  background-color: rgb(255, 227, 69);
}

/* --------------------------------- */

/* 手機版客服 */
.mob-saler{
    display: none;
    width: 30px;
    position: fixed;
    top: 77%;
    right: 2%;  
    background-color: rgb(255, 227, 69);
    border: 3px solid rgb(245, 210, 14);
    border-radius: 4px;
    padding: 3px;
    z-index: 15;
}

@media(max-width:821px){
    .saler{
        display: none;
    }
    .mob-saler{
    display: block;
}
}