@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900&display=swap&subset=chinese-traditional");
body {
  margin: 0;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #333333;
  background: #f5f5f5;
}

.container {
	max-width: 1280px;
}

a {
  text-decoration: none;
}

.width-wrapper {
  margin: 0 auto;
}

.author-info-frame {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 50px;
  padding: 20px;
}
.author-info-frame .avatar {
  margin: 0 auto;
  min-width: 100px;
  width: 100px;
  height: 100px;
}
.author-info-frame .name {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.author-info-frame ul {
  margin: 0px;
  padding-left: 20px;
}
.author-info-frame ul .item {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.author-info-frame ul .item::before {
  /*content: "";*/
  width: 0;
  height: 0;
  border-left: 7px solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-right: 8px;
  color: rgba(0, 0, 0, 0.54);
}

.author-intro {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
  position: sticky;
  max-height: 300px;
  top: 270px;
  padding: 20px;
  overflow: auto;
  margin-top: 20px;
  font-size: 14px;
}
.author-intro.my-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.avatar {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 100%;
  position: relative;
}
.avatar::after {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  /*border: 1px solid rgba(150, 150, 150, 0.2);*/
  box-sizing: border-box;
}

.post-frame {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(80, 80, 80, 0.1);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.post-frame .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.post-frame .top .user-frame {
  display: flex;
  align-items: center;
}
.post-frame .top .user-frame .avatar {
  min-width: 60px;
  width: 60px;
  height: 60px;
}
.post-frame .top .user-frame .info-frame {
  margin-left: 5px;
}
.post-frame .top .user-frame .info-frame .name {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}
.post-frame .top .user-frame .info-frame .title {
  font-size: 13px;
  color: #9B9BA6;
}
.post-frame .top .right {
  text-align: right;
}
.post-frame .top .right .time {
  text-align: center;
  font-family: Dubai Light, "Noto Sans TC", "微軟正黑體", sans-serif;
  font-size: 14px;
  color: #9B9BA6;
  margin-top: -8px;
}
.post-frame .top .right .menu {
  margin-top: -6px;
}
.post-frame .top .right .menu svg {
  width: 20px;
  height: 20px;
}
.post-frame .og-frame {
  border-radius: 8px;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  height: 130px;
}
.post-frame .og-frame .photo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  min-width: 130px;
  width: 130px;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}
.post-frame .og-frame .info {
  padding: 15px;
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
}
.post-frame .og-frame .info .title {
  font-size: 18px;
  font-weight: 500;
  word-wrap: break-word;
  color: #333;
}
.post-frame .og-frame .info .desc {
  font-size: 14px;
  color: #555555;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.post-frame .social-action {
  display: flex;
  align-items: center;
  -webkit-user-select: none;
          user-select: none;
  margin-top: 20px;
  /*margin-bottom: 20px; 暫時拿掉*/
  height: 20px;
}
.post-frame .social-action .wrapper {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: #4C4C57;
  cursor: pointer;
}
.post-frame .social-action .wrapper .mat-icon-button {
  width: 36px;
  height: 36px;
  line-height: 36px;
}
.post-frame .social-action .wrapper .icon {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.post-frame .social-action .wrapper.keep {
  margin-left: auto;
  margin-right: 0px;
}
.post-frame .social-action .wrapper.keep .icon {
  margin-right: 0px;
}
.post-frame .comment-frame {
  position: relative;
  margin-top: 10px;
}
.post-frame .comment-frame .comment {
  display: flex;
  align-items: flex-start;
  margin-bottom: 7px;
}
.post-frame .comment-frame .comment .avatar {
  width: 35px;
  min-width: 35px;
  height: 35px;
}
.post-frame .comment-frame .comment .right {
  width: 100%;
  margin-left: 10px;
}
.post-frame .comment-frame .comment .right .wrapper {
  display: flex;
}
.post-frame .comment-frame .comment .right .wrapper .time-frame {
  position: relative;
}
.post-frame .comment-frame .comment .right .wrapper .time-frame .time {
  position: absolute;
  bottom: 0px;
  margin-left: 8px;
  color: #9B9BA6;
  font-size: 12px;
  white-space: nowrap;
}
.post-frame .comment-frame .comment .right .wrapper:hover .menu-frame .menu-btn {
  opacity: 1;
}
.post-frame .comment-frame .comment .right .content-frame {
  background-color: #f7f7f7;
  padding: 5px 10px;
  border-radius: 8px;
}
.post-frame .comment-frame .comment .right .content-frame .name {
  font-size: 13px;
  font-weight: 500;
}
.post-frame .comment-frame .comment .right .content-frame .content {
  font-size: 15px;
  white-space: pre-wrap;
}
.post-frame .comment-frame .comment .right .action-frame {
  display: flex;
  align-items: center;
  margin-top: 3px;
}
.post-frame .comment-frame .comment .right .action-frame.upload {
  pointer-events: none;
  opacity: 0.5;
}
.post-frame .comment-frame .comment .right .action-frame .wrapper {
  display: flex;
  align-items: center;
  margin-right: 10px;
  color: #777777;
  cursor: pointer;
  font-size: 13px;
}
.post-frame .comment-frame .comment .right .action-frame .wrapper .like-btn {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.post-frame .comment-frame .comment .right .action-frame .wrapper .icon {
  min-width: 14px;
  width: 14px;
  height: 14px;
  margin-right: 3px;
}
.post-frame .comment-frame .comment .right .action-frame .reply {
  font-size: 12px;
  cursor: pointer;
  color: #777777;
  font-weight: 500;
}
.post-frame .comment-frame .more {
  cursor: pointer;
  color: #777777;
  font-size: 14px;
  font-weight: 500;
  margin-top: -5px;
  margin-bottom: 8px;
}
.post-frame .add-comment-frame {
  display: flex;
  align-items: center;
}
.post-frame .add-comment-frame .avatar {
  min-width: 35px;
  width: 35px;
  height: 35px;
}
.post-frame .add-comment-frame .textarea {
  width: 100%;
  min-height: 30px;
  margin-left: 10px;
  border-radius: 20px;
  outline: none;
  border: 1px solid #F3F3F6;
  background-color: #FAFAFB;
  font-size: 15px;
  padding: 6px 7px 6px 17px;
  color: #333333;
  overflow: hidden;
}
.post-frame .add-comment-frame .textarea:empty::before {
  content: "Write your comment...";
  color: #B9BFCA;
  cursor: text;
}
.post-frame .add-comment-frame .textarea:empty:focus::before {
  opacity: 0.7;
}

.my-scrollbar {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  /*Firefox*/
  scrollbar-color: #dedede transparent;
  scrollbar-width: thin;
}
.my-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.my-scrollbar::-webkit-scrollbar-track {
  border-radius: 10px;
}
.my-scrollbar::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 10px;
}
.my-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #aaaaaa;
}

.margin_left {
    margin-left: -10px !important;
	margin-top: 5px;
}