/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
}

label {
  display: block;
}

button {
  cursor: pointer;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
}

html {
  font-size: 16px;
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  image-rendering: optimizequality;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.tran {
  transition: all ease 1s;
}

a {
  color: white;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.op0 {
  opacity: 0 !important;
}

.op1 {
  opacity: 1 !important;
}

.hidden {
  display: none;
}

.arrow-btn .btn {
  position: relative;
  color: #fff;
  font-family: "Noto Sans TC";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.03em;
  text-align: left;
}
.arrow-btn .btn::after {
  content: "";
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 60px;
  width: 60px;
  background: none;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  cursor: pointer;
  transition: 0.3s ease right;
}
.arrow-btn .btn:hover::after {
  right: 20px;
}

.menu-btn {
  height: 90px;
  width: 90px;
  background: #fff;
}
.menu-btn::before, .menu-btn::after {
  content: "";
  display: block;
  height: 2px;
  width: 44.4444444444%;
  margin: auto;
}
.menu-btn::before {
  margin-bottom: 10px;
}

#view {
  height: 100vh;
  width: 100vw;
  position: relative;
}

.layout-header {
  position: fixed;
  display: flex;
  width: 100%;
  z-index: 100;
  height: 0;
  justify-content: space-between;
}
.layout-header .header-left {
  padding-top: 38px;
  width: 222px;
}
.layout-header .header-left .logo {
  width: 117px;
  margin: auto;
}
.layout-header .header-right {
  display: flex;
  justify-content: flex-end;
  height: 90px;
  position: relative;
}
.layout-header .header-right .lang-select {
  line-height: 5.625rem;
  height: 90px;
  width: 90px;
  line-height: 90px;
  text-align: center;
}
.layout-header .header-right .lang-select a {
  color: #fff;
  font-family: "Roboto", "Noto Sans TC";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  border-bottom: 1px solid white;
  transition: 0.5s ease all;
}
.layout-header .header-right .lang-select a:hover {
  opacity: 0.5;
}
.layout-header .header-right .menu-btn {
  transition: 0.3s ease background;
}
.layout-header .header-right .menu-btn::before {
  background: #01417F;
  transition: 0.3s ease background;
}
.layout-header .header-right .menu-btn::after {
  background: #01417F;
  transition: 0.3s ease background;
}
.layout-header .header-right .menu-btn:hover {
  background: #01417F;
}
.layout-header .header-right .menu-btn:hover::before {
  background: #fff;
}
.layout-header .header-right .menu-btn:hover::after {
  background: #fff;
}
.layout-header .line {
  content: "";
  display: block;
  height: 1px;
  width: 100vw;
  background: #fff;
  position: absolute;
  bottom: -90px;
  left: 222px;
}
.layout-copyright {
  font-family: "Noto Sans TC";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1875rem;
  color: #fff;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  margin-right: 36px;
  white-space: nowrap;
  height: 100%;
  text-align: center;
  padding-top: 88px;
}
.layout-mask {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background: black;
  opacity: 0;
  transition: all ease 1s;
  visibility: hidden;
}
.layout-mask.show {
  visibility: visible;
  opacity: 0.3;
}
.layout-aside {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 999;
  display: flex;
  transform: translateX(150%);
}
.layout-aside .nav-list-box {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 9vh 0 6.3vh 0;
}
.layout-aside .nav-list-box .nav-list {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.layout-aside .nav-list-box .nav-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.layout-aside .nav-list-box .nav-list::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.layout-aside .nav-list-box .nav-list::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.layout-aside .nav-list-box .nav-list::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
.layout-aside .nav-list-box .nav-list a {
  color: #01417F;
  display: block;
  padding: 3vh 20px 3vh 20px;
  font-family: "Noto Sans TC";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4375rem;
  letter-spacing: 0em;
  min-width: 182px;
  max-width: 250px;
  text-align: center;
}
.layout-aside .nav-list-box .nav-list a:hover {
  background: #01417F;
  color: #fff;
}
.layout-aside .nav-list-box .logo-box {
  text-align: center;
  padding-top: 20px;
}
.layout-aside .social-list-box {
  background: #01417F;
}
.layout-aside .social-list-box .menu-btn {
  background: #01417F;
  border-bottom: 0.0625rem solid #fff;
  transition: 0.3s ease background;
}
.layout-aside .social-list-box .menu-btn::before, .layout-aside .social-list-box .menu-btn::after {
  background: #fff;
}
.layout-aside .social-list-box .menu-btn:hover {
  background: #01274c;
}
.layout-aside .social-list-box .social-list {
  padding-top: 80px;
  overflow: auto;
  height: calc(100% - 60px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.layout-aside .social-list-box .social-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.layout-aside .social-list-box .social-list::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.layout-aside .social-list-box .social-list::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.layout-aside .social-list-box .social-list::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
.layout-aside .social-list-box .social-list a {
  transition: 0.5s ease all;
}
.layout-aside .social-list-box .social-list a:hover {
  opacity: 0.5;
}
.layout-aside .social-list-box .social-list li {
  text-align: center;
  margin-bottom: 40px;
}
.layout-aside .social-list-box .social-list img {
  height: 1.25rem;
  width: 1.25rem;
}
.layout-aside.show {
  transform: translateX(0);
}

.container {
  width: 100%;
  height: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.container::-webkit-scrollbar-track {
  background-color: transparent;
}
.container::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.container::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.container::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
.container-content {
  overflow: hidden;
  padding-bottom: 20vh;
}
.container .mod-copyright {
  display: none;
}

h1 {
  font-size: 0;
}

@media screen and (max-width: 768px) {
  .menu-btn {
    width: 45px;
    height: 45px;
  }
  .layout-header .header {
    height: 45px;
  }
  .layout-header .header-left {
    width: unset;
    margin-left: 19px;
    padding-top: 20px;
  }
  .layout-header .header-left .logo {
    width: 70px;
  }
  .layout-header .header-right {
    border: 0;
    position: relative;
    height: 45px;
  }
  .layout-header .header-right .lang-select {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    height: 45px;
    width: 45px;
    line-height: 45px;
  }
  .layout-header .line {
    display: none !important;
  }
  .layout-copyright {
    display: none;
  }
  .layout-aside .nav-list-box {
    padding: 45px 0 63px 0;
  }
  .layout-aside .nav-list-box .nav-list a {
    padding: 0 30px 0 29px;
    font-size: 14px;
    line-height: 44px;
  }
  .layout-aside .social-list-box .social-list {
    padding-top: 40px;
    height: calc(100% - 40px);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .layout-aside .social-list-box .social-list::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .layout-aside .social-list-box .social-list::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .layout-aside .social-list-box .social-list::-webkit-scrollbar-thumb:hover {
    background-color: transparent;
  }
  .layout-aside .social-list-box .social-list::-webkit-scrollbar {
    background-color: transparent;
    display: none;
  }
  .layout-aside .social-list-box .social-list li {
    margin-bottom: 20px;
  }
  .container .mod-copyright {
    display: block;
    padding-top: 20px;
    color: #fff;
    font-family: "Noto Sans TC";
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: center;
  }
}
#view {
  background: url(../images/bg/img_bg.jpg) no-repeat center/cover;
}

.container {
  opacity: 0;
}
.container.show {
  opacity: 1;
}
.container .section {
  color: #fff;
  font-family: "Poppins", "Noto Sans TC";
  font-style: normal;
  margin-left: 176px;
  margin-right: 60px;
}
.container .section .main-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.75rem;
}
.container .top {
  width: 100vw;
  position: relative;
  overflow: hidden;
}
.container .top .title {
  color: #fff;
  font-family: Roboto, "Noto Sans TC", sans-serif;
  font-size: 7.8125vw;
  font-style: normal;
  font-weight: 900;
  line-height: 1.0666666667;
  letter-spacing: 0.02em;
  width: -moz-max-content;
  width: max-content;
  margin: 281px 0 116px 12.39vw;
}
.container .top .title .business {
  display: flex;
  margin-top: 0.1em;
  padding-left: 0.1666666667em;
}
.container .top .title .business .sm {
  font-family: Poppins, "Noto Sans TC", sans-serif;
  font-size: 0.2666666667em;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #fff;
  height: 1.675em;
  align-self: center;
}
.container .top .title .business span:nth-of-type(2) {
  font-family: Roboto, "Noto Sans TC", sans-serif;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1733333333;
  letter-spacing: 0em;
  margin: 0 0.1866666667em;
}
.container .top .title .md {
  font-family: Roboto;
  font-size: 0.4666666667em;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1714285714;
  letter-spacing: 0.1em;
  text-align: right;
  margin-top: -0.1428571429em;
}
.container .top .title .mob-subtitle {
  display: none;
}
.container .top .logo-circle {
  position: absolute;
  top: 17.3vh;
  right: 6.19vw;
  width: 11.25vw;
  height: 11.25vw;
  background: url("../images/index/index_circle.png") no-repeat center;
  background-size: 100%;
}
.container .top .logo-circle::after {
  content: "";
  display: block;
  width: 0.5px;
  height: 45.28vh;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #fff;
  transform: translate(-50%, calc(100% + 26px));
}
.container .top .logo-circle img {
  width: 6.35vw;
}
.container .top .logo-jaguar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container .top .ribbons {
  font-family: Poppins, "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0.02em;
  color: #01417F;
  background: #fff;
  white-space: nowrap;
  width: calc(100% + 40px);
  transform: rotate(4.28deg) translateX(-20px);
  text-indent: 20px;
  z-index: 1;
  bottom: 135px;
  margin-bottom: 133.71px;
  filter: drop-shadow(20px 40px 20px rgba(1, 65, 127, 0.2));
}
.container .top .ribbons span {
  margin-right: 20px;
}
.container .score {
  color: #fff;
  position: relative;
  padding: 0 60px 309px 30px;
}
.container .score-data {
  position: relative;
  z-index: 1;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  margin: 0 -60px 209px -30px;
}
.container .score-data li {
  flex: 1;
  border-right: 1px solid #fff;
  padding: 18px 23px 138px 47px;
  position: relative;
}
.container .score-data li:last-of-type {
  border-right: 0;
}
.container .score-data li .title .number,
.container .score-data li .title .en {
  font-family: "Poppins", "Noto Sans TC";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem;
}
.container .score-data li .title .number {
  padding-right: 5px;
}
.container .score-data li .title .number.pr9 {
  padding-right: 9px;
}
.container .score-data li .title .number.pr3 {
  padding-right: 3px;
}
.container .score-data li .title .zh {
  font-family: "Noto Sans TC";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.container .score-data li .title > p:first-of-type {
  text-indent: -1.875rem;
  text-indent: -30px;
}
.container .score-data li .score-number {
  font-family: "Lato", "Noto Sans TC";
  font-size: 8.75rem;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  bottom: 0;
  right: 23px;
}
.container .score-data li .score-number .unit {
  font-size: 4.375rem;
  font-weight: 900;
}
.container .score-desc {
  margin-left: 9.16vw;
  position: relative;
  z-index: 1;
}
.container .score-desc-content {
  font-family: "Noto Sans TC";
  font-style: normal;
  letter-spacing: 0.03em;
  position: relative;
  padding: 27px 47.92px 36.68px 74px;
  max-width: 760.92px;
}
.container .score-desc-content .main-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.container .score-desc-content .sub-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  margin-bottom: 40px;
}
.container .score-desc-content .content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}
.container .score-desc-content::before, .container .score-desc-content::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2.65625rem;
  position: absolute;
}
.container .score-desc-content::before {
  background: url(../images/icon/quotation-top.svg) no-repeat center;
  background-size: cover;
  left: 0;
  top: 0;
}
.container .score-desc-content::after {
  background: url(../images/icon/quotation-bottom.svg) no-repeat center;
  background-size: cover;
  right: 0;
  bottom: 0;
}
.container .score .icon-box {
  display: flex;
  margin-left: 12.8vw;
  margin-top: 100px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  align-items: flex-end;
}
.container .score .icon {
  margin-right: 5.7291666667vw;
  margin-bottom: 20px;
}
.container .score .icon-1 {
  background: url(../images/index/index_logo_white_01-2.png) no-repeat left top/100%;
}
.container .score .icon-2 {
  background: url(../images/index/index_logo_white_02-2.png) no-repeat left top/100%;
}
.container .score .icon-3 {
  background: url(../images/index/index_logo_white_03-2.png) no-repeat left top/100%;
}
.container .score .icon img {
  opacity: 0;
  transition: 0.5s ease opacity;
}
.container .score .icon:hover img {
  opacity: 1;
}
.container .score .house-photo {
  max-width: 840px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.container .news {
  margin-bottom: 155px;
}
.container .news .main-title {
  margin-bottom: 24px;
}
.container .news-wrapper {
  display: flex;
  transform: translateX(-30px);
}
.container .news-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1251px;
  margin-right: 6.875vw;
  margin-bottom: 40px;
}
.container .news-each {
  font-family: Poppins, "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 29px 20px 20px 34px;
  flex-basis: 33.3333333333%;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.container .news-each .content {
  letter-spacing: -0.01em;
  margin-bottom: 41px;
}
.container .news-each .zh {
  font-size: 18px;
}
.container .news-each .fr {
  font-size: 16px;
}
.container .news-each:nth-of-type(3n) {
  border-right: 0;
}
.container .news-each:nth-of-type(n+4) {
  border-bottom: 0;
}
.container .news-each .ctime {
  font-size: 14px;
}
.container .news .readmore-btns {
  align-self: center;
}
.container .news .readmore-btns a {
  display: inline-block;
  width: 252.85px;
  padding-top: 26px;
  padding-bottom: 31.85px;
}
.container .rank {
  margin-bottom: 155px;
}
.container .rank .main-title {
  margin-bottom: 56px;
}
.container .rank-wrapper {
  display: flex;
  padding-left: 75px;
  flex-wrap: wrap;
  font-size: 10px;
  font-size: 0.5208333333vw;
}
.container .rank-each {
  height: 53.9em;
  width: 46.3em;
  margin-right: 14px;
  position: relative;
  overflow: hidden;
  margin-bottom: 110px;
  min-width: 390px;
  min-height: 454px;
}
.container .rank-each:last-of-type {
  margin-right: 0;
}
.container .rank-each-content {
  height: 100%;
  width: 100%;
  position: relative;
  opacity: 0;
  transition: all ease 1s;
}
.container .rank-each-content .inside-box {
  height: 100%;
  position: relative;
  z-index: 1;
}
.container .rank-each-content .inside-box .rank-list {
  padding-right: 40px;
}
.container .rank-each-content .outside-box {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  padding-top: 29px;
}
.container .rank-each-content .outside-box .logo {
  margin-right: 30px;
}
.container .rank-each-content .outside-box .logo-parisen {
  max-width: 125px;
}
.container .rank-each-content .outside-box .logo-ibpm {
  max-width: 89px;
}
.container .rank-each-content .outside-box .logo-financial {
  background: white;
  padding: 2.67px;
}
.container .rank-each-content .outside-box .logo:last-of-type {
  margin-right: 0;
}
.container .rank-each::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.container .rank-each:hover {
  overflow: unset;
}
.container .rank-each:hover .rank-each-content {
  opacity: 1;
}
.container .rank-each .year {
  display: none;
}
.container .rank .progress {
  height: 100%;
  position: absolute;
  left: 26px;
}
.container .rank .progress .line {
  height: calc(100% - 50.78px);
  width: 1px;
  display: block;
  margin: auto;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}
.container .rank .progress .circle {
  height: 23px;
  width: 25.78px;
  background: rgba(255, 255, 255, 0.33);
  position: relative;
  display: block;
  border-radius: 50%;
}
.container .rank .progress .circle::after {
  content: "";
  display: block;
  width: 9px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.container .rank-list {
  position: absolute;
  bottom: 55px;
  left: 59px;
}
.container .rank-list > li {
  margin-bottom: 6px;
}
.container .rank-number {
  font-family: "Noto Sans TC";
  font-style: italic;
  font-weight: 600;
  text-indent: -0.5625rem;
  margin-bottom: 10px;
}
.container .rank-number .mark {
  font-size: 1.25rem;
}
.container .rank-number .number {
  font-size: 1.875rem;
}
.container .rank-name {
  font-family: "Noto Sans TC";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4375rem;
}
.container .rank-1 .rank-each-content {
  background: url("../images/index/index_interantional_2021_bg.jpg");
}
.container .rank-1::after {
  background: url(../images/index/index_interantional_2021.svg) no-repeat center/29rem 33.6875rem;
  background-size: 100% 100%;
}
.container .rank-2 .rank-each-content {
  background: url("../images/index/index_interantional_2020_bg.jpg");
}
.container .rank-2::after {
  background: url(../images/index/index_interantional_2020.svg) no-repeat center/29rem 33.6875rem;
  background-size: 100% 100%;
}
.container .rank-3 .rank-each-content {
  background: url("../images/index/index_interantional_2019_bg.jpg");
}
.container .rank-3::after {
  background: url(../images/index/index_interantional_2019.svg) no-repeat center/29rem 33.6875rem;
  background-size: 100% 100%;
}
.container .contact {
  display: flex;
  max-width: 1469px;
  margin-right: 60px;
}
.container .contact .main-title {
  margin-right: 8.8020833333vw;
  margin-bottom: 56px;
}
.container .contact-form {
  display: flex;
  flex: 1;
}
.container .contact-form label {
  border: 1px solid #fff;
  margin-bottom: 10px;
}
.container .contact-form label span {
  font-family: "Poppins", "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  min-width: 100px;
  letter-spacing: -0.01em;
}
.container .contact-form label input {
  color: #fff;
  flex: 1;
  max-width: calc(100% - 100px);
  font-size: 16px;
}
.container .contact-form label textarea {
  color: #fff;
  font-size: 16px;
  width: 100%;
  letter-spacing: -0.01em;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.container .contact-form label textarea::-webkit-scrollbar-track {
  background-color: transparent;
}
.container .contact-form label textarea::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.container .contact-form label textarea::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.container .contact-form label textarea::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
.container .contact-form .contact-input label {
  display: flex;
  padding: 13px 15px;
}
.container .contact-form .contact-textarea label {
  padding: 15px;
  height: 184px;
}
.container .contact-form .contact-textarea span {
  display: block;
  margin-bottom: 15px;
}
.container .contact-form .contact-textarea textarea {
  height: calc(100% - 39px);
}
.container .contact-form .input-box {
  flex: 1;
  max-width: 697px;
  margin-right: 10.2604166667vw;
  margin-bottom: 40px;
}
.container .contact-form .err-msg {
  font-family: "Poppins", "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: right;
  color: #ff5555;
  margin-bottom: 10px;
  display: none;
}
.container .contact-form .err label {
  border-color: #ff5555;
}
.container .contact-form .err .err-msg {
  display: block;
}
.container .contact .send {
  align-self: center;
}
.container .contact .send .btn {
  width: 100%;
  text-align: left;
  padding-top: 29px;
  padding-bottom: 28.85px;
  width: 147.85px;
}

.fb-msg-icon-box {
  height: 118px;
  width: 120px;
  position: fixed;
  bottom: 14.5vh;
  right: 4.68vw;
  cursor: pointer;
  z-index: 997;
}

.mask {
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}
.mask .alert {
  width: 25.9375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 500;
}
.mask .alert .ret {
  display: none;
  position: relative;
}
.mask .alert .ret .close-btn {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
}
.mask .alert .ret .close-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/index/close.svg) no-repeat center/cover;
  top: 50%;
}
.mask .alert .msg-box {
  line-height: 1.4375rem;
  font-size: 1rem;
  padding-top: 3.125rem;
  padding-bottom: 2.5rem;
}
.mask .alert .btn-box {
  line-height: 2.4375rem;
  font-size: 1.125rem;
}
.mask .alert .btn-box a {
  border: 1px solid #fff;
  display: inline-block;
  padding: 0 1.5rem;
}

@media screen and (max-width: 1550px) {
  .container .rank-wrapper {
    padding-left: 0;
  }
}
@media screen and (max-width: 1440px) {
  .container .section {
    margin-left: 30px;
  }
  .container .score-data li .score-number {
    font-size: 7.5rem;
  }
  .container .news-content {
    margin-right: 0;
  }
  .container .news-wrapper {
    transform: translateX(0);
    display: block;
  }
  .container .news-wrapper .readmore-btns {
    text-align: right;
    max-width: 1251px;
  }
  .container .contact {
    flex-wrap: wrap;
    display: block;
  }
  .container .contact .main-title {
    margin-right: 0;
  }
}
@media screen and (max-width: 1300px) {
  .container .rank {
    margin-bottom: 87px;
  }
  .container .rank-wrapper {
    padding-left: 0;
  }
  .container .rank-each {
    overflow: unset;
    height: auto;
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
    min-width: unset;
    min-height: unset;
  }
  .container .rank-each-content {
    opacity: 1;
    background: none !important;
    margin-bottom: 23px;
    height: auto;
  }
  .container .rank-each-content .inside-box {
    height: auto;
  }
  .container .rank-each-content .outside-box {
    display: none;
  }
  .container .rank-each::after {
    display: none;
  }
  .container .rank-each .year {
    display: block;
    font-family: "Noto Sans TC";
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 6.5px;
    margin-left: 17px;
  }
  .container .rank .progress {
    left: 30px;
  }
  .container .rank .progress .line {
    background: white;
    height: 100%;
  }
  .container .rank-list {
    position: static;
    padding-right: 0 !important;
  }
  .container .rank-list > li {
    margin-bottom: 9px;
    margin-left: 60px;
  }
  .container .rank-list > li .rank-number {
    text-indent: 0;
    line-height: 27px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .container .score-data {
    flex-wrap: wrap;
  }
  .container .score-data li {
    flex-basis: 50%;
    border: 0;
  }
  .container .score-data li:nth-of-type(2n - 1) {
    border-right: 1px solid #fff;
  }
  .container .score-desc {
    margin: auto;
  }
  .container .score-desc-content {
    margin: auto;
  }
  .container .score .icon-box {
    margin: 12.8vw auto 0;
  }
  .container .news-each {
    flex-basis: 50%;
  }
  .container .news-each:nth-of-type(3n) {
    border-right: 1px solid #fff;
  }
  .container .news-each:nth-of-type(n+4) {
    border-bottom: 1px solid #fff;
  }
  .container .news-each:nth-of-type(2n) {
    border-right: none;
  }
  .container .news-each:nth-of-type(n+5) {
    border-bottom: none;
  }
}
@media screen and (max-width: 992px) {
  .container .news-wrapper {
    display: block;
  }
  .container .contact-form {
    display: block;
  }
  .container .contact-form .input-box {
    margin-right: 0;
  }
  .container .contact-form .send {
    text-align: right;
    max-width: 697px;
  }
}
@media screen and (max-width: 768px) {
  .container .top {
    overflow: unset;
  }
  .container .top .title {
    font-family: Roboto, "Noto Sans TC";
    font-size: 50px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 147px 0 150px 19px;
  }
  .container .top .title .sm, .container .top .title .md {
    display: none;
  }
  .container .top .title .business {
    margin-top: 0;
    padding-left: 0;
    line-height: 59px;
  }
  .container .top .title .business span:nth-of-type(2) {
    margin: 0;
  }
  .container .top .title .mob-subtitle {
    display: block;
    padding-top: 21.56px;
    margin-top: 16.44px;
    position: relative;
    font-family: Poppins, "Noto Sans TC";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0em;
  }
  .container .top .title .mob-subtitle p:nth-of-type(2) {
    font-size: 35px;
    line-height: 41px;
    font-weight: 900;
  }
  .container .top .title .mob-subtitle::before {
    content: "";
    display: block;
    width: 26.87px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .container .top .ribbons {
    margin-bottom: 44px;
    font-family: Poppins, "Noto Sans TC";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-align: left;
  }
  .container .top .logo-circle {
    display: none;
  }
  .container .score {
    padding: 0 20px 75px 33px;
  }
  .container .score-data {
    display: block;
    border: 0;
    margin: 0 0 50px;
  }
  .container .score-data li {
    padding: 0;
  }
  .container .score-data li:nth-of-type(2n - 1) {
    border-right: 0;
  }
  .container .score-data li .title > p:first-of-type {
    text-indent: 0;
  }
  .container .score-data li .title .number {
    font-size: 16px;
  }
  .container .score-data li .title .zh, .container .score-data li .title .en {
    font-size: 14px;
  }
  .container .score-data li .score-number {
    font-size: 40px;
    top: 0;
    right: 0;
    min-width: 82px;
    text-align: center;
  }
  .container .score-data li .score-number .unit {
    font-size: 20px;
  }
  .container .score-desc-content {
    padding: 0;
  }
  .container .score-desc-content::before, .container .score-desc-content::after {
    display: none;
  }
  .container .score-desc-content .main-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .container .score-desc-content .sub-title {
    font-size: 16px;
    max-width: 215px;
    margin-bottom: 25px;
    letter-spacing: 0.03em;
    line-height: 23px;
  }
  .container .score-desc-content .content {
    font-size: 14px;
  }
  .container .score .icon-box {
    margin: 69px auto 0 15px;
  }
  .container .score .icon-box .icon {
    max-width: 114px;
    margin-right: 37px;
    margin-bottom: 34px;
  }
  .container .score .icon-box .icon::after {
    background-size: 100%;
  }
  .container .score .house-photo {
    max-width: 263px;
  }
  .container .section {
    margin-left: 0;
    margin-right: 45px;
  }
  .container .news {
    margin: 0 23px 7px 45px;
  }
  .container .news .main-title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .container .news-content {
    display: block;
    margin-right: 0;
  }
  .container .news-each {
    line-height: 21px;
    border: 0 !important;
    padding: 0 0 10px 1px;
  }
  .container .news-each .content {
    margin-bottom: 10px;
  }
  .container .news-each .zh {
    font-size: 16px;
  }
  .container .news-each .fr {
    font-size: 14px;
  }
  .container .news-each .ctime {
    text-align: right;
    font-size: 12px;
  }
  .container .news .readmore-btns {
    display: none;
  }
  .container .rank {
    margin-bottom: 87px;
  }
  .container .rank .main-title {
    font-size: 18px;
    line-height: 26px;
    padding-left: 45px;
    margin-bottom: 38px;
  }
  .container .rank-wrapper {
    padding-left: 0;
  }
  .container .rank-each {
    overflow: unset;
    height: auto;
    width: 100%;
    margin-bottom: 0;
    min-width: unset;
    min-height: unset;
  }
  .container .rank-each-content {
    opacity: 1;
    background: none !important;
    margin-bottom: 14.14px;
    height: auto;
  }
  .container .rank-each-content .inside-box {
    height: auto;
  }
  .container .rank-each-content .outside-box {
    display: none;
  }
  .container .rank-each::after {
    display: none;
  }
  .container .rank-each .year {
    display: block;
    font-family: "Noto Sans TC";
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 6.5px;
    margin-left: 17px;
  }
  .container .rank .progress {
    left: 30px;
  }
  .container .rank .progress .line {
    background: white;
    height: 100%;
  }
  .container .rank .progress .circle {
    height: 14.14px;
    width: 15.85px;
  }
  .container .rank .progress .circle::after {
    width: 5.51px;
    height: 4.92px;
  }
  .container .rank-list {
    position: static;
  }
  .container .rank-list > li {
    margin-bottom: 9px;
    margin-left: 46px;
  }
  .container .rank-list > li .rank-number {
    text-indent: 0;
    line-height: 27px;
    margin-bottom: 0;
  }
  .container .rank-list > li .rank-number .mark {
    font-size: 14px;
  }
  .container .rank-list > li .rank-number .number {
    font-size: 20px;
  }
  .container .rank-list > li .rank-name {
    font-size: 14px;
    line-height: 20px;
  }
  .container .contact {
    margin: 0 29px 76px 35px;
  }
  .container .contact .main-title {
    display: none;
  }
  .fb-msg-icon-box {
    top: 519px;
    right: 27px;
    width: 62px;
    height: 61px;
  }
}
@media screen and (max-width: 380px) {
  .container .top .title {
    font-size: 40px;
  }
  .container .top .title .mob-subtitle {
    font-size: 14px;
    line-height: 1.2;
  }
  .container .top .title .mob-subtitle p:nth-of-type(2) {
    font-size: 25px;
    line-height: 1.2;
  }
}/*# sourceMappingURL=index.css.map */