@charset "UTF-8";
/*------------------------------------*\
  必要CSS檔
  ---
  如果SASS編譯出現子資料夾的檔案，請檢查設定
  "savePath": "~/../../css" //輸出資料夾
\*------------------------------------*/
/*------------------------------------*\
  font face
\*------------------------------------*/
/* Roboto - 400 700 */
/* noto-sans-tc -  300 400 500 700 */
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;600&family=Noto+Sans+TC:wght@400;500;700&display=swap");
/*------------------------------------*\
  reset
\*------------------------------------*/
body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, select, textarea, label, p, blockquote, th, td, iframe, button, a, header, footer {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  word-wrap: break-word;
  word-break: break-all;
}

body {
  font: 18px/150% "Noto Sans TC", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.2px;
  background: #fafafa;
  color: #282523;
  overflow-x: hidden;
}

html {
  /*safari內網頁的字體不會無緣無故變大*/
  -webkit-text-size-adjust: 100%;
  /*safari內網頁滑動起來不會卡卡的*/
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  background: none;
  outline: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  outline: none;
}

img {
  /*防止chrome將圖片縮放時平滑化處理*/
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
  height: auto;
}

/*------------------------------------*\
  font-family
\*------------------------------------*/
.font-eng {
  font-family: "Lexend", "Helvetica Neue", Helvetica, sans-serif;
}

:hover {
  transition-duration: 0.3s;
}

/*------------------------------------*\
  _common.scss
  基礎全站變數
\*------------------------------------*/
/*------------------------------------*\
  RWD尺寸標準
\*------------------------------------*/
/*------------------------------------*\
  頁面寬度
\*------------------------------------*/
/*------------------------------------*\
  大小網
\*------------------------------------*/
.web {
  display: block;
}

.pad {
  display: block;
}

.mobile {
  display: none;
}

@media screen and (max-width: 1000px) {
  .pad {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .web {
    display: none;
  }
  .mobile {
    display: block;
  }
}
/*------------------------------------*\
  color
\*------------------------------------*/
/*------------------------------------*\
  使用顏色設定_主要
\*------------------------------------*/
/*------------------------------------*\
  天地
\*------------------------------------*/
/* --------------------------------------- */
/* --------------------------------------- */
.pageMenu-btn .line, #pageMenu .hasSub button, #pageMenu, .page {
  transition: 0.2s;
}

/*------------------------------------*\
  天地框架及popup
\*------------------------------------*/
.wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  background: #fafafa;
}

.container {
  width: 100%;
  position: relative;
}

.pagesize {
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
}
@media all and (max-width: 1280px) {
  .pagesize {
    padding: 0 10px;
  }
}
/*------------------------------------*\
  header
\*------------------------------------*/
header ul {
  list-style: none;
}
@media all and (max-width: 1000px) {
  header .pagesize {
    padding: 0;
  }
}

/* --------------------------------------- */
/* page */
/* --------------------------------------- */
.page {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

/*------------------------------------*\
  側邊選單
\*------------------------------------*/
.overflow-container {
  padding-top: 80px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  background-color: rgba(150, 150, 150, 0.1);
  z-index: 999;
}
.overflow-container .page-title {
  display: none;
}
.overflow-container .func-btn {
  display: none;
}
@media all and (max-width: 1000px) {
  .overflow-container {
    width: 100%;
    bottom: initial;
    height: 60px;
    padding: 10px 10px 10px 60px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    background-color: #fafafa;
  }
  .overflow-container .page-title {
    display: block;
    border-radius: 100%;
    overflow: hidden;
  }
  .overflow-container .page-title img {
    width: 40px;
    height: 40px;
  }
  .overflow-container .func-btn {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .overflow-container .func-btn a {
    width: 40px;
    height: 40px;
    display: block;
    background: url(../images/ic-more.svg) center center no-repeat;
    background-size: auto 24px;
  }
  .overflow-container .pageMenu-btn {
    top: 16px;
    left: 16px;
  }
}

/*小網底部功能選單*/
.func-bottom {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #ececec;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 10px;
}
.func-bottom.open {
  display: block;
  z-index: 9999;
}
.func-bottom .func-tool {
  background-color: #ececec;
}
.func-bottom .func-tool a {
  color: #000;
  border-radius: 40px;
}
.func-bottom .func-tool a::before {
  filter: brightness(0%);
}
.func-bottom .func-tool a:hover {
  background-color: transparent;
  color: #000;
}
.func-bottom .func-tool a:hover::before {
  filter: brightness(0%);
}
.func-bottom .func-tool a:focus {
  background-color: rgba(150, 150, 150, 0.15);
  color: #000;
}
.func-bottom .func-tool a:focus::before {
  filter: brightness(0%);
}

.page_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.openmenu {
  position: fixed;
}

.page.openmenu .page_cover {
  z-index: 1001;
}

/* --------------------------------------- */
/* menu */
/* --------------------------------------- */
#pageMenu {
  position: absolute;
  z-index: 99;
  width: 300px;
  min-height: 100vh;
  /* height: 100vh;*/
  background-color: #e6e6e6;
  padding: 84px 10px 0;
  box-sizing: border-box;
}

.openmenu ~ #pageMenu .hasSub {
  display: block;
}

/*
.openmenu {
&::after{ content: ''; width: 300px; height: 100vh; position: fixed; left: -100px; top: 0; bottom: 0;background-color: #e6e6e6; z-index: 999;}
  & > .pageMenu-btn{ display: none;}

   @include screen-width($width-mobile) {
      padding: 10px 10px 10px 20px; display: flex; z-index: 999;
&::after{  left: 0; }
       & > .pageMenu-btn{ display: none;}
      }

  }
*/
.menuframe {
  position: relative;
  padding-bottom: 100px;
}

.menu-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 20px;
  margin-bottom: 10px;
}

button.more {
  width: 40px;
  height: 40px;
  background: url(../images/ic-more.svg) center center no-repeat;
  background-size: auto 24px;
  display: block;
}

/* menu_清單 */
#pageMenu ul {
  list-style: none;
  font-size: 14px;
}

#pageMenu > ul > li {
  margin-bottom: 10px;
}

.d-line {
  height: 1px;
  margin: 20px;
  background-color: #ccc;
}

#pageMenu ul a.sub-tit {
  display: block;
  min-height: 40px;
  position: relative;
  line-height: 40px;
  color: inherit;
  font-size: 16px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 50px 0 20px;
  border-radius: 30px;
}
#pageMenu ul a.sub-tit.ic-new {
  padding-left: 50px;
}
#pageMenu ul a.sub-tit.ic-new::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/ic-addNew.svg) 20px center no-repeat;
  background-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
}
#pageMenu ul a.sub-tit:hover, #pageMenu ul a.sub-tit.open, #pageMenu ul a.sub-tit:focus {
  background-color: #ddd;
}

/* --------------------------------------- */
/* --------------------------------------- */
#pageMenu .hasSub {
  position: relative;
  display: none;
  border-radius: 30px;
}
#pageMenu .hasSub:hover, #pageMenu .hasSub.open, #pageMenu .hasSub.focus {
  background-color: #ddd;
}
#pageMenu .hasSub:hover button, #pageMenu .hasSub.open button, #pageMenu .hasSub.focus button {
  display: block;
}
#pageMenu .hasSub.txt {
  padding: 0 20px;
  line-height: 40px;
}
#pageMenu .hasSub.txt:hover, #pageMenu .hasSub.txt.open {
  background: transparent;
}
#pageMenu .hasSub button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 40px;
  background: url(../images/ic-more.svg) center center no-repeat;
  background-size: auto 24px;
  cursor: pointer;
  outline: none;
  border: none;
}
@media all and (max-width: 1000px) {
  #pageMenu .hasSub button {
    display: none;
    background: transparent;
    z-index: -1;
  }
}
#pageMenu .hasSub .func-tool {
  position: absolute;
  right: -130px;
  top: 0;
  width: 120px;
}
@media all and (max-width: 1000px) {
  #pageMenu .hasSub .func-tool {
    display: none;
    background: transparent;
    z-index: -1;
  }
}

.func-tool {
  background-color: #ececec;
}
.func-tool a {
  color: #000;
  display: block;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  position: relative;
}
.func-tool a::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0%);
}
.func-tool a.add-ic {
  padding-left: 40px;
}
.func-tool a.rename::before {
  background: url(../images/ic-rename.svg) center no-repeat;
  background-size: 16px;
}
.func-tool a.del::before {
  background: url(../images/ic-del.svg) center no-repeat;
  background-size: 16px;
}
.func-tool a:hover {
  background-color: #3d3722;
  color: #fff;
}
.func-tool a:hover::before {
  filter: brightness(100%);
}

/* menu_按鈕 */
.pageMenu-btn {
  display: block;
  position: absolute;
  left: 24px;
  top: 24px;
  width: 30px;
  height: 30px;
  background-size: 24px;
  outline: none;
  border: none;
  cursor: pointer;
}

.pageMenu-btn .line {
  display: block;
  position: absolute;
  left: 4px;
  width: 20px;
  height: 2px;
  background-color: #666;
  border-radius: 2px;
}

.pageMenu-btn .line01 {
  top: 7px;
}

.pageMenu-btn .line02 {
  top: 14px;
}

.pageMenu-btn .line03 {
  top: 21px;
}

/* menu_按鈕_展開 */
.openmenu .pageMenu-btn .line01 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(-45deg);
}

.openmenu .pageMenu-btn .line02 {
  display: none;
}

.openmenu .pageMenu-btn .line03 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(45deg);
}

/* menu_按鈕_展開 */
#pageMenu .pageMenu-btn .line01 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(-45deg);
}

#pageMenu .pageMenu-btn .line02 {
  display: none;
}

#pageMenu .pageMenu-btn .line03 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(45deg);
}

/* --------------------------------------- */
.show-left.openmenu {
  /* transform: translateX($pagemenu_width);*/
  transform: translateX(100px);
}
@media all and (max-width: 1000px) {
  .show-left.openmenu {
    transform: initial;
  }
}

.show-left ~ #pageMenu {
  top: 0;
  left: -300px;
}

.show-left.openmenu ~ #pageMenu {
  left: 0;
}

.show-right.openmenu {
  transform: translateX(-300px);
}

.show-right ~ #pageMenu {
  left: auto;
  right: -300px;
}

.show-right.openmenu ~ #pageMenu {
  right: 0;
}

.show-up ~ #pageMenu {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.show-up.openmenu ~ #pageMenu {
  top: 0;
}

.show-up.openmenu {
  transform: translateX(0);
}

/*------------------------------------*\
  input & btn樣式 放置於parts/
\*------------------------------------*/
/*------------------------------------*\
  input
\*------------------------------------*/
.inputbox input,
.inputbox select,
.inputbox textarea {
  width: 100%;
  min-width: 0;
  height: 40px;
  line-height: 40px;
  font-weight: 500;
  padding: 0 16px;
  background-color: #fff;
  color: #464646;
  box-sizing: border-box;
}
.inputbox input:disabled,
.inputbox select:disabled,
.inputbox textarea:disabled {
  background-color: #d4d4d4;
}
.inputbox input::placeholder {
  color: #999;
}
.inputbox input::-webkit-input-placeholder {
  color: #999;
}
.inputbox input::-moz-placeholder {
  color: #999;
}
.inputbox input:-ms-input-placeholder {
  color: #999;
}
.inputbox input:-moz-placeholder {
  color: #999;
}

select {
  padding-right: 35px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/arrow.svg);
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: right 6px center;
}

select::-ms-expand {
  display: none;
}

option:not(first-child) {
  color: #4c4c4c;
}

/*------------------------------------*\
  此頁樣式
\*------------------------------------*/
/*------------------------------------*\
 通用樣式
\*------------------------------------*/
/*------------------------------------*\
 間距
\*------------------------------------*/
.mb-0 {
  margin-bottom: 0;
}

.mb-1px {
  margin-bottom: 1px;
}

.mb-0-5 {
  margin-bottom: 5px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-1-5 {
  margin-bottom: 15px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-2-5 {
  margin-bottom: 25px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mr-0-5 {
  margin-right: 5px;
}

.mr-1 {
  margin-right: 10px;
}

.mr-1-5 {
  margin-right: 15px;
}

.mr-2 {
  margin-right: 20px;
}

.mr-3 {
  margin-right: 30px;
}

.p-1-5 {
  padding: 15px;
}

@media all and (max-width: 768px) {
  .m-mr-0 {
    margin-right: 0;
  }
  .m-mr-0 {
    margin-right: 0;
  }
  .m-mb-1 {
    margin-bottom: 10px;
  }
  .m-mb-2 {
    margin-bottom: 20px;
  }
  .m-pl-2-5 {
    padding-left: 25px;
  }
}
/*------------------------------------*\
 font-size
\*------------------------------------*/
.fs-s,
p.fs-s {
  font-size: 0.875rem !important;
}

.fs-ms,
p.fs-ms {
  font-size: 0.9375rem !important;
}

.fs-m,
p.fs-m {
  font-size: 1rem !important;
}

.fs-l,
p.fs-l {
  font-size: 1.125rem !important;
}

.fs-xl,
p.fs-xl {
  font-size: 1.25rem !important;
}

.fs-xxl {
  font-size: 1.5rem;
}

@media all and (max-width: 768px) {
  .fs-l {
    font-size: 1rem;
  }
  .fs-xl {
    font-size: 1.125rem;
  }
  .m-fs-m {
    font-size: 1rem;
  }
}
.lh-s {
  line-height: 1.25rem;
}

.lh-m {
  line-height: 1.5rem;
}

.lh-l {
  line-height: 30px;
}

.lh-xl {
  line-height: 36px;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-mid {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

.tL {
  text-align: left;
}

.tR {
  text-align: right;
}

.tC {
  text-align: center;
}

.tJ {
  text-align: justify;
}

/*------------------------------------*\
 btn
\*------------------------------------*/
.btn {
  border-radius: 5px;
}

/*------------------------------------*\
 介紹頁
\*------------------------------------*/
.intro {
  max-width: 980px;
  padding: 0 20px 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 48px);
}
.intro > div {
  width: 100%;
}
.intro > div > p:last-child {
  margin-bottom: 0;
}
.intro p {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 10px;
}
.intro .intro-level {
  /*大一生*/
  /*大二生*/
  /*大三生*/
  /*大四生*/
  /*研究生*/
}
.intro .intro-level p {
  text-align: center;
  font-size: 16px;
}
.intro .intro-level span {
  display: inline-block;
}
.intro .intro-level span + span {
  margin-bottom: 10px;
}
.intro .intro-level .level {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  border-radius: 20px;
  color: #fff;
  padding: 4px 16px 6px;
  letter-spacing: 2px;
}
.intro .intro-level .level-1 {
  background-color: #00bda1;
}
.intro .intro-level .level-2 {
  background-color: #0a9aff;
}
.intro .intro-level .level-3 {
  background-color: #ff7100;
}
.intro .intro-level .level-4 {
  background-color: #fc1a80;
}
.intro .intro-level .level-5 {
  background-color: #a700f5;
}
.intro .intro-txt {
  padding: 60px 0 50px;
}
.intro .doll-chat {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro .bubble {
  border-radius: 40px;
  padding: 40px;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 20px rgba(102, 102, 102, 0.2);
  position: relative;
  margin-bottom: 20px;
}
.intro .bubble::before {
  content: "";
  width: 22px;
  height: 18px;
  background: url(../images/chat-horn.png) 0 center no-repeat;
  position: absolute;
  bottom: -18px;
  left: 50%;
}
.intro .bubble > p:last-child {
  margin-bottom: 0;
}
.intro .doll {
  width: 240px;
  height: auto;
  margin: 0 auto;
}
.intro .doll img {
  width: 100%;
  height: auto;
}
@media all and (max-width: 768px) {
  .intro {
    padding-bottom: 50px;
  }
  .intro .doll-chat {
    margin-bottom: 20px;
  }
  .intro .bubble {
    border-radius: 20px;
    padding: 20px;
  }
}

.btn-more {
  text-align: center;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  height: 48px;
}
.btn-more a {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*------------------------------------*\
對話框
\*------------------------------------*/
.main-con {
  min-height: calc(100vh - 122px);
  position: relative;
}
@media all and (max-width: 768px) {
  .main-con {
    padding-top: 60px;
  }
}

.dialog {
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /*條列式資訊*/
}
.dialog-box {
  display: flex;
  align-items: stretch;
  position: relative;
  margin-bottom: 40px;
  margin-top: 20px;
}
.dialog-box.no-flex {
  display: block;
}
.dialog .headshot {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.dialog .headshot .head-img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 100%;
  overflow: hidden;
}
.dialog .headshot .head-img img {
  width: 100%;
  height: auto;
  display: block;
}
.dialog .headshot .time {
  text-align: right;
}
.dialog .headshot .listen {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-listen.svg) center no-repeat;
  background-size: 20px;
}
@media all and (max-width: 768px) {
  .dialog .headshot {
    display: none;
  }
}
.dialog .chat {
  width: 100%;
  position: relative;
}
.dialog .chat-box {
  position: relative;
}
.dialog .chat-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.dialog .chat-box p {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: justify;
}
.dialog .chat-box li {
  text-align: justify;
}
.dialog .chat-box pre {
  overflow: auto;
}
.dialog .chat-box .date {
  font-size: 14px;
}
.dialog .chat-box a {
  color: #444;
  font-weight: 500;
  cursor: pointer;
}
.dialog .chat-box .txt-link {
  border-bottom: 1px solid #444;
}
.dialog .chat-box .txt-btn {
  border-radius: 6px;
  background-color: #999999;
  color: #fff;
  padding: 0 10px;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.dialog .chat-box .txt-btn:hover {
  background-color: #444;
}
.dialog .chat-box .txt-btn.focus {
  background-color: #444;
}
.dialog .chat-box .txt-btn.btn-dl {
  position: relative;
  padding: 0 2px 0 22px;
  min-width: 22px;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
  font-weight: normal;
}
.dialog .chat-box .txt-btn.btn-dl::before {
  content: "";
  background-image: url(../images/ic-download.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
}
.dialog .chat-box .txt-btn.btn-note {
  position: relative;
  padding: 0 2px 0 22px;
  min-width: 22px;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
  font-weight: normal;
}
.dialog .chat-box .txt-btn.btn-note::before {
  content: "";
  background-image: url(../images/ic-note.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
}
.dialog .chat-box .btn-bar {
  background-color: #eee;
  padding: 10px 10px 1px 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.dialog .chat-box .btn-bar a {
  margin-bottom: 10px;
}
.dialog .chat-box ul,
.dialog .chat-box ol {
  margin-left: 24px;
}
.dialog .chat-box ul li,
.dialog .chat-box ol li {
  margin-bottom: 10px;
}
.dialog .chat-box .img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.dialog .chat-box .img-box img {
  vertical-align: bottom;
}
.dialog .chat-box .img-box a.zoom-in {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-radius: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.6) url(../images/ic-zoom.svg) center no-repeat;
  background-size: 20px;
  border: none;
}
.dialog .chat-box + .chat-box {
  margin-top: 20px;
}
.dialog .time {
  font-size: 12px;
  white-space: nowrap;
}
.dialog .chat-img {
  width: 100%;
  height: auto;
  display: block;
  display: flex;
  justify-content: center;
}
.dialog .chat-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.dialog .chat-img + .time {
  display: block;
  text-align: right;
  margin: 0 10px;
}
.dialog-box.right {
  justify-content: right;
}
.dialog-box.right .chat {
  flex-direction: row-reverse;
  display: flex;
  align-items: end;
}
.dialog-box.right .chat-box {
  padding: 16px 16px 6px 16px;
  border-radius: 30px;
  border-bottom-right-radius: 0;
  background: #ffecc4;
  margin-right: 10px;
  min-height: auto;
}
.dialog-box.right .chat-box p {
  color: #444;
}
.dialog-box.right .chat-img + .time {
  text-align: left;
}
.dialog-box.right .time {
  margin-right: 10px;
}
.dialog ul.tool-link {
  flex: 1 1 100%;
  list-style: none;
  width: calc(100% + 16px);
  display: block;
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-top: 16px;
  padding-right: 8px;
}
.dialog ul.tool-link li {
  margin-bottom: 16px;
  flex: 1 1 auto;
  margin-left: 16px;
}
.dialog ul.tool-link li a {
  width: 100%;
  font-size: 16px;
  color: #444;
  padding: 8px 16px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #fff;
  display: block;
  box-shadow: 0 0 10px rgba(80, 80, 80, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.dialog ul.tool-link li a:hover {
  background-color: #f6e9e5;
  border-color: #444;
}
.dialog ul.tool-link.col-two li {
  flex: 0 1 calc(50% - 16px);
}
.dialog ul.tool-link.col-third li {
  flex: 0 1 calc(33.3% - 16px);
}
.dialog ul.tool-link.col-fourth li {
  flex: 0 1 calc(25% - 16px);
}
@media all and (max-width: 768px) {
  .dialog ul.tool-link {
    width: calc(100% + 8px);
    margin-left: -8px;
  }
  .dialog ul.tool-link li {
    margin-left: 8px;
    margin-bottom: 8px;
  }
  .dialog ul.tool-link li a {
    padding: 8px;
  }
  .dialog ul.tool-link.col-two li, .dialog ul.tool-link.col-third li {
    flex: 1 1 100%;
  }
  .dialog ul.tool-link.col-fourth li {
    flex: 1 1 calc(50% - 8px);
  }
}
.dialog ul.list-info {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dialog ul.list-info li {
  display: block;
  position: relative;
  margin-bottom: 8px;
  border-bottom: 1px solid #ebe8e6;
  /*&::before{ content: ''; width: 4px; height: auto; background-color: #ffc001; position: absolute; top: 0; left: 0; bottom: 0;}*/
}
.dialog ul.list-info > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.dialog ul.list-info a {
  border: none;
}
@media all and (max-width: 1280px) {
  .dialog {
    max-width: 900px;
    padding: 0 50px;
  }
}
@media all and (max-width: 1000px) {
  .dialog {
    padding: 0 20px;
  }
}

.chat-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  position: relative;
}

.tool-btn {
  display: flex;
  position: relative;
}
.tool-btn a {
  display: block;
  position: relative;
}
.tool-btn a:hover {
  background-color: #ebe8e6;
  border-radius: 10px;
}
.tool-btn .btn-listen {
  width: 40px;
  height: 40px;
  background: url(../images/ic-listen.svg) center no-repeat;
  background-size: 20px;
  display: inline-block;
}
.tool-btn .btn-listen.playing {
  background-color: #ebe8e6;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.tool-btn .btn-listen.playing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: #eee solid 2px;
  border-radius: 100%;
  animation: ringPulse 1s infinite linear;
}
.tool-btn .btn-listen.playing:hover {
  background-color: none;
  border-radius: 100%;
}

.btn-share {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-share.svg) center no-repeat;
  background-size: 20px;
}

.btn-copy {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-copy.svg) center no-repeat;
  background-size: 20px;
}

.btn-ok,
.btn-copy.btn-ok {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-ok.svg) center no-repeat;
  background-size: 20px;
}

/*------------------------------------*\
 對話框內股票資訊
\*------------------------------------*/
.stock-info {
  border-radius: 10px;
  background-color: #fff;
  padding: 12px;
  color: #000;
  font-size: 16px;
  border: 1px solid #ddd;
}
.stock-info .s-name {
  font-size: 24px;
  font-weight: bold;
}
.stock-info .s-symbol {
  font-size: 14px;
}
.stock-info .s-sort {
  color: #2f5981;
}
.stock-info .s-price {
  font-size: 24px;
  font-weight: bold;
}
.stock-info .txt {
  color: #666;
}
.stock-info .up {
  color: #e33;
}
.stock-info .dn {
  color: #0b3;
}
.stock-info span {
  margin-right: 5px;
}
.stock-info .row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.stock-info + .stock-info {
  margin-top: 10px;
}

@keyframes ringPulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
/*------------------------------------*\
輸入對話/搜尋
\*------------------------------------*/
.bottom {
  position: sticky;
  bottom: 0;
  left: 0; /* transform: translateX(-50%); */
  width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
  z-index: 99;
}
.bottom::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 50%);
}
@media all and (max-width: 1000px) {
  .bottom::before {
    width: 100%;
    left: 0;
    right: 0;
  }
}

.bottom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
@media all and (max-width: 1280px) {
  .bottom-flex {
    max-width: 900px;
    padding: 0 50px;
  }
}
@media all and (max-width: 1000px) {
  .bottom-flex {
    padding: 0 20px;
  }
}

.input-con {
  border-radius: 16px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.input-bar {
  background-color: #444;
  padding: 8px 5px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.input-bar a {
  min-width: 40px;
  height: 40px;
  display: block;
}
.input-bar a.add-more {
  background: url(../images/ic-add.svg) center no-repeat;
  background-size: 30px;
}
.input-bar a.add-pic {
  background: url(../images/add-gallery.svg) center no-repeat;
  background-size: 30px;
}
.input-bar a.submit {
  background: url(../images/ic-submit.svg) center no-repeat;
  background-size: 30px;
}
.input-bar a.use-mike {
  background: url(../images/ic-mike.svg) center no-repeat;
  background-size: 30px;
  position: relative;
  min-width: 40px;
}
.input-bar a.use-mike.playing {
  background-color: #555;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.input-bar a.use-mike.playing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: #555 solid 2px;
  border-radius: 100%;
  animation: ringPulse 1s infinite linear;
}
.input-bar a.use-mike.playing:hover {
  background-color: none;
  border-radius: 100%;
}
@media all and (max-width: 768px) {
  .input-bar a {
    min-width: 30px;
    background-size: 24px;
    height: 30px;
  }
  .input-bar a.playing {
    width: 30px;
    height: 30px;
  }
}
.input-bar a:hover {
  opacity: 0.7;
}
.input-bar .inputbox {
  flex: 1 1 auto;
  margin: 0 5px;
}
.input-bar .inputbox input {
  border-radius: 20px;
}

.keywords-link {
  padding: 8px 16px 8px 8px;
  width: 100%;
  overflow-x: auto;
  background-color: #555;
}
.keywords-link .link-li {
  list-style: none;
  display: flex;
}
.keywords-link .link-li li {
  border-radius: 20px;
  margin: 0 4px;
  display: block;
  white-space: nowrap;
}
.keywords-link .link-li a {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  padding: 0 14px;
  border-radius: 20px;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.keywords-link .link-li::after {
  content: "";
  padding-right: 10px;
}

/*------------------------------------*\
套件autocomplete
\*------------------------------------*/
.cdk-overlay-container {
  position: fixed;
  bottom: 115px;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 9;
}

.mat-autocomplete-panel {
  min-width: 112px;
  max-width: 280px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  max-width: none;
  max-height: 256px;
  position: relative;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-bottom: 20px;
  padding-top: 10px;
}

.mat-autocomplete-panel.mat-autocomplete-visible {
  visibility: visible;
}

.mat-autocomplete-panel.mat-autocomplete-hidden {
  visibility: hidden;
}

/*自定義寬度*/
.cdk-overlay-pane.mat-width {
  max-width: 940px;
  margin: 0 auto;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

@media all and (max-width: 1280px) {
  .cdk-overlay-pane.mat-width {
    max-width: 800px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1000px) {
  .cdk-overlay-pane.mat-width {
    max-width: initial;
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}
.cdk-overlay-pane .mat-autocomplete-panel {
  border-radius: 0;
}

.mat-autocomplete-panel .mat-divider-horizontal {
  margin-top: -1px;
}

.cdk-high-contrast-active .mat-autocomplete-panel {
  outline: solid 1px;
}

.mat-autocomplete {
  display: none;
}

.mat-option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 48px;
  height: 48px;
  padding: 0 16px;
  text-align: left;
  text-decoration: none;
  max-width: 100%;
  position: relative;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: row;
  max-width: 100%;
  box-sizing: border-box;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.mat-option[disabled] {
  cursor: default;
}

[dir=rtl] .mat-option {
  text-align: right;
}

.mat-option .mat-icon {
  margin-right: 16px;
  vertical-align: middle;
}

.mat-option .mat-icon svg {
  vertical-align: top;
}

[dir=rtl] .mat-option .mat-icon {
  margin-left: 16px;
  margin-right: 0;
}

.mat-option[aria-disabled=true] {
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
}

.mat-optgroup .mat-option:not(.mat-option-multiple) {
  padding-left: 32px;
}

[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple) {
  padding-left: 16px;
  padding-right: 32px;
}

.cdk-high-contrast-active .mat-option {
  margin: 0 1px;
}

.cdk-high-contrast-active .mat-option.mat-active {
  border: solid 1px currentColor;
  margin: 0;
}

.cdk-high-contrast-active .mat-option[aria-disabled=true] {
  opacity: 0.5;
}

.mat-option-text {
  display: inline-block;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mat-option-text:hover {
  color: #000;
}

/*------------------------------------*\
 表格區塊
\*------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  padding: 8px 20px;
}
table th {
  background-color: #ececec;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
}
table tr:nth-of-type(odd) td {
  background-color: #ffffff;
}
@media all and (max-width: 768px) {
  table {
    border-radius: 10px;
  }
  table th,
  table td {
    padding: 6px;
  }
}

/*------------------------------------*\
 popup
\*------------------------------------*/
.popOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.popBx {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  z-index: 99;
}
.popBx .close {
  position: absolute;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-close.svg) center no-repeat;
  background-size: 20px;
}

.popTxt {
  padding: 30px;
  overflow-y: auto;
  max-height: 560px;
}
.popTxt-tt {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.popTxt p {
  margin-bottom: 20px;
}
.popTxt .inputbox {
  border-radius: 10px;
  border: 1px solid #0a9aff;
  overflow: hidden;
  margin-bottom: 20px;
}
.popTxt .inputbox input {
  padding: 10px 14px;
  line-height: 14px;
  height: auto;
}
.popTxt .inputbox input::-webkit-input-placeholder {
  font-weight: normal;
}
.popTxt a {
  color: #0a9aff;
  display: inline-block;
}
.popTxt a:hover {
  font-weight: bold;
}
.popTxt .bottom-btn {
  display: flex;
  justify-content: right;
  padding-top: 20px;
}
.popTxt .bottom-btn > a, .popTxt .bottom-btn > span {
  margin-left: 20px;
}
.popTxt .bottom-btn .disable {
  color: #ccc;
}/*# sourceMappingURL=global.css.map */