/* kv_block 
.kv_block {
  overflow: hidden;
  position: relative;
  z-index: 10;
  background-color: #005087;
  height: 90vh;
}
*/
.kv_item {
  overflow: hidden;
  position: relative;
}

.kv_img {
  position: relative;
  padding-top: 52.88%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.4);
  transition: transform 5s ease-out;
}

.kv_img.video {
  transform: scale(1);
}

.kv_img::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0.9;
  transition: background-color 1s;
}
.news-cat {
	padding: 2px 10px 4px;
	background-color: #005087;
	color: #ffffff;
	font-size: 15px;
}
.editorPanel p {
	font-size: clamp(17px,1vw,16px);
	letter-spacing: 1px;
	line-height: 1.75;
}
.index-service-list{
  display: flex;
  flex-wrap: wrap;
  padding: 80px 0 0;
}
@media (max-width: 767px) {.index-service-list{padding: 40px 0;}}

.index-service-list .item{
  flex: 0 1 calc(33.33%);
  text-align: center;
}
@media (max-width: 767px) {.index-service-list .item{flex: 0 1 calc(100%);margin: 0 0 40px;}}

.index-service-list .item .icon img{
	width: 80px !important;
}
@media (max-width: 767px) {.index-service-list .item .icon img{width:60px !important;}}

.index-service-list .item .txt {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.6;
	padding: 15px 0;
	color: #ffffff;
}
@media (max-width: 767px) {.index-service-list .item .txt{font-size: 26px;line-height: 1.3;}}

.index-service-list .item p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	padding: 15px 0;
	color: #ffffff;
	max-width: 70%;
	margin: 0 auto;
}
.index-contact p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
	padding: 15px 0;
	color: #333333;
	max-width: 50%;
}
@media (max-width: 767px) {.index-contact p{max-width: 90%;font-size: 18px;}}
.index-news-mb {
  margin-bottom: 30px;
}
.swiper-slide-active .zoom-out {
  transform: scale(1);
}

.swiper-slide-active .zoom-out-video {
  transform: scale(1);
}

.swiper-slide-active .kv_img::before {
  animation: whiteFadeIn 1s;
}

.kv_video {
  position: absolute;
  /* top: 50%;
  left: 50%; */
  top: 0;
  /* left: 0; */
  width: 100%;
  transform: scale(1);
  transition: transform 5s ease-out;
}
.swiper-wrapper .kv_info > * {
	color: #fff;
}
.kv_info {
	max-width: 561px;
	position: absolute;
	top: 39.37%;
	left: calc(100% * 0.104);
	transform: translate(0, -50%);
	z-index: 4;
}

.kv_title {
  max-height: 180px;
  overflow: hidden;
}

.kv_subtitle {
	margin-top: 20px;
  max-height: 200px;
  overflow: hidden;
}

.kv_btn {
  padding-top: 40px;
  /* width: 55px; */
  display: flex;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10%;
  left: 70%;
  width: auto;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin-left: 0;
  margin-right: 16px;
  opacity: 0.3;
  /* margin: 0px 15px; */
  /* border: 1px solid #78899F; */
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: #fff !important;
}

/* --- scroll to --- */
.common_scrollto {
  width: 100px;
  height: 76px;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  color: #78899F;
  position: absolute;
  left: 50%;
  bottom: 4%;
  margin-left: -50px;
  z-index: 15;
  cursor: pointer;
  padding: 20px;
}

.common_scrollto:after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  bottom: 10px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0;
  top: 60px;
  left: 50%;
  margin-left: -6.5px;
  border-bottom: 2px solid #78899F;
  border-right: 2px solid #78899F;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -moz-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
  -webkit-animation: fade_move_down 2s ease-in-out infinite;
  -moz-animation: fade_move_down 2s ease-in-out infinite;
  animation: fade_move_down 2s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@-moz-keyframes fade_move_down {
  0% {
    -moz-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -moz-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@media (max-width: 1199px) {
  .kv_info {
    top: 112px;
    left: 20px;
  }

  .kv_title {
    font-size: 48px;
    line-height: 60px;
    max-height: 135px;
    max-width: none;
  }

  .kv_subtitle {
    padding-top: 20px;
    max-height: 140px;
    font-size: 20px;
    line-height: 30px;
    max-width: none;
  }

  .kv_btn {
    padding-top: 20px;
  }

  .kv_btn .btn-1 {
    min-width: 145px;
    /* width: 145px; */
    height: 38px;
  }

  .kv_btn .btn-1 span {
    /* font-size: 16px;
    line-height: 35px; */
  }
}

@media (max-width: 767px) {
  .kv_img {
    padding-top: 80%;
  }

  .kv_info {
    position: static;
    padding: 20px 20px 40px;
  }

  .kv_img_mask_m {
    position: relative;
    overflow: hidden;
  }

  .kv_img_mask_m::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    transition: background-color 1s;
  }

  .kv_img {
    position: relative;
    padding-top: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* justify-content: flex-start; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .kv_img::before {
    display: none;
  }

  /* .swiper-slide-active .zoom-out {
    transform: scale(1);
  } */

  .swiper-slide-active .kv_img_mask_m::before {
    animation: whiteFadeIn 1s;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: auto;
    top: 0px;
    margin-top: 65%;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .common_scrollto {
    display: none;
  }
}

@keyframes whiteFadeIn {
  from {
    background-color: #fff;
  }

  to {
    background-color: transparent;
  }
}

/* kv_block end */

.index-csr {
	position: relative;
	background-image: url('../images/index/auo-index-csr.jpg');
	min-height: 55rem;
	background-size: cover;
	background-position: center center;
}
@media (max-width: 1199px){.index-csr{min-height: 40rem;}}
@media (max-width: 767px){.index-csr{min-height: 30rem;background-position: center right;}}

.index-csr .text-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	/* margin: 19.01vw 0; */
	display: flex;
	flex-direction: column;
	align-items: center;
}
.index-csr .text-box h2 {
	text-align: center;
	color: #FFFFFF;
	opacity: 1;
	margin: 1.563vw 0 2.344vw;
}
/* explore */
.explore {
  padding: 80px 0 100px;
  width: 100%;
  height: auto;
  /*background-image: url(../../images/index/auo-exploer-bg.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;*/
  background-color: #F0F0F0;
}

.explore-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 60px;
  font-weight: bold;
  color: #005087;
}

.explore-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.explore-wrapper p.content{
	text-align: center;
	line-height: 32px;
}
.explore .btn-block{
	margin: 30px auto;
	width: 120px;
}
.explore-left {
}

.explore-logo {
  width: 490px;
  height: 484px;
  background-image: url(../../images/index/auodplus-explore-logo.jpg);
  background-color: #CFD8DC;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.explore-cate1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 490px;
  height: 420px;
  padding: 60px;
  background-color: #fff;
}

.cate1-category {
  font-size: 36px;
  line-height: 40px;
  color: #005087;
  font-weight: bold;
}

.cate1-date {
  font-size: 16px;
  line-height: 24px;
  color: #005087;
  font-weight: bold;
}

.cate1-title {
  margin-top: 20px;
  font-size: 24px;
  line-height: 40px;
  color: #005087;
  max-height: 120px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
  transition: all 0.4s;
  font-weight: bold;
}

.explore-cate1:hover .cate1-title {
  color: #00B8D4;
}

.cate1-info {
  margin-top: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #646464;
  max-height: 78px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
}

.explore-cate2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 1015px;
  height: 454px;
  padding: 60px;
  background-color: #fff;
}

.cate2-category {
  font-size: 36px;
  line-height: 40px;
  color: #005087;
  font-weight: bold;
}

.cate2-date {
  font-size: 16px;
  line-height: 24px;
  color: #005087;
}

.cate2-title {
  margin-top: 20px;
  font-size: 24px;
  line-height: 40px;
  color: #005087;
  max-height: 40px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
  transition: all 0.4s;
  font-weight: bold;
}

.explore-cate2:hover .cate2-title {
  color: #00B8D4;
}

.cate2-info {
  margin-top: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #51626C;
  max-height: 78px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
}

.explore-down {
  display: flex;
  justify-content: center;
  align-items: center;
}

.explore-more {
  margin-right: 35px;
  transition: all 0.4s;

}
.explore-more:last-child {
  margin-right: 0;
}
.explore-more2 {
  margin-right: 35px;
  padding: 88px 60px;
  width: 490px;
  height: 420px;
  background-image: url('../images/index-explore-03.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-color: #009EC4; */
  transition: all 0.4s;

}
.explore-more:hover {
  /* background-color: #3D908C; */
}

.explore-more:hover .circle-btn-hover {
  opacity: 1;
}

.explore-more,
.explore-site {
  display: block;
  position: relative;
}

.circle-btn {
  position: absolute;
  bottom: 25px;
  right: 30px;
  transition: all 0.4s;
}

.circle-btn-hover {
  position: absolute;
  bottom: 25px;
  right: 30px;
  opacity: 0;
  transition: all 0.4s;
}

.more-wrapper,
.explore-site {
  text-align: center;
}

.more-wrapper .title,
.site-wrapper .title {
  margin-top: 20px;
  font-size: 36px;
  line-height: 55px;
  font-weight: bold;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: normal;
}

.site-wrapper .title {
  color: #fff;
}

.more-wrapper .info,
.site-wrapper .info {
  margin-top: 20px;
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
  max-height: 56px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
}

.explore-site {
  padding: 88px 60px;
  width: 490px;
  height: 420px;
  background-image: url('../images/index-explore-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-color: #009EC4; */
  transition: all 0.4s;
}

/* .explore-site:hover {
  background-color: #00728E;
} */

.explore-site:hover .circle-btn-hover {
  opacity: 1;
}

.email-subscribe-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 25px;
  overflow: hidden;
}

.subscribe-email {
  padding: 15px 24px;
  width: 290px;
  height: 54px;
  font-size: 16px;
  line-height: 28px;
  color: #000;
  outline: none;
  border: none;
}


.subscribe-email::placeholder {
  color: #CFD8DC;
}

.email-subscribe-submit {
  /* width: 80px;
  height: 50px; */
  background-color: transparent;
  /* font-size: 16px;
  line-height: 30px; */
  font-weight: bold;
  color: #fff;
  border: none;
  transition: all 0.4s;
  padding: 0;
  width: 100%;
}

.submit-email-container {
  min-width: 80px;
  border-radius: 25px;
}

/* input[type="submit"].email-subscribe-submit {
  border-radius: 0 3px 3px 0;
} */

/* .email-subscribe-submit:hover {
  background-color: #FFB600;
} */

@media (max-width: 1599px) {
  .explore-wrapper {
	  width: 1160px;
  }

  .explore-left {
  }

  .explore-logo {
    width: 368px;
    height: 363px;
  }

  .explore-cate1 {
    padding: 40px 41px;
    width: 368px;
    height: 449px;
  }

  .explore-cate2 {
    margin-bottom: 22px;
    padding: 40px;
    width: 762px;
    height: 340px;
  }

  .explore-down {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .explore-more {
  }
  
  .explore-more2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 26px;
    padding: 75px 60px;
    width: 368px;
    height: 449px;
  }

  .explore-site {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 75px 60px;
    width: 368px;
    height: 449px;
  }

  .more-wrapper .title,
  .site-wrapper .title {
    margin-top: 20px;
    font-size: 36px;
    line-height: 55px;
    font-weight: bold;
    color: #ffffff;
    max-height: 110px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
  }

  .site-wrapper .title {
    color: #fff;
  }

  .subscribe-email {
    width: 168px;
  }
}

@media (max-width: 1199px) {
  .subscribe-email {
    height: 48px;
  }
}

@media (max-width: 767px) {
  .explore {
    padding: 60px 20px;
	background-size: auto;
  }

  .explore-title {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 55px;
  }

  .explore-wrapper {
    display: block;
    width: 100%;
  }

  .explore-left {
    margin-right: 0;
  }

  .explore-logo {
    width: 100%;
    height: auto;
    padding-top: 99%;
  }

  .explore-cate1 {
    padding: 40px 20px;
    width: 100%;
    height: auto;
  }

  .explore-cate1::before {
    top: -17px;
    left: 40px;
    border-bottom: 17px solid #fff;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
  }

  .cate1-category {
    font-size: 24px;
    line-height: 40px;
    color: #FFB600;
  }

  .cate1-content-wrapper {
    margin-top: 60px;
  }

  .cate1-date {
    font-size: 16px;
    line-height: 24px;
    color: #808891;
  }

  .cate1-title {
    font-size: 24px;
    line-height: 40px;
    color: #2D3845;
  }

  .cate1-info {
    font-size: 16px;
    line-height: 28px;
    color: #808891;
    max-height: 112px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
  }

  .explore-right {
    margin-top: 20px;
  }

  .explore-cate2 {
    padding: 40px 20px;
    margin-bottom: 0;
    width: 100%;
    height: auto;
  }

  .cate2-category {
    font-size: 24px;
    line-height: 40px;
    color: #FFB600;
  }

  .cate2-content-wrapper {
    margin-top: 60px;
  }

  .cate2-date {
    font-size: 16px;
    line-height: 24px;
    color: #808891;
  }

  .cate2-title {
    font-size: 24px;
    line-height: 40px;
    color: #2D3845;
    max-height: 120px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
  }

  .cate2-info {
    font-size: 16px;
    line-height: 28px;
    color: #808891;
    max-height: 112px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
  }

  .explore-down {
    margin-top: 20px;
    display: block;
  }

  .explore-more {
    display: block;
	width: 100%;
	margin-right: 0;
	margin-bottom:35px;
  }
  .explore-more img{
	width: 100%;
  }
  
  .explore-more2 {
    padding: 40px 20px;
    margin-right: 0;
    width: 100%;
    min-height: 310px;
    height: auto;
  }

  .explore-more .title {
    margin-top: 20px;
    font-size: 24px;
    line-height: 40px;
  }

  .subscribe-email {
    width: calc(100% - 80px);
  }

  .explore-more .info {
    margin-top: 10px;
    font-size: 16px;
    line-height: 28px;
  }

  .explore-site {
    padding: 40px 20px;
    margin-top: 20px;
    width: 100%;
    min-height: 310px;
    height: auto;
  }

  .explore-site .title {
    margin-top: 20px;
    font-size: 24px;
    line-height: 40px;
  }

  .explore-site .info {
    margin-top: 20px;
    font-size: 16px;
    line-height: 28px;
  }

  .circle-btn {
    bottom: 25px;
    right: 20px;
  }

  .circle-btn-hover {
    bottom: 25px;
    right: 20px;
  }
}

/* explore end */

.swiper-slide-active .zoom-out {
  transform: scale(1);
}

.swiper-slide-active .zoom-out-video {
  transform: scale(1);
}

.swiper-slide-active .kv_img::before {
  animation: whiteFadeIn 1s;
}

.kv_video {
  position: absolute;
  /* top: 50%;
  left: 50%; */
  top: 0;
  /* left: 0; */
  width: 100%;
  transform: scale(1);
  transition: transform 5s ease-out;
}


.kv_btn {
  padding-top: 40px;
  /* width: 55px; */
  display: flex;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10%;
  left: 70%;
  width: auto;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin-left: 0;
  margin-right: 16px;
  opacity: 0.3;
  /* margin: 0px 15px; */
  /* border: 1px solid #78899F; */
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: #fff !important;
}


.five-pattern-type-wrapper {
  display: flex;
  height: calc(100vh - 120px);
  
}

.auo-blue-pattern {
  background-image: url("../../images/index/auo-five-pattern-auo-blue.jpg");
}

.innovative-purple-pattern {
  background-image: url("../../images/index/auo-five-pattern-innovative-purple.jpg");
}

.sustainable-green-pattern {
  background-image: url("../../images/index/auo-five-pattern-sustainable-green.jpg");
}

.energetic-yellow-pattern {
  background-image: url("../../images/index/auo-five-pattern-energetic-yellow.jpg");
}

.smart-blue-pattern {
  background-image: url("../../images/index/auo-five-pattern-smart-blue.jpg");
}

.swiper-slide-active .animate-slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  animation-duration: 1s;
}

.swiper-slide-active .animate-slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  animation-duration: 1s;
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* TBH */
.left-pattern {
  height: calc(100vh - 120px);
  width: 40%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* padding: 0 40px; */
}

.left-pattern .kv-info {
  /* display: inline-block; */
  max-width: 500px;
  /* width: 460px; */
  width: calc(100% - (100% * 2.5 * 0.104));
  padding-right: 40px;
  

  position: absolute;
  top: 39.37%;

  /* top: 39.37%; */
  /* left: 58.59%; */
  left: calc(100% * 2.5 * 0.104);
  /* transform: translate(-50%, -50%); */
  transform: translate(0, -50%);


}



.kv-title {
  max-height: 180px;
  overflow: hidden;
  height: auto;
}

.kv-brief {
  margin-top: 20px;
  max-height: 120px;
  overflow: hidden;
}

.kv-info>.btn-block {
  margin-top: 40px;
}

.right-images {
  width: 60%;
}

/* TBH */
.kv-block .kv-swiper .swiper-pagination {
  bottom: 40px;
  width: auto;
  left: calc(100% * 0.104)
}

.kv-block .kv-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin-left: 0;
  margin-right: 16px;
  outline:none 
  /* background: rgba(255, 255, 255, 0.3); */
}

.kv-block .swiper-pagination-bullet-active {
  background-color: #fff;
}


/* 五元素 slider end */
/* 滿版圖片 slider start */
.kv-video-wrapper, .full-image-wrapper {
	display: block;
	height: calc(100vh - 120px);
	width: 100%;
	position: relative;
}

.bg-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.full-kv-tb {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

}





.kv-info {
  max-width: 561px;
  position: absolute;
  top: 50%;
  left: calc(100% * 0.142);
  transform: translate(0, -50%);
  z-index: 4;
}

.full-image-wrapper .kv-info> * {
  color: #fff;
}

@media (max-width: 1599px) {
  .kv-block .kv-swiper .swiper-pagination {
    left: 40px;
  }

  .left-pattern .kv-info,
  .kv-info {
    left: 40px;
    right: 40px;
    transform: translate(0%, -50%);
  }

  .left-pattern .kv-info{
    width: calc(100% - 40px);
  }

}


@media (max-width: 1199px) {
  .kv-title{
    max-height: 108px;
  }

  .swiper-slide-active .animate-slideInDown {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;

  }

  .swiper-slide-active .animate-slideInUp {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;

  }

  @keyframes slideInRight {
    0% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
      visibility: visible;
    }

    100% {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);outline:none 
    }
  }

  @keyframes slideInLeft {
    0% {
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
      visibility: visible;
    }

    100% {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
  }

  .auo-blue-pattern {
    background-image: url("../../images/index/auo-five-pattern-auo-blue-tb.jpg");
  }

  .innovative-purple-pattern {
    background-image: url("../../images/index/auo-five-pattern-innovative-purple-tb.jpg");
  }

  .sustainable-green-pattern {
    background-image: url("../../images/index/auo-five-pattern-sustainable-green-tb.jpg");
  }

  .energetic-yellow-pattern {
    background-image: url("../../images/index/auo-five-pattern-energetic-yellow-tb.jpg");
  }

  .smart-blue-pattern {
    background-image: url("../../images/index/auo-five-pattern-smart-blue-tb.jpg");
  }


  .five-pattern-type-wrapper {
    flex-direction: column;
    height: calc(100vh - 64px);
  }

  .right-images {
    width: 100%;
    order: 0;
    height: 62.5%;
  }

  .left-pattern {
    width: 100%;
    order: 1;
    height: 37.5%;
    padding: 40px;
    min-height: 288px;
  }

  .left-pattern .kv-info {
    position: static;
    transform: translate(0, 0);
    width: 100%;
    max-width: 520px;
    padding-right: 0;
  }

  .kv-brief {
    margin-top: 16px;
  }

  .kv-info>.btn-block {
    margin-top: 28px;
  }


  .kv-block .swiper-btn-block {
    position: absolute;
    /* top: calc((100% - 64px) * 0.3515625); */
    top: 37.5%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;

  }

  .kv-swiper .swiper-btn-block .pre-btn {
    margin-left: 40px;
  }

  .kv-swiper .swiper-btn-block .next-btn {
    margin-right: 40px;
  }

  /* .kv-swiper .next-btn.swiper-button-disabled{
    opacity: 0;
  } */

  /* 滿版圖 */
  .full-image-wrapper {
    height: calc(100vh - 64px);
    background-image: none !important;
	position: initial;
    /* 100vh測試 */
    /* height: calc(var(--vh, 1vh) * 100 - 64px); */
  }

  .full-image-wrapper .kv-info {
    bottom: 60px;
    top: auto;
    transform: translate(0, -60%);
    /* left: 40px; */
  }
}

@media (max-width: 767px) {
  .right-images {
    height: 45.977%;
  }

  .left-pattern {
    height: 54.023%;
    padding: 40px 20px;
  }

  .kv-block .swiper-btn-block {
    top: 36.78%;
  }

  .kv-swiper .swiper-btn-block .pre-btn {
    margin-left: 20px;
  }

  .kv-swiper .swiper-btn-block .next-btn {
    margin-right: 20px;
  }

  /* 滿版圖 */
  .full-image-wrapper {
    /* box-sizing: content-box;*/
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .full-image-wrapper .kv-info {
    position: static;
    width: 100%;
    max-width: none;
	text-align: center;
  }
}


/* TBH */
.kv-opacity-1{
  opacity: 1!important;
}

.kv-opacity-0{
  opacity: 0!important;
}


.kv-video-wrapper {
  position: relative;
  background-color: var(--auo-blue);
}

.full-image-wrapper-link{
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}


.full-image-wrapper::after,
.kv-video-wrapper::after{

  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  /* opacity: 0.1; */
  z-index: 2;
}

.kv-video {
  min-width: 100%;
  min-height: 100%;
  background-color: var(--auo-blue);
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.kv-video-info {
  position: absolute;
  top: 33.3333%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  z-index: 3;
}

@media (max-width: 1199px) {
  .kv-video-info {

    position: static;
    background-color: var(--auo-blue);
    width: 100%;
    height: 198px;

    transform: translate(0, 0);
    text-align: left;
    padding: 40px 20px;
  }

  .kv-video-wrapper {
    height: calc(100vh - 64px);
  }

  /* .kv-video{
    max-height: 100%;
    max-width: 100%;
  }

  .has-info .kv-video{
    max-height: 100%;
    max-width: 100%;
  } */

  .kv-video-wrapper.has-info {
    height: calc(100vh - 64px - 198px);
  }

  .kv-brief {
    max-height: 154px;
    font-size: 16px;
    line-height: 22px;
  }

  .kv-video-wrapper .kv-brief,
  .full-image-wrapper .kv-brief{
    max-height: 88px;
  }
}



/* slider End */

/* ===========================================KV Block End============================================ */
/* ---------------------connection block----------------------- */
:root {
  --marquee-width: 1920px;
  --marquee-elements-displayed: 9;
  --marquee-animation-duration: calc(var(--marquee-elements) * .2s);
  /* --marquee-element-width: calc((var(--marquee-width) + 20px) / var(--marquee-elements-displayed)); */

}


.connect-slider {
  /* padding: 160px; */
  overflow: hidden;
  margin: 0 auto;
  max-width: 1920px;
}

.connect-title {
  text-align: center;
}

.connect-slide-track {
  width: var(--marquee-width);
  /* overflow: hidden; */
}

.connect-slide-track {
  display: flex; 
  animation: scroll calc(var(--marquee-elements) * 3s) linear infinite;
  
}

.connect-slide-track:hover{
  animation-play-state: paused;
}

.connect-slide-track .slide {
  width: 200px;
  height: 160px;
  margin-right: 20px;
  flex-shrink: 0;
}
/* 
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
     
    transform: translateX(calc(-1 * 220px * var(--marquee-elements)) + 20px)
  }
} */

@keyframes scroll {
  0% {

    transform: translateX(0);
  }

  100% {
   
    transform: translateX(calc(-1 * 220px * var(--marquee-elements)))
  }
}

/* @keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-220px * var(--connect-item)));
    transform: translateX(calc(-220px * var(--connect-item)));
  }
} */
@media (max-width: 1199px){
  :root {
    --marquee-width: 750px;
    --marquee-elements-displayed: 9;
    --marquee-animation-duration: calc(var(--marquee-elements) * .3s);  
  
  }

  @keyframes scroll {
    0% {
  
      transform: translateX(0);
    }
  
    100% {
     
      transform: translateX(calc(-1 * 150px * var(--marquee-elements)))
    }
  }

  .connect-slide-track .slide{
    width: 150px;
    height: 120px;
    margin-right: 0;
  }
  
}

/* ===============================KV End================================================================== */
/* ===============================KV End================================================================== */
/* ===============================KV End================================================================== */
/* ===============================KV End================================================================== */



/* ===============================solution block start================================================================== */
/* ===============================solution block start================================================================== */
/* ===============================solution block start================================================================== */
.index-solution {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.index-solution .title {
  max-width: 560px;

}

.index-solution .content {
  padding-top: 40px;
  max-width: 880px;
  color: var(--gray-1);

}

.index-solution .swiper-btn-block {
  padding-top: 60px;
}

.index-solution .index-solution-swiper {
  width: calc(100% - (100% - 1080px)/2);
  margin-left: calc((100% - 1080px)/2);
  padding-top: 40px;
}

.index-solution-swiper .swiper-slide {
  width: 440px;
}

.index-solution .swiper-slide {
  margin-right: 24px;
}

.index-solution .swiper-slide:first-child .img {
  clip-path: path('M 170 340 A 5,5 0 1 1 170,0 L 440,0 L 440,340 z');
}

.index-solution .index-solution-swiper .title {
  padding-top: 24px;
  max-height: 66px;
}

/* 
.fixed-pattern.fixed-window{
  position: static;
  max-width: none;
  width: 100%;
  top: 0;
  left: 0%;
  transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);

} */

.fixed-pattern > div{
  display: block;
  background-size: contain;
  background-position: center;
  position: absolute;
  background-repeat: no-repeat;
}

.index-solution .index-fixed-pattern1 > .index-fixed-item-pattern1{

    width: 48px;
    height: 48px;
    background-image: url('../../images/solution/auo-solution-pattern4.png');
    left: -73px;
    top: -35px;
      
}


.our-advantage .index-fixed-pattern2 > .index-fixed-item-pattern2 {
	width: 625px;
	height: 637px;
	background-image: url('../../images/index/auo-index-pattern-2.png');
	top: 556px;
	right: -606px;
}

.index-csr .index-fixed-pattern3 > .index-fixed-item-pattern3  {
  width: 58px;
  height: 58px;
  background-image: url('../../images/index/auo-index-pattern-3.png');
  left: 1324px;
  top: 10px;
}

.index-csr .index-fixed-pattern4 > .index-fixed-item-pattern4 {
	/* z-index: 100; */
	width: 645px;
	height: 735px;
	background-image: url('../../images/index/auo-index-pattern-4.png');
	left: -745px;
	top: -396px;
}

.our-advantage .index-fixed-pattern5 > .index-fixed-item-pattern5 {
	width: 777px;
	height: 734px;
	background-image: url('../../images/index/auo-index-pattern-5.png');
	/* left: 1280px; */
	left: -757px;
	top: -560px;
}

.index-about-auo .index-fixed-pattern6 > .index-fixed-item-pattern6  {
  width: 350px;
  height: 315px;
  background-image: url('../../images/index/auo-index-pattern-6.png');
  left: -290px;
  top: 110px;
}

.index-event .index-fixed-pattern7 > .index-fixed-item-pattern7 {
  width: 102px;
  height: 102px;
  background-image: url('../../images/index/auo-index-pattern-7.png');
  left: 18px;
  top: 702px;
}


.index-contact-block.main-contact-block .index-fixed-pattern8> .index-fixed-item-pattern8 {
  width: 40px;
    height: 40px;
    background-image: url("../../images/common/auo-contact-block-pattern1.png");
  top: -200px;
  left: -232px;
}

.index-contact-block.main-contact-block .index-fixed-pattern9> .index-fixed-item-pattern9 { 
  width: 360px;
  height: 324px;
  top: -500px;
	right: -286px;
  background-image: url("../../images/common/auo-contact-block-pattern2.png");
}

@media (max-width: 1199px){
  
  .fixed-pattern{
    /* max-width: none; */
  }

  .index-solution .index-fixed-pattern2{

    z-index: -1;
  }

    .our-advantage .index-fixed-pattern2 > .index-fixed-item-pattern2 {
	width: 242px;
	height: 249px;
	background-image: url('../../images/index/auo-index-pattern-2.png');
	right: -140px;
	top: 685px;
}

.index-csr .index-fixed-pattern3 > .index-fixed-item-pattern3  {
  width: 58px;
  height: 58px;
  background-image: url('../../images/index/auo-index-pattern-3.png');
  left: 680px;
  top: 350px;
}


    .index-csr .index-fixed-pattern4 > .index-fixed-item-pattern4 {
    /* z-index: 100; */
    width: 256px;
    height: 294px;
    background-image: url('../../images/index/auo-index-pattern-4.png');
    left: -128px;
    top: -115px;
    }

    .our-advantage .index-fixed-pattern5 > .index-fixed-item-pattern5 {
    width: 255px;
    height: 240px;
    background-image: url('../../images/index/auo-index-pattern-5.png');
    left: -262px;
    top: -298px;
    }

    .index-event .index-fixed-pattern6 > .index-fixed-item-pattern6  {
      width:200px;
      height: 180px;
      left: -8px;
      top: -168px;
    }

    .index-event .index-fixed-pattern7 > .index-fixed-item-pattern7 {
    width: 56px;
    height: 56px;
    background-image: url('../../images/index/auo-index-pattern-7.png');
    left: 40px;
    top: 523px;
    }


    .index-contact-block.main-contact-block .index-fixed-pattern8> .index-fixed-item-pattern8 {
    width: 40px;
      height: 40px;
      background-image: url("../../images/common/auo-contact-block-pattern1.png");
    top: -220px;
    left: -105px;
    }

    .index-contact-block.main-contact-block .index-fixed-pattern9> .index-fixed-item-pattern9 { 
      background-image: url("../../images/common/auo-contact-block-pattern2.png");
      width: 196px;
      height: 179px;
      top: -480px;
      right: 32px;
      /* transform: rotate(3deg); */
    }


}

@media (max-width: 767px){
  .fixed-pattern{
    max-width: 100vw;
  }

    .our-advantage .index-fixed-pattern2 > .index-fixed-item-pattern2 {
    width: 242px;
    height: 249px;
    background-image: url('../../images/index/auo-index-pattern-2.png');
    right: -44px;
    top: 795px;
    }

    .index-technical .index-fixed-pattern4{
      z-index: 0;
    }

    .index-technical .index-fixed-pattern4 > .index-fixed-item-pattern4 {
 
    width: 256px;
    height: 294px;
    background-image: url('../../images/index/auo-index-pattern-4.png');
    left: -128px;
    top: -200px;
    }

    .our-advantage .index-fixed-pattern5 > .index-fixed-item-pattern5 {
    width: 166px;
    height: 156px;
    background-image: url('../../images/index/auo-index-pattern-5.png');
    top: -250px;
    left: -52px;
    }

    .index-event .index-fixed-pattern6 > .index-fixed-item-pattern6  {
    background-image: url('../../images/index/auo-index-pattern-6-scaleX.png');
    width: 198px;
    height: 178px;
    left: auto;
    top: -169px;
    right: -58px;
    }

    .index-event .index-fixed-pattern7 > .index-fixed-item-pattern7 {
    width: 56px;
    height: 56px;
    background-image: url('../../images/index/auo-index-pattern-7.png');
    left: 40px;
    top: 523px;
    }

    .index-contact-block.main-contact-block .index-fixed-pattern9> .index-fixed-item-pattern9 { 
      background-image: url("../../images/common/auo-contact-block-pattern2.png");
      width: 159px;
      height: 145px;
      top: -520px;
      right: 20px;
      /* transform: rotate(3deg); */
    }


}

@media (max-width: 1199px) {
  .index-solution {
  }

  .index-solution .title{
    max-width: none;
  }

  .index-solution .index-solution-swiper .title {
    max-width: none;
    padding-top: 16px;
    max-height: 46px;
  }

  .index-solution .content {
    padding-top: 16px;
    font-size: 16px;
    line-height: 22px;
  }

  .index-solution .swiper-btn-block {
    padding-top: 40px;
  }

  .index-solution-swiper .swiper-slide {
    width: 280px;
  }

  .index-solution .swiper-slide:first-child .img {
    clip-path: path('M 108 216 A 5,5 0 1 1 108,0 L 280,0 L 280,216 z');
  }

  .index-solution .index-solution-swiper {
    width: calc(100% - (100% - 688px)/2);
    margin-left: calc((100% - 688px)/2);
    padding-top: 24px;
  }
}

@media (max-width: 767px) {
  .index-solution {
    padding-top: 0;
  }

  .index-solution .content {
    padding-top: 20px;
  }

  .index-solution .index-solution-swiper {
    width: calc(100% - 20px);
    margin-left: 20px;
  }
}

/* ===============================solution block End================================================================== */
/* ===============================solution block End================================================================== */
/* ===============================solution block End================================================================== */

/* ===============================technical block start================================================================== */
/* ===============================technical block start================================================================== */
/* ===============================technical block start================================================================== */


.index-technical {
  padding: 120px 0;
  background-color: var(--smart-blue);

}

.tech-thumbs-wrapper {
  position: relative;
}

.tech-thumbs {
  width: 100%;
}

.tech-thumbs .swiper-slide {
  color: var(--auo-blue);
  width: 208px;
  text-align: center;
  cursor: pointer;
}

.tech-thumbs .swiper-slide:hover .item-number,
.tech-thumbs .swiper-slide:hover .item-text {
  font-weight: bold;
}

.tech-thumbs .swiper-slide:not(:last-child) {
  margin-right: 10px;
}

.tech-thumbs .swiper-slide.swiper-slide-thumb-active .item-number,
.tech-thumbs .swiper-slide.swiper-slide-thumb-active .item-text {
  color: var(--energetic-yellow);
  font-weight: bold;
}


.index-technical .title {
  padding-bottom: 40px;
}

.tech-thumbs .item-number {
  font-size: 20px;
  line-height: 32px;

}

.tech-thumbs .item-text {
  padding-top: 8px;
  font-size: 18px;
  line-height: 30px;
  max-height: 38px;
}

.tech-thumbs-wrapper .swiper-btn-block {
  width: 100%;
  justify-content: space-between;
  position: absolute;
  top: 13px;
  left: 0;
}

.tech-thumbs-wrapper .swiper-btn-block .pre-btn {
  margin-left: -74px;
}

.tech-thumbs-wrapper .swiper-btn-block .next-btn {
  margin-right: -74px;
}

.tech-main-block {
  padding-top: 60px;
}

.tech-main-block .right-image .img {
  width: 874px;
}

.tech-main-swiper .swiper-slide {
  /* padding: 0 40px 0 0; */
  width: 100%;
}

.tech-main-swiper .slide-container {
  /* padding: 0 40px 0 0; */
  /* width: 100%; */
  display: flex;
  /* justify-content: flex-end; */
  /* padding-right: 20px; */

}



.tech-slide-wrapper {
  max-width: 1354px;
  width: 100%;
  /* margin: 0 auto; */
  margin-left: calc((100% - 1374px) * 346 / 546);
  /* margin-left: calc(100% - 1394px); */
  /* margin-right: ; */
  display: flex;
  align-items: flex-end;
  /* justify-content: flex-end; */
  position: relative;
}

.test-block {
  width: 20px;
  height: 40px;
  background-color: #fff;
}



.tech-slide-wrapper .left-info {
  width: 600px;
  height: 360px;
  clip-path: path('M 417 360 A 5,5 0 1 0 417,0 L 0,0 L 0,360 z');
  background-color: var(--auo-blue);
  color: #ffffff;
  padding: 56px 60px 56px 50px;
  /* margin-left: max(calc(100% - 1494px), -285px); */
  margin-left: -120px;
  margin-bottom: 60px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tech-slide-wrapper .left-info p{
  color: #ffffff;
}
@media screen and  (max-width: 1373px) {
  .tech-slide-wrapper{
    width: calc(100% - 20px);
    margin-left: -24px;

  }

  .tech-slide-wrapper .left-info{
    margin-left: calc(100% - 1474px);
  }
}

.swiper-slide-active .tech-slide-wrapper .left-info{
  animation-name: fadeIn-techInfo;
  animation-duration: 1s;
}

@keyframes fadeIn-techInfo{
  from {
    transform: translateY(60px);
  }

  to {
    transform: translateY(0px);

  }
}


.tech-slide-wrapper .left-info .total {
  opacity: 0.4;
  margin-left: 16px;
}

.tech-slide-wrapper .left-info .title {
  padding-bottom: 0px;
  margin-bottom: 20px;
  max-height: 56px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
}

.tech-slide-wrapper .left-info .text{
  font-size: 16px;
  line-height: 24px;
  max-height: 72px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;

}

.tech-slide-wrapper .left-info .btn-block {
  margin-top: auto;
  width: 100px;
  cursor: pointer;
}

.tech-slide-wrapper .left-info .arrow-line-btn {
  display: block;
  width: 36px;
  height: 25px;
  background-image: url('/images/common/auo-btn-line-white.svg');
  transition: 0.3s ease;
}

.tech-slide-wrapper .left-info .btn-block:hover .arrow-line-btn {
  margin-left: 24px;
}

@media (max-width: 1399px) {
  
  .tech-thumbs-wrapper{
    width: 862px;
    margin: 0 auto;
  }

}

@media (max-width: 1199px) {
  .index-technical {
    padding: 80px 0;
    background-color: var(--smart-blue);  
  }
  

  .tech-main-swiper .swiper-slide {
    padding: 0 40px;
  }

  .tech-slide-wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
  }

  .index-technical .swiper-btn-block.tech-main-btn {
    justify-content: center;
  }

  .tech-main-block {
    padding-top: 40px;

  }

  .tech-main-block .right-image {
    margin-right: 40px;
    width: 328px;

  }
  
  .tech-main-block .right-image .img {
    width: 100%;
  }



  .tech-slide-wrapper .left-info {
    width: 320px;
    height: auto;
    background-color: transparent;
    clip-path: none;
    margin-left: 0;
    margin-bottom: 0;
    color: var(--auo-blue);
    padding: 0;
  }

  .tech-slide-wrapper .left-info .count{
    padding-bottom: 16px;
  }


  .tech-slide-wrapper .left-info .title {
    margin-bottom: 16px;
    max-height: 36px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
  color: var(--auo-blue);
  }


  .tech-slide-wrapper .left-info .total{
    margin-left: 0;
  }

  .tech-slide-wrapper .left-info .text {
    color: var(--auo-blue);
    font-size: 16px;
    line-height: 22px;
    height: 88px;
    max-height: 88px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
  }

  .tech-slide-wrapper .left-info .btn-block {
    margin-top: 16px;
    position: relative;
  }

  .tech-slide-wrapper .left-info .arrow-line-btn{
    width: 48px;
    height: 48px;
    background-image: url('../../images/common/auo-btn-line-blue.svg');
  }

    
  @keyframes fadeIn-techInfo{
    0% {
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
      visibility: visible;
    }
  
    100% {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
  }


}

@media (max-width: 767px){
  .tech-main-block{
    padding-top: 20px;
  }

  .tech-slide-wrapper{
    display: block;
  }

  .tech-main-block .right-image{
    width: 100%;
    margin-right: 0;
  }

  .tech-slide-wrapper .left-info{
    width: 100%;
    padding-top: 24px;
  }

  .tech-main-swiper .swiper-slide {
    padding: 0 20px;
}

.tech-slide-wrapper .left-info .text{
  height: auto;
}



  .index-technical .title{
    position: relative;
  }

}

/* ===============================about auo block start================================================================== */
.index-about-auo {
  padding: 0 0 450px 0;
}

.about-container {
  display: flex;
  justify-content: center;
}

.index-about-auo .info {
  width: 480px;
  margin-right: 60px;
}

.index-about-auo .info .title {
  max-width: 360px;
}

.index-about-auo .info .content {
  padding-top: 20px;
}

.index-about-auo .btn-block {
  padding-top: 40px;
}
.index-about-banner {
	padding: 50px 0;
	position: relative;
	float: right;
	right: 300px;
	max-width: 800px;
}
.index-about-banner ul {
	margin: 0;
}
.index-about-banner ul li {
	padding: 10px;
	display: inline-block;
	width: 350px;
}
.index-about-banner ul li a{
}
.index-about-banner ul li a img{
	width:100%;
}
.number-block {
  display: flex;
  flex-wrap: wrap;
  width: 540px;
  height: 100%;
}

.number-block .item1 {
  width: 210px;
  margin-right: 36px;
}

.number-block .item2 {
  width: 294px;
}

.number-block .item2 .number::before{
  /* content: 'Top '; */
  /* display: inline-block; */
  /* color: var(--sustainable-green); */
}

.number-block .item3 .number::after{
  /* content: '+'; */
  /* display: inline-block; */
  /* color: var(--sustainable-green); */
}


@-moz-document url-prefix() {
  .number-block .item2 > .top,
  .number-block .item2 > .number{
    letter-spacing: -0.039em;
  }
}

.number-block .item3 {
  margin-top: 28px;
}

.number-block span,
.number-block .number {
  font-size: 40px;
  line-height: 96px;
}

.number-block .text {
  padding-top: 16px;
}

@media (max-width: 1199px) {

  .index-about-auo .btn-block{
    padding-top: 28px;
  }

  .index-about-auo {
    padding: 0 0 350px;
  }

  .index-about-auo .info {
    width: 320px;
    margin-right: 48px;
  }

  .index-about-auo .info .content {
    font-size: 16px;
    line-height: 22px;
  }
  .index-about-banner {
	padding: 50px 0;
	position: relative;
	float: right;
	right: 35px;
	max-width: 600px;
}
.index-about-banner ul li {
	padding: 10px;
	display: inline-block;
	width: 280px;
}
  .number-block {
    display: block;
    width: 320px;
  }

  .number-block span,
  .number-block .number {
    font-size: 60px;
    line-height: 72px;
  }

  .number-block>[class^="item"] {
    width: 100%;
  }

  .number-block .item3{
    margin-top: 20px;
  }

  .number-block>.item1+[class^="item"] {
    margin-top: 20px;
  }

  .number-block .text {
    padding-top: 8px;
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .about-container {
    display: block;
  }

  .index-about-auo .info {
    width: 100%;
	text-align: center;
  }

  .index-about-auo .info .title {
    max-width: none;
	font-size: 42px;
  }

  .index-about-auo .btn-block{
    padding-top: 40px;
  }
  
  .index-about-banner {
	padding: 50px 0;
	position: relative;
	float: none;
	right: 0;
	max-width: 100%;
  }
  .index-about-banner ul {
	margin: 0;
	padding: 0 0 0 10px;
}

  .number-block {
    display: flex;
    width: 100%;
    padding-top: 40px;
  }

  .index-about-auo {
    padding: 60px 0 80px 0;
	position: relative;
	z-index: 11;
  }
/* 
  .number-block>[class^="item"]:not(:first-child) {
    margin-top: 20px;

  } */

  .about-container .number-block .item2{
    margin-top: 0px;
  }


}

@media (max-width: 559px) {
  .number-block {
    display: block;
	text-align: center;
  }

  .number-block>[class^="item"] {
    width: 100%;
  }

  .about-container .number-block .item2{
    margin-top: 20px;
  }
  .number-block span,
  .number-block .number {
    font-size: 40px;
    line-height: 72px;
  }
  .btn-grow {
  height: 48px;
  margin: 0 auto;
}
.index-about-banner ul {
	margin: 0;
	padding: 0;
}
.index-about-banner ul li {
	padding: 20px;
	display: inline-block;
	width: 100%;
}
}

/* ===============================about auo block End================================================================== */
/* ===============================about auo block End================================================================== */
/* ===============================about auo block End================================================================== */

/* ============================== Events & Highlights block start================================================================== */
/* ============================== Events & Highlights block start================================================================== */
/* ============================== Events & Highlights block start================================================================== */
.index-event {
  padding: 120px 0 160px 0;
  background-color: var(--energetic-yellow);
}

.index-event .swiper-btn-block {
  padding-top: 24px;
  justify-content: center;
}

.index-event-swiper {
  max-width: 1780px;
  padding-top: 40px;
  margin-left: 70px;
}

.index-event .swiper-slide .tag{
  padding-top: 12px;

}

.index-event .swiper-slide .title{
  padding-top: 8px;
  max-height: 98px;

}

@media (min-width: 1921px) {
  .index-event-swiper {
    margin-left: auto;
  }
}

.index-event-swiper .swiper-slide {
  margin-right: 20px;
}

.index-event-swiper .swiper-slide {
  width: 340px;
}

@media (max-width: 1199px) {
  .index-event {
    padding: 85px 0 84px 0;

  }

  .index-event .swiper-btn-block {
    padding-top: 24px;
  }

  .index-event-swiper {
    padding-top: 24px;
    width: calc(100% - 40px);
    margin-left: 40px;
  }

  .index-event-swiper .swiper-slide {
    width: 240px;
  }

  .index-event .swiper-slide .tag{
    font-size: 14px;
    line-height: 18px;
  
  }
  
  .index-event .swiper-slide .title{
    min-height: 84px;
  
  }
}

@media (max-width: 767px) {
  .index-event {
    padding: 80px 0 84px 0;

  }

  /* 0506 Elin 手機板間距調整為20px */
  .index-event-swiper {
    width: calc(100% - 20px);
    margin-left: 20px;
  }

}

/* ============================== Events & Highlights block End================================================================== */
/* ============================== Events & Highlights block End================================================================== */
/* ============================== Events & Highlights block End================================================================== */
/* ============================== connect AUO slider block start================================================================== */
/* ============================== connect AUO slider block start================================================================== */
/* ============================== connect AUO slider block start================================================================== */

.index-connect-slider-block {
  padding: 160px 0 200px 0;
}

.index-connect-slider-block .title {
  padding-bottom: 80px;
}

.index-connection-swiper {
  width: 1920px;
}

.index-connection-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  transition: all;
  position: relative;
}

.index-connection-swiper .swiper-slide {
  width: 200px;
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .index-connect-slider-block {
    padding: 80px 0;
  }

  .index-connect-slider-block .title {
    padding-bottom: 40px;
    max-width: 320px;
    margin: 0 auto;
  }

  .index-connection-swiper .swiper-slide {
    width: 150px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .index-connect-slider-block {
    padding: 80px 0 160px 0;
  }
}

/* ============================== connect AUO slider block end================================================================== */
/* ============================== connect AUO slider block end================================================================== */
/* ============================== connect AUO slider block end================================================================== */
/* ============================== index-contact-block start================================================================== */
/* ============================== index-contact-block start================================================================== */
/* ============================== index-contact-block start================================================================== */
.index-contact-block{
  overflow: visible;
}

.index-contact-block.main-contact-block .list {
	padding: 108px 0;
}

.index-contact-block.main-contact-block .txt {
  width: 860px;
  padding-bottom: 24px;
}

.index-contact-block .brief {
  padding-bottom: 40px;
}


@media (max-width: 1199px) {
  .index-contact-block.main-contact-block .txt {
    width: 100%;
    padding-bottom: 20px;
  }
  .index-contact-block.main-contact-block .brief {
	width: 100%;
  }

  .index-contact-block.main-contact-block .list {
    padding: 80px 0 60px 0;
  }

  .index-contact-block.main-contact-block .fixed-pattern2::before {
    width: 196px;
    height: 179px;
    top: -50px;
    left: 500px;
  }
}

@media (max-width: 767px) {
  .index-contact-block.main-contact-block .list {
    padding: 80px 0 60px 0;
  }

  .index-contact-block.main-contact-block .fixed-pattern2::before {
    width: 162px;
    height: 145px;
    top: -91px;
    left: auto;
    right: 0;
  }
}

/* ============================== index-contact-block END================================================================== */
/* ============================== index-contact-block END================================================================== */
/* ============================== index-contact-block END================================================================== */
/* ============================== href bullet start================================================================== */
/* ============================== href bullet start================================================================== */
/* ============================== href bullet start================================================================== */
.anchor-bullet-wrapper{
  position: absolute;
  
  display: flex;
  justify-content: flex-end;
  top: 234px;
  padding-right: 28px;
  right: 0;
  /* text-align: right; */
  z-index: 990;
}

.anchor-bullet-sticky{
  /* position: sticky;
  top: 0; */
  width: auto;  
  font-size: 14px;
  line-height: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
-webkit-align-items: flex-end;
}

.anchor-bullet-sticky > li{
 height: 32px;
 padding: 7px 30px 7px 14px;
 position: relative;
 border-radius: 17px;
 cursor: pointer;
 transition: .3s ease;
 
}

.anchor-bullet-sticky > li:hover{
  background-color: rgba(255, 255, 255, 0.4);
}

.anchor-bullet-sticky > li:hover > a{
  display: block;
}

.anchor-bullet-sticky > li:hover:after{
  background-color: var(--auo-blue);

}

.anchor-bullet-sticky > li.is-active{
  background-color: rgba(255, 255, 255, 0.4);
}

.anchor-bullet-sticky > li > a{
  display: none;
  /* width: auto; */
  transition: .3s ease;
}

.anchor-bullet-sticky > li.is-active > a{
  display: block;
  margin-right: auto;  
  text-align: right;
  width: auto;
}

.anchor-bullet-sticky > li:after{
  content: "";
  /* display: block; */
  position: absolute;
  top: 11px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-6);
}

.anchor-bullet-sticky > li.is-active:after{
  background-color: var(--auo-blue);
}

.anchor-btn{
  background-image: url('../../images/common/auo-anchor-btn.svg');
  width: 36px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  margin-top: 8px;
}

@media (max-width: 1199px){
  .index-solution{
    position: static;

  }

  .anchor-bullet-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 60, 101, 0.9);
    padding: 40px 20px 84px 20px;
    flex-direction: column;
    align-items: flex-end;
    /* display: none; */

  }

  .anchor-bullet-sticky > li{
    margin-top: 4px;
  }

  .anchor-bullet-sticky > li:hover,
  .anchor-bullet-sticky > li.is-active{
    background-color: rgba(255, 255, 255, 0.8);
  }

  .anchor-bullet-sticky > li > a{
    display: block;
    color: white;
  }

  .anchor-bullet-sticky > li:hover >a,
  .anchor-bullet-sticky > li.is-active >a{
    color: var(--auo-blue);
  }

  .anchor-btn{
    display: none;
    position: fixed;
    bottom: 40px;
    right: 20px;    
    z-index: 990;
  }

  .is-hidden-tb{
    display: none;
  }


}

@media (max-width: 767px){
  .anchor-bullet-wrapper{
    padding-bottom: 64px;
  }
  .anchor-btn{
    bottom: 20px;
  }
}

/* ============================== href bullet end================================================================== */
/* our advantage */
.our-advantage {
  width: 100%;
  height: auto;
  position: relative;
  color: #005087;
  /*background-image: url('../images/index/auodplus-bg2-pc.png');
  background-size: cover;
  background-position: right;*/
}

.plus-pattern-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 353px;
}

.plus-pattern-wrapper .plus-pattern {
  width: 100%;
}

.our-advantage-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.our-advantage-left,
.our-advantage-right {
  display: block;
  width: auto;
  height: 100%;
}

.our-advantage-left {
  padding-top: 297px;
}

.our-advantage-right {
  padding-top: 155px;
  padding-bottom: 154px;
}

.our-advantage-title {
  position: relative;
  margin-right: 167px;
  width: 393px;
}

.our-advantage-up {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 80px;
}

.our-advantage-info-text,
.our-advantage-info-number {
  text-align: center;
}

.our-advantage-info-text {
  width: 380px;
}

.our-advantage-info-text:first-child {
  margin-right: 140px;
}

.our-advantage-info-number {
  width: 280px;
  margin-right: 100px;
}

.our-advantage-info-number:last-child {
  margin-right: 0;
}

.our-advantage-info-text .our-advantage-info-title {
  margin-bottom: 20px;
}

/* 20221209_Jared更改框架樣式 */
.our-advantage-info-text .our-advantage-info-content {
  font-size: 18px;
  line-height: 28px;
  color: #646464;
  text-align: left;
}

.our-advantage-down {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.our-advantage-down .our-advantage-info-number:first-child .our-advantage-info-title {
  color: #A582C8;
}

.our-advantage-down .our-advantage-info-number:nth-child(2) .our-advantage-info-title {
  color: #FFE364;
}

.our-advantage-down .our-advantage-info-number:nth-child(3) .our-advantage-info-title {
  color: #80CD64;
}



.our-advantage-info-number .our-advantage-info-title {
  margin-bottom: 12px;
  font-size: 70px;
  line-height: 100px;
  font-weight: bold;
}

.our-advantage-info-number .our-advantage-info-content {
  font-size: 20px;
  line-height: 30px;
}

/* .yellow-plus,
.yellow-dot {
  color: #FFB600;
} */

@media (max-width: 1599px) {
  .our-advantage {
    height: auto;
  }

  .our-advantage-left {
    padding-top: 155px;
  }

  .our-advantage {
    background-position: center top;
  }

  .our-advantage-content-wrapper {
    display: block;
    width: auto;
    margin: 0 160px;
  }

  .our-advantage-right {
    padding-top: 80px;
    padding-bottom: 155px;
  }

  .our-advantage-info-text:first-child {
    margin-right: 0;
  }

  .our-advantage-info-text .our-advantage-info-title {
    margin-bottom: 26px;
  }

  .our-advantage-info-number {
    margin-right: 0;
  }

  .our-advantage-info-number .our-advantage-info-title {
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .our-advantage-content-wrapper {
    margin: 0 120px;
  }

  .plus-pattern-wrapper {
    width: 236px;
  }

  .our-advantage-title {
	margin-right: 0;
	margin-left: 0;
	width: 100%;
	text-align: center;
}

  .our-advantage-left {
    padding-top: 65px;
  }

  .our-advantage-right {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .our-advantage-info-text {
    width: 320px;
  }

  .our-advantage-info-number {
    margin-bottom: 60px;
    display: inline-block;
    width: 320px;
  }

  .our-advantage-info-text .our-advantage-info-title {
    margin-bottom: 20px;
    line-height: 45px;
  }

  .our-advantage-up {
    margin-bottom: 50px;
  }

  .our-advantage-down {
    flex-wrap: wrap;
  }

  .our-advantage-info-number .our-advantage-info-title {
    margin-bottom: 12px;
    font-size: 60px;
    line-height: 80px;
  }

  .our-advantage-info-number .our-advantage-info-content {
    font-size: 20px;
    line-height: 35px;
  }
}

@media (max-width: 767px) {

  /* 20221209_Jared更改框架樣式 */
  .our-advantage {
    background-image: url('../../images/index/auodplus-bg2-m.png');

    /* background-image: linear-gradient(to bottom, #0017FF, #009CE9, #2BF0D1); */
  }

  .plus-pattern-wrapper {
    width: 236px;
  }

  .our-advantage-right {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .our-advantage-left {
    padding-top: 120px;
  }

  .our-advantage-title {
    margin-right: 0;
    width: 100%;
	text-align: center;
  }

  .our-advantage-content-wrapper {
    padding: 0 20px;
    width: 100%;
    margin: 0;
  }

  .our-advantage-up,
  .our-advantage-down {
    display: block;
  }

  .our-advantage-up {
    margin-bottom: 30px;
  }

  .our-advantage-info-text,
  .our-advantage-info-number {
    width: auto;
  }

  .our-advantage-info-text .our-advantage-info-content {
    font-size: 16px;
    line-height: 22px;
  }

  .our-advantage-info-number .our-advantage-info-content {
    font-size: 18px;
    line-height: 26px;
  }

  .our-advantage-info-text:first-child {
    margin-bottom: 30px;
  }

  .our-advantage-info-number {
    margin-bottom: 30px;
  }

  .our-advantage-info-number:last-child {
    margin-bottom: 0;
  }

  .our-advantage-info-number .our-advantage-info-title {
    font-size: 60px;
    line-height: 80px;
  }

  .our-advantage-info-text .our-advantage-info-title {
    margin-bottom: 20px;
  }

}

/* our advantage end */