@import url("reset.css");
*{
  margin:0;
  padding:0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  font-family: "Microsoft JhengHei","Heiti TC","sans-serif";
}

img { border: 0; width: 100%; height: auto; }

html,body{
    width: 100%;
    height: 100%;
}


/* header */
header > nav{
    width: 1200px;
    height: 50px;
    margin: 0 auto;
}

header > nav > a{
    line-height: 50px;
    color: #333;
    font-size: 14px;
    float: left;
}   

header > nav > a > img{
    width: 250px;
    padding: 12px 0 12px 5px;
} 

header > nav > div{
    color: #333;
    font-size: 14px;
    float: right;
    padding-left: 20px;
}

header > nav > div > a{
    display: block;
    line-height: 50px;
    padding: 0 10px;
    float: left;
    font-weight: bold;
    color: #333;
}

header > nav > div > a:hover{
    color: #00a19b;
}

/* activity */
li li{
    counter-increment: my-counter;
    margin-left: 1em;
    text-indent: -1.2em;
    list-style: none;
}

li li::before {
  content: "("counter(my-counter) ")";
}

@media screen and (max-width: 1024px) {

    header > nav > a > img{
        padding: 12px 0 12px 5px;
    }
}

@media screen and (max-width: 640px) {
    header > nav > div{
        clear: both;
        float: none;
        padding-left: 0;
    }

    header > nav > div > a{
        width: 50%;
        text-align: center;
    }

    article > div > img{
        padding-top: 10%;
    }
}
/*各區按鈕*/
.event_btnbody{
    width: 90%;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    padding: 0px 0px 20px 0px;
}

.event_btn1{
    display:inline-block; 
    height: 2.76em; 
    line-height: 2.8em; 
    font-size: 17px; 
    text-align: center; 
    color: #3cbaad; 
    background:#fff ; 
    border: 1px solid #3cbaad;
    cursor: pointer;
    width: 250px;
    border-radius: 4px;
    margin: 10px 20px;
}

.event_btn2{
    display:inline-block; 
    height: 2.76em; 
    line-height: 2.8em; 
    font-size: 17px; 
    text-align: center; 
    color: #fff; 
    background: #3cbaad; 
    cursor: pointer;
    width: 250px;
    border-radius: 4px;
    margin: 10px 20px;
}

.event_btn2:hover , .event_btn1:hover{
    opacity: 80%;
}

.btnLine {
    width: 90%;
    margin: 0 auto;
    border: solid 1px;
    border-radius: 0.25rem;
    padding: 0.9375rem;
    width: 140px;
    padding: 0px 20px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    border-color: #00a19b;
    color: #00a19b;
    transition: 0.3s;
    margin-bottom: 40px;
  }
  @media (min-width: 576px) {
    .btnLine {
      width: 200px;
      padding: 0px 50px;
    }
  }
  .btnLine:hover {
    opacity: 0.7;
  }

/* h1 */
.h1-seo{
  height: 0px;
  width: 0px;
  padding: 0px;
  margin: 0px;
  transform: scale(0);

}
/* kv */
.kv-body{
  width: 100%;
  margin: 0 auto;
  padding: 400px 0px;
  margin-top: 40px;
  background-image: url(../images/kvbanner-web-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items:start;
  overflow: hidden;
}
.kv-text{
  width: 40%;
  display: block;
  padding-right: 40px;
  overflow: hidden;
}
.kv-img{
  width: 35%;
  display: block;
  position: relative;
  bottom: 150px;
}
.kv-img img{
  width: 100%;
  position: absolute
}
.circle{
	-webkit-animation: rotate-center 20s linear infinite forwards;
	        animation: rotate-center 20s linear infinite forwards;
}
/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media(max-width:1600px){
  .kv-body{
  padding: 250px 0px;}
}
@media(max-width:1130px){
.kv-img{
  bottom: 130px;
}
}
@media(max-width:1000px){
  .kv-body{
  padding: 250px 0px 200px 0px;
}
}
@media(max-width:900px){
.kv-img{
  bottom: 100px;
}
}
@media(max-width:800px){
.kv-body{
    background-image: url(../images/kvbanner-mobile-bg.webp);
  display: block;
  padding: 100px 0px 650px 0px;
}
.kv-text{
  width: 85%;
  padding-right: 0px;
  margin: 0 auto;
}
.kv-img{
  width: 80%;
  bottom: 0px;
  margin: 0 auto;
  margin-top: 75px;
}
}
@media(max-width:670px){
.kv-body{
  padding: 100px 0px 600px 0px;
}
}
@media(max-width:600px){
.kv-body{
  padding: 80px 0px 550px 0px;
}
}
@media(max-width:500px){
.kv-body{
  padding: 50px 0px 450px 0px;
}
}
@media(max-width:430px){
.kv-body{
  padding: 70px 0px 380px 0px;
}
.kv-img{
  margin-top: 35px;
}
}

/*h2標題*/
h2{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  color: #595959;
  letter-spacing: 2px;
  padding: 20px 5px;
  font-size: 28px;
  padding-top: 120px;
}
h2 img{
  width: 100%;
  max-width: 35px;
  margin-right: 20px;
}
@media(max-width:628px){
h2{
  padding-top: 50px;
  padding-bottom: 10px;
}
}
@media(max-width:450px){
h2{
  font-size: 26px;
}
}
/*part0全臺民眾遭詐騙數據*/
#part0{
  width: 100%;
  margin: 0 auto;
  background-image: url(../images/bgBB.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#part0 p{
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: #7c7c7c;
  padding-bottom: 100px;
  font-size: 14px;
}
.scam-numbers-body{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 100px;
}
.scam-numbers-content{
  width: 350px;
  margin: 0 auto;
  text-align: center;
}
.scam-numbers-content h3{
  font-size: 18px;
  font-weight: 400;
  color: #595959;
}
.scam-numbers-content .unmber{
  font-size: 60px;
  font-weight: bolder;
  background: linear-gradient(to bottom,#1a8983, #6ee7df, #37ada5);
  background: -webkit-linear-gradient(to bottom,#1a8983, #6ee7df, #37ada5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.scam-numbers-content .unmber em{
  font-style: normal;
  font-size: 30px;
  color: #32d1c7;
}
@media(max-width:640px){
  .scam-numbers-body{
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  }
  .scam-numbers-content{
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #part0 p{
  padding-bottom: 40px;
}
  .unmber_M{
    padding-bottom: 30px;
    border-bottom: 1px solid #c6c6c6;
  }
  .scam-numbers-content .unmber{
  font-size: 50px;}
}
/*常見詐騙手法*/
.Common-scams-body{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.Common-scams-body figure{
  width: 28%;
  /*漸層編匡這樣寫*/
  border-width: 1.5px;
  border-style: solid;
  border-color: transparent;
  border-radius: 20px;
  background-image: linear-gradient(#f2f7fc, #f2f7fc), linear-gradient(to right, #50eb9e, #0ac7ba, #51ebff);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  /*漸層編匡這樣寫END*/
  margin:20px 20px;
}
.Common-scams-body figure img{
  padding: 20px 30px 0px 30px;
}
.Common-scams-body figcaption{
  width: 100%;
  padding: 10px 30px;
    background-image:linear-gradient(to right, #50eb9e, #0ac7ba, #51ebff);
  border-radius: 0px 0px 20px 20px;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}
.Common-scams-body figcaption img{
  width:40px;
  display: inline-block;
  padding: 0px 0px 5px 10px;
}
.Common-scams-body a:hover{
  text-decoration: none;
}
.Common-scams-body figcaption:hover{
  opacity: 0.8;
}
@media(max-width:840px){
.Common-scams-body figure{
  width: 45%;
}
}
@media(max-width:800px){
.Common-scams-body figure{
  width: 85%;
}
.Common-scams-body{
  margin-bottom: 40px;
}
}
/*防詐意識大挑戰*/
#part2 .web{
  width: 100%;
  display: block;
}
#part2 .mobile{
  width: 100%;
  display: none;
}
@media(max-width:800px){
#part2 .web{
  display: none;
}
#part2 .mobile{
  display: block;
}
}
/*遇到詐騙不要慌*/
#dialogue .web{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 100px;
  display: block;
}
#dialogue .mobile{
  width: 95%;
  margin: 0 auto;
  margin-bottom: 40px;
  display: none;
}
@media(max-width:800px){
#dialogue .web{
  display: none;
}
#dialogue .mobile{
  display: block;
}
}
/*信用卡被詐騙盜刷 怎麼辦？*/
#part3{
  width: 100%;
  /*background-image: linear-gradient(to left, #57dfdd28,#94ebff2a);*/
  background-image: url(../images/bgAA.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
  color: #595959;
}
#part3 h2{
  text-shadow:0px 0px 5px #ffffff;
}
.esun-wallet-body{
  width: 90%;
  max-width: 1400px;
  background-color: #ffffff;
  border: 1px solid #63e3f1;
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.esun-wallet-body img{
  width: 30%;
  margin: 30px 10px;
}
.esun-wallet-body figcaption{
  width: 65%;
}
.esun-wallet-body h3{
  color: #00a19b;
}
.esun-wallet-body em{
  font-style: normal;
  color: #ff9900;
}
.esun-wallet-body ul{
  margin-bottom: 40px;
  list-style-type:disc;
  padding-left: 19px;
  font-size: 18px;
}

.esun-wallet-body a{
  max-width: 250px;
  padding: 10px 30px;
  margin: 20px 10px;
  border: 1px solid #00a19b;
  border-radius: 30px;
  text-decoration: none;
}
.esun-wallet-body a:hover{
  color: #00a19b;
  opacity: 0.8;
}
.call-body{
  width:90%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-wrap: nowrap;
  justify-content:space-between;
  align-items: center;  
}
.call-body > div{
    width: 49%;
}
.call-body figure{
  background-color: #ffffff;
  border: 1px solid #63e3f1;
  border-radius: 20px;
  padding: 25px 20px;
  font-size: 18px;
  display: flex;
  flex-wrap: nowrap;
  justify-content:center;
  align-items: center; 
}
.call-body figure img{
  width: 20%;
  padding-right: 10px;
}
.call-body .orange{
  color: #ff9900;
  font-style: normal;
}
.call-body .esun-green{
  color: #00a19b;
  font-style: normal;
  text-decoration: none;
}
@media(max-width:1050px){
  .call-body figcaption{
    height: 90px;
}
}
@media(max-width:1017px){
  .esun-wallet-body .wallet-btn{
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.esun-wallet-body a{
  width: 30%;
  text-align: center;
  margin: 0 auto;
}
}
@media(max-width:800px){
.esun-wallet-body h3{
  text-align: center;
}
.esun-wallet-body ul{
  margin-bottom: 20px;
}
.esun-wallet-body img{
  width: 100%;
}
.esun-wallet-body{
  width: 90%;
}
.esun-wallet-body .wallet-btn{
  margin-bottom: 30px;
}
.esun-wallet-body a{
  width: 90%;
  margin: 0 auto;
  margin-bottom: 10px;
}
.esun-wallet-body figcaption{
  width: 90%;
}
.call-body{
  flex-wrap: wrap;
  justify-content: center;
}
.call-body > div{
    width: 100%;
}
.call-body figure{
  width: 100%;
  margin: 0px 0px 30px 0px;
}
}
/*安心防騙三「不」曲*/
.prevent-fraud-step{
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content:space-around;
}
.prevent-fraud-step img{
  width: 100%;
  max-width: 250px;
  margin-bottom: 10px;
}
.prevent-fraud-step figure{
  width: 25%;
  text-align: center;
  font-size: 20px;
  margin-bottom: 100px;
  color: #595959;
}
@media(max-width:800px){
  .prevent-fraud-step figure{
  width: 90%;
  margin-bottom: 40px;
}
}
/*其他常見詐騙情境*/
#part5{
  width: 100%;
  background-image: linear-gradient(to left, #57dfdd1f,#94ebff1b);
  padding: 0px 0px 80px 0px;
}
.tabbtn{
    width: 100%;
    font-size: 0px;
    text-align: center;
}
.tabbtn > div{
    display: inline-block;
    margin: 5px;
    box-sizing: border-box;
    overflow: hidden;
    vertical-align: middle;
    color: #acacac;
}

.tabbtn .btnclick{
    padding: 15px 80px 5px 80px;
    border-bottom: 2px solid #acacac;
    text-align: center;
    cursor: pointer;
    border-radius: 0px;
    font-size: 18px;
    margin: 5px;
    margin-bottom: 20px;
    transition: all 0.8s;
    box-sizing: border-box;
}

.tabbtn .btnclick:hover{
    color:#2ec1bc;
    border-bottom: 2px solid #2ec1bc;
}

.tabbtn > div.active .btnclick{
    color:#00a19b;
    border-bottom: 2px solid #00a19b;
}

.tabbody > div{
    width: 90%;
    background-color: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    margin: 0 auto;
    display: none;
    box-sizing: border-box;
    padding: 40px 40px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 80px;
}

.tabbody > div.active{
    display: block;
}
.tabbody > div.active figure{
    width: 100%;
    text-align: justify;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.tabbody > div.active figure img{
    width: 30%;
    padding-right: 20px;
}
.tabbody > div.active figcaption h3{
  font-size: 22px;
  color: #00a19b;
  letter-spacing: 1px;
}
.tabbody > div.active figcaption p{
  color: #595959;
}
.tabbody > div.active figcaption p em{
  color: #ff9900;
  font-style: normal;
}
.tabbody > div.active figcaption p ol{
  list-style-type: decimal;
}
.real-police{
  color: #fff !important;
  background-color: #fd6767e6;;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 25px;
  margin-right: 10px;
}
.real-police-body{
  margin: 25px 0px 10px 0px;
}
@media(max-width:955px){
  .tabbtn .btnclick{
    padding: 15px 20px 5px 20px;
}
@media(max-width:500px){
  #part5{
  padding: 0px 0px 40px 0px;
}
  .tabbtn .btnclick{
    padding: 15px 10px 5px 10px;
}
.tabbody > div{
    margin-bottom: 20px;
}
  .tabbody > div.active figure{
    flex-wrap: wrap;
}
  .tabbody > div.active figure img{
      width: 80%;
      padding-right: 0px;
}
.tabbtn > div{
    margin: 0px;
}

}
/*輪播*/
.section5 {
  text-align: center;
  padding-top: 20px;
  background-color: #ffffff;
  padding-bottom: 100px;
}
.section5 .uk-tab {
  width: 100%;
  padding: 0px 0px 30px 0px;
}
.section5 .uk-tab li a {
  padding-bottom: 16px;
  text-decoration: none;
  padding-top: 30px;
}
.section5 .uk-tab li a h3 {
  color: #999;
  font-weight: normal;
  font-size: 18px !important;
  margin: 0;
  padding: 0;
}
.section5 .tab {
  max-width: 100%;
}
@media (max-width: 991px) {
  .section5 .uk-tab {
    padding-left: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media(max-width:500px){
  .section5{
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.section5 .uk-tab > li {
  display: inline-block !important;
  padding-left: 0;
  position: relative;
  width: 25%;
  margin: 0 auto;
  text-align: center;
}
.section5 .uk-tab > li a::after {
  content: "";
  width: 90%;
  height: 4px;
  background-color: #acacac;
  border-radius: 10px;
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  
}
.section5 .uk-tab > li a::after span {
  color: #7c7c7c;
  z-index: 2;
  line-height: 20px;
}
.section5 .uk-tab > .uk-active > a::after {
  content: none;
}
.section5 .uk-tab > .uk-active > a {
  color: #5fc7b9;
  font-weight: bold;
  padding-bottom: 5px;
  border: 0;
  text-decoration: none;
}
.section5 .uk-tab > .uk-active > a h3 {
  color: #5fc7b9;
  font-weight: bold;
  font-size: 18px !important;
  margin: 0;
  text-decoration: none;
}
@keyframes shark-txt {
  form{
    background-position: -100%;
  }
  to {
    background-position: 200%;
  }
}
.section5 .uk-tab > .uk-active::after {
  content: "";
  width: 90%;
  height: 4px;
  color: #5fc7b9;
  border-radius: 10px;
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        background: linear-gradient(45deg, rgba(8, 255, 206, 0) 40%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 60%) -100% / 50% no-repeat currentColor;
 -webkit-text-fill-color: transparent;/*也就是文字填充的顏色，將文字填充透明的顏色，只讓背景顏色顯現出來*/
    animation: shark-txt 2s infinite;
}
.section5 .tab .uk-switcher {
  margin-top: 10px !important;
}
.section5 .tab > .uk-tab {
  margin: 0 auto;
  overflow: scroll;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
@media(max-width:500px){
  .section5 .uk-tab li a h3 , .section5 .uk-tab > .uk-active > a h3 {
  font-size: 16px !important;
}
}

.popup h3{

}
.popup h4{

}
.popup p{
 color: #595959;
 font-size: 16px;
}

