/*滚动条宽度*/
  ::-webkit-scrollbar {
    width: 0px;
    /* 纵向滚动条*/
    height: 0px;
    /* 横向滚动条 */
    background-color: transparent;
  }

  /*定义滚动条轨道 内阴影*/
  ::-webkit-scrollbar-track {
    // -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
    // background-color: #f9f9f9; //;
    border-radius: 8px;
  }

  /*定义滑块 内阴影*/
  ::-webkit-scrollbar-thumb {
    // -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
    background-color: #c8c8c8;
    border-radius: 8px;
  }
  
body{
    padding-top:42px;
}

#top_nav{
    position:fixed;
    width:100%;
    top:0;
    height: 42px;
    z-index:9999;
    box-shadow: 0px 0px 10px #0184B2;
}
#Header1_HeaderTitle{
  font-weight: bold;
}
#Header1_HeaderTitle::after{
  content: "——I'm J";
}
#home{
}