body
{
  font-family: 'Noto Sans TC','微軟正黑體',sans-serif;
	letter-spacing: 1px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: never;
}
header
{
  background-image: url('<?=userimg($article->bg->data)?>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction:column;
  align-items:center;
  padding:100px 24px;
  >*
  {
    max-width:450px;
  }
  h1
  {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px; /* 150% */
    letter-spacing: 2.16px;
    color:#002D5E;
    margin-bottom:20px;
  }
  picture
  {
    border:2px solid #fff;
    border-radius: 100%;
    margin-bottom:30px;
    img
    {
      display: block;
      border-radius: 100%;
      width: 100%;
    }
  }
  ul
  {
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
    margin-bottom:30px;
    li
    {
      background-color: #002D5E;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px; /* 150% */
      letter-spacing: 1.44px;
      color:#fff;
      padding:3px 10px;
      border-radius: 20px;
      margin:10px;
    }
  }
  p
  {
    text-align: center;
    color:#002D5E;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px; /* 150% */
    letter-spacing: 1.8px;
  }
}

main
{
  background-color: #4699CA;
  padding-top:50px;
  padding-bottom:50px;
  display: flex;
  flex-direction:column;
  align-items:center;
  padding-left:24px;
  padding-right:24px;
  >*
  {
    width: 450px;
    @media(max-width:488px)
    {
      width: 100%;
    }
  }
  h2
  {
    font-family: "Noto Sans TC";
    font-size: 20px;
    font-weight: 500;
    line-height: 30px; /* 150% */
    letter-spacing: 1.8px;
    text-align: center;
    color:#fff;
    padding-bottom:20px;
    margin-bottom:20px;
    border-bottom: 2px solid #fff;
  }

  #socil-list
  {
    li
    {
      margin-bottom:30px;
      a
      {
        transition-duration:0.5s;
        align-items:center;
        border-radius: 20px;
        color:#002D5E;
        display: flex;
        padding:11px 30px;
        background-color: #fff;
        box-shadow: 2px 2px 5px rgba(0,0,0,.5);
        span
        {
          flex:1;
          text-align: left;
        }
        i
        {
          margin-right:5px;
        }
        &:hover
        {
          color:#fff;
          background-color: #002D5E;
        }
      }
    }
  }
  #contact-list
  {
    ul
    {
      display: flex;
      flex-wrap:wrap;
      li
      {
        width: 100%;
        margin-bottom:16px;
        &:nth-child(1)
        {
          width: calc(50% - 8px);
          margin-right:8px;
        }
        &:nth-child(2)
        {
          width: calc(50% - 8px);
          margin-left:8px;
        }
        a
        {
          box-shadow: 2px 2px 5px rgba(0,0,0,.5);
          width: 100%;
          height:100%;          
          display: flex;
          flex-direction:column;
          align-items:center;
          background-color: #fff;
          padding:35px 20px;
          border-radius: 20px;
          word-break: break-all;
          color:#002D5E;
          font-size: 16px;
          font-weight: 700;
          line-height: 24px; /* 150% */
          letter-spacing: 1.44px;
          transition-duration:0.5s;
          i
          {
            font-size:24px;
            margin-bottom:15px;
          }
          &:hover
          {
            background-color: #002D5E;
            color:#fff;
          }
        }
      }
    }
  }

}