:root{
  --main-bg-color: #2098D1;
}
*,
*::after,
*::before{
  box-sizing: border-box;
}
html{
  font-size: .625em;
  font-size: calc(1em * .625);
  background: #f4f4f4;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  /* font: normal 300 1.4em / 1.2 'Open-sans', helvetica, sans-serif; */
  color: #111;
}
a{
  text-decoration: none;
  color: #111;
  cursor: pointer;
}
ol,
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
img{
  max-width:100%;
}
b,
strong{
  font-weight: 600;
}
hr{
  background: #111;
  box-shadow: none;
  border: none;
  height: 1px;
  width: 100%;
  margin: 10px 0;
}
::selection{
  background: var(--main-bg-color);
  color: #fff;
}
::-moz-selection{
  background: var(--main-bg-color);
  color: #fff;
}

.container{
  /* width: 100%; */
  /*max-width: 980px;*/
  margin: 0 auto;
  /* padding: 0 10px; */
}
.wrapper{
  padding: 40px 0 0;
  float: left;
  width: 100%;
}
.card{
   background-image: linear-gradient(120deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 0px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, .1);
  border:0;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease-in-out;
 
}
.card:hover{
  /* background-color:#3f3f3f; */
  /* background-image:  */
  background-image: linear-gradient(120deg, rgba(72, 198, 239, 0.8) 0%, rgba(111,134, 214, 0.8) 100%);


}

.card:hover img{

}
.card:hover .card__text,
.card:hover .card__title{
  color:#fff;
}
.card__picture img{
  width: 100%;
}
.card__picture{
  padding:0 ;
  display: block;
  width: 100%;
  float: left;
  height: auto;
  /* border-top-left-radius: 0px; */
  /* border-top-right-radius:06px; */
  background-color:#fff;
 
}
.card__picture img{
  position: relative;

}
.card-infos{
  float: left;
  padding:10px 20px;
  /*background: rgba(255,255,255,0.5);*/
  /* border-bottom-left-radius: 6px; */
  /* border-bottom-right-radius: 6px; */
  border-bottom: 0;
  height:100px;
  background-color:#f5f5f5;
}
.eill{
    width:100%;
    font-size:16px;
    line-height:20px;
    height: 40px;
    margin-bottom:40px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp:2;    
    -webkit-box-orient: vertical;
}



.card__title{
  font-family: 'Tahoma','Trebuchet MS', '微軟正黑體','Noto Sans TC',sans-serif!important;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0px;
  float: left;
  width: 100%;
}
.card__text{
  font-size: 1.4rem;
  font-weight: initial;
  margin: 0;
  color: #86888A;
  line-height: 1.5;
  float: left;
}
.card__text--high{
  font-weight: 600;
}

.header{
  background: var(--main-bg-color);
  height: 160px;
  display: flex;
}
.header__title{
  margin: auto;
  font-weight: 300;
  font-size: 3.2rem;
  color: #fff;
}
.header__title--high{
  font-weight: 600;
}

.sortable__nav{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.nav__link{
  padding: 0 10px 4px;
  color: #111;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid transparent;
}
.nav__link.is-active{
  border-color: var(--main-bg-color);
}

.footer__list.list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list__item.item{
  display: flex;
}
.item__link.link{
  margin: 0;
}
.item__link.link:not(:first-child){
  margin-left: 20px;
}
.link__icon{
  height: 2rem;
  width: 2rem;
}
