html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Helvetica, Arial, "文泉驛正黑", "WenQuanYi Zen Hei", "儷黑 Pro", "LiHei Pro", "微軟正黑體", "Microsoft JhengHei", "新細明體", PMingLiU;
  text-decoration: none;
  list-style: none;
  background-color: #F4F4F4;
  user-select: none;
  font-size: 14pt;
  line-height: 1.4em;
}
html a:-webkit-any-link,
body a:-webkit-any-link {
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}
html .flex-col,
body .flex-col {
  display: flex;
  flex-direction: column;
}
html .flex-row,
body .flex-row {
  display: flex;
  flex-direction: row;
}
/****************共用樣式********************/
.headline {
  font-size: 1.5em;
  font-weight: 700;
  color: #D70029;
  text-align: center;
  margin-bottom: 0.9em;
  line-height: 140%;
}
@media (max-width: 600px) {
  .headline {
    font-size: 1.1em;
    margin-bottom: 1em;
  }
}
.noData {
  opacity: 0 !important;
}
/****************頁首樣式 Header Styles********************/
.header {
  width: 100%;
  height: 138px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  /* 導覽列*/
}
.header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  padding: 0 40px;
  background-color: #ffffff;
}
.header .container-fluid .brand {
  display: flex;
}
.header .container-fluid .brand .logo img {
  height: 47px;
}
.header .container-fluid .lang-switch {
  margin-left: 20px;
  font-size: 1em;
  font-weight: bold;
  color: #898989;
}
.header .container-fluid .menu-button {
  display: none;
}
.header nav {
  height: 60px;
  width: 100%;
  background-color: #FAF9F9;
}
.header nav .container {
  max-width: 1200px;
  margin: 0 auto;
}
.header nav ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0;
}
.header nav ul li {
  position: relative;
  width: 100%;
  text-align: center;
}
.header nav ul li a {
  font-size: 1em;
  font-weight: 700;
  color: #898989;
  padding: 13px 0;
  display: block;
  width: 100%;
  margin-top: 4px;
}
.header nav ul li a:hover {
  color: #D70029;
}
.header nav ul li .dropdown-item {
  position: relative;
  display: inline-block;
}
.header nav ul li .dropdown-icon {
  position: absolute;
  right: 0;
  /* 將圖片定位到右邊 */
  top: 50%;
  /* 垂直置中 */
  transform: translateY(-50%);
  /* 垂直置中 */
  display: none;
}
.header nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 8px;
}
.header nav ul li .dropdown-content a {
  font-size: 0.9em;
  font-weight: 400;
  color: #898989;
  display: block;
  padding: 8px;
}
.header nav ul li .dropdown-content a:hover {
  color: #D70029;
}
.header nav ul li:hover .dropdown-content {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.header nav ul .interval {
  max-width: 0 4px;
  font-weight: bold;
  color: #898989;
}
@media (max-width: 768px) {
  .header {
    height: 68px;
  }
  .header .container-fluid {
    padding: 0 16px 0;
    height: 68px;
    box-shadow: -1px 0px 2px 0px rgba(0, 0, 0, 0.25);
  }
  .header .container-fluid .lang-switch {
    display: none;
  }
  .header .container-fluid .menu-button {
    display: block;
  }
  .header .container-fluid .menu-button img {
    width: 24px;
    height: 24px;
  }
  .header .container-fluid .brand .logo img {
    margin-top: 4px;
    width: 210px;
  }
  .header nav {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    background-color: #ffffff;
    z-index: 999;
    margin-top: 10px;
    overflow-y: auto;
  }
  .header nav.active {
    display: block;
  }
  .header nav ul {
    flex-direction: column;
    padding: 0 16px;
  }
  .header nav ul li {
    text-align: left;
  }
  .header nav ul li a {
    font-size: 0.9em;
    padding: 12px 0;
  }
  .header nav ul li .dropdown-icon {
    display: block;
  }
  .header nav ul li .dropdown-content {
    position: static;
    display: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/ic_mainBg-s.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 8px;
  }
  .header nav ul li .dropdown-content a {
    font-size: 0.9em;
  }
  .header nav ul li.active .dropdown-content {
    display: block;
  }
  .header nav ul .lang-switch-mobile {
    display: block;
    padding: 0 15px;
  }
  .header nav ul .lang-switch {
    display: none;
  }
  .header nav .interval {
    display: none;
  }
}
@media (min-width: 769px) {
  .lang-switch-mobile {
    display: none;
  }
}
/*************中間內容 Main****************************/
#main {
  max-width: 1200px;
  width: 100%;
  margin: 139px auto 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../images/ic_mainBg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #main {
    margin-top: 65px;
    width: 100%;
  }
}
/****About IBF SECURITIES*******/
@media (max-width: 768px) {
  #default {
    padding: 0em 0em 0em;
  }
}
@media (max-width: 768px) {
  #default .content {
    padding: 0;
  }
}
#default .content .homeImg img {
  width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  #default .content .homeImg img {
    font-size: 0;
    width: 100%;
    content: url(../images/ic_home-s.svg);
    box-shadow: 0px 8px 7px 5px rgba(0, 0, 0, 0.25);
  }
}
#default .content .textItem {
  display: none;
}
@media (max-width: 768px) {
  #default .content .textItem {
    display: block;
    padding: 1em;
  }
}
#default .content .textItem .title {
  margin-top: 0.5rem;
  color: #000000;
  font-size: 1.2em;
  font-weight: 700;
}
#default .content .textItem .title .redWord {
  color: #D70029;
}
#default .content .textItem .text {
  margin-top: 1rem;
  color: #898989;
}
#CompanyProfile {
  padding: 40px 80px 120px 80px;
}
@media (max-width: 768px) {
  #CompanyProfile {
    padding: 1em;
  }
}
#CompanyProfile .dot {
  margin: 24px 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  #CompanyProfile .dot img {
    width: 1.5%;
  }
}
#CompanyProfile .container {
  display: flex;
  margin: 0 auto;
  justify-content: flex-end;
  border-radius: 10px;
  padding: 20px;
}
@media (max-width: 768px) {
  #CompanyProfile .container {
    padding: 0;
  }
}
#CompanyProfile .yearsItem {
  display: flex;
  align-items: center;
  width: 234px;
  height: 44px;
  padding: 4px 30px 4px 16px;
  margin-bottom: 36px;
  font-size: 1em;
  font-weight: 700;
  background-color: #ffffff;
  color: #D70029;
  background-image: url(../images/arrowDown.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 768px) {
  #CompanyProfile .yearsItem {
    width: 100%;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.8em;
    padding: 4px 30px 4px 16px;
    border: 0;
  }
}
#CompanyProfile .yearsItem::-ms-expand {
  display: none;
}
#CompanyProfile .yearsItem:hover {
  background-color: #ffffff;
}
#CompanyProfile .yearsItem:focus {
  outline: none;
}
#CompanyProfile .yearsItem > option {
  font-weight: 700;
  padding: 10px;
  height: 50px;
  color: #898989;
}
@media (max-width: 768px) {
  #CompanyProfile .yearsItem > option {
    text-align: center;
  }
}
#CompanyProfile .year {
  border-radius: 20px;
  background: var(--light-pink, linear-gradient(to bottom right, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) bottom right / 50% 50% no-repeat, linear-gradient(to bottom left, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) bottom left / 50% 50% no-repeat, linear-gradient(to top left, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) top left / 50% 50% no-repeat, linear-gradient(to top right, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) top right / 50% 50% no-repeat);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 40px;
}
@media (max-width: 768px) {
  #CompanyProfile .year {
    border-radius: 8px;
    padding: 10px 8px;
    font-size: 16pt;
    margin-bottom: 16px;
    line-height: 24px;
  }
}
#CompanyProfile .contentItem {
  padding: 64px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #CompanyProfile .contentItem {
    border-radius: 15px;
    padding: 32px 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0);
    margin-bottom: 1em;
  }
}
#CompanyProfile .content {
  background-color: #ffffff;
  display: flex;
  padding: 32px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 1em;
}
@media (max-width: 768px) {
  #CompanyProfile .content {
    font-size: 0.8em;
    padding: 0 16px 0 0;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
}
#OrgStructure {
  padding: 40px 80px 120px 80px;
}
@media (max-width: 768px) {
  #OrgStructure {
    display: block;
    padding: 1em;
  }
}
#OrgStructure .container {
  padding: 64px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #OrgStructure .container {
    border-radius: 30px;
    padding: 32px 8px;
  }
}
#OrgStructure .container .OrgStructureImg img {
  width: 100%;
}
#DivisionTasks {
  padding: 40px 80px 120px 80px;
}
@media (max-width: 768px) {
  #DivisionTasks {
    display: block;
    padding: 1em;
  }
}
#DivisionTasks .container .DepartmentGroup {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 32px;
  width: 100%;
}
@media (max-width: 768px) {
  #DivisionTasks .container .DepartmentGroup {
    display: none;
  }
}
#DivisionTasks .container .DepartmentGroup .Department {
  width: 30%;
  padding: 32px 16px;
  background-color: #ffffff;
  border-radius: 10px;
  font-size: 1em;
  font-weight: bold;
  color: #D70029;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #DivisionTasks .container .DepartmentGroup .Department {
    display: none;
  }
}
#DivisionTasks .container .DepartmentGroup .Duties {
  width: 70%;
  padding: 32px 16px;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 1em;
  font-weight: bold;
  color: #D70029;
  text-align: center;
}
@media (max-width: 768px) {
  #DivisionTasks .container .DepartmentGroup .Duties {
    display: none;
  }
}
#DivisionTasks .container .DepartmentContent {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 32px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #DivisionTasks .container .DepartmentContent {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
}
#DivisionTasks .container .DepartmentContent .DepartmentName {
  width: 30%;
  padding: 32px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  font-size: 1em;
  font-weight: bold;
  color: #D70029;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}
#DivisionTasks .container .DepartmentContent .DepartmentName .arrowUp {
  display: none;
}
@media (max-width: 768px) {
  #DivisionTasks .container .DepartmentContent .DepartmentName {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    justify-content: space-between;
    background: #ffffff;
    text-align: left;
    font-size: 0.8em;
    flex-direction: row;
  }
  #DivisionTasks .container .DepartmentContent .DepartmentName .arrowUp {
    display: inline-block;
  }
}
#DivisionTasks .container .DepartmentContent .DepartmentDuties {
  width: 70%;
  padding: 32px 16px;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 1em;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #DivisionTasks .container .DepartmentContent .DepartmentDuties {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding: 0 16px 0 0;
    box-sizing: border-box;
    transition: height 0.5s ease;
  }
}
#DivisionTasks .container .DepartmentContent .DepartmentDuties ul li {
  font-size: 0.8em;
  color: #000000;
  line-height: 140%;
}
#Locations {
  padding: 40px 80px 120px 80px;
}
@media (max-width: 768px) {
  #Locations {
    display: block;
    padding: 1em;
  }
}
#Locations .container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 32px 36px 64px 36px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #Locations .container {
    padding: 0;
    gap: 24px;
    background: none;
    box-shadow: none;
  }
}
#Locations .container .LocationsHeader {
  display: flex;
  width: 100%;
  padding: 8px 0px;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 36px;
}
@media (max-width: 768px) {
  #Locations .container .LocationsHeader {
    justify-content: flex-end;
    gap: 8px;
    display: flex;
  }
}
#Locations .container .LocationsHeader .Text {
  display: flex;
  font-size: 1em;
  font-weight: bold;
  color: #898989;
  padding-top: 12px;
}
@media (max-width: 768px) {
  #Locations .container .LocationsHeader .Text {
    font-size: 0.8em;
  }
}
#Locations .container .LocationsHeader .location-select {
  display: flex;
  width: 234px;
  height: 44px;
  padding: 4px 30px 4px 16px;
  margin-bottom: 48px;
  font-size: 1em;
  font-weight: 700;
  text-align: center;
  background-color: #ffffff;
  color: #D70029;
  background-image: url(../images/arrowDown.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 768px) {
  #Locations .container .LocationsHeader .location-select {
    padding: 4px 30px 4px 16px;
    margin-bottom: 0px;
    border: 0;
    font-size: 0.8em;
  }
}
#Locations .container .LocationsHeader .location-select::-ms-expand {
  display: none;
}
#Locations .container .LocationsHeader .location-select:hover {
  background-color: #ffffff;
}
#Locations .container .LocationsHeader .location-select:focus {
  outline: none;
}
#Locations .container .LocationsHeader .location-select > option {
  font-weight: 700;
  height: 50px;
  line-height: 1.4;
  color: #898989;
}
@media (max-width: 768px) {
  #Locations .container .LocationsHeader .location-select > option {
    text-align: center;
  }
}
#Locations .container .LocationsHeader .List {
  cursor: pointer;
}
#Locations .container .LocationsHeader .List .list1 {
  display: inline-block;
}
#Locations .container .LocationsHeader .List .list2 {
  display: none;
}
@media (max-width: 768px) {
  #Locations .container .LocationsHeader .List {
    display: none;
  }
}
#Locations .container .LocationsGroup {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-direction: row;
  gap: 16px;
  height: 500px;
}
@media (max-width: 768px) {
  #Locations .container .LocationsGroup {
    height: auto;
  }
}
#Locations .container .LocationsGroup .Map {
  height: 484px;
  flex: 1;
  background-color: #F4F4F4;
}
#Locations .container .LocationsGroup .Map iframe {
  border: 0;
}
@media (max-width: 768px) {
  #Locations .container .LocationsGroup .Map {
    display: none;
  }
}
#Locations .container .LocationsGroup .info {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  width: 50%;
}
#Locations .container .LocationsGroup .info #branchInfo {
  display: flex;
  flex-wrap: wrap;
}
#Locations .container .LocationsGroup .info .branch-table {
  width: 100%;
  border-collapse: collapse;
}
#Locations .container .LocationsGroup .info .branch-table th,
#Locations .container .LocationsGroup .info .branch-table td {
  padding: 16px 8px;
  font-size: 18px;
  border: 1px solid #e8eaed;
}
#Locations .container .LocationsGroup .info .branch-table th {
  background: var(--light-pink, linear-gradient(to bottom right, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) bottom right / 50% 50% no-repeat, linear-gradient(to bottom left, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) bottom left / 50% 50% no-repeat, linear-gradient(to top left, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) top left / 50% 50% no-repeat, linear-gradient(to top right, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) top right / 50% 50% no-repeat);
  text-align: center;
}
#Locations .container .LocationsGroup .info .branch-name {
  color: #D70029;
  font-weight: bold;
  text-align: center;
}
#Locations .container .LocationsGroup .info .branch-Tel {
  text-align: center;
}
#Locations .container .LocationsGroup .info .branch {
  cursor: pointer;
  padding: 16px 8px;
  margin-right: 16px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
  margin-bottom: 8px;
}
#Locations .container .LocationsGroup .info .branch:hover {
  background-color: rgba(242, 102, 91, 0.05);
}
#Locations .container .LocationsGroup .info .branch h3 {
  font-size: 20px;
  color: #D70029;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  #Locations .container .LocationsGroup .info .branch {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    background-color: #ffffff;
    border-radius: 10px;
    font-size: 0.8em;
    line-height: 1.4;
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  #Locations .container .LocationsGroup .info .branch:hover {
    background-color: #ffffff !important;
  }
  #Locations .container .LocationsGroup .info .branch h3 {
    font-size: 18px;
  }
}
#Locations .container .LocationsGroup .info .branch p {
  color: #898989;
  font-size: 18px;
  margin: 0;
}
#Locations .container .LocationsGroup .info .branch p:nth-of-type(1) {
  padding-bottom: 8px;
}
#Locations .container .LocationsGroup .hidden {
  display: none;
}
/****IBF Business*******/
#BrokerageGroup,
#ProprietaryTrading,
#FuturesTrading,
#NewProducts,
#FixedIncome,
#CapitalMarkets,
#InternationalFinance,
#DigitalTech {
  padding: 40px 80px 120px 80px;
}
@media (max-width: 768px) {
  #BrokerageGroup,
  #ProprietaryTrading,
  #FuturesTrading,
  #NewProducts,
  #FixedIncome,
  #CapitalMarkets,
  #InternationalFinance,
  #DigitalTech {
    display: block;
    padding: 1em;
  }
}
#BrokerageGroup .content,
#ProprietaryTrading .content,
#FuturesTrading .content,
#NewProducts .content,
#FixedIncome .content,
#CapitalMarkets .content,
#InternationalFinance .content,
#DigitalTech .content {
  padding: 32px ;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#BrokerageGroup .content p,
#ProprietaryTrading .content p,
#FuturesTrading .content p,
#NewProducts .content p,
#FixedIncome .content p,
#CapitalMarkets .content p,
#InternationalFinance .content p,
#DigitalTech .content p {
  font-size: 1em;
}
@media (max-width: 768px) {
  #BrokerageGroup .content p,
  #ProprietaryTrading .content p,
  #FuturesTrading .content p,
  #NewProducts .content p,
  #FixedIncome .content p,
  #CapitalMarkets .content p,
  #InternationalFinance .content p,
  #DigitalTech .content p {
    font-size: 0.8em;
  }
}
@media (max-width: 768px) {
  #BrokerageGroup .content ul li,
  #ProprietaryTrading .content ul li,
  #FuturesTrading .content ul li,
  #NewProducts .content ul li,
  #FixedIncome .content ul li,
  #CapitalMarkets .content ul li,
  #InternationalFinance .content ul li,
  #DigitalTech .content ul li {
    font-size: 0.8em;
  }
}
#BrokerageGroup .content .GrayLine,
#ProprietaryTrading .content .GrayLine,
#FuturesTrading .content .GrayLine,
#NewProducts .content .GrayLine,
#FixedIncome .content .GrayLine,
#CapitalMarkets .content .GrayLine,
#InternationalFinance .content .GrayLine,
#DigitalTech .content .GrayLine {
  display: flex;
  height: 6px;
  background: #898989;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #BrokerageGroup .content .GrayLine,
  #ProprietaryTrading .content .GrayLine,
  #FuturesTrading .content .GrayLine,
  #NewProducts .content .GrayLine,
  #FixedIncome .content .GrayLine,
  #CapitalMarkets .content .GrayLine,
  #InternationalFinance .content .GrayLine,
  #DigitalTech .content .GrayLine {
    margin-bottom: 24px;
    height: 3px;
  }
}
/****Investor Relations *******/
#Financial {
  padding: 40px 80px 120px 80px;
}
@media (max-width: 768px) {
  #Financial {
    display: block;
    padding: 1em;
  }
}
#Financial .container {
  padding: 32px 36px;
  border-radius: 30px;
  background: #F4F4F4;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #Financial .container {
    padding: 32px 8px;
    background: #ffffff30;
    box-sizing: border-box;
  }
}
#Financial .container table {
  border-collapse: collapse;
}
#Financial .container table .row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 768px) {
  #Financial .container table .row {
    gap: 8px;
  }
}
#Financial .container table .row .Title,
#Financial .container table .row .Title-en,
#Financial .container table .row .Title-ch {
    width: 50%;
    font-size: 0.9em;
    color: #898989;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 10px;
    box-sizing: border-box;
    background: var(--light-pink, linear-gradient(to bottom right, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) bottom right / 50% 50% no-repeat, linear-gradient(to bottom left, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) bottom left / 50% 50% no-repeat, linear-gradient(to top left, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) top left / 50% 50% no-repeat, linear-gradient(to top right, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) top right / 50% 50% no-repeat);
}
@media (max-width: 768px) {
    #Financial .container table .row .Title,
    #Financial .container table .row .Title-en,
    #Financial .container table .row .Title-ch {
        font-size: 0.8em;
    }
}
@media (min-width: 600px) {
  #Financial .container table .row {
    /* 隱藏原本的文字內容*/
  }
  #Financial .container table .row .Title-ch::after {
    content: "Chinese Annual Report File";
    right: 34px;
    color: #898989;
    position: relative;
  }
    #Financial .container table .row .Title-en::after {
        content: "English Annual Report File";
        right: 36px;
        color: #898989;
        position: relative;
    }
    #Financial .container table .row .Title-en,
    #Financial .container table .row .Title-ch {
        color: transparent;
    }
}
#Financial .container table .row .cell {
  width: 50%;
  font-size: 1em;
  padding: 8px 16px;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #898989;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  #Financial .container table .row .cell {
    font-size: 0.8em;
    padding: 0;
  }
}
#Financial .container table .row .cell a {
  gap: 40px;
  display: flex;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  color: #898989;
}
@media (max-width: 600px) {
  #Financial .container table .row .cell a {
    gap: 4px;
    padding: 8px 0;
  }
}
#Financial .container table .row .cell a:active {
  opacity: 50%;
}
@media (max-width: 375px) {
  #Financial .container table .row .cell img {
    display: none;
  }
}
#Financial .container table .row .ch,
#Financial .container table .row .en {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#Financial .container table .row .year {
  color: #D70029;
  font-weight: bold;
}
#Annuals {
  padding: 40px 80px 120px 80px;
}
@media (max-width: 768px) {
  #Annuals {
    display: block;
    padding: 1em;
  }
}
@media (max-width: 320px) {
  #Annuals {
    padding: 0.5em;
  }
}
#Annuals .container {
  padding: 32px 36px;
  border-radius: 30px;
  background: #F4F4F4;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 600px) {
  #Annuals .container {
    padding: 32px 8px;
    background: #ffffff30;
    box-sizing: border-box;
  }
}
@media (max-width: 320px) {
  #Annuals .container {
    font-size: 0.8em;
  }
}
#Annuals .container table .row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 600px) {
  #Annuals .container table .row {
    gap: 8px;
  }
}
#Annuals .container table .row .Title,
#Annuals .container table .row .Title-en,
#Annuals .container table .row .Title-ch {
  width: 33.333333%;
  font-size: 1em;
  color: #898989;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  background: var(--light-pink, linear-gradient(to bottom right, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) bottom right / 50% 50% no-repeat, linear-gradient(to bottom left, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) bottom left / 50% 50% no-repeat, linear-gradient(to top left, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) top left / 50% 50% no-repeat, linear-gradient(to top right, rgba(255, 255, 255, 0.05) 0%, rgba(242, 102, 91, 0.05) 50%) top right / 50% 50% no-repeat);
}
@media (max-width: 600px) {
  #Annuals .container table .row .Title,
  #Annuals .container table .row .Title-en,
  #Annuals .container table .row .Title-ch {
    font-size: 0.8em;
  }
}
@media (min-width: 600px) {
  #Annuals .container table .row {
    /* 隱藏原本的文字內容*/
  }
  #Annuals .container table .row .Title-ch::after {
    content: "Chinese Annual Report File";
    right: 36px;
    color: #898989;
    position: relative;
    font-size: 0.9em;
  }
  #Annuals .container table .row .Title-en::after {
    content: "English Annual Report File";
    right: 36px;
    color: #898989;
    position: relative;
    font-size: 0.9em;
  }
  #Annuals .container table .row .Title-ch,
  #Annuals .container table .row .Title-en {
    color: transparent;
  }
}
#Annuals .container table .row .cell {
  width: 33.333333%;
  font-size: 1em;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #898989;
  line-height: 1.2;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  #Annuals .container table .row .cell {
    font-size: 0.8em;
  }
}
#Annuals .container table .row .cell a {
  gap: 40px;
  display: flex;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  color: #898989;
}
@media (max-width: 600px) {
  #Annuals .container table .row .cell a {
    gap: 4px;
    font-size: 0.9em;
  }
}
#Annuals .container table .row .cell a:active {
  opacity: 50%;
}
@media (max-width: 375px) {
  #Annuals .container table .row .cell img {
    display: none;
  }
}
#Annuals .container table .row .ch,
#Annuals .container table .row .en {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#Annuals .container table .row .year {
  color: #D70029;
  font-weight: bold;
}
#CreditRatings {
  padding: 40px 80px 120px 80px;
}
@media (max-width: 768px) {
  #CreditRatings {
    padding: 1em;
  }
}
#CreditRatings .container {
  display: flex;
  flex-direction: column;
  padding: 32px 36px;
  border-radius: 30px;
  background: #F4F4F4;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #CreditRatings .container {
    background: #ffffff30;
  }
}
@media (max-width: 768px) {
  #CreditRatings .container {
    border-radius: 30px;
    padding: 32px 16px;
    box-sizing: border-box;
  }
}
#CreditRatings .container .tableScroll {
  padding: 16px;
}
@media (max-width: 768px) {
  #CreditRatings .container .tableScroll {
    overflow-y: scroll;
    padding: 0 0 20px 0;
  }
}
#CreditRatings .container .tableScroll table {
  margin-right: 20px;
  border-collapse: collapse;
}
#CreditRatings .container .tableScroll table th,
#CreditRatings .container .tableScroll table td {
  text-align: center;
  padding: 8px;
  border: 2px solid #333;
  font-size: 1em;
}
#CreditRatings .container .tableScroll table .subTitle {
  font-weight: bold;
}
#CreditRatings .container .tableScroll table th {
  background-color: #f2f2f2;
}
@media (max-width: 768px) {
  #CreditRatings .container .tableScroll table {
    min-width: 700px;
    font-size: 0.8em;
  }
}
#CreditRatings .container .CreditRatingsNote {
  font-size: 1em;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #898989;
}
@media (max-width: 768px) {
  #CreditRatings .container .CreditRatingsNote {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8em;
    gap: 2px;
    font-weight: 700;
  }
}
#ContactInformation {
  padding: 40px 80px 120px 80px;
  height: calc(100vh - 400px);
}
@media (max-width: 768px) {
  #ContactInformation {
    padding: 1em 1em 5em;
    height: calc(100vh - 400px);
  }
}
#ContactInformation .container {
  display: flex;
  flex-direction: column;
  padding: 32px 36px;
  border-radius: 30px;
  background: #F4F4F4;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #ContactInformation .container {
    background: #ffffff30;
  }
}
#ContactInformation .container .Information {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px;
}
@media (max-width: 768px) {
  #ContactInformation .container .Information {
    padding: 10px;
  }
}
#ContactInformation .container .Information .IBFS-tel,
#ContactInformation .container .Information .IBFS-Address {
  font-size: 1em;
  font-weight: bold;
  color: #000000;
  list-style: none;
}
@media (max-width: 768px) {
  #ContactInformation .container .Information .IBFS-tel,
  #ContactInformation .container .Information .IBFS-Address {
    font-size: 0.8em;
  }
}
#ContactInformation .container .Information .IBFS-tel span,
#ContactInformation .container .Information .IBFS-Address span {
  font-weight: 400 ;
}
#ContactInformation .container .Information .IBFS-tel a,
#ContactInformation .container .Information .IBFS-Address a {
  color: #000000;
}
/*****頁尾 Footer********/
#footer {
  text-align: center;
  background-color: #F4F4F4;
  padding: 1em;
}
@media (max-width: 768px) {
  #footer {
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
#footer .copyright {
  font-size: 20px;
  font-weight: bold;
  color: #898989;
}
@media (max-width: 768px) {
  #footer .copyright {
    font-size: 16px;
    width: 100%;
  }
}
/************************************************中間內容 Main****************************/
