@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
.waffle-container {
  max-width: 100% !important;
  padding-right: 0;
  padding-left: 0;
}


.waffle {
  color: #000;
  background-color: #e6e6e6;
}
.waffle *, .waffle ::after, .waffle ::before {
  box-sizing: border-box;
}
.waffle .lg-view {
  display: block;
}
.waffle .sm-view {
  display: none;
}
.waffle .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.waffle .animated.infinite {
  animation-iteration-count: infinite;
}
.waffle .bounceInUp {
  animation-name: bounceInUp;
  animation-duration: .8s;
}
.waffle .waffle-section {
  position: relative;
  z-index: 0;
  color: #464646;
  padding: 0 20px;
}
.waffle .waffle-section .section-anchor {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.waffle .waffle-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.waffle .waffle-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.waffle .waffle-section .section-inner {
  position: relative;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.waffle .waffle-section .section-header {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.waffle .waffle-section .section-content {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  max-width: 102.5rem;
}
.waffle .waffle-section .heading {
  font-size: 50px;
  line-height: 58px;
  font-weight: 700;
  text-align: center;
  color: #278b83;
}
.waffle .waffle-section .heading span {
  display: inline-block;
}
.waffle .waffle-section .highlight {
  color: #ffe388;
}
.waffle .waffle-section .btn.sty--primary {
  color: #fff;
  border-color: #00958f;
  background-color: #00958f;
}
.waffle .waffle-section .btn.sty--primary:active {
  background: #00958f;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .waffle .waffle-section .btn.sty--primary:hover {
    background: #00958f;
    filter: brightness(1.2);
  }
}
.waffle .waffle-section img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.waffle .waffle-kv {
  position: relative;
  z-index: 0;
  padding: 0;
}
.waffle .waffle-kv .section-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.waffle .waffle-kv .title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  z-index: -1;
}
.waffle .waffle-kv .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.waffle .waffle-kv .layer-bg {
  background-image: url(https://www.homeplus.net.tw/cable/images/manual_upload/waffle/images/kv-bg_lg.webp);
  background-size: 2560px auto;
  background-repeat: no-repeat;
  background-position: center top;
}
.waffle .waffle-kv .layer-bg img {
  max-width: 1440px;
  margin: 0 auto;
  visibility: hidden;
}
.waffle .waffle-kv .layer-slogan {
  animation-delay: .2s;
}
.waffle .waffle-kv .action {
  animation-delay: .2s;
}
.waffle .waffle-kv .action {
  position: absolute;
  top: 70%;
  left: 6.5%;
}
.waffle .waffle-kv .btn {
  background-color: #278b83;
  border: 0;
  font-size: 30px;
  line-height: 70px;
  font-weight: 500;
  border-radius: 70px;
  width: 750px;
  min-height: 70px;
  padding: 0 1rem;
  white-space: nowrap;
}
.waffle .waffle-a {
  position: relative;
  z-index: 1;
  padding: 0;
  padding-top: 0;
  padding-bottom: 48px;
}
.waffle .waffle-a .section-header {
  margin-bottom: 25px;
}
.waffle .waffle-a .heading {
  color: #434343;
}
.waffle .waffle-a .box {
  width: calc(100% - 20px * 2);
  max-width: 1200px;
  margin: 0 auto;
}
.waffle .waffle-b {
  position: relative;
  padding: 0;
  padding-top: 0;
  padding-bottom: 32px;
}
.waffle .waffle-b .section-header {
  margin-bottom: 48px;
}
.waffle .waffle-b .section-content {
  width: calc(100% - 20px * 2);
  max-width: 1200px;
  margin: 0 auto;
}
.waffle .waffle-b .list-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.waffle .waffle-b .list-a .item {
  width: calc(100% / 4 - 10px * 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #fff;
  border-radius: 84px;
  margin: 10px;
  position: relative;
  color: #464646;
}
.waffle .waffle-b .list-a .item-1 {
  width: calc(24% - 10px * 2);
}
.waffle .waffle-b .list-a .item-2 {
  width: calc(25% - 10px * 2);
}
.waffle .waffle-b .list-a .item-3 {
  width: calc(24% - 10px * 2);
}
.waffle .waffle-b .list-a .item-4 {
  width: calc(27% - 10px * 2);
}
.waffle .waffle-b .list-a .item:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .waffle .waffle-b .list-a .item:hover {
    filter: brightness(1.2);
  }
}
.waffle .waffle-b .list-a .image {
  width: 84px;
  border-radius: 50%;
  background-color: #e97094;
}
.waffle .waffle-b .list-a .content {
  width: calc(100% - 84px);
  padding: 8px 8px 8px 20px;
}
.waffle .waffle-b .list-a .main-text {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: .05em;
}
.waffle .waffle-b .list-a .main-text span {
  display: block;
}
.waffle .waffle-b .list-a .main-text br {
  display: none;
}
.waffle .waffle-b .list-b {
  margin: -10px;
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.waffle .waffle-b .list-b .item {
  width: calc(100% / 2 - 10px * 2);
  background-color: #fff;
  border-radius: 20px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  min-height: 350px;
}
.waffle .waffle-b .list-b .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.waffle .waffle-b .list-b .item-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.waffle .waffle-b .list-b .content {
  position: relative;
  padding: 40px 40px 20px;
}
.waffle .waffle-b .list-b .main-text {
  font-size: 50px;
  line-height: 56px;
  font-weight: 700;
  color: #278b83;
  margin-bottom: 10px;
}
.waffle .waffle-b .list-b .sub-text {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.waffle .waffle-b .list-b .text {
  position: relative;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 12px;
}
.waffle .waffle-b .list-b .text li {
  position: relative;
  padding-left: 1em;
}
.waffle .waffle-b .list-b .text li:before {
  content: "．";
  position: absolute;
  top: 0;
  left: 0;
}
.waffle .waffle-b .list-b .btn {
  background-color: #278b83;
  border: 0;
  font-size: 25px;
  line-height: 44px;
  font-weight: 500;
  border-radius: 44px;
  width: 156px;
  min-width: 156px;
  min-height: 44px;
  padding: 0;
  letter-spacing: .05em;
}
.waffle .waffle-b .list-b .btn img {
  width: 24px;
  margin-left: 5px;
}
.waffle .waffle-c {
  position: relative;
  z-index: 1;
  padding: 0;
  padding-top: 32px;
  padding-bottom: 32px;
}
.waffle .waffle-c .section-header {
  margin-bottom: 16px;
}
.waffle .waffle-c .heading span {
  display: block;
}
.waffle .waffle-c .box {
  width: calc(100% - 20px * 2);
  max-width: 1200px;
  margin: 0 auto;
}
.waffle .waffle-d {
  position: relative;
  padding: 0;
  padding-bottom: 32px;
}
.waffle .waffle-d .section-header {
  margin-bottom: 16px;
}
.waffle .waffle-d .box {
  width: calc(100% - 20px * 2);
  max-width: 1200px;
  margin: 0 auto;
}
.waffle .waffle-e {
  position: relative;
  padding: 0;
  padding-top: 32px;
  padding-bottom: 88px;
}
.waffle .waffle-e .section-header {
  margin-bottom: 25px;
}
.waffle .waffle-e .heading span {
  display: block;
}
.waffle .waffle-e .section-content {
  width: calc(100% - 20px * 2);
  max-width: 1224px;
  margin: 0 auto;
}
.waffle .waffle-e .scroll-text {
  display: none;
  text-align: center;
}
.waffle .waffle-e .l-swiper {
  max-width: 1224px;
  margin: 0 auto;
}
.waffle .waffle-e .swiper-slide {
  width: calc(100% / 3);
  padding: 0 12px;
  min-width: 384px;
}
.waffle .waffle-e .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 15px;
}
.waffle .waffle-e .swiper-pagination-bullet {
  background: #b9c5c5;
}
.waffle .waffle-e .swiper-pagination-bullet-active {
  background: #0aafb4;
}
.waffle .waffle-e .item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.waffle .waffle-e .item .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.waffle .waffle-e .item .item-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.waffle .waffle-e .item .content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  min-height: 340px;
}
.waffle .waffle-e .item .main-text {
  font-size: 33px;
  line-height: 60px;
  letter-spacing: .05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: auto;
  color: #fff;
  animation-delay: .4s;
  background-image: url(https://www.homeplus.net.tw/cable/images/manual_upload/waffle/images/e-hd.webp);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 100%;
}
.waffle .waffle-e .item .btn {
  background-color: #278b83;
  border: 0;
  font-size: 25px;
  line-height: 44px;
  font-weight: 500;
  border-radius: 44px;
  width: 156px;
  min-width: 156px;
  min-height: 44px;
  padding: 0;
  letter-spacing: .05em;
  margin: 20px auto;
}

@media (max-width: 1440px) and (min-width: 751px) {
  .waffle .waffle-section .heading {
    font-size: 3.47vw;
    line-height: 1.16;
  }
  .waffle .waffle-kv .layer-bg {
    background: none;
  }
  .waffle .waffle-kv .layer-bg img {
    visibility: visible;
  }
  .waffle .waffle-kv .action {
    top: 70%;
    left: 6.5%;
  }
  .waffle .waffle-kv .btn {
    font-size: 2.1vw;
    line-height: 2.41;
    border-radius: 4.86vw;
    width: 52vw;
    min-height: 4.86vw;
  }
  .waffle .waffle-b .list-a .item {
    border-radius: 5.833vw;
  }
  .waffle .waffle-b .list-a .image {
    width: 5.833vw;
  }
  .waffle .waffle-b .list-a .content {
    width: calc(100% - 5.833vw);
  }
  .waffle .waffle-b .list-a .main-text {
    font-size: 1.944vw;
    line-height: 1.214;
  }
  .waffle .waffle-b .list-b .item {
    min-height: 24.305vw;
  }
  .waffle .waffle-b .list-b .content {
    padding: 2.777vw 2.777vw 1.388vw;
  }
  .waffle .waffle-b .list-b .main-text {
    font-size: 3.47vw;
    line-height: 1.12;
  }
  .waffle .waffle-b .list-b .sub-text {
    font-size: 1.944vw;
    line-height: 1.28;
  }
  .waffle .waffle-b .list-b .text {
    font-size: 1.18vw;
    line-height: 1.47;
  }
  .waffle .waffle-b .list-b .btn {
    font-size: 1.736vw;
    width: 10.83vw;
    min-width: 10.83vw;
    height: 3.055vw;
    min-height: 3.055vw;
  }
  .waffle .waffle-b .list-b .btn img {
    width: 1.666vw;
  }
  .waffle .waffle-e .swiper-slide {
    min-width: 26.6666vw;
  }
  .waffle .waffle-e .item .content {
    min-height: 23.611vw;
  }
  .waffle .waffle-e .item .main-text {
    font-size: 2.29vw;
    line-height: 1.818;
  }
  .waffle .waffle-e .item .btn {
    font-size: 1.736vw;
    width: 10.83vw;
    min-width: 10.83vw;
  }
}
@media (max-width: 1240px) and (min-width: 751px) {
  .waffle .waffle-e .section-content {
    width: 100%;
    padding: 0 20px;
  }
  .waffle .waffle-e .l-swiper {
    margin: 0 -12px;
  }
}
@media (max-width: 750px) {
  .wafflemain-wrapper .grid-container {
    padding-right: 0;
    padding-left: 0;
  }

  .waffle .lg-view {
    display: none;
  }
  .waffle .sm-view {
    display: block;
  }
  .waffle .waffle-section {
    padding: 0 2.6666vw;
  }
  .waffle .waffle-section .section-content {
    width: 100%;
  }
  .waffle .waffle-section .heading {
    font-size: 6.666vw;
    line-height: 1.08;
  }
  .waffle .waffle-section .section-anchor {
    top: -60px;
  }
  .waffle .waffle-kv {
    padding: 0;
  }
  .waffle .waffle-kv .section-inner {
    max-width: 100%;
  }
  .waffle .waffle-kv .layer-bg {
    background: none;
  }
  .waffle .waffle-kv .layer-bg img {
    visibility: visible;
  }
  .waffle .waffle-kv .action {
    top: 73%;
    left: 5%;
  }
  .waffle .waffle-kv .btn {
    font-size: 2.6vw;
    line-height: 6.4vw;
    border-radius: 6.4vw;
    width: 67.2vw;
    min-height: 6.4vw;
  }
  .waffle .waffle-a {
    padding-top: 0;
    padding-bottom: 48px;
  }
  .waffle .waffle-a .section-header {
    margin-bottom: 4.266vw;
  }
  .waffle .waffle-a .box {
    width: 100%;
  }
  .waffle .waffle-b {
    padding-top: 0;
    padding-bottom: 15px;
  }
  .waffle .waffle-b .section-header {
    margin-bottom: 4.266vw;
  }
  .waffle .waffle-b .list-a {
    margin: -1.3333vw;
  }
  .waffle .waffle-b .list-a .item {
    width: calc(100% / 2 - 1.3333vw * 2);
    border-radius: 11.2vw;
    margin: 1.3333vw;
  }
  .waffle .waffle-b .list-a .image {
    width: 11.2vw;
  }
  .waffle .waffle-b .list-a .content {
    width: calc(100% - 11.2vw);
  }
  .waffle .waffle-b .list-a .main-text {
    font-size: 3.6vw;
    line-height: 1.259;
  }
  .waffle .waffle-b .list-a .main-text span {
    display: inline;
  }
  .waffle .waffle-b .list-a .main-text br {
    display: block;
  }
  .waffle .waffle-b .list-b {
    margin: 0;
    margin-top: 20px;
    display: block;
  }
  .waffle .waffle-b .list-b .item {
    width: 100%;
    margin: 0;
    min-height: 48vw;
    border-radius: 2.6666vw;
  }
  .waffle .waffle-b .list-b .item + .item {
    margin-top: 2.666vw;
  }
  .waffle .waffle-b .list-b .content {
    padding: 5.333vw 5.333vw 2.666vw;
  }
  .waffle .waffle-b .list-b .main-text {
    font-size: 5.6vw;
    line-height: 1.12;
  }
  .waffle .waffle-b .list-b .sub-text {
    font-size: 3.866vw;
    line-height: 1.285;
    margin-bottom: 2.6666vw;
  }
  .waffle .waffle-b .list-b .text {
    font-size: 2.666vw;
    line-height: 1.25;
  }
  .waffle .waffle-b .list-b .btn {
    font-size: 4.4vw;
    line-height: 1.333;
    border-radius: 7.2vw;
    width: 29.33vw;
    min-width: 29.33vw;
    min-height: 7.2vw;
    padding: 0;
  }
  .waffle .waffle-b .list-b .btn img {
    width: 4.266vw;
    margin-left: .6666vw;
  }
  .waffle .waffle-c {
    padding-top: 15px;
    padding-bottom: 40px;
  }
  .waffle .waffle-c .section-header {
    margin-bottom: 4.266vw;
  }
  .waffle .waffle-c .box {
    width: 100%;
  }
  .waffle .waffle-d {
    padding-bottom: 20px;
  }
  .waffle .waffle-d .section-header {
    margin-bottom: 4.266vw;
  }
  .waffle .waffle-d .box {
    width: 100%;
  }
  .waffle .waffle-e {
    padding: 0;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .waffle .waffle-e .section-header {
    margin-bottom: 4.266vw;
  }
  .waffle .waffle-e .section-content {
    width: calc(100% + 2.6666vw * 2);
    margin-left: -1.6666vw;
  }
  .waffle .waffle-e .l-swiper {
    max-width: 100%;
    padding: 0 2.6666vw;
    margin-right: 2.6666vw;
  }
  .waffle .waffle-e .swiper-slide {
    width: 61.333vw;
    padding: 0 1.3333vw;
    min-width: 61.333vw;
  }
  .waffle .waffle-e .item {
    border-radius: 2.6666vw;
  }
  .waffle .waffle-e .item .content {
    min-height: 48vw;
  }
  .waffle .waffle-e .item .main-text {
    font-size: 5.2vw;
    line-height: 9vw;
    height: 9.6vw;
    background-image: url(https://www.homeplus.net.tw/cable/images/manual_upload/waffle/images/e-hd_s.webp);
  }
  .waffle .waffle-e .item .btn {
    font-size: 4.4vw;
    line-height: 1.333;
    border-radius: 7.2vw;
    width: 29.33vw;
    min-width: 29.33vw;
    min-height: 7.2vw;
    padding: 0;
    margin: 2.6666vw auto;
  }
}
@media (max-width: 375px) {
  .waffle .waffle-b .list-b .text {
    font-size: 10px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
