@charset "UTF-8";
.plus-container {
  max-width: 1280px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0px 15px;
  position: relative;
}
.plus-container .frame {
  border-radius: 19px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  padding: 20px;
  margin-bottom: 20px;
}
.plus-container .frame .sub-title {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 7px;
}
.plus-container .frame .wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.plus-container .frame .wrapper.adjust {
  margin-top: -10px;
}
.plus-container .frame.output {
  height: calc(100% - 20px);
  overflow: hidden;
  position: relative;
}
.plus-container .menu {
  position: sticky;
  top: 70px;
  padding: 20px 0px;
}
.plus-container .menu .main-title {
  text-align: center;
  color: #3a3a3a;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}
.plus-container .menu-frame .item {
  margin-top: 5px;
  width: 100%;
  text-align: center;
}
.plus-container .menu-frame .item .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  line-height: 15px;
  font-size: 15px;
  color: #4a4a4a;
  position: relative;
  padding-right: 14px;
  letter-spacing: 1px;
}
.plus-container .menu-frame .item .link .icon {
  min-width: 17px;
  width: 17px;
  height: 17px;
  margin-right: 15px;
}
.plus-container .menu-frame .item .link .icon:last-child {
  display: none;
}
.plus-container .menu-frame .item .link:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 26px;
  z-index: 1;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.plus-container .menu-frame .item .link.focus {
  color: #F49C00;
  background: #F0F0F1;
}
.plus-container .menu-frame .item .link.focus .icon:first-child {
  display: none;
}
.plus-container .menu-frame .item .link.focus .icon:last-child {
  display: block;
}
.plus-container .menu-frame .item .link.focus:after {
  background: #F49C00;
}
.plus-container .menu-frame .item .link:hover:not(.focus):after {
  background: #E0E0E1;
}
.plus-container .filter .setting-keyword {
  display: flex;
  align-items: center;
  color: #4a4a4a;
  margin-left: 15px;
  font-size: 14px;
}
.plus-container .filter .setting-keyword .icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.plus-container .filter .to {
  color: #4a4a4a;
  font-size: 20px;
  margin: 0px 15px;
}
.plus-container .code-frame {
  background: #F0F0F1;
  padding: 10px 20px 20px 20px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 426px;
}
.plus-container .code-frame .link {
  float: right;
  margin-bottom: 15px;
}
.plus-container .code-frame .code {
  width: 100%;
  height: calc(100% - 46px);
  font-size: 12px;
  overflow: auto;
  white-space: pre;
  color: #333;
}
.plus-container .table {
  width: 100%;
  border-spacing: 0 1em;
}
.plus-container .table .title td {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
}
.plus-container .table .news td {
  background: #F0F0F1;
  color: #4a4a4a;
  border-collapse: separate;
  padding: 10px 0px;
  font-size: 15px;
}
.plus-container .table .news td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 10px;
}
.plus-container .table .news td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-right: 10px;
}
.plus-container .check-frame {
  background: #F0F0F1;
  padding: 0px 4px;
  border-radius: 17px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}
.plus-container .check-frame .check-container {
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  padding: 0px 4px;
  /* On mouse-over, add a grey background color 
  &:hover input:not(:checked) ~ .checkmark:before {

  }*/
}
.plus-container .check-frame .check-container input {
  display: none;
  cursor: pointer;
}
.plus-container .check-frame .check-container input:checked ~ .checkmark {
  color: #F49C00;
}
.plus-container .check-frame .check-container input:checked ~ .checkmark:after {
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.plus-container .check-frame .check-container .checkmark {
  position: relative;
  display: block;
  padding: 4px 10px;
  font-size: 15px;
  z-index: 1;
  color: #8a8a8a;
  transition: color 150ms cubic-bezier(0.35, 0, 0.25, 1);
  letter-spacing: 1px;
}
.plus-container .check-frame .check-container .checkmark:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transition: all 150ms cubic-bezier(0.35, 0, 0.25, 1);
  z-index: -1;
}
.plus-container .check-frame .check-container .checkmark:hover:after {
  background: rgba(255, 255, 255, 0.9);
}
.plus-container .my-select {
  position: relative;
  -webkit-user-select: none;
          user-select: none;
}
.plus-container .my-select .select {
  background: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 17px;
  font-size: 15px;
  color: #4a4a4a;
  padding: 8px 19px;
  padding-right: 32px;
  min-width: 150px;
  height: 42px;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.plus-container .my-select .select:after {
  content: "›";
  position: absolute;
  right: 10px;
  color: #4a4a4a;
  font-size: 28px;
  transform: rotate(90deg);
}

.plus-container .my-select .select2 {
  background: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 17px;
  font-size: 15px;
  color: #4a4a4a;
  padding: 8px 19px;
  padding-right: 32px;
  min-width: 150px;
  height: 42px;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.plus-container .my-select .select2:after {
  content: "›";
  position: absolute;
  right: 10px;
  color: #4a4a4a;
  font-size: 28px;
  transform: rotate(90deg);
}

.plus-container .my-select .select3 {
  background: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 17px;
  font-size: 15px;
  color: #4a4a4a;
  padding: 8px 19px;
  padding-right: 32px;
  min-width: 150px;
  height: 42px;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.plus-container .my-select .select3:after {
  content: "›";
  position: absolute;
  right: 10px;
  color: #4a4a4a;
  font-size: 28px;
  transform: rotate(90deg);
}

.plus-container .my-select .option-frame {
  display: none;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: absolute;
  min-width: 150px;
  overflow: hidden;
  z-index:2;
}
.plus-container .my-select .option-frame .option {
  font-weight: 300;
  font-size: 15px;
  padding: 10px 15px;
  cursor: pointer;
  letter-spacing: 1px;
  white-space: nowrap;
}
.plus-container .my-select .option-frame .option.division {
  border-top: 1px solid #e8e8e8;
}
.plus-container .my-select .option-frame .option:hover {
  background: #f0f0f0;
}
.plus-container .date-input {
  border: 1px solid #cacaca;
  border-radius: 17px;
  height: 42px;
  padding: 8px 10px;
}
.plus-container .submit-button {
  margin-top: 15px;
  height: 40px;
  border-radius: 16px;
  width: 150px;
  outline: none;
  border: none;
  background: #323232;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  cursor: pointer;
}
.plus-container .button {
  display: flex;
  align-items: center;
  height: 36px;
  border-radius: 4px;
  padding: 0px 16px;
  outline: none;
  border: none;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 400;
  font-size: 14px;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.plus-container .button:active {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.plus-container .button .icon {
  min-width: 15px;
  width: 15px;
  height: 15px;
  margin-right: 4px;
}
.plus-container .output-btn {
  height: 36px;
  border-radius: 13px;
  padding: 0px 8px;
  /*min-width: 100px;*/
  outline: none;
  border: none;
  font-weight: 400;
  font-size: 12px;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-right: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 280ms cubic-bezier(0.35, 0, 0.25, 1);
  white-space: nowrap;
}
.plus-container .output-btn:last-child {
  margin-right: 0px;
}
.plus-container .output-btn .icon {
  min-width: 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  margin-right: 6px;
}
.plus-container .output-btn.api {
  background: rgba(243, 138, 56, 0.2);
  color: #F38A38;
}
.plus-container .output-btn.rss {
  background: rgba(70, 171, 128, 0.2);
  color: #46AB80;
}
.plus-container .output-btn.chart {
  background: rgba(81, 88, 168, 0.2);
  color: #5158A8;
}
.plus-container .output-btn.auth {
  background: #CCE6FF;
  color: #1A8FFD;
}
.plus-container .output-btn:hover {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.my-snack {
  position: fixed;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  bottom: 40px;
  left: 50%;
  transform: transitionX(-50%);
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: opacity 200ms cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  display: none;
}
.my-snack.show {
  opacity: 1;
}

::selection {
  background: #FFB534;
  color: #ffffff;
}

a {
  text-decoration: none;
}

.my-scrollbar {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  /*Firefox*/
  scrollbar-color: #ffffff transparent;
  scrollbar-width: thin;
}
.my-scrollbar::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.my-scrollbar::-webkit-scrollbar-track {
  border-radius: 10px;
}
.my-scrollbar::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}
.my-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #aaaaaa;
}
.my-scrollbar.white::-webkit-scrollbar-thumb {
  background: white;
}
.my-scrollbar.white::-webkit-scrollbar-thumb:hover {
  background: white;
}