:root {
  --cMain: #3a4d4b;
  --cSub: #1f827a;
  --cBannerText: #e7ffd1;
  --cLight: #91B55E;
  --cBorder: #D6D6D6;
  --cMainLighten: #6d948e;
  --cSubDarken: #1f756d;
}

* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-weight: normal;
  margin: 0;
  letter-spacing: 1px;
}

a {
  text-decoration: none !important;
}
a:hover {
  cursor: pointer;
}

p {
  margin: 0;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: none !important;
  outline-offset: 0 !important;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none !important;
}

.videosMain {
  position: relative;
}
.videosMain .contentContainer {
  padding: 3rem;
}
@media only screen and (max-width: 1024px) {
  .videosMain .contentContainer {
    padding: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .videosMain .contentContainer {
    padding: 2rem 1rem;
  }
}
.videosMain .contentContainer .videosList {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 50vh;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.videosMain .contentContainer .videosList .videoCard {
  width: calc(33.33% - 3vw);
  padding: 1rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid var(--cBorder);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 8px;
  margin: 1.5vw;
}
@media only screen and (max-width: 1024px) {
  .videosMain .contentContainer .videosList .videoCard {
    width: calc(50% - 3vw);
  }
}
@media only screen and (max-width: 576px) {
  .videosMain .contentContainer .videosList .videoCard {
    width: 100%;
    margin: 0.5rem 0;
  }
}
.videosMain .contentContainer .videosList .videoCard .iframe {
  width: 100%;
  height: 200px;
  border-radius: 0.3rem;
}
.videosMain .contentContainer .videosList .videoCard .title {
  font-weight: bold;
  color: var(--cMain);
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 14px;
  min-height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.videosMain .contentContainer .tabelPagination {
  margin-top: 4rem;
}

/* 頁籤樣式 */
.videosMain .contentContainer .tabContainer {
  max-width: 1270px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.videosMain .contentContainer .tabContainer .nav-tabs {
  border-bottom: none;
  margin-bottom: 0;
}

.videosMain .contentContainer .tabContainer .nav-tabs .nav-item {
  margin-bottom: 0;
}

.videosMain .contentContainer .tabContainer .nav-tabs .menuTab {
  color: #fff;
  background: #849694;
  font-weight: bold;
  font-size: 17px;
  border-bottom: 0;
  margin: 0;
  padding: 1.2rem 3rem;
  border-radius: 1rem 1rem 0 0;
  transition: 0.3s all;
  border: none;
  text-decoration: none !important;
}

@media only screen and (max-width: 576px) {
  .videosMain .contentContainer .tabContainer .nav-tabs .menuTab {
    padding: 1rem 1.5rem;
    font-size: 14px;
  }
}

.videosMain .contentContainer .tabContainer .nav-tabs .menuTab:hover {
  background: #5c6867;
  color: #fff;
}

.videosMain .contentContainer .tabContainer .nav-tabs .menuTab.active {
  background: #fff;
  color: var(--cMain);
  box-shadow: rgba(0, 0, 0, 0.05) 0px -2px 3px;
}

/* 無資料顯示樣式 */
.videosMain .contentContainer .videosList .no-data {
  width: 100%;
  text-align: center;
  padding: 3rem;
  color: var(--cMain);
  font-size: 16px;
}

.videosMain .contentContainer .videosList .no-data p {
  margin: 0;
  opacity: 0.7;
}

/*# sourceMappingURL=videos.css.map */