@charset 'UTF-8';
/**
* style.css / 主 CSS
* 喬匯科技 Fulljoy Tech Co., Ltd.
* Max Tsou
* 20230823
*/

/**
* 外部引入
* Noto Sans TC 思源黑體 給中文字用
	Roboto、Barlow Condensed  給英文、數字用
* 使用方式 font-family: 'Noto Sans TC', sans-serif;
* 使用方式 font-family: 'Roboto', sans-serif;
*/
@import url(https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;400&family=Noto+Sans+TC:wght@400;500;700;900&family=Roboto:wght@400;500;700;900&display=swap);

/**
* 變數設定
*/
:root {
  --yellow: rgb(252, 183, 10);
  --brick: #e4002b;
}

.yellow {
  color: var(--yellow);
}

.brick {
  color: var(--brick);
}

/**
* 全域基本設定
*/
* {
  outline: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  /*隱藏滾輪*/
  /* firefox 不起作用，其他瀏覽器OK */
  display: none;
}

body {
  font: 500 0.8125rem/1.28571 'Noto Sans TC', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  overflow-y: scroll; /* scroll 顯示捲軸，不顯示的話頁面無法捲動，但可以利用 ::-webkit-scrollbar 的設定來隱藏 */
  /* background-image: url(../images/bgc.jpg); */
  background-color: #f8f8f8;
  letter-spacing: 0.08rem;
}

/**
*	字體、標題
*/
p {
  margin-bottom: 15px;
  line-height: 1.5;
}

h1,
.h1 {
  font: 200 6.5rem 'Helvetica Neue', 'Open Sans', sans-serif;
}

h2,
.h2 {
  font: 200 3.8rem 'Helvetica Neue', 'Open Sans', sans-serif;
}

h3,
.h3 {
  font: 200 2.8rem 'Helvetica Neue', 'Open Sans', sans-serif;
}

h4,
.h4 {
  font: 300 1.6rem 'Helvetica Neue', 'Open Sans', sans-serif;
}

h5,
.h5 {
  font: 300 1.3rem 'Helvetica Neue', 'Open Sans', sans-serif;
}

h6,
.h6 {
  font-size: 0.9rem;
}

small,
.small {
  font-size: 0.65rem;
}

.bold {
  font-weight: 300;
}

/* 英文、數字字體 */
.eng,
.num {
  font-family: 'Roboto', sans-serif;
}

/* 文字陰影 */
.txtShadow {
  text-shadow: 0 0 0.2rem #000, 0 0 0.6rem #000;
}

/* 圖片 */
.pics {
  border-radius: 19px;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.65);
}

/* 超連結 */
a,
a:link,
a:visited,
a:focus {
  color: rgba(51, 51, 51, 0.5);
  text-decoration: none;
  outline: none;
}

a:hover {
  color: rgba(51, 51, 51, 1);
  text-decoration: none;
}

a:active,
a:focus {
  outline: none;
}

/**
*	大小尺寸
*/
.w250 {
  width: 250px !important;
}

/**
* 各主題單元形象設定
*/
.image {
  margin: 0 auto;
  padding: 0;
  height: 60vh;
  color: white;
}

.catch {
  position: relative;
  top: calc(50% - 80px);
  left: 10%;
  text-shadow: 0 0 0.2rem #000, 0 0 0.8rem #000;
}

/*  關於喬匯 / #about  */
#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
/*  智慧雲應用 / #cloud  */
#cloud {
  background: url(../img/bg_1.jpg) no-repeat fixed;
  background-size: cover;
}
/*  環境衛生安全 / #env  */
#env {
  background: url(../img/bg_2.jpg) no-repeat fixed;
  background-size: cover;
}
/*  農業生技應用 / #bio  */
#bio {
  background: url(../img/bg_3.jpg) no-repeat fixed;
  background-size: cover;
}
/*  特用化工應用 / #chemical  */
#chemical {
  background: url(../img/bg_4.jpg) no-repeat fixed;
  background-size: cover;
}

/*  聯絡資訊 / #contact  */
#contact {
  background: url(../img/bg_6.jpg) no-repeat fixed;
  background-size: cover;
}

/*  各單元詳細內容的容器  */
.intro {
  overflow: auto;
  padding: 5rem 0;
  background: url(../img/graphy_bg.png);
  background-color: #fff;
}

.intro img {
  width: 100%;
}

/*  各單元詳細內容的位置  */
.intro .h3 {
  color: #000;
  font-weight: 300;
}

.intro .row {
  margin: 2.5rem 0;
}

ul {
  margin: 20px 0 30px 40px;
}

ul li::before {
  font: var(--fa-font-solid);
  content: '\f0da';
  display: inline-block;
  width: 2rem;
  margin-left: -2rem;
  color: var(--yellow);
}

ul li {
  margin-bottom: 10px;
  font: 300 1.3rem 'Helvetica Neue', 'Open Sans', sans-serif;
  line-height: 1.5;
}

.poster {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #f1f1f1;
}

.poster-img {
  position: relative;
  overflow: hidden;
}

.poster-info {
  padding: 25px 15px;
}

@media (max-width: 992px) {
  .catch {
    left: 4%;
  }
  .catch .h2 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .catch {
    left: 5%;
  }
  .catch .h2 {
    font-size: 1.8rem;
  }
  .intro {
    padding: 2rem 0;
  }
  .intro .h3 {
    font-size: 1.6rem;
  }
  .intro .h4 {
    font-size: 1.2rem;
  }
}
