@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;
}

/*------------------------------------*\
  此頁樣式
\*------------------------------------*/
/*------------------------------------*\
  index頁-個別樣式
\*------------------------------------*/
/*------------------------------------*\
  介紹頁
\*------------------------------------*/
.btn-more {
  background: linear-gradient(to right, rgb(244, 47, 49) 0%, rgb(211, 31, 73) 100%);
}

/*------------------------------------*\
對話框
\*------------------------------------*/
.dialog .chat-box a {
  color: #bf2f39;
}
.dialog .chat-box .txt-link {
  border-bottom: 1px solid #bf2f39;
}
.dialog .chat-box .txt-btn {
  background-color: #999999;
  color: #fff;
}
.dialog .chat-box .txt-btn:hover {
  background-color: #bf2f39;
}
.dialog .chat-box .txt-btn.focus {
  background-color: #bf2f39;
}
.dialog-box.right .chat-box {
  background: #fff0f0;
}
.dialog-box.right .chat-box p {
  color: #bf2f39;
}
.dialog ul.tool-link li a {
  color: #bf2f39;
  background-color: #fff;
  border: 1px solid #fff;
}
.dialog ul.tool-link li a:hover {
  background-color: #ffebf6;
  border-color: #ce816a;
}
@media all and (max-width: 768px) {
  .dialog {
    padding: 0 10px;
  }
}

.tool-btn .btn-listen.playing {
  background-color: #fbe8ec;
}
.tool-btn .btn-listen.playing::before {
  border: #fbe8ec solid 2px;
}
.tool-btn .btn-listen.playing:hover {
  background-color: none;
  border-radius: 100%;
}

/*------------------------------------*\
輸入對話/搜尋
\*------------------------------------*/
.bottom {
  padding-bottom: 5px;
}

.input-field {
  background: #f5f2e9;
  padding: 10px;
}
.input-field input {
  background-color: transparent;
  width: 100%;
}

.img-preview {
  display: flex;
  flex-wrap: wrap;
}
.img-preview .img-box {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 12px;
  margin-right: 10px;
  overflow: hidden;
  position: relative;
}
.img-preview .img-box img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
}
.img-preview a.del {
  width: 30px;
  height: 30px;
  background: #333 url(../images/ic-del.svg) center no-repeat;
  background-size: 12px;
  border-radius: 100%;
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  opacity: 0;
}
.img-preview .img-box:hover > a {
  opacity: 1;
}

.input-bar {
  background-color: #DE4643;
  justify-content: start;
  position: relative;
  padding-right: 90px;
}
.input-bar a {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border-radius: 100%;
}
.input-bar a.submit {
  position: absolute;
  right: 5px;
  margin-right: 0;
  background-color: #DE4643;
  background-size: 28px;
}
.input-bar a.use-mike {
  position: absolute;
  right: 50px;
  margin-right: 0;
}
.input-bar a.use-mike.playing {
  background-color: #bf2f39;
}
.input-bar a.use-mike.playing::before {
  border: #bf2f39 solid 2px;
}

.keywords-link {
  background-color: #bf2f39;
}
.keywords-link .link-li a {
  color: #fff;
  background-color: #e05962;
}

@media all and (max-width: 1000px) {
  .bottom-flex {
    padding: 0 5px;
  }
}

/*------------------------------------*\
套件autocomplete
\*------------------------------------*/
.mat-option.mat-active, .mat-option-text:hover {
  color: #bf2f39;
}

/*------------------------------------*\
  表格區塊
\*------------------------------------*/
table th {
  background-color: #fff0f0;
}
table tr:nth-of-type(odd) td {
  background-color: #fdf4f6;
}

/*小網底部功能選單*/
.func-bottom {
  background-color: #fff7f7;
}
.func-bottom .func-tool {
  background-color: #fff7f7;
}

.func-tool {
  background-color: #fff7f7;
}/*# sourceMappingURL=index.css.map */