/*與header區塊距離*/
.brand-section-area{
  margin-top: 0px !important;
}
/*======文章內文======*/
.main-content.wrapper {
   /*display: flex;
  justify-content: center; 水平置中
  align-items: center; /* 垂直置中 */
}

/*文章封面3:1-圖片大小w1410*h470*/
.brand-cover-photo img{
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin-top: 65px;
}
/*文章內容*/
.brand-content{
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
}
.brand-content img{
  display: block;
  margin: 0 auto;
  max-width: 100%;
  min-width: 50px;
}
.brand-content p{
  font-size: 1rem;
  line-height: 1.8;
  margin: 10px;
}

/*Q&A*/
.brand-qa-section{
  display: flex;
}
.brand-qa-column{
  flex: 1; /* 均等分配空間，使兩個欄位具有相等的寬度 */
  padding: 10px; /* 可以根據需要添加內邊距 */
}
.qa-photo img{
  width: 500px;
}
.question-answer-area ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.list-items {
  margin: 5px 0;
  cursor: pointer;
}
.list-items .head {
  display: block;
  padding: 20px 10px;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-items .head span {
  float: right;
  color: green;
}
.list-items .item-details {
  padding: 10px;
  font-size: 0.95rem;
  white-space: pre-wrap;
}
.list-items {
  cursor: pointer;
}

.list-items {
  cursor: pointer;
}

.ic-expanded {
  display: none;
}

.item-details {
  display: none;
}
.icon {
  float: right;
}
.icon-bg{
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;

}
/* 增加媒體查詢，當螢幕寬度小於768px時切換到手機版 */
@media screen and (max-width: 768px) {
  .brand-section-area{
    margin-top:0px !important;
    padding-top: 15px;
  }
  .brand-cover-photo img{
    width: 100%;
    height: 100%;
  }
  .brand-cover-photo img{
    margin-top: 43px;
  }
  /*==========問與答=========*/
  .brand-qa-section{
    display: block;
  }
  .brand-qa-column{
    padding: 0px;
    margin-bottom: 15px;
  }
  .qa-photo img{
    width: 100%;
  }
  .list-items .head{
    font-size: 1rem;
  }
  .icon-bg{
    width: 20px;
    height: 20px;
  }
  .list-items .item-details {
    padding: 10px;
    font-size: 0.85rem;
  }
}