* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Helvetica", "微軟正黑體", serif;
}

body {
  margin: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 40%,
    rgba(225, 242, 251, 1) 91%,
    rgba(240, 250, 255, 1) 100%
  );
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.container {
  padding: 0 10px; /* 添加左右內邊距 */
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}
.kv {
  position: relative;
  background-image: url(images/bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 700px;
}
@media (min-width: 1700px) {
  .kv {
    background-size: cover;
    height: 800px;
  }
}
@media (max-width: 800px) {
  .kv {
    background-image: url(images/bk-m.jpg);
  }
}
@media (max-width: 400px) {
  .kv {
    height: 150vw;
  }
}
.kv::before {
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 95%
  );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.logo {
  height: 44px;
  position: absolute;
  top: 8px;
  left: 10px;
  height: auto;
}

.logo img {
  margin: 10px 20px;
  max-width: 200px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .logo {
    display: flex;
    height: 44px;
    justify-items: center;
    height: auto;
  }

  .logo img {
    margin-top: 0px;
  }
}
@media (max-width: 440px) {
  .logo img {
    width: 145px;
    text-align: center;
    justify-items: center;
  }
  .logo {
    left: calc((100% - 200px) / 2);
  }
}

.annotation {
  display: flex;
  justify-content: center;
}
.col1,
.col2 {
  display: inline-block;
  margin-top: 4px;
  padding: 0px 12px;
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 600;
  color: #01164a;
}
.col1 {
  border-right: solid 2.2px #01164a;
}

@media (max-width: 420px) {
  .annotation {
    flex-direction: column;
  }
}

.title {
  text-align: center;
  margin: 35px 0px 40px;
}
.title span {
  position: relative;
  padding: 0px 10px;
  font-size: 28px;
  letter-spacing: 2px;
  display: inline-block;
  color: transparent;
  font-weight: bolder;
  background: rgb(58, 44, 255);
  background: linear-gradient(
    180deg,
    rgba(58, 44, 255, 1) 0%,
    rgba(124, 134, 246, 1) 100%
  );
  background-clip: text;
}
.title span::before {
  content: ""; /*沒用到仍然要寫，雙引號內容留空*/
  width: 58px; /*設定長方形寬度*/
  height: 58px; /*設定長方形高度*/
  background-image: url(images/star.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: cover;
  left: -52px; /*從<div>區塊左上角起算，與左邊距離為0，即靠左的意思*/
  top: -16px;
  z-index: 0;
}
.title span::after {
  content: ""; /*沒用到仍然要寫，雙引號內容留空*/
  width: 58px; /*設定長方形寬度*/
  height: 58px; /*設定長方形高度*/
  background-image: url(images/star.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: cover;
  right: -52px; /*從<div>區塊左上角起算，與左邊距離為0，即靠左的意思*/
  top: -16px;
  transform: scaleX(-1);
  z-index: 0;
}
.list {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.list .thead {
  background-color: #676af9;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
}
.list .thead_m {
  background-color: #e5e2ff;
  font-size: 18px;
  color: #001e4f;
  font-weight: 700;
}

.list tbody {
  background-color: #fff;
  font-size: 18px;
  color: #001e4f;
}
.list td {
  vertical-align: middle;
}

.step div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
  color: #001e4f;
  position: relative;
  z-index: 1;
}

.step img {
  max-width: 110px;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}
.step .arrow ::after {
  content: "";
  width: 120px;
  height: 62px;
  position: absolute;
  top: 21px;
  right: -50px;
  background-image: url(images/arrow.svg);
  background-size: cover;
  z-index: 0;
}
@media screen and (min-width: 686px) and (max-width: 880px) {
  .step .arrow ::after {
    width: 90px;
    height: 46px;
    top: 28px;
    right: -28px;
  }
}

@media screen and (min-width: 461px) and (max-width: 685px) {
  .row {
    justify-content: center;
  }
  .step div {
    margin-bottom: 40px;
    flex: 0 0 30%;
    justify-content: center;
  }
  .step .arrow ::after {
    width: 76px;
    height: 40px;
    top: 32px;
    right: -20px;
  }
}
@media (max-width: 460px) {
  .title span {
    font-size: 20px;
    padding: 6px 28px;
  }
  .list .thead {
    font-size: 16px;
  }
  .list .thead_m,
  .list tbody {
    font-size: 14px;
  }
  /* 專案優勢 */
  .step div {
    flex-direction: row;
    align-items: center;
    text-align: left;
    font-size: 15px;
    margin-bottom: 24px;
    margin-left: calc((100% - 200px) / 2);
  }
  .step img {
    max-height: 90px;
    padding-bottom: 0px;
    margin-right: 16px;
  }
  .step .arrow ::after {
    width: 60px;
    height: 32px;
    top: 70px;
    left: 26px;
    transform: rotate(90deg);
  }
}
@media (min-width: 740px) {
  .title span br {
    display: none;
  }
}
@media (max-width: 739px) {
  .title span::before {
    content: "";
    left: -52px;
    top: 8px;
  }
  .title span::after {
    content: ""; /*沒用到仍然要寫，雙引號內容留空*/
    right: -52px;
    top: 8px;
    transform: scaleX(-1);
    z-index: 0;
  }
}
@media (max-width: 449px) {
  .title span::before {
    content: "";
    width: 50px;
    height: 50px;
    left: -26px;
    top: 8px;
  }
  .title span::after {
    content: ""; /*沒用到仍然要寫，雙引號內容留空*/
    width: 50px;
    height: 50px;
    right: -26px;
    top: 8px;
    transform: scaleX(-1);
    z-index: 0;
  }
}
/* 下列為footer */

.footer {
  margin: 50px 0px 40px;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .footer {
    margin: 30px 0px 20px;
  }
}

@media (max-width: 768px) {
  .footer {
    margin: 20px 0px 25%;
  }
}

.comment span {
  padding-left: 20px;
}
ol {
  text-align: left;
  font-size: 14px;
}
.cup {
  min-height: 60px;
  max-height: 132px;
  width: 100%;
  padding: 5px 15px;
  margin-top: 10px;
  margin-bottom: 25px !important;
  font-size: 15px;
  background: #f7f9f9;
  border: solid 1px #c4d0e3;
  border-radius: 8px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.yushan {
  float: left;
  position: relative;
  width: auto;
  max-height: 170px;
  display: flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 10px;
}

.awardtext {
  display: flex;
  flex-direction: column;
}

.awardtext span {
  font-size: 20px;
  color: #4e6689;
  font-weight: bolder;
  display: inline-block;
  position: relative;
}

.display span::before,
.display span::after {
  content: "";
  width: 11px;
  height: 28px;
  display: block;
  position: absolute;
  top: -1px;
  background-image: url(images/tassel.svg);
  background-size: contain;
}

.display span::before {
  left: -14px;
}

.display span::after {
  right: -14px;
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
.display span {
  letter-spacing: 0px;
}
.awardtext p {
  font-size: 15px;
  padding-top: 4px;
  margin-bottom: 0px;
}
.awardtext h5 {
  text-align: center;
}
.award {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 832px) {
  .col-6 {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .awardtext span {
    font-size: 18px;
    letter-spacing: normal;
  }

  .awardtext p {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .cup {
    max-height: none;
    margin: 0px;
    padding: 8px 20px;
  }
}
/* 桂冠葉的位置 */
@media (max-width: 352px) {
  .display span::before,
  .display span::after {
    top: 5px;
  }
}

/* 右側選單 */
.pc-rbt {
  width: 60px;
  position: fixed;
  top: 10%;
  right: 10px;
  z-index: 3;
}

.mb-dbt {
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 99;
  background-color: rgba(210, 224, 232, 1);
  text-align: center;
  z-index: 3;
}

@media screen and (min-width: 769px) {
  .mb-dbt {
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 99;
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-rbt {
    display: none;
    width: 9%;
    top: 15%;
    right: 2px;
  }
}
