@charset "UTF-8";
:root {
  --bkg-color:    #f2f2f2;
  --primary-blue: #008BD2;
  --primary-blue-dark:  #1B1464;
  --primary-blue-neon:  #07DCEB;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #444;
  font-size: 18px;
  line-height: 1.8;
  font-family: Helvetica, Arial, '微軟正黑體', '新細明體', sans-serif;
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.section-inner {
  max-width: 990px;
  margin: 0 auto;
  width: 100%;
}

/*-- Header --*/
.pdc-epaper__header {
  background: #fff;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
}

.pdc-epaper__header--title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 26px;
  font-weight: 200;
}

.pdc-epaper__header--title a {
  border-bottom: 1px solid #eee;
  color: #999;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.pdc-epaper__header--title a::after {
  content: '';
  background: var(--primary-blue-neon);
  display: block;
  position: absolute;
  right: 100%;
  left: 0;
  bottom: -3px;
  -webkit-transition: .3s linear;
  transition: .3s linear;
  height: 3px;
}

.pdc-epaper__header--title a:hover {
  color: #555;
}

.pdc-epaper__header--title a:hover::after {
  right: 0;
}

.pdc-epaper__header--vol {
  color: #999;
  font-size: 15px;
  letter-spacing: 1px;
}

/*-- Articles --*/
.pdc-epaper__article-wrap {
  background: var(--bkg-color);
  padding: 24px 0;
}

.pdc-epaper__article-wrap:before, .pdc-epaper__article-wrap:after {
  content: "";
  display: table;
}

.pdc-epaper__article-wrap:after {
  clear: both;
}

.pdc-epaper__article {
  margin-bottom: 1.2em;
  position: relative;
}

.pdc-epaper__article:before, .pdc-epaper__article:after {
  content: "";
  display: table;
}

.pdc-epaper__article:after {
  clear: both;
}

.article-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 460px;
}

h2.article-title {
  color: var(--primary-blue);
  font-size: 1.6em;
  line-height: 1.2;
  max-width: 400px;
}

.article-img {
  height: 200px;
  -webkit-box-shadow: -1px -1px 15px 10px #ddd;
          box-shadow: -1px -1px 15px 10px #ddd;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.article-img:hover img {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.article-content {
  background: var(--bkg-color);
  padding: 1rem 1.2rem;
  padding-right: 0;
  margin-left: 420px;
  margin-top: -180px;
  bottom: 0;
  position: relative;
}

.article-content:before, .article-content:after {
  content: "";
  display: table;
}

.article-content:after {
  clear: both;
}

.article-content p {
  margin: 0;
  margin-bottom: 1rem;
}

.article-content::after {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*-- Footer --*/
.pdc-epaper__footer {
  border-top: 1px solid var(--primary-blue-neon);
  padding: 30px 0px 120px;
}

.pdc-epaper__footer:before, .pdc-epaper__footer:after {
  content: "";
  display: table;
}

.pdc-epaper__footer:after {
  clear: both;
}

.pdc-info-wrap {
  float: left;
}

.pdc-info-wrap .ibm-vad {
  color: var(--primary-blue-dark);
  font-size: 13px;
  margin: 0;
}

.pdc-logo:before, .pdc-logo:after {
  content: "";
  display: table;
}

.pdc-logo:after {
  clear: both;
}

.pdc-logo img {
  float: left;
  margin-bottom: 16px;
}

.pdc-services {
  float: left;
  list-style: none;
  margin: 5px 0 0 15px;
  padding: 0;
}

.pdc-services li {
  color: #555;
  float: left;
  font-size: 13px;
}

.pdc-services li:not(:last-child):after {
  content: ' / ';
  color: #999;
  font-size: 12px;
  margin: 0 6px;
}

.pdc-address {
  display: block;
  float: none;
}

.pdc-address p {
  color: var(--primary-blue-dark);
  font-size: 15px;
  font-weight: bold;
  margin: 0;
}

.pdc-address span {
  color: #707070;
  font-size: 13px;
  margin-right: 1em;
}

.pdc-address a {
  color: var(--primary-blue-neon);
  display: block;
  font-size: 20px;
  text-decoration: none;
}

.pdc-address a:hover {
  color: #00407B;
}

.ibm-partner-logo {
  float: right;
}

.ibm-partner-logo img {
  display: block;
  clear: both;
  margin-bottom: 20px;
  width: 140px;
}

.contact__float-bar {
  position: fixed;
  background: var(--primary-blue);
  bottom: 0;
  width: 100%;
}

.contact__float-bar p {
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contact__float-bar p a {
  color: #fff;
  text-decoration: none;
  margin-right: 16px;
}

.contact__float-bar p span {
  font-weight: normal;
}

.contact__float-bar .btn-contact_us {
  background: var(--primary-blue-neon);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: bold;
  float: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
  padding: 6px 45px;
  text-decoration: none;
}

.contact__float-bar .btn-contact_us:hover {
  background: var(--primary-blue-dark);
}

/*-- Components --*/
.table {
  width: 100%;
  border-collapse: collapse;
}

.table-in-article {
  font-size: 16px;
}

.table-in-article thead th {
  border-bottom: 2px solid var(--primary-blue);
  text-align: left;
}

.table-in-article th, .table-in-article td {
  min-width: 2rem;
  padding: 3px 5px;
}

.table-in-article th:first-child, .table-in-article td:first-child {
  font-weight: bold;
  text-align: center;
}

.table-in-article tbody tr:first-child {
  background: #e2f3f5;
}

/* Responsive */
@media only screen and (max-width: 1020px) {
  body {
    font-size: 16px;
  }
  .pdc-epaper__header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .article-title-wrap {
    max-width: 400px;
  }
  h2.article-title {
    max-width: 350px;
  }
  .article-content {
    margin-left: 360px;
  }
  .pdc-epaper__footer {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .article-title-wrap {
    max-width: 300px;
  }
  h2.article-title {
    max-width: 250px;
  }
  .article-content {
    margin-left: 260px;
  }
  .pdc-services {
    margin-left: 0;
    clear: both;
  }
  .pdc-address span {
    display: block;
  }
}

@media only screen and (max-width: 680px) {
  .article-title-wrap {
    max-width: 100%;
  }
  h2.article-title {
    max-width: 100%;
  }
  .article-content {
    margin-left: 0;
    margin-top: 0;
    padding: 0;
  }
  .pdc-epaper__footer {
    padding: 20px 0px 80px;
  }
}

@media only screen and (max-width: 640px) {
  body {
    font-size: 15px;
  }
  .pdc-services {
    margin-left: 0;
  }
  .contact__float-bar a {
    display: none;
  }
}
/*# sourceMappingURL=pdc-epaper-styles.css.map */