﻿* {
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}


/* -------[首頁]------- */

.newsBox #swiper-news .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

nav .imessage {
  display: none;
}

.nav-right {
  text-align: right;
}

nav ul {
  left: 0;
  margin-right: 5%;
}


/* 首頁產品圖片 */

.home_pic {
  /* background-color:#f3f5f8; */
  z-index: 0;
  background-image: url(../../static/upload/image/20220324/1648102794293657.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  background-attachment: fixed;
  height: 300px;
}


/* 首頁服務項目 */

.index_service {
  background-image: url(../images/bg_blue.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.index_service_sea {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 350px;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
}

.index_service_sea::before,
.index_service_sea::after {
  content: '';
  position: absolute;
  display: block;
  left: 50%;
  min-width: 300vw;
  min-height: 300vw;
  background-color: #fff;
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.index_service_sea::before {
  bottom: 15vh;
  border-radius: 45%;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}

.index_service_sea::after {
  bottom: 12vh;
  opacity: 0.5;
  border-radius: 47%;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, 0) rotateZ(0deg);
    transform: translate(-50%, 0) rotateZ(0deg);
  }

  50% {
    -webkit-transform: translate(-50%, -2%) rotateZ(180deg);
    transform: translate(-50%, -2%) rotateZ(180deg);
  }

  100% {
    -webkit-transform: translate(-50%, 0%) rotateZ(360deg);
    transform: translate(-50%, 0%) rotateZ(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, 0) rotateZ(0deg);
    transform: translate(-50%, 0) rotateZ(0deg);
  }

  50% {
    -webkit-transform: translate(-50%, -2%) rotateZ(180deg);
    transform: translate(-50%, -2%) rotateZ(180deg);
  }

  100% {
    -webkit-transform: translate(-50%, 0%) rotateZ(360deg);
    transform: translate(-50%, 0%) rotateZ(360deg);
  }
}

.index_service_text {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.join_left .leftText .en::after,
.join_right .rightText .en::after {
  font-size: 40px;
  color: #2054a3;
  top: 4px;
  left: 4px;
  z-index: -1;
  display: inline-block;
  content: '整合海洋服務';
  position: absolute;
}

.rightText {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
}

.join_right>.rightText>div {
  color: #fff;
  display: inline-block;
  width: 32%;
  margin: 0;
  text-align: center;
}

.join_right>.rightText>div>a {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
}

.join_right>.rightText>div>a>span {
  width: 120px;
  height: 120px;
  margin: 0;
  border: 5px solid #fff;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.join_right>.rightText>div>a>span>img {
  max-width: 75px;
  max-height: 75px;
}

.join_right>.rightText>div>a>span::after {
  content: '';
  display: inline-block;
  width: 100px;
  height: 100px;
  top: 3px;
  left: 3px;
  border: 2px dashed #2054a3;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.join_right>.rightText>div a>span::before {
  content: '';
  display: inline-block;
  width: 124px;
  height: 124px;
  top: -9px;
  left: -9px;
  border: 2px dashed #2054a3;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.join_right>.rightText>div b {
  margin-top: 15px;
  display: block;
  font-size: 17px;
  font-weight: normal;
  margin-top: 15px;
}


/*版權*/

footer .right>.foot_link {
  text-align: right;
}

footer .right>.foot_link div {
  display: inline-block;
}

footer .right>.foot_link img {
  margin-top: 16px;
  margin-left: 5px;
  float: right;
}

.foot_link a img {
  width: 45px;
}

.foot_link a:hover img {
  -webkit-animation: tada 1s;
  -moz-animation: tada 1s;
  animation: tada 1s;
}

.phone_fax {
  margin-left: 20px;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}


/* 產品介紹 */

.weblink {
  width: 100%;
  background-color: #f5f5f5;
  font-size: 13px;
  color: #666;
  height: 35px;
  line-height: 35px;
  background-image: url(../images/home.webp);
  background-position: left 10px center;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ng-container-back {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 30px;
}

.ng-container-back>a {
  font-size: 20px;
  color: #676767;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.ng-container-back>a:hover {
  color: #2054a3;
}

.g-cur {
  height: 40px;
  line-height: 40px;
  background: #f3f3f3;
}

.g-cur .wp {
  background: url('../images/home.webp') left center no-repeat;
  background-size: 15px;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.g-cur .wp a {
  color: #2f2f2f;
}

.g-cur .wp a:hover {
  color: #f79646;
}

.row-b1 {
  overflow: hidden;
  padding: 20px 0 56px;
}

.row-b1 .col-l {
  width: 338px;
}

.row-b1 .col-r {
  float: none;
  overflow: hidden;
  margin-left: 400px;
}

.ul-pages1 {
  overflow: hidden;
  margin: 20px 0 50px;
}

.ul-pages1 li {
  float: left;
  font-size: 14px;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.ul-pages1 li:last-child {
  float: right;
}

.ul-pages1 li a {
  color: #337ab7;
  transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}

.ul-pages1 li a:hover {
  color: #f79646;
}

.g-titIns1 {
  height: 44px;
  line-height: 44px;
  font-size: 20px;
  color: #545454;
  border-bottom: 1px solid #ebebeb;
  font-weight: normal;
  position: relative;
}

.g-titIns1::after {
  content: '';
  width: 80px;
  height: 2px;
  background: #0080ff;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.ul-imgtxt2 {
  margin-top: 0;
}

.ul-imgtxt2 li .pic {
  padding: 4px;
}

.ul-imgtxt2 li a:hover {
  border: 0;
}


/*******************************
	-------[產品列表]-------
********************************/

.m-chanpin {
  overflow: hidden;
  margin-bottom: 30px;
}

.m-chanpin .desc {
  padding: 10px;
  margin-top: 20px;
  line-height: 26px;
  text-indent: 2em;
  font-size: 14px;
  border: 1px dotted #e5e5e5;
  color: #868686;
  background-color: #f5f5f5;
}

.ul-imgtxt-01 {
  margin: 0 -10px;
  *zoom: 1;
}

.ul-imgtxt-01:after,
.ul-imgtxt-01:before {
  display: block;
  content: 'clear';
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.ul-imgtxt-01 li {
  width: 25%;
  float: left;
  margin-top: 20px;
}

.ul-imgtxt-01 li a {
  margin: 0 10px;
  display: block;
  text-align: center;
}

.ul-imgtxt-01 li a .pic {
  padding-top: 77%;
  height: 0;
  position: relative;
  overflow: hidden;
}

.ul-imgtxt-01 li a .pic img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.ul-imgtxt-01 li a:hover .pic img {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}

.ul-imgtxt-01 li a p {
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 15px;
  color: #666;
  font-weight: 400;
  transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.ul-imgtxt-01 li a:hover {
  text-decoration: none;
}

.ul-imgtxt-01 li a:hover p {
  color: #f79646;
}

.ul-imgtxt2 {
  margin-top: 0;
}

.ul-imgtxt2 li .pic {
  padding: 4px;
}

.ul-imgtxt2 li a:hover {
  border: 0;
}

.m-list3 {
  padding: 25px 0;
}

.ul-link2 {
  overflow: hidden;
  margin-top: 20px;
}

.ul-link2 li {
  float: left;
  margin-bottom: 20px;
}

.ul-link2 li a {
  display: block;
  margin-right: 17px;
  font-size: 14px;
}

.ul-link2 li a:hover {
  color: #ea042b;
}


/*以下為產品數量改為顯示六項3*2(寬*高)*/

._w1200 ._case.case1.num3 ul li {
  width: 23%;
  margin: 1%;
}


/* ._w1200 ._case.case1.num3 ul li:nth-child(5n) {
    margin-right: 2.75%;
}

._w1200 ._case.case1.num3 ul li:nth-child(3n) {
    margin-right: 0;
} */

._case.case1 ul li .thum .img {
  width: 100%;
}


/*產品詳細圖片*/

.pc-slide {
  width: 100%;
  margin: 0 auto;
}

.view .swiper-slide .imgauto {
  width: 100%;
  height: 350px;
  line-height: 350px;
}

.view .swiper-container {
  width: 100%;
}

.view .swiper-wrapper {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.preview {
  width: 100%;
  margin-top: 10px;
  position: relative;
}

.preview .swiper-container {
  width: 80%;
  margin: 0 10%;
}

.preview .swiper-slide {
  width: 25%;
  padding: 5px;
}

.preview .swiper-slide .imgauto {
  width: 100%;
  height: 80px;
  line-height: 80px;
  border: 1px solid #ddd;
  text-align: center;
}

.preview .swiper-slide .imgauto img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  padding: 5px;
}

.preview .slide6 {
  width: 82px;
}

.preview .arrow-left {
  background: url(../images/feel3.webp) no-repeat left top;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -9px;
  width: 9px;
  height: 18px;
  z-index: 10;
}

.preview .arrow-right {
  background: url(../images/feel4.webp) no-repeat left bottom;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -9px;
  width: 9px;
  height: 18px;
  z-index: 10;
}

.preview img {
  padding: 1px;
}

.preview .active-nav .imgauto {
  border: 1px solid #f79646;
}

.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: ' ';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.work_list {
  width: 100%;
  padding-top: 12px;
  margin-bottom: 20px;
}

.work_list h3 {
  line-height: 44px;
  background: url(../images/icon12.webp) 95% center no-repeat;
  text-indent: 20px;
  background-size: auto 10px;
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
  float: left;
}

.work_list h3 a {
  float: left;
  line-height: 44px;
  color: #666;
  font-size: 14px;
  text-indent: 0;
  padding-left: 5px;
  font-weight: normal;
}

.work_list h3.on a {
  font-weight: bold;
}

.work_list ul {
  display: none;
  float: left;
  width: 100%;
}

.work_list li {
  background: url(../images/icon12.webp) 18px 15px no-repeat;
  text-indent: 26px;
  display: block;
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
  line-height: 42px;
  background-size: 5px;
}

.work_list li a {
  display: block;
  color: #666;
  font-size: 14px;
  text-indent: 0;
  padding-left: 30px;
}

.ab_pages {
  clear: both;
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
}

.ab_pages ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}

.ab_pages ul a {
  color: #555;
  display: block;
  padding: 2px 10px;
  border: 1px solid #ddd;
  float: left;
  margin: 0 5px;
}

.ab_pages ul a.page-num-current {
  background: #ddd;
}

.txt img {
  max-width: 100%;
}

@media only screen and (max-width: 1200px) {
  nav {
    padding: 5px 20px;
  }

  .nav-right {
    text-align: left;
  }

  nav ul {
    margin-right: 0;
  }

  nav .imessage {
    display: none;
  }

  .yunu-nav,
  .nav-right ul {
    float: none;
    left: 0;
    width: 100%;
    display: block;
    top: 0px;
  }

  .yunu-nav>li {
    width: 100%;
    padding: 0;
    height: 50px;
    line-height: 50px;
    display: inline-block;
  }

  .yunu-nav dl.s,
  .yunu-nav dl.s:hover {
    display: block;
    position: relative;
  }

  .yunu-nav>li>a {
    width: auto;
    padding: 10px;
    font-size: 14px;
    margin-left: 20px;
  }

  .yunu-nav>li:hover {
    background-color: #1c5093;
  }

  .navActive .yunu-nav>li.on,
  .navActive .yunu-nav>li:hover {
    color: #fff;
    background-color: #1c5093;
  }

  .navActive .yunu-nav>li.on>a,
  .navActive .yunu-nav>li:hover>a {
    color: #fff;
  }

  .yunu-nav>li.on>a {
    color: #333;
  }

  .yunu-nav>li:hover>a {
    color: #fff;
  }

  .yunu-nav dl dd a {
    padding: 0 30px;
  }

  .yunu-nav li:hover dl {
    display: none;
  }

  .yunu-nav dl dd a:hover {
    background-color: #f2f2f2;
    color: #1c5093;
  }

  .yunu-nav>li:hover>a::after {
    display: none;
  }

  /*版權*/
  footer .left .text {
    font-size: 12px;
  }

  /*聯絡我們*/
  ._contact_box-companyinfo .c_company .title {
    font-size: 30px;
  }

  ._contact_box-companyinfo .c_company {
    padding: 50px 0px 50px 30px;
  }

  /*產品介紹*/
  /* ._w1200 ._case.case1.num3 ul li:nth-child(4n),
    .productInfo .li:nth-child(4n) {
        margin-right: 2.75%;
    } */
}

@media only screen and (max-width: 768px) {

  /*產品介紹*/
  /* ._w1200 ._case.case1.num3 ul li:nth-child(3n) {
        margin-right: 2vw;
    }

    ._w1200 ._case.case1.num3 ul li:nth-child(4n),
    .productInfo .li:nth-child(4n) {
        margin-right: 2vw;
    }

    ._w1200 ._case.case1.num3 ul li:nth-child(5n) {
        margin-right: 2vw;
    } */
  ._w1200 ._case.case1.num3 ul li {
    width: 48%;
  }

  /**/
  .ng-container-back>a {
    font-size: 16px;
  }

  .main_title b {
    font-size: 30px;
  }

  /* 首頁 */
  .index_service_sea {
    min-height: 210px;
  }

  .index_service_text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .join_left {
    padding: 0 10px;
    font-size: 13px;
  }

  .join_left .leftText .en,
  .join_right .rightText .en {
    font-size: 27px;
  }

  .join_left .leftText .en::after,
  .join_right .rightText .en::after,
  .sub_title_news::after {
    font-size: 27px;
  }

  .sub_title_news2 {
    font-size: 18px;
  }

  .sub_title {
    font-size: 27px;
  }

  .join_left .leftText p {
    font-size: 13px;
  }

  .join_right>.rightText>div>span {
    width: 80px;
    height: 80px;
  }

  .join_right>.rightText>div>span::before {
    width: 84px;
    height: 84px;
    top: -9px;
    left: -9px;
  }

  .join_right>.rightText>div>span::after {
    width: 80px;
    height: 80px;
    top: 3px;
    left: 3px;
  }

  .join_right>.rightText>div>span>img {
    max-width: 60px;
    max-height: 60px;
  }

  .join_right>.rightText>div>span::after {
    width: 62px;
    height: 62px;
    top: 2px;
    left: 2px;
  }

  .join_right>.rightText>div>b {
    font-size: 12px;
  }

  /*最新消息*/
  ._news_detail .returnBtn {
    width: 65px;
    line-height: 27px;
    top: -27px;
    font-size: 12px;
  }

  ._ndc_top .title {
    font-size: 18px;
  }

  ._detail_same_list ul li p,
  ._ndc_top .des {
    font-size: 12px;
  }

  .ndc_detail {
    font-size: 16px;
  }

  ._ndc_npnews {
    font-size: 13px;
  }

  /*聯絡我們*/
  ._contact_box-companyinfo .c_googlemap {
    width: 90%;
  }

  ._contact_box-companyinfo .c_googlemap iframe {
    height: 300px !important;
  }

  ._contact_box-companyinfo .c_company {
    width: 100%;
    padding: 20px;
  }

  ._contact_box-companyinfo .c_company .title {
    font-size: 17px;
  }

  ._contact_box-companyinfo .c_company p {
    padding-left: 10px;
  }

  ._contact_box-companyinfo {
    padding: 30px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-size: 100% auto;
  }

  .contactForm-input-2 {
    width: 100%;
    height: 30px;
    float: left;
    margin-top: 20px;
  }

  .contactForm-input-1 {
    height: 30px;
  }

  .contactForm-input-text {}

  ._contact_box-input input {
    height: 30px;
    font-size: 13px;
  }

  .submit-2 {
    width: 120px;
    height: 30px;
    line-height: 30px;
    margin-top: 10px;
    font-size: 13px;
  }

  .contactForm-input-cap img {
    height: 30px !important;
  }
}


/*關於我們*/


/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul {
  background: #f4f4f4;
  padding: 50px 0;
  position: relative;
}

.timeline ul::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
  background: #003b7d;
  color: #fff;
  font-size: 17px;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  background-image: url(../images/logo-white.png);
  background-repeat: no-repeat;
  background-size: auto 86%;
  background-position: top 2px center;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #fff;
  color: #fff;
}

.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  height: 88px;
  padding: 15px;
  background: #003b7d;
}

.timeline ul li div img {
  display: inline-block;
  float: right;
  height: 88px;
  width: auto;
  position: absolute;
  top: 0;
  right: 0;
}

.timeline ul li div::before {
  content: '';
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #003b7d transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #003b7d;
}

time {
  display: block;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 8px;
}


/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul li::after {
  -webkit-transition: background 0.5s ease-in-out;
  transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #003b7d;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  -webkit-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  -webkit-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  -webkit-transform: none;
  transform: none;
  visibility: visible;
  opacity: 1;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 300px;
  }

  .timeline ul li:nth-child(even) div {
    left: -339px;
    /*270+45-6*/
  }
}

@media screen and (max-width: 700px) {
  .timeline ul li {
    margin-left: 20px;
  }

  .timeline ul li div {
    width: calc(100vw - 91px);
    padding: 10px;
    height: 66px;
    font-size: 12px;
  }

  .timeline ul li:nth-child(even) div {
    left: 45px;
  }

  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #003b7d transparent transparent;
  }

  .timeline ul li div img {
    height: 50px;
    top: 8px;
  }

  time {
    font-size: 1.2rem;
  }

  .timeline ul li::after {
    bottom: 5px;
    width: 20px;
    height: 20px;
  }

  .timeline ul::before {
    left: 23px;
    width: 40px;
    height: 40px;
  }
}


/* EXTRA/CLIP PATH STYLES–– */

.timeline-clippy ul li::after {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.timeline-rhombus ul li::after {
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
  bottom: 12px;
}

.timeline-star ul li::after {
  -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.timeline-heptagon ul li::after {
  -webkit-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.timeline-infinite ul li::after {
  -webkit-animation: scaleAnimation 2s infinite;
  animation: scaleAnimation 2s infinite;
}

@-webkit-keyframes scaleAnimation {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }

  50% {
    -webkit-transform: translateX(-50%) scale(1.25);
    transform: translateX(-50%) scale(1.25);
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}

@keyframes scaleAnimation {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }

  50% {
    -webkit-transform: translateX(-50%) scale(1.25);
    transform: translateX(-50%) scale(1.25);
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}

.about-text .sub_title2 {
  margin-top: 5rem;
}

.about-text .info p,
.about-text .info p:nth-child(1),
.about-text .info p:nth-child(2),
.about-text .info p:nth-child(3) {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.about-text .info p.stitle {
  font-size: 18px;
  color: #2355a1;
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 2.1em;
}

.about-text .info p.stitle span {
  display: inline-block;
  position: relative;
}

.about-text .info p.stitle span::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2355a1;
  bottom: 0;
  left: 0;
}

.about-text .info p.stitle span::after {
  display: block;
  content: '';
  position: absolute;
  width: 70%;
  height: 2px;
  background-color: #0080ff;
  bottom: -4px;
  left: 0;
}

.about-text .info .about_img {
  /* float: left; */
  width: 200px;
  margin: 10px 2rem 10px 0;
  /* width: 200px;
    height: 200px;
    margin: 10px 5% 10px 0;
    border: 5px solid #2054a3;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0; */
}

.about_allcontent {
  width: calc(100% - 250px);
}

.about_content p {
  margin: 20px 0px;
}


/* .about-text .info .about_img::after {
  content: "";
  display: inline-block;
  width: 180px;
  height: 180px;
  top: 3px;
  left: 3px;
  border: 2px solid #2054a3;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
} */

.about-text .info .about_img.img2 {
  width: 200px;
}


/*團隊*/

.about_teams {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1366px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
}

.about_teams>.about_teamsbox {
  width: 24%;
  margin: 25px 0px;
}

.about_teams .about_teamsimg {
  height: 300px;
  overflow: hidden;
  background-color: #ededed;
}

.about_teams .about_teamsimg>div {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50% 0% 50% 65%;
  border: 5px solid #003b7d;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  width: 150px;
  height: 150px;
  background-color: #ddd;
}

.about_teams .about_teamsimg>img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.about_teams .about_teamsinfo {
  background-color: #fff;
  padding: 20px;
  height: 210px;
  -webkit-box-shadow: 0px 5px 5px 0px #0000003d;
  box-shadow: 0px 5px 5px 0px #0000003d;
}

.about_teams .about_teamsinfo p:nth-child(1) {
  color: #2355a1;
  padding-bottom: 10px;
  font-weight: 600;
}

.about_teams .about_teamsinfo p:nth-child(2) {
  padding-bottom: 0px;
  color: black;
}

.about_boat {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.brand-introduction-boat>section:nth-child(even)>.about_boat {
  flex-direction: row-reverse;
}

.about_boat>.about_boatinfo {
  width: 50%;
  padding: 50px;
  text-align: left;
  background: #2054a3;
  color: white;
}

.about_boat>.about_boatinfo p,
.about_boat>.about_boatinfo p:nth-child(2) {
  line-height: 1.7;
  font-size: 16px;
  padding: 0;
}

.about_boat>.about_boatinfo p:nth-child(1) {
  color: #2355a1;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about_boat>.about_boatimg {
  width: 50%;
  height: 600px;
}

.about_boat>.about_boatimg img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.about_boatinfo .sub_title2 {
  text-align: left;
  margin-top: 0px;
}

.sub_title_ASA {
  text-align: center;
  font-size: 30px;
  margin-bottom: 25px;
}

.info_ASA .stitle {
  border: solid 1px black;
  padding: 5px 10px;
}

.info_ASA {
  margin: 25px 0px;
}

.info_ASA p {
  margin-top: 15px;
}

.about_img_ASA {
  width: calc(100% - 230px);
}

.info_ASA:nth-child(4) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

@media screen and (max-width: 900px) {
  .brand-introduction-centerbg {
    padding: 50px 0px;
  }
}

@media screen and (max-width: 768px) {
  .info_ASA .stitle {
    letter-spacing: 0.1em;
  }

  .brand-introduction-center,
  .brand-introduction-centerbg {
    padding: 20px;
  }

  .about-text .sub_title2 {
    margin-top: 20px;
  }

  .s_title.brand-introduction-centerbg0pad {
    padding: 30px;
    font-size: 16px;
  }

  .brand-introduction-right .sub_title b,
  .sub_title2 b {
    font-size: 17px;
    padding-bottom: 10px;
  }

  .about-text .info p,
  .about-text .info p:nth-child(1),
  .about-text .info p:nth-child(2),
  .about-text .info p:nth-child(3) {
    line-height: 1.7;
    font-size: 16px;
  }

  .about-text .info .about_img {
    float: none;
    width: 100px;
    margin: 15px auto;
  }

  .about_teams>.about_teamsbox {
    width: 100%;
    display: block;
    text-align: center;
  }

  .about_teams .about_teamsimg {
    margin: 0 auto;
  }

  .about_teams .about_teamsinfo {
    width: 100%;
    margin-bottom: 3em;
  }

  .about_boat>.about_boatinfo {
    width: 100%;
  }

  .about_boat {
    display: block;
  }

  .about_boat>.about_boatimg {
    width: 100%;
    text-align: center;
    background: #2054a3;
  }

  .about_boat>.about_boatimg {
    height: auto;
    padding: 5% 0%;
  }

  .about_boat>.about_boatimg>img {
    width: 70%;
    margin: 0 auto;
    vertical-align: top;
  }
}


/*about2*/

.about2 {
  padding-top: 0px;
  padding-bottom: 6%;
}

.in-about {
  margin: 0 auto;
  max-width: 1200px;
  -webkit-box-shadow: 5px 5px 5px 5px #f1ebeb;
  box-shadow: 5px 5px 5px 5px #f1ebeb;
}

.in-about dt {
  float: left;
  position: relative;
  width: 40%;
  margin: 0 0 40px 40px;
}

.about4 .in-about dt {
  margin: 0 0 8% 40px;
}

.in-about dt:before {
  content: '';
  position: absolute;
  left: -7%;
  bottom: -7%;
  width: 80%;
  height: 100%;
  background-color: #2054a3;
}

.in-about dt img {
  position: relative;
  z-index: 1;
}

.in-about dd {
  margin-left: 40%;
  background-color: #fff;
  /* box-shadow: 0 1px 18px 1px rgba(54, 62, 69, 0.6); */
  margin-top: 40px;
  padding: 30px 50px;
  min-height: 400px;
}

.about4 .in-about dd {
  background-color: #03142e;
  color: #fff;
}

.in-about dd h4 {
  margin: 20px 0 10px;
  font-size: 24px;
  text-align: right;
}

.in-about dd p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 15px 0;
  text-align: justify;
}

.about4 .in-about dd p {
  color: #fff;
}

.in-about dd .more-big {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {

  .in-about dt,
  .about4 .in-about dt {
    float: none;
    width: auto;
    margin: 0 0 20px 20px;
  }

  .in-about dt:before {
    left: -20px;
    bottom: -20px;
    width: 100%;
  }

  .in-about dd {
    margin: 20px 0 0;
    padding: 20px;
    height: auto;
  }

  .in-about dd h4 {
    font-size: 16px;
  }

  .in-about dd p {
    margin: 10px 0 0;
    font-size: 13px;
  }

  .in-about dd .more-big {
    margin-top: 20px;
  }
}


/*國際航海認證*/

.w1200s {
  margin: auto;
}

.w1200s>section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  clear: both;
}

.about-text.w1200s .sub_title2 {
  margin-top: 0;
}

.about-text.w1200s.bg_t {
  background-image: url(../../skin/images/bg_turtle.webp);
  background-repeat: no-repeat;
  background-position: left top 7%;
  background-attachment: fixed;
}

.about-text.w1200s.bg_t .about_img {
  width: 200px;
  height: 200px;
  margin: 10px 5% 10px 0;
  border: 5px solid #2054a3;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.about-text.w1200s.bg_t .about_img::after {
  content: '';
  display: inline-block;
  width: 180px;
  height: 180px;
  top: 3px;
  left: 3px;
  border: 2px solid #2054a3;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.about-text.w1200s.bg_t .about_img>img {
  -webkit-animation: breath 4s linear infinite;
  -moz-animation: breath 4s linear infinite;
  animation: breath 4s linear infinite;
}

@-webkit-keyframes breath {
  50% {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

@keyframes breath {
  50% {
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
  }
}

.w1200s>section.cermargin {
  margin-top: 8%;
}

#pro {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
}

#pro li {
  width: 100%;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0px 30px 0 50px;
  margin: 35px 0;
  font-size: 16px;
}

#pro li::before {
  background-color: #e6e6e6;
  content: '';
  width: 100%;
  height: calc(100% - 40px);
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  z-index: -1;
  border-radius: 5px;
}

#pro li .pro_main {
  width: 70%;
  padding: 8% 3% 7% 0;
  position: relative;
}

#pro li .pro_main>.btn {
  position: absolute;
  top: 15%;
  right: 5%;
  background: #043254;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  color: #fff;
  padding: 2px 0.5em;
  padding-left: calc(2px + 0.5em);
  border-radius: 0.4em;
  letter-spacing: 2px;
}

#pro li .pro_main>.btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  #pro li .pro_main>.btn {
    font-size: 15px;
  }
}

@media screen and (max-width: 500px) {
  #pro li .pro_main>.btn {
    top: 5%;
    font-size: 12px;
  }
}

#pro li .pro_main h2,
.pro_dboxs h2 {
  color: #043254;
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
}

#pro li .pro_main h4,
.pro_dboxs h4 {
  color: #043254;
  font-size: 24px;
  padding: 10px 0 30px;
}

#pro li .pro_main p,
.pro_dboxs p {
  color: #444444;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

#pro li .pro_main_img {
  width: 30%;
  -webkit-box-shadow: 0 1px 18px 1px rgb(54 62 69 / 60%);
  box-shadow: 0 1px 18px 1px rgb(54 62 69 / 60%);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#pro li .pro_main_img>img {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #pro {
    margin: 20px auto;
  }

  #pro li {
    min-height: auto;
    padding: 0px;
    display: block;
    font-size: 13px;
  }

  #pro li .pro_main {
    width: 100%;
    padding: 15px;
  }

  #pro li::before {
    height: 100%;
    top: 0px;
  }

  #pro li .pro_main h2,
  .pro_dboxs h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #pro li .pro_main h4,
  .pro_dboxs h4 {
    font-size: 15px;
    padding: 10px 0 10px;
  }

  #pro li .pro_main p,
  .pro_dboxs p {
    font-size: 13px;
  }

  #pro li .pro_main_img {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }

  .about-text.w1200s.bg_t .about_img {
    margin: 10px auto 30px;
    width: 100%;
    max-width: 200px;
  }

  .about_img_ASA {
    width: 100%;
  }

  .info_ASA:nth-child(4) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  ._pageTitleTab a span {
    letter-spacing: 0.1em;
  }
}


/* 體驗課程 */

.certext2 {
  padding: 50px 0px;
  /* background-image: url(../images/ocean_bg.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain; */
}

.certext2 .in-about .txt {
  padding: 50px 50px;
  margin-left: 45%;
}

.certext2 .in-about .txt div {
  background: #fff;
  border: 1px solid #d7d7d7;
  padding: 15px 40px;
  position: relative;
  margin: 0 0 27px 27px;
}

.certext2 .in-about .txt div:hover {
  border: 1px solid #2054a3;
}

.certext2 .in-about .txt div:hover a {
  color: #2054a3;
}

.certext2 .in-about .txt div:hover::before {
  background-color: #2054a3;
}

.certext2 .in-about .txt div::before {
  position: absolute;
  content: '';
  background-color: #e10111;
  background-image: url(../../skin/images/icon2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  display: inline-block;
  width: 54px;
  height: 54px;
  text-align: center;
  top: 50%;
  margin-top: -27px;
  left: -27px;
}

.certext2 .in-about .txt div p {
  font-size: 22px;
}

.certext2>.in-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.certext2>.in-about .img-center {
  float: none;
  width: 50%;
  margin: 0;
}

.certext2>.in-about .txt {
  padding: 50px 50px;
  margin: 0;
  width: 50%;
  background-color: #f6f6f6;
  background-image: url(../images/joinus2.webp);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}

.certext2>.in-about .img-center:before {
  display: none;
}

@media screen and (max-width: 768px) {
  .certext2>.in-about {
    display: block;
    padding: 10px;
  }

  .certext2>.in-about .img-center {
    width: 100%;
  }

  .certext2>.in-about .img-center img {
    width: 100%;
  }

  .certext2>.in-about .txt {
    padding: 20px 20px;
    width: 100%;
  }

  .certext2 .in-about .txt div p {
    font-size: 13px;
    margin: 0;
  }

  .certext .in-about .txt div::before {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    left: -15px;
  }

  .certext2 .in-about .txt div {
    padding: 10px 25px;
    margin: 0 0 27px 15px;
  }
}

@media only screen and (max-width: 1200px) {
  .about_allcontent {
    width: 100%;
  }

  .about_teams>.about_teamsbox {
    width: 45%;
  }
}

@media only screen and (max-width: 768px) {
  .about_teams>.about_teamsbox {
    width: 100%;
  }

  .about_teams .about_teamsimg {
    height: 500px;
  }

  .about_teams .about_teamsinfo {
    height: 200px;
  }

  .info_add {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .info_add p {
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .about_teams .about_teamsimg {
    height: 300px;
  }

  .b_img {
    width: 40px;
  }

  footer .right {
    width: 100%;
  }

  footer .left {
    width: 100%;
    text-align: left;
  }

  footer .right>.foot_link {
    text-align: center;
    margin-bottom: 20px;
  }
}

footer .flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
}

footer .flex>.left {
  width: 99%;
}

footer .flex>.right {
  width: 1%;
}

@media screen and (max-width: 768px) {
  footer .left .logo {
    padding: 0;
    margin-bottom: 0;
  }

  footer .flex {
    flex-wrap: wrap;
  }

  footer .flex>.left {
    width: 100%;
    order: 2;
  }

  footer .flex>.right {
    width: 100%;
  }

  footer .flex>.right>.text>.foot_link {
    text-align: left;
    margin: 15px auto;
  }

  .foot_link a img {
    width: 37px;
  }
}