/* 友情链接标签页组件样式 - 侧边导航布局 */
#wrapper {
  width: 100%;
  height: 190px;
  background-color: #F2F2F2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  overflow: hidden;
}

#left-side {
  height: 70%;
  width: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#left-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#left-side ul li {
  padding-top: 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 34px;
  color: rgba(51, 51, 51, 0.5);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
          transition: all .2s ease-out;
}

#left-side ul li:hover {
  color: #333333;
  -webkit-transition: all .2s ease-out;
          transition: all .2s ease-out;
}

#left-side ul li:hover > .icon {
  fill: #333;
}

#wrapper #left-side ul li div.icon b, #left-side ul li.active {
  color: rgba(51, 51, 51, 0.5);
  outline: none;
  font-weight: 700;
  font-family: 'Raleway';
  font-size: 1.05em;
  cursor: pointer;
  text-size-adjust: 100%;
}
#wrapper #left-side ul li div.icon.active b, #left-side ul li.active {
  color: rgb(51, 51, 51);
}


#left-side ul li.active:hover > .icon {
  fill: #E74C3C;
}

.icon {
  position: relative;
  width: 10px;
  height: 32px;
  display: block;
  fill: rgba(51, 51, 51, 0.5);
  margin-right: 20px;
  -webkit-transition: all .2s ease-out;
          transition: all .2s ease-out;
}

.icon.active {
  fill: #E74C3C;
}

.icon.big {
  width: 10px;
  height: 0px;
  fill: rgba(51, 51, 51, 0.5);
}

#border {
  height: 150px;
  width: 1px;
  background-color: rgba(51, 51, 51, 0.2);
}

#border #line.one {
  width: 5px;
  height: 54px;
  background-color: #E74C3C;
  margin-left: -2px;
  margin-top: 25px;
  -webkit-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

#border #line.two {
  width: 5px;
  height: 54px;
  background-color: #E74C3C;
  margin-left: -2px;
  margin-top: 79px;
  -webkit-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

#right-side {
  height: 190px;
  width: 85%;
  overflow: hidden;
}

#right-side #first, #right-side #second {
  position: absolute;
  height: 190px;
  width: 700px;
  -webkit-transition: all .6s ease-in-out;
          transition: all .6s ease-in-out;
  margin-top: -190px;
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

#right-side #first.active, #right-side #second.active {
  margin-top: 0px;
  opacity: 1;
  -webkit-transition: all .6s ease-in-out;
          transition: all .6s ease-in-out;
}

#right-side p {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

#right-side a {
  color: #333;
  text-decoration: none;
}

#right-side a:hover {
  color: #E74C3C;
  text-decoration: underline;
}

/* SVG图标样式 */
.icon svg {
  width: 100%;
  height: 100%;
  display: none;
}
#right-side #first p, #right-side #second p{
  color: #333;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
}
#right-side #first p a, #right-side #second p a {
  color: #2fa0ec;
  text-decoration: none;
  outline: none;
  font-weight: 500;
  font-family: 'Raleway';
}

#right-side #first p a:hover, #right-side #second p a:hover {
  color: #74777b;
  text-decoration: none;
}