#a2hs-banner {
  background-color: #2e6b61; /*879183; /*FF5D00; /* Background colour */
  color: #DDDDDD;            /* Font colour */
  font-size: 15px;           /* Font size */
  line-height: 1.4;          /* Line height */
    /* border-bottom: 1px solid #cceeff; /* Bottom border */
    box-shadow: 0 0 5px rgba(0,0,0,1); /* Bottom shadow */
    height: auto;            /* Auto banner height */
    min-height: 60px;        /* Minimum height */
    max-height: 150px;       /* Maximum height */
    overflow: hidden;        /* 防止內容溢出 */
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  position: relative;
  margin: 5px auto 2px auto;
  border-radius: 10px;
  width: 96%;
  max-width: 100vw;
  padding: 10px 15px;
  box-sizing: border-box;
  z-index: 1000;
}

.a2hs-text {
  flex: 1;
  overflow: hidden;
  word-break: break-word;
}

.a2hs-close {
  color: #FFFFFF;      /* X colour */
  font-size: 20px;     /* X font size */
  font-weight: bold;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: 12px;
}