.title_block {
  display: flex;
  align-items: center;
}

.title_block .title {
  color: #455A64;
  font-weight: bold;
  padding-right: 40px;
}

/* index_to_top */
.index_to_top {
  background-size: cover;
  background-position: center;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  background-image: url(../../images/index/umc_index_to_top.svg);
}

.index_to_top:hover {
  background-image: url(../../images/index/umc_index_to_top_hover.svg);
}

/* kv_block */
/* scroll_sign */
.scroll_sign {
  position: absolute;
  color: #fff;
  transform: rotateZ(-90deg);
  -moz-transform: rotateZ(-90deg);
  -webkit-transform: rotateZ(-90deg);
  -o-transform: rotateZ(-90deg);
  bottom: -14px;
  font-size: 14px;
  z-index: 200;
  display: flex;
  align-items: center;
  transform-origin: left;
  left: 63.5px;
  pointer-events: none;
}

.kv_block.has_news .scroll_sign {
  bottom: 66px;
}

.scroll_sign:before {
  display: inline-block;
  content: "";
  width: 67px;
  height: 1px;
  background-color: #fff;
  margin-right: 18px
}

.kv_block {
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.kv_item {
  overflow: hidden;
  position: relative;
}

.kv_img {
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
/*20210106 Elin mobile kv*/
.kv_img_m {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display:none;
}

.kv_video {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.has_news .kv_img {
  height: calc(100vh - 148px);
}

.has_news .kv_video {
    height: calc(100vh - 148px);
}

.has_news .kv_img_m {
    height: calc(100vh - 148px);
    display: none;
}

.index_video {
  min-width: 100%;
  min-height: 100%;
    background-color: #002243;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.kv_info {
  color: #fff;
}

@media screen and (min-width:1200px) {
  .kv_info {
    position: absolute;
    top: 50%;
    left: 8.3%;
    opacity: 0;
    transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
  }

  .kv_item.swiper-slide-active .kv_info {
    opacity: 1;
    animation: kv-up .6s forwards;
    -webkit-animation: kv-up .6s forwards;
  }

  /*20210106 Elin KV位置調整*/

    .kv_item.swiper-slide-active .kv_info.left-bottom {
        top: auto;
        bottom: 10.752%;
        transform: translate(0%, -0%);
        -moz-transform: translate(0%, -0%);
        -webkit-transform: translate(0%, -0%);
        -o-transform: translate(0%, -0%);
        animation: kv-up-bottom .6s forwards;
        -webkit-animation: kv-up-bottom .6s forwards;
    }

    .kv_item.swiper-slide-active .kv_info.right-bottom {
        top: auto;
        bottom: 10.752%;
        left: auto;
        right: 8.3%;
        text-align: right;
        transform: translate(0%, -0%);
        -moz-transform: translate(0%, -0%);
        -webkit-transform: translate(0%, -0%);
        -o-transform: translate(0%, -0%);
        animation: kv-up-bottom .6s forwards;
        -webkit-animation: kv-up-bottom .6s forwards;
    }

    .kv_info.right {
        right: 8.3%;
        left: auto;
    }

    .kv_info .right-inner {
        display: flex;
        flex-direction: column;
        align-items: end;
        text-align: right;
        display: -ms-flexbox; /* IE 10 */
        -ms-flex-direction: column; /* IE 10 */
        -ms-flex-align: end; /* IE 10 */
        display: -webkit-flex; /* Safari */
        display: -webkit-box; /* Safari */
        -webkit-flex-direction: column; /* Safari */
        -webkit-box-orient: vertical; /* Safari */
        -webkit-align-items: end; /* Safari */
        -webkit-box-align: end; /* Safari */
        -webkit-align-items: flex-end; /* Safari */
    }
}



@-webkit-keyframes kv-up {
  from {
    transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
  }

  to {
    transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
  }
}

@-o-keyframes kv-up {
  from {
    transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
  }

  to {
    transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
  }
}

@keyframes kv-up {
  from {
    transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
  }

  to {
    transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
  }


}

@-webkit-keyframes kv-up-bottom {
    from {
        transform: translate(0%, 50%);
        -moz-transform: translate(0%, 50%);
        -webkit-transform: translate(0%, 50%);
        -o-transform: translate(0%, 50%);
    }

    to {
        transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
    }
}

@-o-keyframes kv-up-bottom {
    from {
        transform: translate(0%, 50%);
        -moz-transform: translate(0%, 50%);
        -webkit-transform: translate(0%, 50%);
        -o-transform: translate(0%, 50%);
    }

    to {
        transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
    }
}

@keyframes kv-up-bottom {
    from {
        transform: translate(0%, 50%);
        -moz-transform: translate(0%, 50%);
        -webkit-transform: translate(0%, 50%);
        -o-transform: translate(0%, 50%);
    }

    to {
        transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
    }
}

.kv_title {
  font-size: 60px;
  line-height: 82px;
  font-weight: bold;
  max-width: 750px;
  max-height: 170px;
  overflow: hidden;
}


/*@media screen and (max-height:700px) {
    .kv_title {
        max-height: 246px;
    }

    .kv_info.left-bottom .kv_title {
        max-height: 170px;
    }
}*/

.kv_subtitle {
    /*padding-top: 25px;*/
    margin-top:20px;
    max-width: 500px;
    /*20220106 Elin 修改文字大小及最大高度*/
/*    max-height: 172px;
    font-size: 22px;
    line-height: 36px;*/
    max-height: 84px;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
}

.kv_btn {
    /*20220106 Elin 修改間距大小*/
    /*padding-top: 50px;*/
    margin-top:40px;
    padding-bottom: 20px;
}

.kv_swiper.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    /*220104  Elin 位置調整成置中*/
    width: auto;
    /*right: 45px;*/
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 0);
}



.kv_swiper.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  outline: none !important;
  margin: 0;
  margin-left: 5px;
  opacity: 1;
  background-color: transparent;
}

.kv_swiper .swiper-pagination-bullet {
  width: auto;
  height: auto;
  padding: 10px;
  position: relative;
  cursor: pointer;
}

.kv_swiper .swiper-pagination-bullet::after {
  content: "";
  display: block;
  position: relative;
  background-color: #B0BEC5;
  opacity: 1;
  height: 6px;
  width: 45px;
  border-radius: 3px;
}

.kv_swiper .swiper-pagination-bullet-active::after {
  background-color: #0196EB;
}

.news_tricker {
  display: flex;
  color: #fff;
  font-size: 20px;
  line-height: 80px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}


.news_tricker .left-block {
  background: transparent linear-gradient(270deg, #18E4FF 0%, #0493EA 100%) 0% 0% no-repeat padding-box;
  min-width: 188px;
  width: 15.625%;
  display: flex;
  padding: 0 20px;
  justify-content: flex-end;
  align-items: center;
}

.news_ticker_arrow_block {
  display: flex;
  margin-left: 30px;
  display: none;
}

.news_ticker-button-next,
.news_ticker-button-prev {
  width: 9px;
  height: 24px;
  background-size: 100%;
  position: relative;
  cursor: pointer;
  outline: none !important;
}

.news_ticker-button-next {
  margin-left: 20px;
}

.news_ticker-button-next::before,
.news_ticker-button-prev::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  background-image: url(../../images/index/umc_index_news_ticker_btn_left.svg);
}

.news_ticker-button-next::before {
  background-image: url(../../images/index/umc_index_news_ticker_btn_right.svg);

}

.news_tricker .right-block {
  background-color: #0057A6;
  padding: 0 20px;
  width: 84.375%;
}

.news_tricker .news_ticker_swiper {
  width: 1000px;
  margin-left: 0;
}

@media (max-width: 1260px) {
  .news_tricker .news_ticker_swiper {
    width: 972px;
  }
}

.news_tricker .news_ticker_item {
  /* max-width: 100%; */
  width: auto;
}

.news_tricker .news_ticker_item .item {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  opacity: 0 !important;
  opacity: 1 !important;
  overflow: hidden;
}

.swiper-slide-active.news_ticker_item .item {
  opacity: 1 !important;
}

.news_ticker_item a {
  color: #fff;
  margin-left: 300px;
}

.news_tricker .swiper-wrapper {
  width: auto;
}

@media (max-width: 1199px) {
  .kv_item.has_title {}

    .kv_img {
        height: calc(100vh - 60px);
        display: none;
    }
    .kv_img_m {
        height: calc(100vh - 60px);
        display: block;
    }
    .kv_video {
        height: calc(100vh - 60px);
    }

    .has_news .kv_img {
        height: calc(80vh + 279px);
        display: none;
    }

    .has_news .kv_img_m {
        height: calc(80vh + 279px);
        display: block;
    }

    .has_news .kv_video {
        height: calc(80vh + 279px);
        
    }

    .index_video {
        max-height: 100%;
        max-width: 100%;
    }

  .has_news .kv_item.has_title .kv_info {
    position: static;
    background-color: #002243;
    padding: 30px 20px;
    margin-top: -1px;
    height: 280px;
    overflow: hidden;
  }


    .has_news .kv_item.has_title .kv_img {
        height: 80vh;
        display: none;
    }

    .has_news .kv_item.has_title .kv_img_m {
        height: 80vh;
        display: block;
    }

    .has_news .kv_item.has_title .kv_video {
        height: 80vh;
    }

  .kv_swiper .swiper-button-disabled {
    opacity: 0.7 !important;
  }

  .has_news .kv_item.has_title .kv_info>* {
    opacity: 0;
    max-width: 100%;
    /* transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%); */
  }

  .has_news .kv_item.has_title.swiper-slide-active .kv_info>* {
    animation: kv-up-v2 .6s forwards;
    -webkit-animation: kv-up-v2 .6s forwards;
    opacity: 1;
  }

  @-webkit-keyframes kv-up-v2 {
    from {
      transform: translate(0%, 100%);
      -moz-transform: translate(0%, 100%);
      -webkit-transform: translate(0%, 100%);
      -o-transform: translate(0%, 100%);
    }

    to {
      transform: translate(0%, 0%);
      -moz-transform: translate(0%, 0%);
      -webkit-transform: translate(0%, 0%);
      -o-transform: translate(0%, 0%);
    }
  }

  @-o-keyframes kv-up-v2 {
    from {
      transform: translate(0%, 100%);
      -moz-transform: translate(0%, 100%);
      -webkit-transform: translate(0%, 100%);
      -o-transform: translate(0%, 100%);
    }

    to {
      transform: translate(0%, 0%);
      -moz-transform: translate(0%, 0%);
      -webkit-transform: translate(0%, 0%);
      -o-transform: translate(0%, 0%);
    }
  }

  @keyframes kv-up-v2 {
    from {
      transform: translate(0%, 100%);
      -moz-transform: translate(0%, 100%);
      -webkit-transform: translate(0%, 100%);
      -o-transform: translate(0%, 100%);
    }

    to {
      transform: translate(0%, 0%);
      -moz-transform: translate(0%, 0%);
      -webkit-transform: translate(0%, 0%);
      -o-transform: translate(0%, 0%);
    }
  }

  .kv_block .swiper_arrow_block {
    position: absolute;
    top: calc(80vh - 15px);
    width: 100%;
    pointer-events: none;
    margin-top: 0;
  }

  .kv_block .swiper_arrow_block>* {
    pointer-events: all;
    margin: 0;
  }

  .kv_block .swiper_arrow_block .swiper-button-next:before,
  .kv_block .swiper_arrow_block .swiper-button-prev::before {
    background-size: 7px auto;
    background-position: center;
    width: 30px;
    height: 30px;
    background-color: #90A4AE;
  }

  .kv_block .swiper_arrow_block .swiper-button-next:hover:before,
  .kv_block .swiper_arrow_block .swiper-button-prev:hover::before {}

  .kv_block .swiper_arrow_block .swiper-button-next:before {
    border-radius: 5px 0px 0px 5px;
    margin-right: 0;
    background-image: url(../../images/index/umc_index_kv_arrow_right.svg);
  }

  .kv_block .swiper_arrow_block .swiper-button-prev::before {
    border-radius: 0px 5px 5px 0px;
    margin-left: 0;
    background-image: url(../../images/index/umc_index_kv_arrow_left.svg);
  }

  .kv_info {
    left: 10%;
  }

  .has_news .kv_item.has_title .kv_info {
    padding: 20px;
    margin-top: -1px;
  }

  .kv_title {
    font-size: 20px;
    line-height: 30px;
    max-height: 88px;
    max-width: 100%;
  }

  .kv_subtitle {
    padding-top: 10px;
    max-height: 110px;
    font-size: 16px;
    line-height: 24px;
    max-width: none;
  }

  .kv_btn {
    padding-top: 20px;
    padding-bottom: 20px;
/*20220106 Elin 調整btn mt*/
    margin-top:0;
  }

  .kv_btn .has_next {
    color: #00C4FF
  }

  .kv_btn .has_next::after {
    color: #00C4FF
  }

  .news_tricker {
    display: block;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0;
    background: #0057A6;
    margin-top: -1px;
  }

  .news_tricker .left-block,
  .news_tricker .right-block {
    width: 100%;
    background: #0057A6;
  }

  .news_tricker .left-block {
    display: block;
    padding-bottom: 7px;
  }

  .news_tricker .news_ticker_swiper {
    width: 100%;
  }

  .news_ticker_arrow_block {
    position: absolute;
  }

  .news_tricker .arrow {
    background-image: url(../../images/index/umc_index_news_ticker_btn_right.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 9px;
    height: 23px;
    background-position: center;
    background-size: 100%;
    right: 20px;
    bottom: 12px;
    display: none;
  }
}

@media (max-width: 767px) {
  .kv_info {
    left: 20px;
  }

    .has_news .kv_img {
        height: calc(40vh + 279px);
        display: none;
    }

    .has_news .kv_img_m {
        height: calc(40vh + 279px);
        display: block;
    }

    .has_news .kv_video {
        height: calc(40vh + 279px);
        
    }

    .has_news .kv_item.has_title .kv_img {
        height: 40vh;
        display: none;
    }

    .has_news .kv_item.has_title .kv_img_m {
        height: 40vh;
        display: block;
    }

    .has_news .kv_item.has_title .kv_video {
        height: 40vh;
        
    }

  .kv_block .swiper_arrow_block {
    top: calc(40vh - 15px);
  }

  .kv_swiper.swiper-container-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    right: 10px;
    bottom: 15px;
  }
}


/* news_block */
.news_block {
  position: relative;
  z-index: 20;
  background-color: #ECEFF1;
}

.news_wrap {
  max-width: 1700px;
  padding: 80px 50px;
  margin: auto;
}

.news_block .has_next {
  font-size: 24px;
}

.news_block .title_block {
  padding-bottom: 60px;
}

.swiper_arrow_block {
  /* padding-top: 30px; */
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 50px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-nex {
  left: 50px;
}

.en .news_item span {
  width: 180px;
}

.news_item span {
  position: absolute;
  font-size: 15px;
  line-height: 32px;
  background-color: #0057A6;
  color: #FFFFFF;
  width: 106px;
  height: 32px;
  text-align: center;
  left: 0;
  top: 0;
}

.news_item .news_info {
  padding-top: 45px;
}

@media(max-width:1199px) {
  .news_wrap {
    padding-top: 60px;
  }

  .news_block .title_block {
    display: block;
    padding-bottom: 35px;
  }

  .news_block .title {
    font-size: 36px;
    line-height: 49px;
    padding-bottom: 20px;
  }

  .news_block .has_next {
    font-size: 20px;
  }

  .swiper_arrow_block {
    margin-top: 20px;
  }
}

@media(max-width: 767px) {
  .news_wrap {
    padding: 60px 20px 45px;
  }

  .news_block .title_block {
    padding-bottom: 30px;
  }

  .news_title {
    height: 180px;
  }
}

/* pop_link start */
.pop_link_block {
  background-color: #CFD8DC;
  background-image: url(../../images/index/umc_index_pop_link_bg.png);
  background-position: center bottom;
  padding: 70px 0;
}

.pop_link_block .title {
  color: #0057A6;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 40px;
}

.pop_link_item {
  max-height: 128px;
  height: 128px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .3);
  border-radius: 3px;
}

.pop_link_item a {
  display: block;
  padding: 22px 30px;
  color: #37474F;
  height: 100%;
}

.pop_link_item a:hover {
  color: #0057a6;
}

.pop_link_item p {
  font-size: 18px;
  line-height: 28px;
  height: 100%;
  overflow: hidden;
}

.pop_link_swiper_pagination {
  position: static;
  margin-top: 10px;
}

.pop_link_swiper.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  outline: none !important;
  margin: 0;
  margin-left: 5px;
  opacity: 1;
  background-color: transparent;
}

.pop_link_swiper .swiper-pagination-bullet {
  width: auto;
  height: auto;
  padding: 10px;
  position: relative;
  cursor: pointer;
}

.pop_link_swiper .swiper-pagination-bullet::after {
  content: "";
  display: block;
  position: relative;
  background-color: #B0BEC5;
  opacity: 1;
  height: 6px;
  width: 45px;
  border-radius: 3px;
}

.pop_link_swiper .swiper-pagination-bullet-active::after {
  background-color: #0196EB;
}

@media(max-width: 1199px) {
  .pop_link_block {
    padding: 60px 0 40px;
  }
}

@media(max-width: 767px) {
  .pop_link_block .title {
    padding-bottom: 30px;
  }

  .pop_link_item {
    max-height: 208px;
    height: 208px;
  }
}

/* pop_link end */

/* numbers_block */
.numbers_block {
  background: transparent linear-gradient(90deg, #0057A6 0%, #039BE5 100%) 0% 0% no-repeat padding-box;
  padding: 80px 0;
  color: #fff;
  position: relative;
  z-index: 10;
}

.numbers_title {
  font-size: 50px;
  line-height: 68px;
  font-weight: bold;
  text-align: center;
}

.numbers_list {
  display: flex;
  justify-content: center;
  padding: 40px 0 50px;
  text-align: center;
}

.numbers_list li {
  width: 240px;
  margin: 0 40px;
}

.numbers_img {
  padding-bottom: 10px;
}

.numbers_list li:last-child .numbers_img {
  margin: 5px auto;
}

.numbers_info {
  font-size: 20px;
  line-height: 34px;
  padding-top: 20px;
}

.numbers_btn {
  width: 200px;
  line-height: 52px;
  border-radius: 26px;
  border: 1px solid #fff;
  text-align: center;
  margin: auto;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}

.numbers_btn:hover {
  background-color: #fff;
}

.numbers_btn a {
  color: white
}

.numbers_btn:hover a {
  color: #0057A6
}

@media(max-width:1199px) {
  .numbers_list {
    justify-content: space-between;
    padding: 70px 0px 50px;
  }

  .numbers_block>.container>.numbers_title {
    font-size: 36px;
    line-height: 54px;
  }

  .numbers_list li {
    width: 30.06%;
    margin: 0;
  }

  .numbers_info {
    font-size: 18px;
    line-height: 28px;
  }
}

@media(max-width:767px) {
  .numbers_block {
    padding: 60px 0;
  }

  .numbers_list {
    display: block;
    padding: 40px 0 50px;
  }

  .numbers_list li {
    width: 100%;
  }

  .numbers_list li:nth-child(n+2) {
    padding-top: 60px;
  }

  .numbers_info {
    font-size: 20px;
    line-height: 24px;
  }
}

/* financial_block */
.financial_block {
  padding: 80px 0;
  color: #fff;
  background-image: url(../../images/index/umc_index_fi_bg.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.fi_title {
  font-size: 50px;
  line-height: 68px;
  font-weight: bold;
  max-height: 68px;
  overflow: hidden;
  /* padding: 0 10px; */
}

.fi_subtitle {
  font-size: 20px;
  line-height: 36px;
  padding-top: 8px;
}

.fi_list {
  display: flex;
  padding: 70px 0;
}

.fi_list li {
  width: 25%;
  overflow: hidden;
}

.fi_info_1 {
  font-size: 24px;
  line-height: 36px;
  margin-top: 7px;
  overflow: hidden;
  max-height: 36px;
  padding: 0 10px;
}

.fi_info_2 {
  font-size: 16px;
  line-height: 26px;
  margin-top: 6px;
  overflow: hidden;
  max-height: 26px;
  padding: 0 10px;
}

.fi_btn {
  width: 200px;
  margin: auto;
}

@media(max-width:1199px) {
  .fi_title {
    font-size: 36px;
    line-height: 54px;
    max-height: 106px;
  }

  .fi_subtitle {
    line-height: 28px;
    font-size: 18px;
  }

  .fi_list {
    padding: 60px 0 50px;
    flex-wrap: wrap;
  }


  .fi_list .fi_title {
    font-size: 36px;
    line-height: 49px;
  }

  .fi_info_1 {
    max-height: none;
    font-size: 18px;
    line-height: 28px;
  }

  .fi_info_2 {
    font-size: 18px;
    line-height: 28px;
    max-height: none;
  }
}

@media(max-width:767px) {
  .financial_block {
    padding: 60px 0;
  }

  .fi_list li {
    width: 50%;
  }

  .fi_list li:nth-child(n+3) {
    padding-top: 30px;
  }
}

/* app_block */
.app_block .title {
  padding: 0
}

.app_list li {
  display: flex;
  height: calc(100vh - 70px);
  overflow: hidden;
}

.app_list li.done .app_img_block::after {
  position: absolute;
  content: ""
}

.app_info_block {
  padding-top: 5vw;
  padding-left: 120px;
  width: 50%;
}

.app_info_inner {
  width: 500px;
}

.app_img_block {
  width: 50%;
  position: relative;
}

.app_img_block::before {
  height: 100%;
  width: 100%;
  display: block;
  background-color: #000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.light .app_img_block::before {
  opacity: 0.3;
}

.app_img_block .word_block {
  text-align: center;
  position: absolute;
  top: 100%;
  left: -210px;
  transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  font-weight: bold;
  color: #fff;
  z-index: 2;
  display: flex;
  opacity: 0;
}

.app1 .word_block {
  left: -37px;
}

.app2 .word_block {
  left: -193px;
}

.app3 .word_block {
  left: -102px;
}

li.done .word_block {
  opacity: 1;
  transition: all 0.4s ease 0.4s;
  -webkit-transition: all 0.4s ease 0.4s;
  -moz-transition: all 0.4s ease 0.4s;
  -o-transition: all 0.4s ease 0.4s;
  top: 50%;
  padding-right: 20px;
}

.app_img_block .show_1200 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-weight: bold;
  color: #fff;
  font-size: 140px;
  line-height: 190px;
  z-index: 2;
  opacity: 0;
}

.app_img_block .show_1200.fz90 {
  font-size: 90px;
  line-height: 90px;
}

.app_img_block .fz550 {
  font-size: 550px;
}

.app_img_block .fz400 {
  font-size: 400px;
}

.app_img_block .fz240 {
  font-size: 240px;
}

.app_img_block .fz180 {
  font-size: 180px;
  position: relative;
}

.app_list li:nth-child(1) .app_img_block {
  background-image: url(../../images/index/umc_index_app_1.jpg);
}

.app_list li:nth-child(2) .app_img_block {
  background-image: url(../../images/index/umc_index_app_2.jpg);
}

.app_list li:last-child .app_img_block {
  background-image: url(../../images/index/umc_index_app_3.jpg);
}

.app_info_1 {
  padding: 20px 0 30px;
  line-height: 34px;
  font-size: 20px;
}

.app_line {
  width: 100%;
  background-color: #E0E0E0;
  height: 1px;
  margin: 60px 0;
}

.app_subtitle {
  font-size: 20px;
  line-height: 24px;
  color: #0057A6;
  padding-bottom: 20px;
}

.app_info_2 p {
  font-size: 18px;
  line-height: 28px;
}

.done .animate-init {
  transition-delay: 0.3s;
}

.done [data-aos^=fade][data-aos^=fade] {
  opacity: 1;
  transform: translateZ(0);
}

@media(min-width:1200px) {
  .app_img_block::after {
    height: 100%;
    width: 100%;
    display: block;
    background-color: #016DCE;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
  }

  .gdpr.show~.main_content .app_info_block {
    /* padding-top: 200px; */
  }

  li.done .app_img_block::after {
    left: 100%;
    transition: left 0.4s ease;
    -webkit-transition: left 0.4s ease;
    -moz-transition: left 0.4s ease;
    -o-transition: left 0.4s ease;
  }

  .app_img_block .word_block .first::first-letter {
    color: #016DCE;
  }

  .app_img_block .fz180 {
    left: -373px;
    top: 164px;
  }
}

@media(max-width:1499px) and (min-width:1366px) {

  .app_img_block .fz240,
  .app_img_block .fz180 {
    font-size: 150px;
  }

  .app_img_block .fz240 {
    position: relative;
    left: -10px;
    top: 17px;
  }

  .app_img_block .fz180 {
    left: -225px;
    top: 138px;
  }
}

@media(max-width:1499px) and (min-width:1200px) {
  .app_info_block {
    padding-left: 90px;
    padding-top: 20px;
  }

  .app_info_1 {
    font-size: 18px;
    line-height: 28px;
  }

  .app_info_2 {
    display: none;
  }

  .app_info_inner {
    width: 400px;
  }

  .title_block .title {
    font-size: 40px;
    line-height: 60px;
  }

  li.done .word_block {
    width: 90%;
  }

  .app2 .word_block {
    left: -100px;
  }

  .app_img_block .fz400 {
    font-size: 350px;
  }

  .app_img_block .fz550 {
    font-size: 400px;
  }


  .app_line {
    display: none;
  }
}

@media(max-width:1365px) and (min-width:1200px) {

  .app_img_block .fz240,
  .app_img_block .fz180 {
    font-size: 120px;
  }

  .app_img_block .fz240 {
    position: relative;
    left: -10px;
    top: 29px;
  }

  .app_img_block .fz180 {
    left: -183px;
    top: 129px;
  }
}

@media(max-width:1199px) {
  .app_list li {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    /* height: calc(100vh - 60px); */
  }

  .app_info_block {
    padding: 60px 40px;
    width: 100%;
  }

  .app_info_inner {
    width: 460px;
    width: 100%;
  }

  .app_img_block {
    width: 100%;
    height: 360px;
  }

  .app_block .title {
    line-height: 68px;
  }

  .app_info_1 {
    padding: 0px 0 50px;
  }

  .app_line {
    margin: 60px 0;
  }

  .app_line {
    margin: 60px 0;
  }

  .app_list li:nth-child(1) .app_img_block {
    background-image: url(../../images/index/umc_index_app_1_m.jpg);
  }

  .app_list li:nth-child(2) .app_img_block {
    background-image: url(../../images/index/umc_index_app_2_m.jpg);
  }

  .app_list li:last-child .app_img_block {
    background-image: url(../../images/index/umc_index_app_3_m.jpg);
  }

  .app_img_block .word_block {
    text-align: center;
    width: 100%;
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);*/
    left: 0;
    font-weight: bold;
    color: #fff;
    z-index: 2;
  }

  .app_img_block .fz550 {
    font-size: 140px;
  }

  .done .app_img_block .show_1200 {
    opacity: 1;
    transition: opacity 0.3s ease 0.6s;
    -webkit-transition: opacity 0.3s ease 0.6s;
    -moz-transition: opacity 0.3s ease 0.6s;
    -o-transition: opacity 0.3s ease 0.6s;
    font-size: 60px;
    line-height: 72px;
    width: 100%;
    padding: 20px;
  }
}

@media(max-width:767px) {
  .app_block .title {
    line-height: 68px;
  }

  .app_info_block {
    padding: 60px 20px;
  }

  .app_info_1 {
    font-size: 18px;
    line-height: 28px;
  }

  .done .app_img_block .show_1200 {
    font-size: 36px;
    line-height: 54px
  }
}

@media(min-width:580px) {
  .app_img_block .show_1200 br {
    display: none;
  }
}

/* explore_block */
.explore_block {
  background: transparent linear-gradient(270deg, #18E4FF 0%, #0493EA 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-size: 50px;
  line-height: 68px;
  font-weight: bold;
  text-align: center;
  padding: 56px;
  position: relative;
  z-index: 30;
}

@media(max-width:1199px) {
  .explore_block {
    padding: 30px;
    line-height: 41px;
    font-size: 30px;
  }
}

/* careers_csr_block */
.careers_csr_block {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 30;
}

.careers_csr_block * {
  color: #fff
}

.careers_csr_block>div {
  width: 50%;
  padding: 376px 100px 0 160px;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.careers_csr_block>div::before {
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .5;
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

.careers_csr_block a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
  transition: transform 0.6s ease;
  -webkit-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
}

.careers_csr_block a:hover {
  transform: scale(1.1);
}

.careers a {
  background-image: url(../../images/index/umc_index_careers_bg.jpg);
}

.csr a {
  background-image: url(../../images/index/umc_index_csr_bg.jpg);
}

.cc_info {
  position: relative;
  z-index: 12;
  pointer-events: none;
}

.careers_csr_block .title {
  font-size: 50px;
  line-height: 68px;
  max-height: 68px;
  overflow: hidden;
  font-weight: bold;
}

.careers_csr_block .subtitle {
  max-height: 136px;
  overflow: hidden;
  margin-top: 30px;
  font-size: 20px;
  line-height: 34px;
}

@media(max-width:1199px) {

  .careers_csr_block>div {
    padding: 380px 40px 0;
  }

  .careers_csr_block .title {
    font-size: 36px;
    line-height: 49px;
    max-height: 49px;
  }

  .careers_csr_block .subtitle {
    max-height: 192px;
    font-size: 18px;
    line-height: 28px;
  }
}

@media(max-width:767px) {

  .careers_csr_block>div {
    padding: 380px 20px 0;
    width: 100%;
  }
}

/* contact_block */
.contact_block {
  background-image: url(../../images/index/umc_index_contact_bg.jpg);
  background-size: cover;
  background-position: center;
  height: 360px;
  text-align: center;
  /* padding-top: 66px; */
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
}

.contact_title {
  color: #455A64;
  font-weight: bold;
  max-width: 100%;
}

.contact_subtitle {
  color: #37474F;
  padding: 20px 20px 60px;
  max-width: 100%;
}

.contact_btn {
  text-align: center;
}

@media(max-width:1199px) {
  .contact_block {
    height: 409px;
    /* padding-top: 102px; */
  }

  .contact_title {
    font-size: 36px;
    line-height: 54px;
  }

  .contact_subtitle {
    color: #37474F;
    padding: 30px 20px 50px;
  }
}

@media(max-width:767px) {
  .contact_block {
    /* padding-top: 60px; */
  }
}
