@charset "utf-8";
/** CSS Document **/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  color: #2e4050;
  font-size: 100%;
}
body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif, "微軟正黑體";
  max-width: 1920px;
  overflow-x: hidden;
  background-color: rgba(250, 250, 255, 1);
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth; /* Enable smooth scrolling */
  scroll-padding-top: 0; /* Account for fixed navbar */
}
html, body {
  touch-action: manipulation;
}
a {
  text-decoration: none;
  color: inherit;
}
a:has(img) {
  border: 1px solid transparent;
}
:root {
  --Background-Gradient: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
}
section {
  margin: 0 auto;
  /* Snap align start. */
  scroll-snap-align: start;
  height: 920px;
  width: 100%;
  position: relative;
}
.mobile {
  display: none;
}
.web {
  display: block;
}
/* Gradient Text */
.animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(-90deg, #6585EC 0%, #A6DDFC 29%, #5BB7EC 67%, #6585EC 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  display: inline-block;
}
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
/* nav */ /*--------------------------------------------------*/ /* nav */
nav {
  font-size: 28px;
  font-weight: 600;
  position: fixed;
  top: 0;
  width: 100vw;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  justify-content: center;
  height: 95px;
  z-index: 99;
}
nav input[type=checkbox], input[type=radio] {
  display: none
}
nav .navbar_logo {
  position: absolute;
  left: 15%;
  background-image: url("../imgs/logo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  width: 233px;
  height: 95px;
  background-size: 233px 51px;
}
nav ul.menu {
  position: absolute;
  padding-left: 0;
  right: 15%;
  top: 0;
  margin: 0;
  min-width: 927px;
  height: 95px;
  list-style-type: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
nav ul.menu li {
  padding-right: 30px;
}
nav ul.menu li:first-child {
  font-weight: bold;
}
nav ul.menu li:last-child {
  padding-right: 0px;
}
nav ul.menu li a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: opacity 200ms ease-in-out;
  overflow: hidden;
}
nav ul.menu li a::after {
  content: "";
  display: block;
  width: 100%;
  opacity: 0;
  height: 3px;
  margin-top: 3px;
  border-radius: 99px !important;
  background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
  background: -webkit-linear-gradient(to right, #A6DDFC, #6585EC); /* Chrome 10-25, Safari 5.1-6 */
  transition: width 0.3s ease-in-out;
}
nav ul.menu li a.current::after {
  width: 100%;
  opacity: 1;
}
nav ul.menu li a:hover::after {
  width: 100%;
  opacity: 1;
}
/* nav end */ /*--------------------------------------------------*/ /* nav end */
/* Intro */ /*--------------------------------------------------*/ /* Intro */
#Intro {
  width: 100%;
  height: auto;
  position: relative;
  background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
  z-index: 1;
}

#Intro::before {
 position: absolute;
 left: 0;
 top: 0;
 z-index: 2;
 content: "";
 background-image: url("../imgs/Noise.png");
  background-size: 1920px auto;
  background-repeat: repeat;
  background-position: bottom;
  width: 1920px;
  height:100%; 
} 

#Intro .page_1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#Intro .page_1 .MainLogo {
  position: absolute;
  background-image: url("../imgs/MainLogo.png");
  background-repeat: no-repeat;
  top: 160px;
  background-size: 770px 512px;
  background-position: center center;
 width: 1920px;
  height: 512px;
  z-index: 3;
}

#Intro .page_1 .pagenav {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: calc((100% - 277px) / 2);
}

#Intro .page_1 .pagenav .checkMore {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  width: 277px;
  height: 100px;
  padding-top: 10px;
  border-radius: 84px;
  border: 3px solid #FFF;
  background: rgba(120,195,239,.5);
  box-shadow: 0px 4px 16px 0px rgba(20, 71, 111, 0.3);
  cursor: pointer;
  z-index: 3;
  position: relative;
}

#Intro .page_1 .pagenav a{
    color: inherit;
    text-decoration: none;
}

#Intro .page_1 .pagenav .checkMore:hover  {
  background: #78c3ef;
  box-shadow: 0px 4px 16px 0px rgba(20, 71, 111, 0.5);    
}
#Intro .page_1 .pagenav .checkMore a span {
  background-image: url("../imgs/pageDown-arrow.svg");
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 65px;
  height: 15px;
  margin-left: -30px;
  -webkit-animation: sdb04 2s infinite;
  animation: sdb04 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb04 {
  0% {
    -webkit-transform: rotate(-0deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-0deg) translate(0px, 10px);
  }
  40% {
    -webkit-transform: rotate(-0deg) translate(0, 0);
  }
}
@keyframes sdb04 {
  0% {
    transform: rotate(-0deg) translate(0, 0);
  }
  20% {
    transform: rotate(-0deg) translate(0px, 10px);
  }
  40% {
    transform: rotate(-0deg) translate(0, 0);
  }
} 

#Intro .page_1 .animation--Bg {
    position: absolute;
    top: 95px;
    z-index: 2;
    left: 0px;
    transform: scale(1);
  }

#Intro .page_2 {
    position: relative;    
    height: 100vh;
    overflow: hidden;
}

#Intro .page_2 .page_2_bg {
 position: relative; 
 z-index: 1;
 content: "";
 background-image: url("../imgs/Intro_02_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 920px;
}

#Intro .page_2 .Intro { 
  position: absolute; 
 top: 0;    
  z-index: 3;
  padding-top: 260px;
  width: 1130px;
  left: calc((1920px - 1130px) / 2);
  text-shadow: 3px 2px 6px rgba(0, 0, 0, 0.39);
}
#Intro .page_2 .Intro .Title {
  width: 100%;
  text-align: center;
  padding-bottom: 2em;
}
#Intro .page_2 .Intro ul {
  width: 100%;
  list-style: disc;
  list-style-position: outside;
}
#Intro .page_2 .Intro ul li {
  text-align: justify;
  padding-left: -1em;
  text-indent: 0;
  font-size: 32px;
  font-weight: 350;
  line-height: 1.5em;
  color: #FFFFFF;
  padding-bottom: 1em;
}
#Intro .page_2 .Intro ul li span {
  font-weight: 600;
}
 

/* Intro end */ /*--------------------------------------------------*/ /* Intro end */
/* 辨識元大 */ /*--------------------------------------------------*/ /* 辨識元大 */
#section1 {
  padding-top: 95px;
  background: rgba(250, 250, 255, 1);
  display: flex;
  align-content: center;
  justify-content: center;
}
.Identification {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
}
.Identification .title {
  width: 100%;
  background-image: url("../imgs/section1_Title.png");
  background-size: 700px 136px;
  height: 150px;
  background-repeat: no-repeat;
  background-position: 50% bottom;
  display: block;
}
.Identification ul {
  padding-left: 4em;
  margin: 1em auto 1.5em;
  width: 750px;
  list-style: disc;
  list-style-position: outside;
}
.Identification ul li {
  text-align: left;
  padding-left: -1em;
  text-indent: 0;
  font-size: 24px;
  font-weight: 350;
  line-height: 1.5em;
}
.Identification ul li:last-child {
  padding-bottom: 0;
}
.Identification .slidesBox {
  width: 842px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
/** slider **/
.Identification .slidesBox .page {
  position: relative;
  background: rgba(101, 133, 236, 1);
  box-shadow: 3px 2px 6px rgba(0, 0, 0, 0.39);
  border-radius: 50px;
  bottom: 70px;
  height: 58px;
  width: 206px;
  margin: 0 auto;
}
.Identification .slides {
  width: 843px;
  height: 530px;
}
.Identification .slidesBox .slick-arrow {
  position: relative;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  padding: 0px;
  background: #FFFFFF;
  z-index: 5;
  cursor: pointer;
  top: 490px;
}
.Identification .slidesBox .slick-counter {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 26px;
  font-weight: 500;
  color: #FFFFFF;
}
.Identification .slidesBox .slick-arrow.slick-next {
  color: #FFFFFF;
  position: absolute;
  right: 327px;
}
.Identification .slidesBox .slick-arrow.slick-next::before {
  position: absolute;
  left: 8px;
  top: 12px;
  content: url("../imgs/slider-arrow.svg");
  width: 35px;
  height: 20px;
  padding-left: 4px;
  transform: rotateY(180deg);
}
.Identification .slidesBox .slick-arrow.slick-prev {
  position: absolute;
  left: 327px;
}
.Identification .slidesBox .slick-arrow.slick-prev::before {
  position: absolute;
  left: 5px;
  top: 12px;
  content: url("../imgs/slider-arrow.svg");
  width: 35px;
  height: 202px;
  padding-right: 4px;
}
/* 辨識元大 end */ /*--------------------------------------------------*/ /* 辨識元大 end */
/* 反詐騙5妙招 */ /*--------------------------------------------------*/ /* 反詐騙5招 */
#section2 {
  background-image: url("../imgs/section2_bg.png");
  background-size: cover;
  background-position: center;
  width: 1920px;
  border: 1px solid transparent;
}
.Tips {
  height: 550px;
  max-width: 1300px;
  margin: 300px auto 0;
  position: relative;
  z-index: 2;
}
.Tips .pointer5 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.Tips .content {
  margin-top: 50px;
}
.Tips .content p {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  position: relative;
  color: #FFF;
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 500;
  text-align: justify;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}
.Tips .content p.underline {
  margin-top: 1.5em;
}
.Tips .content p.underline a {
  position: relative;
  max-width: 1200px;
  text-decoration: none;
  font-size: 32px;
  color: #FFFFFF;
  left: calc((100% - 13em) / 2);
}
.Tips .content p.underline a:hover {
  color: #2E4050;
}
.Tips .content p.underline a::after {
  content: "";
  width: 13em;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  bottom: -10px;
  left: calc((100% - 13em) / 2);
}
.Tips .content p.underline a:hover::after {
  background: #2E4050;
}
/* 反詐騙5妙招 end */ /*--------------------------------------------------*/ /* 反詐騙5招 end */
/* 詐騙型態 */ /*--------------------------------------------------*/ /* 詐騙型態 */
#section3 {
  background: rgba(250, 250, 255, 1);
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
}
.Fraud {
  background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
  width: 1300px;
  height: 700px;
  margin-top: 150px;
  border-radius: 42px;
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
}
.Fraud::before {
  content: " ";
  background: #FFFFFF;
  width: 1285px;
  height: 685px;
  border-radius: 39px;
  margin: auto auto;
}
.Fraud .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  padding: 0;
}
.Fraud .content .intro {
  width: 570px;
  height: 100%;
  position: relative;
  float: left;
  z-index: 2;
  padding: 1em;
}
.Fraud .content .intro {
  height: 100%;
  padding-top: 100px;
  padding-left: 20px;
}
.Fraud .content .intro ul {
  width: 500px;
  padding: 2em 0 0 70px;
}
.Fraud .content .intro ul li {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
  padding-bottom: 1.5em;
}
.Fraud .content .intro ul li:last-child {
  padding-bottom: 0;
}
.Fraud .content .slidesBox {
  position: relative;
  float: left;
  z-index: 2;
}
.Fraud .content .slides {
  margin-top: 25px;
  width: 720px;
  height: 685px;
}
.Fraud .content .slidesBox .page {
  position: relative;
  bottom: 130px;
  background: rgba(101, 133, 236, 1);
  box-shadow: 3px 2px 6px rgba(0, 0, 0, 0.39);
  border-radius: 50px;
  height: 58px;
  width: 206px;
  margin: 0 auto;
}
.Fraud .content .slick-counter {
  position: absolute;
  bottom: 80px;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 26px;
  font-weight: 500;
  color: #FFFFFF;
}
.Fraud .content .slidesBox .slick-arrow {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  padding: 0px;
  background: #FFFFFF;
  position: relative;
  z-index: 5;
  cursor: pointer;
  top: 585px;
}
.Fraud .content .slidesBox .slick-arrow.slick-next {
  color: #FFFFFF;
  position: absolute;
  right: 264px;
}
.Fraud .content .slidesBox .slick-arrow.slick-next::before {
  position: absolute;
  left: 5px;
  top: 12px;
  content: url("../imgs/slider-arrow.svg");
  width: 35px;
  height: 23px;
  padding-right: 4px;
  transform: rotateY(180deg);
}
.Fraud .content .slidesBox .slick-arrow.slick-prev {
  position: absolute;
  left: 265px;
}
.Fraud .content .slidesBox .slick-arrow.slick-prev::before {
  position: absolute;
  left: 5px;
  top: 13px;
  content: url("../imgs/slider-arrow.svg");
  width: 35px;
  height: 23px;
  padding-right: 4px;
}
/* 詐騙型態 end */ /*--------------------------------------------------*/ /* 詐騙型態 end */
/* 反詐資源 */ /*--------------------------------------------------*/ /* 反詐資源 */
#section4 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-image: url("../imgs/section4_bg.png");
  background-color: rgba(250, 250, 255, 1);
  background-size: 1920px 100%;
  background-position: center;
  text-align: center;
  height: 920px;
  width: 1920px;
  overflow: hidden;
}
#section4 .title {
  background-image: url("../imgs/section4_Title.png");
  width: 100%;
  height: 136px;
  background-repeat: no-repeat;
  background-position: center 0;
}
.tab-Box {
  padding-top: 100px;
  display: flex;
  width: 1200px;
  height: 100%;
  flex-direction: column;
  align-items: center;
}
.tabs {
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
}
.tabs input[type="radio"] {
  display: none;
}
.tabs ul {
  height: 80px;
  display: flex;
  padding: 0 15px;
  margin: 0;
  list-style: none;
  border-radius: 0;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
}
.tabs ul li {
  display: flex;
  flex-direction: row;
  text-align: center;
  font-weight: 400;
  font-size: 32px;
  cursor: pointer;
}
.tabs ul li label i {
  padding-right: 5px;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.29);
}
.tabs ul li label {
  height: 50px;
  bottom: 0;
  display: block;
  color: #fff;
  cursor: pointer;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.29);
}
.tabs ul li:hover {
  height: 50px;
  border: 1px solid transparent;
  border-width: 0 0 4px 0;
  border-image: linear-gradient(90deg, #FF9E5D 0%, #FFEF86 100%);
  padding-bottom: 8px;
  border-image-slice: 1;
}
.tabs ul li.active {
  height: 50px;
  border: 1px solid transparent;
  border-width: 0 0 4px 0;
  border-image: linear-gradient(90deg, #FF9E5D 0%, #FFEF86 100%);
  padding-bottom: 8px;
  border-image-slice: 1;
}
.tabs input[type="radio"]:checked + label {
  position: relative;
  z-index: 2;
}
.tabs .content section {
  display: none;
  padding: 20px;
  background: #fff;
  border-radius: 32px;
  height: 100%;
  min-height: 550px;
  position: relative;
}
.tabs .content section a {
  color: #2e4050;
  text-decoration: none;
}
/* 公告提醒 */
.tabs .content section div.Notice {
  display: flex;
  text-align: left;
  flex-direction: column;
}
.tabs .content section div.Notice p {
  padding: 24px 8px;
  font-weight: 400;
  font-size: 24px;
  line-height: 1em;
  border-bottom: 1px solid rgba(46, 64, 80, 0.5);
  margin-bottom: 0;
}
/* 相關網站 */
.tabs .content section div.Related-websites {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-content: center;
  padding: 30px 0;
}
.tabs .content section div.Related-websites div {
  padding: 10px;
}
/* 相關報導 */
.tabs .content section div.Report {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-content: flex-start;
  padding: 0;
}
.tabs .content section div.Report div.list:first-child {
  padding: .5em 0em 0em 0em;
}
.tabs .content section div.Report div.list {
  position: relative;
  width: 100%;
  padding: 1em 0 0 0;
  border-bottom: 1px solid rgba(46, 64, 80, 0.5);
}
.tabs .content section div.Report div.list p.header {
  text-align: left;
  padding: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1em;
  margin-bottom: 5px;
}
.tabs .content section div.Report div.list p.Ellipsis__text {
  font-size: 24px;
  line-height: 1em;
  font-weight: 400;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 5em;
  margin-bottom: .5em;
}
.tabs .content section div.Report div.list p.Ellipsis__text::after {
  font-size: 24px;
  content: "詳細內容";
  display: block;
  position: absolute;
  right: 0;
  bottom: 12px;
  font-weight: 400;
  line-height: 1em;
  color: #97a0a8;
  text-decoration: underline;
}
.tabs .content section div.Report div.list p.JQellipsis {
  display: none;
}
.VideoBox {
  overflow: hidden;
  display: flex;
  align-self: flex-start;
  position: relative;
  height: 490px;
}
.VideoBox .mainVideo {
  float: left;
  text-align: left;
}
.VideoBox .mainVideo img {
  width: 720px;
  height: 400px;
}
.VideoBox .listVideo {
  width: 100%;
  float: left;
}
.VideoBox .listVideo img {
  width: 120px;
  height: 70px;
}
.VideoBox .mainVideo span.Videotitle {
  font-weight: 600;
  line-height: 2em;
  font-size: 32px;
  text-align: left;
}
.VideoBox div.description {
  font-size: 22px;
  line-height: 1em;
  font-weight: 400;
}
.VideoBox span.title {
  font-size: 25px;
  font-weight: 500;
  line-height: 2em;
}
.VideoBox span.S_title {
  font-size: 20px;
  line-height: 1.7em;
  font-weight: 600;
  padding-left: 10px;
}
.VideoBox div.S_description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  padding-left: 10px;
  word-break: break-all;
}
/** customize-scrollbar **/
.scroll .wrapper {
  width: 100%;
  height: 475px;
  overflow-y: scroll;
  padding: 0 8px;
}
.scroll .wrapper::-webkit-scrollbar {
  width: 5px;
}
.scroll .wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
}
.scroll .wrapper::-webkit-scrollbar-thumb {
  background: #6585EC;
}
.scroll .wrapper .list {
  display: flex;
  align-items: center;
  text-align: start;
  border-bottom: 1px solid rgba(137, 136, 136, 1);
  padding: 12px 0;
}
.scroll .wrapper .list:first-child {
  padding-top: 0;
}
/* 圖文宣導 */
.DisseminateBox {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  min-height: 390px;
}
/** imgs **/
.DisseminateBox .img-Disseminate {
  position: relative;
  display: flex;
  width: 264px;
  height: 390px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #EEE;
  overflow: hidden;
  border-radius: 25px;
  margin: 0px 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}
.DisseminateBox .img-Disseminate a img {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  background-size: cover;
  width: 264px;
  height: 306px;
}
.DisseminateBox .img-Disseminate .text {
  display: flex;
  align-self: center;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  text-align: center;
  width: 245px;
  position: absolute;
  color: #000;
  font-size: 24px;
  line-height: 1.2em;
  font-weight: 500;
  bottom: 10px;
}
.DisseminateBox .img-Disseminate .text div {
  width: auto;
  height: auto;
}
.tabs input[type="radio"]:nth-of-type(1):checked ~ .content section:nth-of-type(1), .tabs input[type="radio"]:nth-of-type(2):checked ~ .content section:nth-of-type(2), .tabs input[type="radio"]:nth-of-type(3):checked ~ .content section:nth-of-type(3), .tabs input[type="radio"]:nth-of-type(4):checked ~ .content section:nth-of-type(4), .tabs input[type="radio"]:nth-of-type(5):checked ~ .content section:nth-of-type(5) {
  display: block;
}
.button-list {
  display: block;
  width: 100%;
  margin: 20px auto 0 auto;
  position: absolute;
  bottom: 20px;
  left: 0;
}
button.fast {
  --duration: .32s;
}
button {
  --background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
  --text: #fff;
  --font-size: 24px;
  --duration: .44s;
  --move-hover: -4px;
  --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
  --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
  --font-shadow: var(--font-size);
  padding: 28px 70px;
  margin: 0 auto;
  font-weight: 500;
  line-height: var(--font-size);
  border-radius: 50px;
  display: block;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  position: relative;
  bottom: 0;
  text-decoration: none;
  font-size: var(--font-size);
  letter-spacing: 0.5px;
  background: var(--background);
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translateY(var(--y)) translateZ(0);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}
button div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 var(--text);
}
button div span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  transition: transform var(--duration) ease;
  transform: translateY(var(--m)) translateZ(0);
}
button div span:nth-child(1) {
  transition-delay: 0.05s;
}
button div span:nth-child(2) {
  transition-delay: 0.1s;
}
button div span:nth-child(3) {
  transition-delay: 0.15s;
}
button div span:nth-child(4) {
  transition-delay: 0.2s;
}
button div span:nth-child(5) {
  transition-delay: 0.25s;
}
button:hover {
  --y: var(--move-hover);
  --shadow: var(--shadow-hover);
}
button:hover span {
  --m: calc(var(--font-size) * -1);
}
button.reverse {
  --font-shadow: calc(var(--font-size) * -1);
}
button.reverse:hover span {
  --m: calc(var(--font-size));
}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}
button [aria-label] {
  color: #000000;
  display: none;
}
/* 反詐資源 end */ /*--------------------------------------------------*/ /* 反詐資源 end */
/* 遇詐騙怎麼辦 */ /*--------------------------------------------------*/ /* 遇詐騙怎麼辦 */
#section5 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: rgba(250, 250, 255, 1);
}
.NowWhat {
  display: flex;
  align-items: center;
  width: 1350px;
}
.NowWhat .title {
  background-image: url("../imgs/section5_Title.png");
  margin-top: 0;
  width: 595px;
  height: 136px;
}
.NowWhat .image {
  background-image: url("../imgs/NowWhat_img.png");
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 508px;
}
/* Accordion */
.accordion_box {
  background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
  width: 100%;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  padding: 25px;
  z-index: 1;
}
.accordion_box::before {
  content: "";
  background: url("../imgs/Noise.png");
  top: 0;
  left: 0;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  background-position: left top;
  position: absolute;
  z-index: 1;
}
.accordion {
  gap: 32px;
  border-radius: 32px;
  padding: 15px 16px 10px 10px;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.accordion__item {
  position: relative;
  list-style-type: none;
  padding: 2% 4%;
}
.accordion__item:not(:last-of-type) {
  border-bottom: 1px solid #d7d9d8;
}
input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.accordion__title {
  font-weight: 700;
  font-size: 28px;
}
.accordion__arrow {
  position: absolute;
  right: 0;
  margin-top: 10px;
  margin-right: 4%;
}
/*.accordion__arrow:hover {
  animation: bounce 0.5s infinite;
}*/
.accordion__arrow::before, .accordion__arrow::after {
  content: "";
  position: absolute;
  background: rgba(46, 64, 80, 1);
  width: 3px;
  height: 18px;
  border-radius: 3px;
  transition: transform 0.5s ease-in-out;
}
.accordion__arrow::before {
  transform: translateX(-6px) rotate(45deg);
}
.accordion__arrow::after {
  transform: translateX(6px) rotate(-45deg);
}
input[type="checkbox"]:checked ~ .accordion__arrow::before {
  transform: translateX(6px) rotate(45deg);
}
input[type="checkbox"]:checked ~ .accordion__arrow::after {
  transform: translateX(-6px) rotate(-45deg);
}
.accordion__content {
  text-align: justify;
  position: relative;
  margin: 0;
  padding: 0;
  opacity: 1;
  overflow: hidden;
  transition: all 1s ease-in-out;
  line-height: 1.6;
  z-index: 2;
}
input[type="checkbox"]:checked ~ .accordion__content {
  max-height: 0;
  opacity: 0;
}
.accordion__content ul {
  width: 100%;
  list-style: disc;
  padding: 1em 2em 0 2em;
}
.accordion__content ul li {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2em;
  padding-bottom: 1em;
}
.accordion__content ul li:last-child {
  padding-bottom: 0;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}
/* 遇詐騙怎麼辦 end */ /*--------------------------------------------------*/ /* 遇詐騙怎麼辦 end */
/* 聯絡我們 */ /*--------------------------------------------------*/ /* 聯絡我們 */
#section6 {
  background-color: rgba(250, 250, 255, 1);
  height: 920px;
}
.Concrete {
  background-image: url("../imgs/section6_bg.png");
  background-size: 1614px 661px;
  background-repeat: no-repeat;
  background-position: left 130px;
  height: 800px;
}
.Concrete .content {
  position: absolute;
  z-index: 2;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0px;
  width: 1000px;
  height: 460px;
  margin: 325px 0 0 450px;
  padding: 23px;
}
.Concrete .content div.list {
  line-height: 1.2em;
  padding-left: .8em;
  padding-bottom: 55px;
  font-weight: 400;
  font-size: 28px;
}
.Concrete .content div.list::before {
  content: "";
  height: 67px;
  position: absolute;
  left: 30px;
  display: inline-block;
  width: 3px;
  background: -webkit-linear-gradient(bottom, #FF9E5D 0%, #FFEF86 100%);
  background: -o-linear-gradient(bottom, #FF9E5D 0%, #FFEF86 100%);
  background: linear-gradient(to top, #FF9E5D 0%, #FFEF86 100%);
}
.Concrete .content p.underline, .Concrete .content p.underline a {
  text-decoration: none;
  font-size: 28px;
  line-height: 1.5em;
  color: inherit;
  font-weight: 700;
}
.footer {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 30px;
  font-weight: 500;
  font-size: 18px;
  color: #2e4050;
}
.footer p.web {
  display: block;
}
.footer p.phone {
  display: none;
}
/* iphone16 Pro Max W440px H956px */ /*--------------------------------------------------*/ /* 手機樣式 W440 */
@media screen and (max-width:768px) {
  .mobile {
    display: block;
  }
  .web {
    display: none;
  }
  /* nav */ /*--------------------------------------------------*/ /* nav */
  nav {
    position: fixed;
    top: 0;
    font-size: 28px;
    font-weight: 600;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: block;
    grid-template-columns: 15% auto;
    gap: 30%;
    height: 70px;
    justify-content: center;
    z-index: 99;
  }
  nav .navbar_logo {
    left: 0;
    background-image: url("../imgs/logo.svg");
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    width: 100%;
    height: 70px;
  }
  /* nav-toggle */
  #nav-toggle {
    position: absolute;
    clip: rect(0, 0, 0, 0);
  }
  #nav-toggle:checked + .menu {
    visibility: visible;
    opacity: 1;
  }
  #nav-toggle-label {
    position: fixed;
    left: 10px;
    top: .7em;
    z-index: 2;
    cursor: pointer;
  }
  #nav-toggle-label span, #nav-toggle-label:before, #nav-toggle-label:after {
    display: block;
    height: 3px;
    background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
    width: 42px;
    margin-bottom: 0.4em;
    transition: 0.2s all linear;
  }
  #nav-toggle-label:before, #nav-toggle-label:after {
    content: "";
  }
  nav ul.menu {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 100%;
    min-width: 390px;
    padding: 0;
    height: 100vh;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 24px;
    visibility: hidden;
    list-style: none;
    padding-left: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: 0.2s all linear;
  }
  nav ul.menu li {
    padding-right: 0px;
    line-height: 1em;
    font-size: 32px;
    font-weight: 600;
    margin: 20px 0;
  }
  .nav-toggle-label--active span {
    opacity: 0;
  }
  .nav-toggle-label--active:before {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
  }
  .nav-toggle-label--active:after {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
  }
  /* nav end */ /*--------------------------------------------------*/ /* nav end */
  section {
    /* Snap align start */
    scroll-snap-align: start;
    height: 100%;
    width: 100%;
  }
  #section1, #section3, #section5 {
    max-width: 440px;
    height: 100%;
    margin: 0 auto;
  }
  /* Intro */ /*--------------------------------------------------*/ /* Intro */
  #Intro {
  width: 100%;
  height: auto;
  position: relative;
  background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
  z-index: 1;
}

#Intro::before {
 position: absolute;
 left: 0;
 top: 0;
 z-index: 2;
 content: "";
 background-image: url("../imgs/Noise.png");
  background-size: 1920px auto;
  background-repeat: repeat;
  background-position: bottom;
  width: 1920px;
  height:100%; 
} 

#Intro .page_1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#Intro .page_1 .MainLogo {
  position: absolute;
  background-image: url("../imgs/MainLogo_S.png");
  background-repeat: no-repeat;
  top: 280px;
  background-size: 330px 220px;
  background-position: center center;
 width: 100%;
  height: 220px;
  z-index: 3;
}

#Intro .page_1 .pagenav {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: calc((100% - 277px) / 2);
}

#Intro .page_1 .pagenav .checkMore {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  width: 277px;
  height: 100px;
  padding-top: 10px;
  border-radius: 84px;
  border: 3px solid #FFF;
  background: rgba(120,195,239,.5);
  box-shadow: 0px 4px 16px 0px rgba(20, 71, 111, 0.3);
  cursor: pointer;
  z-index: 3;
  position: relative;
}

#Intro .page_1 .animation--Bg {
    position: absolute;
    top: 95px;
    z-index: 2;
    left: 0px;
    transform: scale(1);
  }

#Intro .page_2 {
    position: relative;    
    height: 100vh;
    overflow: hidden;    
}

#Intro .page_2 .page_2_bg {
 position: relative; 
 z-index: 1;
 content: "";
 background-image: url("../imgs/Intro_02_S_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
}

#Intro .page_2 .Intro { 
    display: flex;
    flex-direction: column;
    justify-content: center;
  position: absolute; 
 top: 0;    
  z-index: 3;
  padding-top: 200px;
  width: 100%;
    left: 0;
  text-shadow: 3px 2px 6px rgba(0, 0, 0, 0.39);
}
#Intro .page_2 .Intro .Title { 
  width: 100%;
  text-align: center;
  padding-bottom: 2em;
}
#Intro .page_2 .Intro ul {
    margin: 0 auto;
  width: 260px;
  list-style: disc;
  list-style-position: outside;
}
#Intro .page_2 .Intro ul li {
  text-align: justify;
  padding-left: -1em;
  text-indent: 0;
  font-size: 20px;
  font-weight: 350;
  line-height: 1.5em;
  color: #FFFFFF;
  padding-bottom: 1em;
}
#Intro .page_2 .Intro ul li span {
  font-weight: 600;
}
  /* 辨識元大 */ /*--------------------------------------------------*/ /* Mobile 辨識元大 */
  #section1 {
    background: rgba(250, 250, 255, 1);
    padding-top: 100px;
  }
  .Identification {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .Identification .title {
    background-image: url("../imgs/section1_Title.png");
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-position: center 50%;
    height: 90px
  }
  .Identification > ul {
    padding-left: 2em;
    margin: 0 auto 1.5em;
    width: 340px;
    list-style: disc;
    list-style-position: outside;
  }
  .Identification > ul li {
    text-indent: 0;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5em;
    padding-bottom: 1em;
    text-align: justify;
  }
  .Identification > ul li:last-child {
    padding-bottom: 0;
  }
  .Identification .slidesBox {
    width: 100%;
    z-index: 2;
    margin-bottom: 20px;
  }
  /** slider **/
  .Identification .slidesBox .page {
    background: rgba(101, 133, 236, 1);
    box-shadow: 3px 2px 6px rgba(0, 0, 0, 0.39);
    border-radius: 50px;
    bottom: 0px;
    height: 58px;
    width: 206px;
    position: relative;
  }
  .Identification .slides {
    width: 358px;
    height: 433px;
    margin: 0 auto 15px auto;
  }
  .Identification .slidesBox .slick-arrow {
    position: relative;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    padding: 0px;
    background: #FFFFFF;
    z-index: 5;
    cursor: pointer;
    top: 478px;
  }
  .Identification .slidesBox .slick-counter {
    position: absolute;
    top: 460px;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 26px;
    font-weight: 500;
    color: #FFFFFF;
  }
  .Identification .slidesBox .slick-arrow.slick-next {
    color: #FFFFFF;
    position: absolute;
    right: 85px;
  }
  .Identification .slidesBox .slick-arrow.slick-next::before {
    position: absolute;
    left: 5px;
    top: 11px;
    content: url("../imgs/slider-arrow.svg");
    width: 35px;
    height: 23px;
    padding-left: 4px;
    transform: rotateY(180deg);
  }
  .Identification .slidesBox .slick-arrow.slick-prev {
    position: absolute;
    left: 85px;
  }
  .Identification .slidesBox .slick-arrow.slick-prev::before {
    position: absolute;
    left: 5px;
    top: 11px;
    content: url("../imgs/slider-arrow.svg");
    width: 35px;
    height: 23px;
    padding-right: 4px;
  }
  /* 反詐騙5妙招 */ /*--------------------------------------------------*/ /* 反詐騙5招 */
  #section2 {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    background-image: none;
    height: 2000px;
    padding-top: 0px;
    background:
      linear-gradient(to right, rgb(101, 133, 236) 0%, rgb(91, 183, 236) 20%, rgb(166, 221, 252) 50%, rgb(91, 183, 236) 80%, rgb(101, 133, 236) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    z-index: 1;
  }
  #section2::before {
    content: "";
    background: url("../imgs/Noise.png");
    top: 0;
    left: 0;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    background-position: left top;
    position: absolute;
    z-index: 2;
  }
  .Tips {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
    z-index: 2;
    margin: 0;
    padding-top: 2em;
  }
  .Tips .pointer5 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 0px;
  }
  .Tips .pointer5 div {
    margin: 0px;
  }
  .Tips .content {
    width: 100%;
    margin-top: 0px;
  }
  .Tips .content p {
    padding: 20px 16px 0 16px;
    position: relative;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
    text-align: justify;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  }
  .Tips .content p.underline {
    margin-top: 0;
  }
  .Tips .content p.underline a {
    padding: 0px 16px 0 16px;
    margin-top: 0px;
    position: relative;
    width: 100%;
    text-decoration: none;
    font-size: 18px;
    color: #FFFFFF;
    left: calc((100% - 13em) / 2);
    font-weight: 500;
  }
  .Tips .content p.underline a:hover {
    color: #2E4050;
  }
  .Tips .content p.underline a::after {
    content: "";
    width: 13em;
    height: 2px;
    background: #FFFFFF;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /* 詐騙型態 */ /*--------------------------------------------------*/ /* 詐騙型態 */
  #section3 {
    min-height: 844px;
  }
  .Fraud {
    width: 100%;
    height: 100%;
    background: none;
    position: relative;
    margin-top: 0;
  }
  .Fraud::before {
    display: none;
  }
  .Fraud .content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 95px 0 20px 0;
  }
  .Fraud .content .intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1em 0;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .Fraud .content .intro ul {
    max-width: 340px;
    padding: 1em 0 0 1em;
    margin: 0 auto;
  }
  .Fraud .content .intro ul li {
    font-size: 16px;
    line-height: 1.5em;
    padding-top: .5em;
    padding-bottom: 1em;
    font-weight: 500;
    letter-spacing: 0px;
  }
  .Fraud .content .intro ul li:last-child {
    padding-bottom: 0;
  }
  .Fraud .content .slidesBox {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    z-index: 99;
  }
  .Fraud .content .slidesBox .slides {
    margin-top: 0;
    width: 380px;
    height: 347px;
  }
  /** slider **/
  .Fraud .content .slidesBox .page {
    position: relative;
    background: rgba(101, 133, 236, 1);
    box-shadow: 3px 2px 6px rgba(0, 0, 0, 0.39);
    border-radius: 50px;
    bottom: 0px;
    height: 58px;
    width: 206px;
    margin: 0 auto;
  }
  .Fraud .content .slidesBox .slick-counter {
    position: absolute;
    bottom: -50px;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 26px;
    font-weight: 500;
    color: #FFFFFF;
  }
  .Fraud .content .slidesBox .slick-arrow {
    position: absolute;
    top: 376px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    padding: 0px;
    background: #FFFFFF;
    z-index: 5;
    cursor: pointer;
  }
  .Fraud .content .slidesBox .slick-arrow.slick-next {
    color: #FFFFFF;
    position: absolute;
    right: 95px;
  }
  .Fraud .content .slidesBox .slick-arrow.slick-next::before {
    position: absolute;
    left: 8px;
    top: 12px;
    content: url("../imgs/slider-arrow.svg");
    width: 35px;
    height: 20px;
    padding-left: 4px;
    transform: rotateY(180deg);
  }
  .Fraud .content .slidesBox .slick-arrow.slick-prev {
    position: absolute;
    left: 95px;
  }
  .Fraud .content .slidesBox .slick-arrow.slick-prev::before {
    position: absolute;
    left: 5px;
    top: 12px;
    content: url("../imgs/slider-arrow.svg");
    width: 35px;
    height: 202px;
    padding-right: 4px;
  }
  /* 反詐資源 */ /*--------------------------------------------------*/ /* 反詐資源 */
  #section4 {
    position: relative;
    background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 700px;
    overflow: hidden;
  }
  #section4::after {
    content: "";
    background-image: url("../imgs/Noise.png");
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #section4 .tab-Box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    height: 100%;
    padding: 100px 16px 20px 16px;
  }
  #section4 .title {
    background-image: url("../imgs/section4_Title.png");
    background-size: 234px 75px;
    width: 100%;
    height: 75px;
    background-repeat: no-repeat;
    background-position: center 0;
  }
  .tabs {
    width: 100%;
    overflow: visible;
  }
  .tabs ul {
    align-content: flex-start;
    padding-top: 150px;
    height: 60px;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 0;
    overflow: hidden;
    justify-content: space-between;
    align-items: flex-start;
  }
  .tabs ul li:hover {
    height: 50px;
    border: 1px solid transparent;
    border-width: 0 0 4px 0;
    border-image: linear-gradient(90deg, #FF9E5D 0%, #FFEF86 100%);
    padding-bottom: 0px;
    border-image-slice: 1;
  }
  .tabs ul li.active {
    height: 50px;
    border: 1px solid transparent;
    border-width: 0 0 4px 0;
    border-image: linear-gradient(90deg, #FF9E5D 0%, #FFEF86 100%);
    padding-bottom: 0px;
    border-image-slice: 1;
  }
  .tabs ul li label i {
    display: block;
    padding-right: 0;
  }
  .tabs ul li {
    height: 50px;
    font-weight: 600;
    font-size: 16px;
  }
  .tabs ul li label i, .tabs ul li label {
    text-shadow: none;
  }
  .tabs .content section {
    width: 100%;
    min-height: 475px;
    align-items: flex-start;
    display: none;
    margin: 0;
    padding: 10px;
    background: #fff;
    border-radius: 16px;
  }
  .fix-height {
    margin-bottom: 70px;
  }
  /* 公告提醒 */
  .tabs .content section div.Notice p {
    font-weight: 400;
    font-size: 16px;
    padding: 16px 8px;
    line-height: 1.2em;
    text-align: justify;
    border-bottom: 1px solid rgba(46, 64, 80, 0.5)
  }
  /* 相關網站 */
  .tabs .content section div.Related-websites {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    padding: 0;
  }
  .tabs .content section div.Related-websites div {
    text-align: center;
    height: 100%;
    width: 50%;
    padding: 0;
  }
  /* 相關報導 */
  /* 多行標題 */
  .tabs .content section div.Report div.list p.header {
    text-align: left;
    padding: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3em;
  }
  .tabs .content section div.Report div.list p.Ellipsis__text {
    display: none;
  }
  /*多行內容*/
  .tabs .content section div.Report div.list p.JQellipsis {
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Change this line if you want. In this case it trimmed the text to 3 lines. */
    overflow: hidden;
    overflow-wrap: break-word;
    line-height: 1.5em;
    text-align: justify;
  }
  .tabs .content section div.Report div.list p.JQellipsis::after {
    font-size: 14px;
    content: "詳細內容";
    text-decoration: underline;
    background-color: #FFFFFF;
    display: block;
    position: absolute;
    right: 0;
    bottom: 15px;
    font-weight: 400;
    color: #97a0a8;
  }
  /** 宣傳影片 ** --------------------------------------------------*/ /* 宣傳影片 */
  .VideoBox {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .VideoBox .mainVideo {
    float: left;
    max-width: 100%;
    display: block;
  }
  .VideoBox .mainVideo img {
    padding: 0 10px 10px;
    width: 100%;
    height: 100%;
  }
  .VideoBox .listVideo {
    width: 100%;
    float: left;
  }
  .VideoBox .listVideo img {
    width: 120px;
    height: 70px;
  }
  .VideoBox .mainVideo span.Videotitle {
    font-weight: 600;
    font-size: 22px;
    line-height: 1em;
    text-align: left;
  }
  .VideoBox span.title {
    font-size: 25px;
    font-weight: 500;
    line-height: 2em;
  }
  .VideoBox div.description {
    font-size: 16px;
    font-weight: 400;
  }
  .VideoBox span.S_title {
    font-size: 18px;
    display: block; 
    line-height: 1.2em;
    font-weight: 550;
    padding-left: 0px;
      margin-left: .5em;
  }
  .VideoBox div.S_description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    padding-left: 10px;
    word-break: break-all;
  }
  /** customize-scrollbar **/
  .scroll .wrapper {
    width: 100%;
    height: 475px;
    overflow-y: scroll;
    padding: 0 8px;
  }
  .scroll .wrapper::-webkit-scrollbar {
    width: 5px;
  }
  .scroll .wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.04);
  }
  .scroll .wrapper::-webkit-scrollbar-thumb {
    background: #6585EC;
  }
  .scroll .wrapper .list {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid silver;
    padding: 12px 0;
  }
  .scroll .wrapper .list:first-child {
    padding-top: 0;
  }
  .tabs [id^="tab"]:checked + label {
    border: 1px solid transparent;
    border-width: 0 0 3px 0;
    border-image: linear-gradient(90deg, #FF9E5D 0%, #FFEF86 100%);
    border-image-slice: 1;
  }
  .tabs [id^="tab"]:checked ~ [id^="tab-content"] {
    display: block;
  }
  /** 圖文宣導 ** --------------------------------------------------*/ /* 圖文宣導 */
  .DisseminateBox {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
  /** imgs **/
  .img-Disseminate {
    position: relative;
    display: flex;
    width: 264px;
    height: 390px;
    background: #EEE;
    overflow: hidden;
    border-radius: 25px;
    margin: 20px auto 0 auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  }
  .img-Disseminate:last-child {
    margin: 20px auto;
  }
  .img-Disseminate a img {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    background-size: cover;
    width: 264px;
    height: 306px;
  }
  .img-Disseminate .text {
    display: flex;
    align-self: center;
    justify-content: center;
    align-items: center;
    height: 2.5em;
    text-align: center;
    width: 100%;
    position: absolute;
    color: #000;
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 500;
    bottom: 10px;
  }
  .img-Disseminate .text div {
    width: auto;
    height: auto;
  }
  /** 點擊看更多 ** --------------------------------------------------*/ /* 點擊看更多 */
  .button-list {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 20px;
    z-index: 99;
    left: 0;
  }
  button.fast {
    --duration: .32s;
  }
  button {
    --background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
    --text: #fff;
    --font-size: 16px;
    --duration: .44s;
    --move-hover: -4px;
    --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
    --font-shadow: var(--font-size);
    padding: 13px 35px;
    margin: 0 auto;
    font-weight: 500;
    line-height: var(--font-size);
    border-radius: 50px;
    display: block;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    position: relative;
    bottom: 0;
    text-decoration: none;
    font-size: var(--font-size);
    letter-spacing: 0.5px;
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
  }
  button div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
  }
  button div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
  }
  button div span:nth-child(1) {
    transition-delay: 0.05s;
  }
  button div span:nth-child(2) {
    transition-delay: 0.1s;
  }
  button div span:nth-child(3) {
    transition-delay: 0.15s;
  }
  button div span:nth-child(4) {
    transition-delay: 0.2s;
  }
  button div span:nth-child(5) {
    transition-delay: 0.25s;
  }
  button:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
  }
  button:hover span {
    --m: calc(var(--font-size) * -1);
  }
  button.reverse {
    --font-shadow: calc(var(--font-size) * -1);
  }
  button.reverse:hover span {
    --m: calc(var(--font-size));
  }
  .tabs [id^="tab"]:checked ~ [id^="tab-content"] {
    display: block;
  }
  button [aria-label] {
    color: #000000;
    display: none;
  }
  /* 遇詐騙怎麼辦 */ /*--------------------------------------------------*/ /* 遇詐騙怎麼辦 */
  #section5 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
  }
  .NowWhat {
    padding-top: 70px;
    width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  .accordion_box {
    padding: 0 10px;
  }
  .NowWhat .title {
    background-image: url("../imgs/section5_S_Title.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 375px 80px;
    width: 375px;
    height: 80px;
    margin: 30px 0 10px;
  }
  .accordion_box {
    background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
    width: 408px;
    border-radius: 16px;
    position: relative;
    overflow: visible;
    padding: 15px;
    z-index: 1;
  }
  .accordion_box::before {
    content: "";
    background: url("../imgs/Noise.png");
    border-radius: 16px;
    overflow: hidden;
    top: 0;
    left: 0;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    background-position: left top;
    position: absolute;
    z-index: 1;
  }
  .accordion {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 16px;
    padding: 0;
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
  }
  .accordion__title {
    font-size: 22px;
    line-height: 1.3em;
    font-weight: 700;
    padding-right: 55px;
    margin-bottom: 0;
  }
  .accordion__item {
    margin-top: 0px;
    position: relative;
    list-style-type: none;
    padding: 20px 0px 16px 20px;
  }
  .accordion__content {
    font-size: 22px;
    text-align: justify;
    position: relative;
    margin: 0;
    padding: 0;
    opacity: 1;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    line-height: 1.6;
    z-index: 2;
  }
  .accordion__content ul {
    width: 100%;
    list-style: disc;
    padding: 1em;
  }
  .accordion__content ul li {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3em;
    padding-bottom: 1em;
  }
  .accordion__arrow {
    position: absolute;
    right: 0;
    margin-top: 5px;
    margin-right: 35px;
  }
  .NowWhat .image {
    position: relative;
    z-index: 2;
    background-image: url("../imgs/NowWhat_img.png");
    background-repeat: no-repeat;
    background-size: 300px 277px;
    width: 100%;
    height: 277px;
    background-position: center;
    margin-top: 50px;
  }
  /* 聯絡我們 */ /*--------------------------------------------------*/ /* 聯絡我們 */
  /*#section6 {
    background-color: #FAFAFF;
    height: 844px;
    width: 100%;
  }*/
  #section6 {
    position: relative;
    background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
    text-align: center;
    width: 100%;
    height: auto;
    min-height: 861px;
    overflow: hidden;
  }
  #section6::after {
    content: "";
    border-radius: 16px;
    background: url("../imgs/Noise.png");
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .Concrete {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    background-image: none;
  }
  .Concrete::after {
    content: "";
    background: url("../imgs/section6_icon.png");
    background-repeat: no-repeat;
    position: absolute;
    z-index: 4;
    bottom: -30%;
    right: -36%;
    width: 100%;
    height: 100%;
  }
  .Concrete img {
    position: relative;
    z-index: 3;
  }
  .Concrete .content {
    z-index: 2;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    padding-top: 0px;
    padding: 16px;
    max-width: 408px;
    margin: 100px 16px 0 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.70);
    height: 230px;
  }
  .Concrete .content div.list {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    padding-left: 0;
    padding-bottom: 10px;
  }
  .Concrete .content div.list::before {
    content: "";
    height: 67px;
    position: absolute;
    left: 30px;
    display: inline-block;
    width: 3px;
    background: none;
  }
  .Concrete .content p.underline, .Concrete .content p.underline a {
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5em;
    color: inherit;
    font-weight: 700;
  }
  .footer {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #2e4050;
    background: #FFF;
    z-index: 2;
  }
  .footer div {
    position: relative;
    z-index: 3;
    padding: 32px 0;
  }
}
/* iphone14+ W395px H844px */ /*----------------------------------------------------------*/ /* 手機樣式 W390 */
@media screen and (max-width:395px) {
 #Intro {
  width: 100%;
  height: auto;
  position: relative;
  background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
  z-index: 1;
}

#Intro::before {
 position: absolute;
 left: 0;
 top: 0;
 z-index: 2;
 content: "";
 background-image: url("../imgs/Noise.png");
  background-size: 1920px auto;
  background-repeat: repeat;
  background-position: bottom;
  width: 1920px;
  height:100%; 
} 

#Intro .page_1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#Intro .page_1 .MainLogo {
  position: absolute;
  background-image: url("../imgs/MainLogo_S.png");
  background-repeat: no-repeat;
  top: 160px;
  background-size: 330px 220px;
  background-position: center center;
 width: 100%;
  height: 220px;
  z-index: 3;
}

#Intro .page_1 .pagenav {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: calc((100% - 277px) / 2);
}

#Intro .page_1 .pagenav .checkMore {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  width: 277px;
  height: 100px;
  padding-top: 10px;
  border-radius: 84px;
  border: 3px solid #FFF;
  background: rgba(120,195,239,.5);
  box-shadow: 0px 4px 16px 0px rgba(20, 71, 111, 0.3);
  cursor: pointer;
  z-index: 3;
  position: relative;
}

#Intro .page_1 .animation--Bg {
    position: absolute;
    top: -50px;
    z-index: 2;
    left: -20px;
    transform: scale(.9);
  }  
  /*反詐騙5妙招*/
  #section2 {
    max-width: 440px;
    padding-top: 30px;
  }
  .Tips .content p {
    width: 100%;
    position: relative;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
    text-align: justify;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  }
  /*常見詐騙型態*/
  #section3 {
    max-width: 390px;
  }
  .Fraud .content .intro ul li {
    font-size: 16px;
    line-height: 1.5em;
    padding-bottom: 0;
    padding-top: .5em;
    font-weight: 500;
    letter-spacing: 0px;
  }
  /*反詐資源*/
  .tabs .content section {
    min-height: 475px;
    align-items: flex-start;
    display: none;
    margin: 0;
    padding: 10px;
    background: #fff;
    border-radius: 16px;
  }
  #section4 {
    max-width: 440px;
  }
  /*多行內容*/
  .tabs .content section div.Report div.list p.JQellipsis {
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Change this line if you want. In this case it trimmed the text to 3 lines. */
    overflow: hidden;
    overflow-wrap: break-word;
    line-height: 1.5em;
    text-align: justify;
  }
  /*遇詐騙怎麼辦*/
  #section5 {
    max-width: 440px;
  }
  .NowWhat {
    width: 100%;
    padding: 0 16px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  .accordion_box {
    padding: 0;
  }
  .NowWhat .title {
    background-image: url("../imgs/section5_S_Title.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 375px 80px;
    width: 375px;
    height: 80px;
    margin: 30px 0 10px;
  }
  .accordion_box {
    background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
    width: 100%;
    border-radius: 16px;
    position: relative;
    overflow: visible;
    padding: 16px;
    z-index: 1;
  }
  /*聯絡我們*/
  #section6 {
    max-width: 440px;
    position: relative;
    background: linear-gradient(270deg, #A6DDFC 0%, #5BB7EC 55.28%, #6585EC 100%);
    text-align: center;
    width: 100%;
    height: auto;
    min-height: 749px;
    overflow: hidden;
  }
  .Concrete {
    padding-top: 70px;
    display: flex;
    justify-content: center;
    background-image: none;
  }
  .Concrete .content {
    z-index: 2;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    padding-top: 0px;
    padding: 16px;
    max-width: 358px;
    margin: 100px 16px 0 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.70);
    height: 230px;
  }
}