


/* @font-face {
  font-family: 'wrfh';
  src: url('/font/wrfh.woff2') format('woff2'),
       url('/font/wrfh.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
          'Microsoft JhengHei',     /* Windows 繁体中文（香港、台湾） */
          'PingFang TC',            /* macOS 繁体中文 */
          'Heiti TC',               /* macOS 旧版本繁体中文 */
          'PMingLiU',               /* 旧系统繁体中文 */
          'Source Han Sans TC',     /* 思源黑体 繁体版 */
          'PingFang SC',            /* macOS 简体中文 */
          'Microsoft YaHei',        /* Windows 简体中文 */
          'SimSun',                 /* 宋体（大陆简体） */
          'Source Han Sans SC',     /* 思源黑体 简体版 */
          Arial, Helvetica, sans-serif;
}

body {
  max-width: 100vw;
  width: 100vw;
  overflow-x: hidden;
  font-size: max(13px, 1rem);
  color: #333;
  --themeColor: #002B4F; /* 主题色 */
  --activeColor: #e7283b;
  /* --bs-table-bg: #000; */
  --bs-primary: #002B4F;
  --bs-primary-rgb: #002B4F;
  --bs-dropdown-link-active-bg: #002B4F;
  --headerHeight: 94px;
}

/* 取消搜索框自带图标 */
input[type="search"] {
  -webkit-appearance: none;
}

input::-webkit-search-cancel-button {
  display: none;
}

input[type=text],
input[type=number],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
input[type=text] {
  border: none;
  outline: 0;
}

input:disabled {
  background-color: transparent;
}

button {
  border: none;
  outline: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

::-moz-placeholder {
  color: #C6C6C6;
}

::-webkit-input-placeholder {
  color: #C6C6C6;
}

:-ms-input-placeholder {
  color: #C6C6C6;
}

.omit-1 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.omit-2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.omit-3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.omit-5 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.omit-6 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}

.omit-7 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
}

.full {
  width: 100%;
  height: 100%;
}

.must {
  position: relative;
}

.must::before {
  content: '*';
  position: absolute;
  right: 100%;
  color: red;
}

/* 清除浮动 */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

/* 上箭头 */
.arrow-top {
  border: 0.1em solid currentColor;
  width: 0.5em;
  height: 0.5em;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: translateY(50%) rotate(-135deg);
}

/* 下箭头 */
.arrow-bottom {
  border: 0.1em solid currentColor;
  width: 0.5em;
  height: 0.5em;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: translateY(-50%) rotate(45deg);
}

/* 左箭头 */
.arrow-left {
  display: inline-block;
  border: 0.1em solid currentColor;
  width: 0.5em;
  height: 0.5em;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(135deg);
}

/* 右箭头 */
.arrow-right {
  display: inline-block;
  border: 0.1em solid currentColor;
  width: 0.5em;
  height: 0.5em;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: translateX(-50%) rotate(-45deg);
}

.table-scroll{
  max-width: 100%;
  overflow-x: auto;
}
.t-center{
  text-align: center;
}
.t-align-center{
  vertical-align: middle;
}

.themeColor{
  color: var(--themeColor) !important;
}
.themeBg{
  background-color: var(--themeColor) !important;
}
.activeColor{
  color: var(--activeColor) !important;
}

.sticky{
  position: sticky;
  top: var(--headerHeight);
  z-index: 50;
  background-color: #fff;
}

/*定义滚动条高宽及背景
高宽分别对应横竖滚动条的尺寸*/
/* ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: rgba(0,0,0,.1);
} */

/*定义滚动条轨道
内阴影+圆角*/
::-webkit-scrollbar-track {
  border-radius: 1rem;
  background-color: #F5F5F5;
}

/*定义滑块
内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b3b3b3;
}
::selection{
  color: #fff;
  background-color: var(--activeColor);
}
.container{
  margin: 0 auto;
}
.header{
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 970;
  transition: all 0.5s;
  background-color: transparent;
}
.header-wrapper{
  padding: 12px 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  height: var(--headerHeight);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-navigation-mobile{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background-color: #fff;
  color: var(--themeColor);
}
.header .close{
  position: relative;
  cursor: pointer;
}
.header .close::before{
  content: '';
  display: block;
  position: absolute;
  right: 0;
  width: 28px;
  background-color: var(--themeColor);
  height: 3px;
  border-radius: 3px;
  transform: rotateZ(-45deg);
  transform-origin: center center;
}
.header .close::after{
  content: '';
  display: block;
  position: absolute;
  right: 0;
  width: 28px;
  background-color: var(--themeColor);
  height: 3px;
  border-radius: 3px;
  transform: rotateZ(45deg);
  transform-origin: center center;
}
.header-wrapper .logo{
  width: 150px;
  height: auto;
}
.header .header-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-wrapper .viewMore{
  display: none;
  width: 30px;
}
.header-wrapper .viewMore > div{
  width: 100%;
  height: 2px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
}
.header-wrapper .viewMore > div + div{
  margin-top: 5px;
}
.header-wrapper .utils{
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
.header-wrapper .utils> div + div{
  margin-left: 35px;
}
.header-wrapper .utils> div:not(.lang-switch):hover{
  color: var(--activeColor);
}
.header-wrapper .utils .lang-switch{
  word-spacing: 3px;
}
.header-wrapper .utils .lang-switch span:hover{
  color: var(--activeColor);
}
.header-wrapper .utils .member-login{
  padding: 10px 14px;
  border-radius: 16px;
  background-color: var(--themeColor);
  display: flex;
  align-items: center;
  line-height: 1;
  color: #fff;
}
.header-wrapper .utils .member-login img{
  width: 15px;
  height: auto;
  margin-right: 4px;
}
.header-wrapper .navbar-nav{
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-top: 15px;
  font-size: 18px;
}
.header-wrapper .navbar-nav .nav-item{
  padding: 0 15px 12px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  position: relative;
}
.header-wrapper .navbar-nav .navTitle{
  position: relative;
}
.header-wrapper .navbar-nav .navTitle::after{
  content: '';
  display: block;
  position: absolute;
  width: 0px;
  bottom: -12px;
  left: 50%;
  height: 3px;
  background-color: var(--activeColor);
  border-radius: 3px;
  transition: width 0.5s;
  transform: translateX(-50%);
}
.header-wrapper .navbar-nav .nav-item:hover .navTitle::after{
  width: 100%;
}
.header-wrapper .navbar-nav .nav-item .arrow-bottom{
  margin-left: 4px;
  color: var(--activeColor);
  margin-top: 5px;
}
.header-wrapper .navbar-nav .nav-item:hover .navMenu{
  display: flex;
}
.navMenu{
  display: none;
  position: fixed;
  top: 93px;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 500;
  background-color: #fff;
  padding: 36px 30px 40px;
}
.navMenu .left{
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.navMenu .left a{
  width: 70%;
  padding: 15px 0;
  border-bottom: 1px solid #E5E5E5;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--themeColor);
}
.navMenu .left a .arrow-right{
  color: #CCCCCC;
  margin-left: 10px;
}
.navMenu .left a:hover, .navMenu .left a:hover .arrow-right{
  color: var(--activeColor);
}
.navMenu .right{
  flex: 1;
  border-left: 1px solid var(--themeColor);
  margin-left: 40px;
  padding-left: 40px;
  display: flex;
}
.navMenu .right .showImage{
  object-fit: contain;
  max-width: 100%;
  height: auto;
}
.header-navigation-mobile{
  display: none;
}
.header-navigation-content{
  padding: 0 15px;
}
.header-navigation-mobile .lang-switch{
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}
.header-navigation-mobile .utils-item{
  font-size: 14px;
  margin-top: 12px;
}
.header-navigation-mobile .navbar-nav{
  margin-top: 16px;
}
.header-navigation-mobile .navbar-nav a{
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #C0C5CA;
  padding: 12px 0;
}
.header-navigation-mobile .navbar-nav a .arrow-right{
  color: var(--activeColor);
  font-size: 18px;
}
.header-navigation-mobile .navbar-nav a:last-child{
  border-bottom: 1px solid #C0C5CA;
}

.header-navigation-mobile .member-group{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.header-navigation-mobile .member-group > div{
  padding: 8px 16px;
  border-radius: 20px;
  background-color: var(--themeColor);
  display: flex;
  align-items: center;
  line-height: 1;
  color: #fff;
  width: fit-content;
  font-size: 16px;
}
.header-navigation-mobile .member-group > div img{
  width: 20px;
  margin-right: 8px;
}

.pagination{
  display: flex;
  align-items: center;
  gap: 3px;
  color: #072B5A;
}
.pagination >span{
  font-size: 22px;
  cursor: pointer;
}
.pagination .pageNum-list{
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
  margin-bottom: 0;
  padding: 0 8px;
}
.pagination .pageNum-list > li{
  width: 25px;
  height: 25px;
  border-radius: 10px;
  border: 1px solid #072B5A;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}
.pagination .pageNum-list > li.active{
  background-color: #072B5A;
  color: #fff;
}

.footer{
  background-color: var(--themeColor);
}
.footer-info{
  padding: 3rem 0 1.5rem;
  width: 80%;
  margin: 0 auto;
}
.footer-info .search-box{
  margin-left: auto;
  width: fit-content;
  display: flex;
  align-items: center;
}
.footer-info .search-box .form-control{
  border-radius: 1.6rem;
  font-size: 16px;
}
.footer-info .search-box .btn{
  border-radius: 20px;
  margin-left: 10px;
  width: fit-content;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
}
.footer-info .search-box .btn img{
  width: 22px;
  height: 22px;
  margin-right: 2px;
}
.footer-company{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: max(13px, 1rem);
  margin-top: 12px;
}
.footer-company .right{
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-company .faseIcon{
  width: max(50px, 5rem);
  height: max(50px, 5rem);
  cursor: pointer;
}
.footer-company .contact-box{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
  gap:15px 3rem;
}
.footer-filings{
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  font-size: max(13px, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
}


.page-container{
  min-height: 100vh;
}
.mask{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.headerPanel{
  position: relative;
  height: auto;
  width: 100%;
}
.headerImage{
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
}
.headerText{
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  padding: 2.5rem;
  border-left: 1px solid var(--activeColor);
}
.headerTitle{
  font-size: max(35px, 3.87rem);
  font-weight: bold;
  line-height: 1;
}
.headerSubTitle{
  margin-top: 2rem;
  font-size: max(24px, 3rem);
  line-height: 1;
}
.imageFull{
  width: 100%;
  height: auto;
}
/* 轮播图选择点 */
.swiper-pagination-bullet-active{
  background-color: var(--activeColor);
}

.form-check-input:checked{
  background-color: var(--activeColor);
  border-color: var(--activeColor);
}
.form-check-input:focus{
  border-color: #d66b76;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(161, 21, 35, 0.25);
}

.table.nowrap>*>*{
  white-space: nowrap;
}
/* 富文本内容 */
.HtmlContent{
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.HtmlContent img{
  width: 100%;
  height: auto;
}
.range{
  margin-top: max(24px, 3rem);
  margin-bottom: max(24px, 3rem);
}
.HtmlContent .table-responsive{
  margin-top: 1.2rem;
}
.HtmlContent .table thead th,
.HtmlContent .table tbody td{
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}
.HtmlContent .table-dark{
  --bs-table-striped-bg: #0D2434;
}
.HtmlContent .table-dark th{
  background-color: var(--themeColor);
}
.HtmlContent .table-light{
  --bs-table-bg: transparent;
  color: var(--themeColor);
}
.HtmlContent .table-light thead{
  background-color: var(--themeColor);
  color: #fff;
}
.HtmlContent ul li{
  font-size: inherit;
  line-height: inherit;
}
.HtmlContent ul li::marker{
  color: var(--activeColor);
}
.HtmlContent .imageText:after {
  content: '';
  display: table;
  clear: both;
}
.HtmlContent .imageText .imageLeft{
  float: left;
  margin-right: 10px;
}
.HtmlContent .imageText .imageRight{
  float: right;
  margin-left: 10px;
}
.HtmlContent .imageText .imageLeft, .HtmlContent .imageText .imageRight{
  width: max(180px, 24rem);
  height: auto;
  margin-bottom: 10px;
}
.HtmlContent .mark{
  display: inline-block;
  background-color: var(--themeColor);
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 21px;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  margin-right: 6px;
}
.table-responsive + .table-responsive{
  margin-top: 16px;
}
.subTitle{
  font-size: max(18px, 1.3rem);
  line-height: 1;
  font-weight: 800;
  color: #163C57;
  margin-bottom: max(12px, 1.3rem);
}

.title{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: max(20px, 2rem);
  font-weight: bold;
  margin-bottom: max(20px, 2rem);
  line-height: 1;
}
.title span {
  color: var(--themeColor);
  padding-bottom: max(10px, 1rem);
  border-bottom: 1px solid var(--activeColor);
}
.title img{
  width: max(18px, 1.5rem);
  height: auto;
  object-fit: contain;
}

.bgRed{
  background-color: #BE202E !important;
}

.bgDarkRed{
  background-color: #910E19 !important;
}

.inp-date-select{
  width: 280px;
  box-shadow: 0 0 6px #eee;
  border: 1px solid #eee;
  position: absolute;
  z-index: 50;
  background-color: #fff;
  border-radius: 4px;
}
.inp-date-body{
  padding: 10px;
}
.inp-date-calendar>.zabuto-calendar>:not(caption)>*>*{
  padding: 4px 0;
  font-weight: 600;
  font-family: Source Han Sans SC, PingFangSC-Regular, PingFang SC, 'Arial', 'Helvetica', 'sans-serif';
  color: #6c6c6c;
  font-size: 14px;
  text-align: center;
}
.inp-date-calendar>.zabuto-calendar .zabuto-calendar__day,
.inp-date-calendar>.zabuto-calendar .zabuto-calendar__day--today{
  border-radius: 15px;
  cursor: pointer;
}
.inp-date-calendar>.zabuto-calendar .zabuto-calendar__day:hover,
.inp-date-calendar>.zabuto-calendar .zabuto-calendar__day--today:hover,
.inp-date-calendar>.zabuto-calendar td.selected{
  background-color: var(--activeColor);
  color: #fff;
}
.inp-date-calendar>.zabuto-calendar .zabuto-calendar__day--today{
  background-color: rgba(231, 40, 59, 0.5);
  color: #fff;
}
.inp-date-calendar .zabuto-calendar__days-of-week{
  font-style: italic;
}
.inp-date-calendar .zabuto-calendar__days-of-week th{
  width: 36px;
}
.inp-date-calendar .zabuto-calendar__days-of-week>th:first-child{
  color: var(--activeColor);
}
.inp-date-calendar .zabuto-calendar__navigation{
  /* display: none !important; */
}
.inp-date-calendar .zabuto-calendar__navigation .arrow-left,
.inp-date-calendar .zabuto-calendar__navigation .arrow-right{
  font-size: 18px;
}
.inp-date-header {
  display: flex;
  border-bottom: 1px solid #eee;
  color: #666;
}
.inp-date-header>div{
  flex: 1;
  padding: 12px 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #eee;
  font-family: PingFangSC-Regular, PingFang SC, 'Arial', 'Helvetica', 'sans-serif';
  font-weight: 600;
  cursor: pointer;
}
.inp-date-header>div:hover{
  color: var(--activeColor);
}


@media screen and (max-width:1200px){
  .header-wrapper{
    padding: 10px 15px 0;
  }
  .header-wrapper .logo{
    width: 120px;
    height: auto;
  }
  .header-wrapper .navbar-nav{
    font-size: 16px;
  }
}
@media screen and (max-width:980px) {
  body{
    --headerHeight:67px;
  }
  .header-wrapper{
    padding: 0 15px ;
  }
  .header-wrapper .header-right{
    display: none;
  }
  .header-wrapper .viewMore{
    display: block;
  }
}
@media screen and (max-width:768px){
  body{
    --headerHeight:57px;
  }
  .header-wrapper .logo{
    width: 100px;
  }
  .footer-info{
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  .footer-info .search-box{
    margin: 0;
  }
  .footer-company{
    flex-direction: column-reverse;
    margin-top: 24px;
  }
  .footer-company .left{
    margin-top: 40px;
    font-size: 12px;
  }
  .footer-company .left img{
    width: 24px;
    height: 24px;
  }
  .footer-company .contact-box{
    justify-content: space-between;
    flex-direction: column;
    gap: 10px 10px;
  }
  .footer-company .contact-box > div{
    width: 100%;
  }
  .footer-filings{
    padding: 12px 5px;
  }
  .table>:not(caption)>*>*{
    padding: 4px;
  }
  .headerText{
    left: 15px;
    top: 65%;
  }
  .headerSubTitle{
    margin-top: 15px;
  }
  .HtmlContent .imageText .imageLeft, .HtmlContent .imageText .imageRight{
    float: none;
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
