@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);
.QA_summary {
    list-style-position: outside;
    margin-left: 30px;
    padding: 10px 10px 10px 20px;
    border-radius: 5px;
    font-size: 20px;
    background-color: #e0d9d8;
    color: #303e4e;
    transition: color 1s;
}

.QA_detail[open]{
  margin-bottom: 0px;
  border-radius: 5px 5px 0px 0px;
  transition-delay: 0s;
}

.QA_detail[open] + .summaryA {
  max-height: 500px;
  transition-property: max-height;
  transition-duration: 1s;
  margin-bottom: 20px;
  border-radius: 0px 0px 5px 5px;
  overflow-y: overlay;
  transition-delay: 0s;
  padding: 10px;
}

.QA_detail + .summaryA {
  max-height: 0px;
  transition-property: max-height, margin-bottom, padding;
  transition-duration: 1s, 0s, 0.3s;
  transition-delay: 0s, 2s, 0.7s;
  margin-bottom: 0px;
  overflow: hidden;
  padding: 0px;
  background: #e4eaef;
}

  .QA_detail {
    background: #e4eaef;
    border-radius: 5px;
    margin-bottom: 20px;
    transition-delay: 2s;
  }
  
  body{
    font-family: 'Noto Sans TC',sans-serif !important;
  }

  article[class="summaryA"] > *:first-child {margin: 0;}
  article[class="summaryA"] > * + * {margin: 0.75em 0 0 0;}
  .answer {
    color: white; 
    background: #455e7b; 
    padding: 1em; 
    border-radius: 5px; 
    font-size: 17px;
  }


  .answer ul li{
    list-style: disc;
  }

  .answer ol li{
    list-style: decimal;
  }

  .QA_detail:hover{
    cursor: pointer;
  }

  ::-webkit-scrollbar {

    width: 7px;

  }

  ::-webkit-scrollbar-button {

    background: transparent;

    border-radius: 4px;

  }

  ::-webkit-scrollbar-track-piece {

    background: transparent;

  }

  ::-webkit-scrollbar-thumb {

    border-radius: 4px;

    background-color: rgba(0, 0, 0, 0.4);

    border: 1px solid slategrey;

  }

  ::-webkit-scrollbar-track {

    box-shadow: transparent;

  }

  .answer a{
    color: white;
    text-decoration: underline;
    text-underline-offset: 5px;
  }

   