@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Serif+TC:wght@200;400;600;700;900&family=Raleway:wght@300;400;600&display=swap');
.card {
  font-family: 'Raleway', 'Noto Sans TC', "微軟正黑體", 'Microsoft JhengHei', sans-serif;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  box-shadow: 0 0 8px rgba(188,72,0,0.45);
  margin: 10px;
  border: none;
	min-width: 250px;
}
.card > .fab {
  height: 50px;
  width: 50px;
  background-color: orangered;
  color: white;
  text-align: center;
  text-decoration: none;
  padding-top: 15px;
  border-radius: 50px;
  position: absolute;
  top: 5%;
  right: 5%;
  box-shadow: 0 2px 1rem rgba(0, 0, 0, 0.6);
}
.card .pic {
  height: 250px;
}
.card .pic img{
	height: 100%; width: auto;
}
.card > .card-body {
  padding: 16px;
	background-color: rgba(255,221,184,1.00);
}
.card > .card-body > .card-title {
  font-weight: 500;
  font-size: 1.2rem;
	color: #00417D;
}
.card > .card-body > p {
  text-align: center;
  font-size: 0.95rem;
}
.card > .card-footer {
  background-color: inherit;
  border-top: 1px solid rgba(160, 160, 160, 0.3);
  position: relative;
  padding: 0px 0;
}
.card > .card-footer > a {
  position: relative;
  cursor: pointer;
  color: orangered;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  height: 54px;
  line-height: 54px;
  font-size: 15px;
  padding: 0 28px;
}
.card > .card-footer > a:hover {
  background-color: orangered;
  color: white;
}