a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
/* navbar */
/* 当页面宽度小于770px（一般是手机浏览器的时候）不显示粒子 */
/* 使用 media 的时候需要严格遵守空格，否则在本地有效的media在 github page上就会失效 */
/* 注意！！！！！新学的注意事项：visibility是隐藏，但是不会去除该模块的占位（如果是relative） 但是display会去除占位。 */
@media screen and (max-width:770px) {
#cas{
  visibility: hidden;
}
#figure_background{
  display: none;
}
}
#navbar_main{
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #dbdbdb;
}
#nav_content{
  font-family: Raleway,Source Sans Pro;
  font-weight: 900;
}
/* general */
#body{
  background-color: #f1f1f1;
}
.container-fluid{
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5em;
}
#cas{
  position: absolute;
}
/* 顶部左边的profile */
.left_profile_content{
  padding-bottom: 0.5em;
}
.the_title{
  font-family: Raleway,Source Sans Pro;
  font-weight: 900;
  font-size: 2em;
  letter-spacing: 0.300em;
  color: #2e2d2d;
}
#my_description{
  font-family: Source Sans Pro;
  font-weight: 350;
  font-size: 0.9em;
  color: #8a8a8a;
  line-height: 0.5em;
}
.profile_icon{
  width: 0.9em;
  position: relative;
  top: -0.1em;
}
/* 固定背景图 */
#figure_background{
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0;
}
#fixed{
  background-image: url('../assets/img/background_fixed.png');
  height: 20em;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
/* 居中提示语 */
.tip_middle{
  padding-top: 2em;
  padding-bottom: 10em;
  font-family: Raleway,Source Sans Pro;
  text-align: center;
  font-size: 1em;
  color: #8a8a8a;
}
