@charset "UTF-8";
body, html {
  height: 100%;
}

body {
  margin: 0px;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #333333;
  -webkit-user-select: none;
          user-select: none;
  background: #F7F7F7;
}

.header {
  height: 60px;
  position: sticky;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  background-color: #191919;
  border-top: 16px solid #191919;
}
.header.grey {
  background-color: #f0f0f0;
  border-top: 16px solid #f0f0f0;
}
.header a {
  display: inherit;
}
.header .logo {
  min-width: 18px;
  width: 18px;
  height: 18px;
}
.header .digi-logo {
  width: 70px;
  height: 18px;
  margin-left: 0px;
}
.header .input-frame {
  border-radius: 15px;
  height: 20px;
  width: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 10px;
  background-color: #ffffff;
  padding-right: 10px;
}
.header .input-frame .icon {
  min-width: 14px;
  width: 14px;
  height: 14px;
}
.header .search-input {
  outline: none;
  border: none;
  width: 60px;
  font-size: 12px;
  padding: 0px 15px;
  font-family: "微軟正黑體";
  background: transparent;
}
.header .myinput {
  position: relative;
  width: 90px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  padding-left: 6px;
  margin-top: -1px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header .myinput .icon {
  min-width: 10px;
  width: 10px;
  height: 10px;
}
.header .myinput .date-value {
  font-size: 12px;
  color: #666;
  margin-left: 7px;
  transform: scale(0.8);
  transform-origin: left center;
}
.header .myinput:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid;
  margin-left: 15px;
  color: rgba(0, 0, 0, 0.54);
  position: absolute;
  right: 5px;
}

.channel-menu {
  position: sticky;
  top: 50px;
  width: 100%;
  max-width: 100%;
  background-color: #191919;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 9;
  margin-top: -7px;
  display: flex;
  align-items: center;
}
.channel-menu .tab-frame {
  display: flex;
  align-items: center;
  height: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  transform: scale(0.8);
  transform-origin: left bottom;
  min-width: calc(100 / 80 * 100% - 40px);
}
.channel-menu .tab-frame::-webkit-scrollbar {
  height: 0px;
  display: none;
}
.channel-menu .tab-frame .tab {
  height: 100%;
  font-size: 10px;
  margin-right: 15px;
  cursor: pointer;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 100;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.channel-menu .tab-frame .tab:last-child {
  margin-right: 0px;
}
.channel-menu .tab-frame .tab.focus {
  opacity: 1;
  font-weight: 300;
}
.channel-menu .tab-frame .tab.twoline {
  font-size: 15px;
  line-height: 19px;
}
.channel-menu .tab-frame .bar {
  width: 48px;
  left: 0px;
  display: inline-block;
  position: absolute;
  bottom: 0px;
  height: 2.5px;
  background-color: #ffffff;
  transition: background-color 0.2s;
}
.channel-menu .more-btn {
  margin-left: -30px;
}
.channel-menu .more-btn .icon {
  min-width: 14px;
  width: 14px;
  height: 14px;
}

.channel-frame {
  display: flex;
  overflow: hidden;
  position: relative;
}
.channel-frame .channel-wrapper {
  padding: 10px;
  padding-bottom: 75px;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.content-frame {
  padding: 10px;
  padding-top: 0px;
  padding-bottom: 60px;
  overflow-y: hidden;
  height: calc(100% - 47px);
}
.content-frame::-webkit-scrollbar {
  width: 0px;
  display: none;
}

.news-display-2 {
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  padding: 5px;
  background-color: #ffffff;
  max-height: 56px;
}
.news-display-2 .title-frame {
  margin-right: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.news-display-2 .title-frame .wrapper {
  width: 100%;
  margin-top: -2px;
}
.news-display-2 .title-frame .wrapper .title {
  width: 100%;
  margin-top: -6px;
}
.news-display-2 .title-frame .wrapper .title .text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 153.8461538462%;
  font-size: 12px;
  line-height: 1.4;
  transform: scale(0.65);
  transform-origin: left top;
  letter-spacing: 1px;
}
.news-display-2 .title-frame .date {
  color: #888;
  font-weight: 300;
  font-size: 12px;
  line-height: 12px;
  display: flex;
  align-items: center;
  transform: scale(0.6);
  transform-origin: left top;
  margin-top: -10px;
}
.news-display-2 .title-frame .date .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  margin-top: 1px;
}
.news-display-2 .title-frame .label {
  font-size: 12px;
  font-weight: 100;
  line-height: 12px;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 3px;
  display: inline-block;
  white-space: nowrap;
  transform: scale(0.6);
  transform-origin: left top;
  letter-spacing: 1px;
}
.news-display-2 .title-frame .label.tech {
  background-color: #F49C00;
}
.news-display-2 .title-frame .label.research {
  background-color: #F49C00;
}
.news-display-2 .title-frame .label.iot {
  background-color: #0074C8;
}
.news-display-2 .photo {
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 47px;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(150, 150, 150, 0.2);
}

.vedio-frame {
  display: flex;
  overflow: hidden;
  margin: 0px -10px;
  padding-left: 15px;
}
.vedio-frame .vedio {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 150px;
  border-radius: 6px;
  margin-left: 15px;
}

.topic-news {
  margin-bottom: 20px;
}
.topic-news .photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.topic-news .title {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.topic-news .info-frame {
  display: flex;
  align-items: center;
  margin-top: -3px;
  transform: scale(0.7);
  transform-origin: left bottom;
}
.topic-news .info-frame .date {
  display: flex;
  align-items: center;
  color: #888;
  font-size: 13px;
}
.topic-news .info-frame .date .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.topic-news .info-frame .author {
  margin-left: 15px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #888;
}
.topic-news .info-frame .author .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.topic-news .abstract {
  margin-top: -12px;
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  border-left: 3px solid #777;
  color: #777;
  padding-left: 8px;
  transform: scale(0.7);
  transform-origin: left bottom;
  min-width: calc(100 / 70 * 100%);
}

.digi-main-title {
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 10px;
}

.news-list {
  display: flex;
  margin-bottom: 10px;
  height: 50px;
}
.news-list .photo {
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 50px;
  width: 50px;
  height: 50px;
}
.news-list .title-frame {
  margin-left: 5px;
  width: 100%;
  height: 166.6666666667%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  transform: scale(0.6);
  transform-origin: left top;
  min-width: calc(100 / 60 * 100% - 85px);
}
.news-list .title-frame .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-list .title-frame .info-frame {
  display: flex;
  align-items: center;
}
.news-list .title-frame .info-frame .date {
  color: #888;
  font-weight: 300;
  font-size: 13px;
  line-height: 13px;
  display: flex;
  align-items: center;
}
.news-list .title-frame .info-frame .date .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  margin-bottom: 1px;
}
.news-list .title-frame .info-frame .author {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #888;
  margin-left: 15px;
}
.news-list .title-frame .info-frame .author .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  margin-bottom: 1.5px;
}

.bottom-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  bottom: 0px;
  z-index: 8;
  background-color: #ffffff;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);
  padding: 0px 15px;
}
.bottom-nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  transform: scale(0.7);
  transform-origin: left center;
  margin-top: 2px;
  width: 142.8571428571%;
}
.bottom-nav .btn {
  text-align: center;
}
.bottom-nav .btn .text {
  font-size: 12px;
  white-space: nowrap;
  margin-top: -3px;
}
.bottom-nav .icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
}
.bottom-nav.grey .btn .text {
  color: #888;
}

.news-content-frame {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  left: 0px;
  background: #ffffff;
  transition: top 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10;
  overflow: hidden;
}
.news-content-frame .fab-button {
  position: absolute;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  cursor: pointer;
}
.news-content-frame .fab-button .icon {
  width: 10px;
  height: 10px;
}
.news-content-frame .fab-button .icon.white {
  display: none;
}
.news-content-frame .fab-button .icon.full {
  display: none;
}
.news-content-frame .fab-button.back {
  background-color: rgba(255, 255, 255, 0.95);
  top: 18px;
  left: 10px;
  z-index: 4;
}
.news-content-frame .fab-button.photos {
  background-color: rgba(255, 255, 255, 0.95);
  top: 18px;
  left: 40px;
  z-index: 4;
}
.news-content-frame .fab-button.like {
  right: 40px;
  top: -12px;
  z-index: 4;
}
.news-content-frame .fab-button.like.liked .icon.black {
  display: none !important;
}
.news-content-frame .fab-button.like.liked .icon.white {
  display: none !important;
}
.news-content-frame .fab-button.like.liked .icon.full {
  display: block !important;
}
.news-content-frame .fab-button.share {
  right: 10px;
  top: -12px;
  z-index: 4;
}
.news-content-frame .fab-button.dark {
  top: 18px;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}
.news-content-frame .fab-button.dark .icon.black {
  display: none;
}
.news-content-frame .fab-button.dark .icon.white {
  display: block;
}
.news-content-frame .main-photo {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 0px;
  padding-bottom: 66.66%;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.news-content-frame .srcoll-wrapper {
  padding-top: 60px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.news-content-frame .content-wrapper {
  height: 100%;
  position: relative;
  z-index: 3;
}
.news-content-frame .content-wrapper .main-title {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  padding: 0px 10px;
  padding-top: 15px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}
.news-content-frame .content-wrapper .main-title::after {
  position: absolute;
  background-image: linear-gradient(transparent, #111), linear-gradient(transparent, #111);
  content: "";
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.8;
}
.news-content-frame .content {
  position: relative;
  z-index: 2;
  margin-top: -25px;
  padding-top: 40px;
  padding-bottom: 25px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #ffffff;
}
.news-content-frame .content .tab-bar::before {
  content: "";
  height: 3px;
  width: 25px;
  border-radius: 10px;
  background-color: #CED5DE;
  position: absolute;
  top: 15px;
  left: 50%;
  margin-left: -12.5px;
}
.news-content-frame .content .info-frame {
  display: flex;
  align-items: center;
  margin-top: -15px;
  padding: 0px 15px;
  transform: scale(0.7);
  transform-origin: left center;
  min-width: calc(100 / 70 * 100%);
}
.news-content-frame .content .info-frame .date {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 14px;
}
.news-content-frame .content .info-frame .date .icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.news-content-frame .content .info-frame .author {
  margin-left: 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}
.news-content-frame .content .info-frame .author .icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  margin-bottom: 1px;
}
.news-content-frame .content .content-body {
  padding: 0px 15px;
  line-height: 1.4;
  letter-spacing: 1px;
  transform: scale(0.7);
  transform-origin: left top;
  min-width: calc(100 / 70 * 100%);
}
.news-content-frame .content .sub-title {
  padding: 0px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 15px;
}
.news-content-frame .content .relative-news-frame {
  width: 100%;
  display: flex;
  overflow-x: hidden;
  margin-top: 15px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.news-content-frame .content .relative-news-frame .relative-news {
  display: inline-block;
  min-width: 160px;
  width: 160px;
  margin-right: 10px;
  border-radius: 12px;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
}
.news-content-frame .content .relative-news-frame .relative-news .photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-bottom: 66.66%;
  height: 0px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
}
.news-content-frame .content .relative-news-frame .relative-news .photo .label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  line-height: 12px;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 3px;
  display: inline-block;
  white-space: nowrap;
  transform: scale(0.7);
  transform-origin: left top;
}
.news-content-frame .content .relative-news-frame .relative-news .photo .label.tech {
  background-color: #F49C00;
}
.news-content-frame .content .relative-news-frame .relative-news .title-frame {
  position: relative;
  margin-top: -12px;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 5px;
  height: 36px;
}
.news-content-frame .content .relative-news-frame .relative-news .title-frame .title {
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transform: scale(0.7);
  transform-origin: left top;
  min-width: calc(100 / 70 * 100%);
}
.news-content-frame .content .relative-news-frame::after {
  content: "";
  min-width: 5px;
  width: 5px;
}
.news-content-frame .content .next-frame {
  padding: 8px 15px;
  background-color: #E6E8EB;
  margin-top: 10px;
  cursor: pointer;
}
.news-content-frame .content .next-frame .next-sub-title {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.news-content-frame .content .next-frame .next-sub-title .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.news-content-frame .content .next-frame .next-sub-title .icon.pre {
  transform: rotate(180deg);
}
.news-content-frame .content .next-frame .next-news {
  display: flex;
  margin-top: 10px;
  height: 50px;
}
.news-content-frame .content .next-frame .next-news .photo {
  border-radius: 8px;
  box-shadow: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 50px;
  width: 50px;
  height: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.news-content-frame .content .next-frame .next-news .title-frame {
  margin-left: 8px;
  width: 100%;
  height: calc(100 / 60 * 100%);
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  transform: scale(0.6);
  transform-origin: left top;
  min-width: calc(100 / 60 * 100% - 85px);
}
.news-content-frame .content .next-frame .next-news .title-frame .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-content-frame .content .next-frame .next-news .title-frame .time-frame {
  display: flex;
  align-items: center;
  font-size: 13px;
}
.news-content-frame .content .next-frame .next-news .title-frame .time-frame .date {
  color: #888;
  font-weight: 300;
  display: flex;
  align-items: center;
}
.news-content-frame .content .next-frame .next-news .title-frame .time-frame .date .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.news-content-frame .content .next-frame .next-news .title-frame .time-frame .author {
  display: flex;
  align-items: center;
  color: #888;
  margin-left: 15px;
}
.news-content-frame .content .next-frame .next-news .title-frame .time-frame .author .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

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

a {
  text-decoration: none;
  color: #333333;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}