html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
}

header {
  background-color: #383838;
  height: 80px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 3px 3px 10px 0px #cccccc;
          box-shadow: 3px 3px 10px 0px #cccccc;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header #logo {
  width: 250px;
  display: inline-block;
  position: relative;
}

header #logo img {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

header nav {
  width: calc(100% - 250px);
  display: inline-block;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header nav ul li {
  height: 80px;
  width: 80px;
}

header nav ul li + li {
  margin-left: 5px;
}

header nav ul li a {
  display: block;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

header nav ul li a img {
  width: 100%;
}

header nav ul li a span {
  display: none;
}

header nav ul li a:hover {
  border: 2px solid #fff;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  border-radius: 5px;
}

@media (max-width: 1024px) {
  header {
    background-color: #383838;
    height: 60px;
    padding: 0 15px;
  }
  header #logo {
    width: 170px;
  }
  header nav {
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    right: 0;
    top: 60px;
    background-color: #6f6f6f;
    max-width: 320px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    z-index: 2;
  }
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
  header nav ul li {
    height: 60px;
    width: 100%;
  }
  header nav ul li:nth-child(1) {
    border-top: 1px solid #fff;
  }
  header nav ul li + li {
    margin-left: 0;
    border-top: 1px solid #fff;
  }
  header nav ul li:last-child {
    border-bottom: 1px solid #fff;
  }
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 30px;
  }
  header nav ul li a img {
    display: none;
  }
  header nav ul li a span {
    display: inline-block;
    line-height: 60px;
    width: 100%;
  }
  header nav ul li a:hover {
    border: none;
    -webkit-transform: scale(1);
            transform: scale(1);
    border-radius: 0;
    background-color: #fff;
    color: black;
  }
  header nav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  header #menu_button {
    cursor: pointer;
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  header #menu_button span {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header #menu_button span::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: -12.5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header #menu_button span::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: -12.5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header #menu_button.active span {
    height: 0;
  }
  header #menu_button.active span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header #menu_button.active span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    right: 0;
    position: fixed;
    top: 60px;
    -webkit-transition: 0.9s;
    transition: 0.9s;
    opacity: 0;
    pointer-events: none;
  }
  header.active::after {
    pointer-events: auto;
    opacity: 1;
  }
}

* {
  outline: none;
}

:focus {
  outline: 0;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

body {
  background-color: #f1f1f1;
}

body.active {
  overflow: hidden;
}

.title{
  background-color: #ecedf5;
  padding: 0 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  box-sizing: border-box;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
}

h1 {
  font-size: 32px;
  line-height: 50px;
  font-weight: 600;
}

#time_out {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#time_out .content {
  width: 100%;
  max-width: 280px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#time_out .content h1 {
  text-align: center;
}

#time_out .content button {
  cursor: pointer;
  width: 100%;
  max-width: 120px;
  line-height: 2;
  border: 1px solid #1a73e8;
  background: #1a73e8;
  color: #fff;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#time_out .content button:hover {
  color: #1a73e8;
  background: transparent;
}

#time_out.active {
  pointer-events: auto;
  opacity: 1;
}

#home {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 30px);
  min-height: calc(100vh - 30px - 80px);
  margin: 15px;
  padding: 15px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 10px 0px #cccccc;
          box-shadow: 3px 3px 10px 0px #cccccc;
  position: relative;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 95px;
}

#home #btnAdd {
  background-color: transparent;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#home #btnAdd img {
  width: 100%;
}

#home #btnAdd:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

#home table {
  width: 100%;
}

#home table thead tr td {
  font-size: 18px;
  font-weight: 500;
}

#home table thead tr:hover {
  background-color: transparent;
}

#home table tbody tr {
  border-top: 1px solid #ccc;
}

#home table tbody tr td {
  font-size: 16px;
  color: #656565;
}

#home table tr:hover {
  background-color: #f1f1f1;
}

#home table tr td {
  padding: 15px 0;
  text-align: center;
}

#home table tr td button {
  cursor: pointer;
  width: 100%;
  line-height: 2;
  border: 1px solid #1a73e8;
  background: #1a73e8;
  color: #fff;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#home table tr td button:hover {
  color: #1a73e8;
  background: transparent;
}

#pop_up_window {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#pop_up_window .content {
  width: 100%;
  max-width: 768px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#pop_up_window .content h1 {
  text-align: center;
}

#pop_up_window .content .url,
#pop_up_window .content .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}

#pop_up_window .content .url label,
#pop_up_window .content .title label {
  width: 80px;
  display: block;
  line-height: 35px;
}

#pop_up_window .content .url input,
#pop_up_window .content .title input {
  line-height: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(80% - 80px);
  padding: 0 15px;
  border: 1px solid #bbb;
}

#pop_up_window .content .url.cover input,
#pop_up_window .content .title.cover input {
  width: calc(100% - 80px);
}

#pop_up_window .content .url .version,
#pop_up_window .content .url .sort,
#pop_up_window .content .title .version,
#pop_up_window .content .title .sort {
  text-align: center;
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#pop_up_window .content .url .version label,
#pop_up_window .content .url .sort label,
#pop_up_window .content .title .version label,
#pop_up_window .content .title .sort label {
  text-align: center;
  width: 50px;
}

#pop_up_window .content .url .version input,
#pop_up_window .content .url .sort input,
#pop_up_window .content .title .version input,
#pop_up_window .content .title .sort input {
  width: calc(100% - 50px);
  padding: 0 10px;
}

#pop_up_window .content .project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}

#pop_up_window .content .project .item {
  text-align: center;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#pop_up_window .content .project .item label {
  text-align: center;
  width: 80px;
  line-height: 35px;
}

#pop_up_window .content .project .item input {
  width: calc(100% - 80px);
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 35px;
  border: 1px solid #bbb;
}

#pop_up_window .content .drop-down-menu {
  margin-left: -5px;
  margin-right: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#pop_up_window .content .drop-down-menu .item {
  width: calc(33% - 10px);
  margin-left: 5px;
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#pop_up_window .content .drop-down-menu .item label {
  text-align: center;
  width: 80px;
  line-height: 35px;
}

#pop_up_window .content .drop-down-menu .item select {
  line-height: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 80px);
  padding: 0 15px;
  border: 1px solid #bbb;
}

#pop_up_window .content button {
  width: 100%;
  max-width: 120px;
  line-height: 35px;
  margin-top: 50px;
  background: #1a73e8;
  border: 1px solid #1a73e8;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  margin-left: 15px;
}

#pop_up_window .content button:hover {
  background: transparent;
  color: #1a73e8;
}

#pop_up_window .content button#btnRemove {
  background: #ca001c;
  border: 1px solid #ca001c;
  margin-left: 0;
  display: none;
  
}

#pop_up_window .content button#btnRemove:hover {
  background: transparent;
  color: #ca001c;
}

#pop_up_window.active {
  pointer-events: auto;
  opacity: 1;
}

#pop_up_window.remove .content button#btnRemove {
  display: inline-block;
}

@media (max-width: 1024px) {
  #home {
    min-height: calc(100vh - 30px - 60px);
    margin-top: 75px;
  }
  #home table thead {
    display: none;
  }
  #home table tbody tr {
    border-top: none;
    border: 1px solid #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #home table tbody tr td {
    width: calc(33.333333% - 2px);
    text-align: center;
    padding: 0 0 15px 0;
  }
  #home table tbody tr td:nth-child(1) {
    width: 100%;
  }
  #home table tbody tr td::before {
    content: attr(data-th) " : ";
    display: block;
    line-height: 30px;
    color: #fff;
    background-color: #383838;
    margin-bottom: 15px;
  }
  #home table tbody tr td:last-child {
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid #ccc;
  }
  #home table tbody tr td:last-child button {
    width: calc(100% - 60px);
  }
  #home table tbody tr td:last-child::before {
    display: none;
  }
  #home table tbody tr td + td {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  #home table tbody tr:hover {
    -webkit-box-shadow: 0px 2px 6px 1px #909090;
            box-shadow: 0px 2px 6px 1px #909090;
  }
}

@media (max-width: 768px) {
  #pop_up_window .content {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: unset;
  }
}

@media (max-width: 690px) {
  #home table tbody tr td {
    width: 100%;
    padding: 0 0 15px 0;
  }
  #home table tbody tr td::before {
    margin-bottom: 10px;
  }
  #home table tbody tr td + td {
    border-left: none;
    border-right: none;
  }
  #pop_up_window .content {
    max-height: 425px;
    overflow-y: auto;
  }
  #pop_up_window .content .url input,
  #pop_up_window .content .title input {
    width: calc(100% - 80px);
  }
  #pop_up_window .content .url.cover input,
  #pop_up_window .content .title.cover input {
    width: calc(100% - 80px);
  }
  #pop_up_window .content .url.cover::after,
  #pop_up_window .content .title.cover::after {
    display: none;
  }
  #pop_up_window .content .url .version,
  #pop_up_window .content .url .sort,
  #pop_up_window .content .title .version,
  #pop_up_window .content .title .sort {
    margin-top: 15px;
    width: 100%;
  }
  #pop_up_window .content .url .version label,
  #pop_up_window .content .url .sort label,
  #pop_up_window .content .title .version label,
  #pop_up_window .content .title .sort label {
    width: 80px;
  }
  #pop_up_window .content .url .version input,
  #pop_up_window .content .url .sort input,
  #pop_up_window .content .title .version input,
  #pop_up_window .content .title .sort input {
    width: calc(100% - 80px);
  }
  #pop_up_window .content .url::after,
  #pop_up_window .content .title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #bbb;
    margin-top: 15px;
  }
  #pop_up_window .content .project {
    margin-bottom: -15px;
  }
  #pop_up_window .content .project .item {
    width: 100%;
    margin-bottom: 15px;
  }
  #pop_up_window .content .drop-down-menu {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #pop_up_window .content .drop-down-menu .item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }
  #pop_up_window .content button {
    max-width: 100%;
    margin-top: 15px;
    margin-left: 0;
    margin-right: 0;
  }
}

.mt_15{
  margin-top: 15px !important;
}
/*# sourceMappingURL=index.css.map */