/* 主要样式 */
:root {
  --primary-color: #d61229;
  --text-color: #2c2d36;
  --bg-color: #d61229;
  --border-color: #e5e5e5;
}

/* 字体 */
@font-face {
  font-family: 'Reenie Beanie';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/reeniebeanie/v20/z7NSdR76eDkaJKZJFkkjuvWxXPq1qw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* 导航样式 */
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background-color: var(--bg-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.navbar-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--bg-color) !important;
  top: 0;
  left: 0;
}

.footer-1 {
    background-color: var(--gray-4);
    color: var(--white);
    padding-top: 48px;
    padding-bottom: 48px;
    padding: 0 20px;
}

/* 当Cookie提示显示时，导航栏向下移动 */
.navbar-container.shift-down {
  transform: translateY(40px);
}

/* 移动端导航菜单样式 */
@media screen and (max-width: 991px) {
  .w-nav-menu {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b50e1f 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(214, 18, 41, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .w-nav-menu.w--open {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b50e1f 100%) !important;
  }

  /* 移动端下拉菜单项 */
  .w-nav-menu .dropdown-list,
  .w-nav-menu .w-dropdown-list {
    background: rgba(214, 18, 41, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .w-nav-menu .dropdown-link,
  .w-nav-menu .w-dropdown-link {
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .w-nav-menu .dropdown-link:hover,
  .w-nav-menu .w-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
  }

  /* 移动端导航链接 */
  .w-nav-menu .nav-link {
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .w-nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
  }

  /* 语言切换和Internet Banking按钮 */
  .w-nav-menu .nav-right .w-dropdown-toggle,
  .w-nav-menu .nav-right .dropdown-toggle-6 {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white !important;
  }

  .w-nav-menu .nav-right .w-dropdown-list,
  .w-nav-menu .nav-right .dropdown-list-10 {
    background: rgba(214, 18, 41, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* 下拉菜单样式 */
.dropdown-list {
  background-color: var(--bg-color);
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* 语言切换器样式 */
.wg-element-wrapper {
  position: relative;
}

/* 返回顶部按钮 */
.back-to-top-button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
  transition: opacity 0.3s ease;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 16px;
  z-index: 9999;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-notice-button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cookie-notice-button:hover {
  background-color: #b30f22;
}

.cookie-notice-link {
  color: #fff;
  text-decoration: underline;
}

.rounded-large.shadow-large {
  width: 100%;
}

.blog-main-image {
  width: 100%;
  max-width: 1036px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

@media (max-width: 768px) {
  .cookie-notice-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-notice-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* Hero section spacing to avoid navbar overlap */
.hero-section-3 {
  padding-top: 50px; /* Add padding to account for fixed navbar */
  min-height: 600px;
}

@media (max-width: 768px) {
  .hero-section-3 {
    min-height: auto;
    padding-top: 26px; /* Smaller padding on mobile */
  }
  
  .hero-section-3-container {
    padding-top: 120px;
  }
  
  .homepage-hero-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .text-large {
    font-size: 18px;
  }
}

/* 个人银行业务页面样式 */
.section-hero-1 {
  padding: 160px 0 80px;
  background-color: var(--bg-color);
}

.hero-1-content {
  max-width: 600px;
}

.section {
  padding: 80px 0;
}

.bg-gray-4 {
  background-color: #f8f9fa;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 32px;
  height: 32px;
}

.bg-primary-1 {
  background-color: var(--primary-color);
}

.bg-primary-2 {
  background-color: var(--primary-2);
}

.link-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 16px;
}

.link-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.link-with-arrow:hover .link-arrow {
  transform: translateX(4px);
}

/* 特色服务区域样式 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-light {
  background-color: #f8f9fa;
}

.feature-icon img {
  width: 28px;
  height: 28px;
}

.feature-content h4 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
}

.feature-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* 响应式调整 */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .feature-card {
    padding: 24px;
  }
  
  .feature-content h4 {
    font-size: 18px;
  }
  
  .feature-content p {
    font-size: 14px;
  }
}

/* 个人银行业务页面样式 */
.heading-large {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin: 120px 0 60px;
  text-align: center;
}

/* 卡片网格布局 */
.grid-3-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 链接卡片样式 */
.link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
}

.card-image-wrapper {
  position: relative;
  padding-top: 66.67%; /* 3:2 比例 */
  overflow: hidden;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-link {
  color: var(--primary-color);
  font-size: 16px;
}

/* 两列布局部分 */
.section-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 80px 0;
}

.section-2-col.reverse {
  direction: rtl;
}

.section-2-col.reverse > * {
  direction: ltr;
}

.col-image {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.image-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 24px;
}

.col-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.col-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #666;
}

/* CTA 部分 */
.cta-section {
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.bg-gradient {
  background: linear-gradient(45deg, #d61229, #ff1f3d);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
}

.button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.button.white {
  background: #fff;
  color: var(--primary-color);
}

.button.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* 响应式调整 */
@media (max-width: 991px) {
  .grid-3-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-2-col {
    grid-template-columns: 1fr;
  }
  
  .col-image {
    min-height: 400px;
  }
  
  .col-content {
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .heading-large {
    font-size: 36px;
    margin: 80px 0 40px;
  }
  
  .grid-3-columns {
    grid-template-columns: 1fr;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .col-content h2 {
    font-size: 28px;
  }
}

/*合作伙伴开始*/
.hyt-buddy-hd[data-v-5fbe6e99] {
    margin-bottom: 40px;
    padding-top: 58px;
    position: relative;
    z-index: 2;
}
.hyt-buddy[data-v-5fbe6e99] {
    --tw-bg-opacity: 1;
    background-color: rgba(255,255,255,var(--tw-bg-opacity));
    position: relative;
}
.wrap {
    margin: 0 auto;
    /*width: 1200px;*/
}
.hyt-buddy-hd .hyt-buddy_description[data-v-5fbe6e99], .hyt-buddy-hd .hyt-buddy_title[data-v-5fbe6e99] {
    --tw-text-opacity: 1;
    line-height: 1;
    line-height: 1.375;
    text-align: center;
}
.hyt-buddy-hd .hyt-buddy_title[data-v-5fbe6e99] {
    color: rgba(33,43,54,var(--tw-text-opacity));
    font-size: 38px;
    font-weight: 500;
}
.hyt-buddy-hd .hyt-buddy_description[data-v-5fbe6e99] {
    color: rgba(145,158,171,var(--tw-text-opacity));
    display: block;
    font-size: 16px;
    margin-top: 16px;
}
.hyt-buddy-bd .hyt-buddy-bd-item[data-v-5fbe6e99] {
    align-items: center;
    animation: move-5fbe6e99 30s linear infinite;
    display: flex;
}
.hyt-buddy-bd .hyt-buddy-bd-item2[data-v-5fbe6e99] {
    animation: move-5fbe6e99 26s linear infinite;
}
.hyt-buddy-bd .hyt-buddy-bd-item3[data-v-5fbe6e99] {
    animation: move-5fbe6e99 36s linear infinite;
}
.hyt-buddy-bd img {
    border-style: solid;
    display: block;
    height: auto;
    max-width: 188%;
    vertical-align: middle;
}
/*合作伙伴结束*/

/*资产管理介绍*/
.w980 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.inContent {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.inContentLeft {
    width: 220px;
    float: none;
}

.inContentRight {
    flex: 1;
    min-width: 300px;
    float: none;
    background: #FFF;
}

.inContentRightPic {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.inContentRightPic img {
    width: 100%;
    height: auto;
    display: block;
}

.inContLeftList {
    background: #FFF;
    padding: 0;
}

.inContLeftList ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.inContLeftList ul li {
    width: 100%;
}

.inContLeftPic {
    background: #FFF;
}

.inContLeftPic {
    width: 184px;
    height: 184px;
    overflow: hidden;
    margin-bottom: 13px;
}

.inContLeftPic a.managementPic {
    background: url(../images/listbox05.png) no-repeat center;
}

.inContLeftPic a {
    display: block;
    text-align: center;
    height: 49px;
    padding-top: 135px;
    line-height: 26px;
    line-height: 26px;
    color: var(--primary-color);
    font-size: 18px;
    background-image: url(../images/btn.png);
    background-repeat: no-repeat;
    font-family: "Microsoft YaHei", SimHei;
}

a:link {
    text-decoration: none;
}

.inContLeftList ul li a {
    padding-left: 0;
    text-align: center;
}

.inContLeftList ul li a {
    display: block;
    height: 48px;
    color: #666666;
    font-size: 14px;
    padding-left: 26px;
    align-content: center;
}

.inContLeftList ul li a.on {
    color: #FFF;
    background: url(../images/btn.png) no-repeat -184px top;
}

.inContLeftList ul li a.on, .inContLeftList ul li a:hover {
    background: var(--primary-color);
    color: #fff;
}
.inContLeftList ul li .subList a.cur {
    background: url(../images/icon.png) no-repeat 42px -152px;
    color: var(--primary-color);
}
.subList {
    background: #EDF0F4;
    padding: 6px 0px;
    display: none;
}

.inContLeftList ul li .subList a {
    display: block;
    line-height: 30px;
    height: 30px;
    padding-left: 52px;
    color: #666666;
    font-size: 13px;
    background: url(../images/icon.png) no-repeat 42px -122px;
}

.inContLeftList ul li .subList a:hover {
    background: url(../images/icon.png) no-repeat 42px -152px;
    color: var(--primary-color);
}

.inContLeftList ul li .subList a.cur {
    background: url(../images/icon.png) no-repeat 42px -152px;
    color: var(--primary-color);
}

.proAdvantage {
    padding: 35px 30px;
}

.introductionFourTil {
    padding-top: 66px;
    background: url(../images/introductionFourTil.png) no-repeat center top;
}

.recruitmentTil {
    margin-bottom: 20px;
    padding-top: 19px;
    text-align: center;
    background: url(../images/recruitmentTil.png) no-repeat center top;
    color: #333;
}

.recruitmentTil em {
    padding-bottom: 8px;
    line-height: 22px;
    display: inline-block;
}

.recruitmentTil span {
    display: inline-block;
    line-height: 22px;
    padding-bottom: 7px;
    border-bottom: 1px solid #C1C1C1;
    font-size: 14px;
    color: #333333;
    font-family: "Microsoft YaHei", SimHei;
}

.recruitmentText {
    text-align: center;
    line-height: 24px;
}

.recruitmentText p {
    padding-bottom: 24px;
}

.mb35 {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
}

.introductionFour {
    padding-left: 0;
    margin-top: 30px;
    font-size: 14px;
}

.introductionFourText {
    margin-top: 30px;
    padding-top: 30px;
}

.introductionFourText p.blue {
  color: #4a6a90;
  padding-bottom: 0px;
  font-size: 16px;
}

.pd20 {
    padding: 20px 0px 23px 0px;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* 添加团队展示相关样式 */
.teams {
    padding: 30px;
    display: none; /* 默认隐藏 */
}

.teamsText {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.teamsList {
    margin-top: 40px;
}

.teamsList h6 {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.Investor .name a span {
  font-size: 12px;
  color: #666666;
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}

.teamsList .Investor .name span {
  color: var(--primary-color);
}

.Investor ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Investor li {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 0px;
}

.Investor li:last-child {
    border-bottom: none;
}

.InvestorRight .name {
    margin-bottom: 15px;
}

.InvestorRight .name a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.InvestorRight .name span {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-left: 15px;
}

.InvestorRight .text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.InvestorRight p {
  font-size: 14px;
}

/* 修改公示信息相关样式 */
.stocksThrough {
    padding: 35px;
    display: none;
    background: #fff;
}

.DynamicTop {
    height: 149px;
    border-bottom: 1px dashed #999999;
    margin-bottom: 20px;
}

.DynamicTop .photo {
    width: 211px;
    height: 129px;
    overflow: hidden;
    float: left;
    margin-right: 24px;
    margin-bottom: 0px !important;
}

.DynamicTop .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.DynamicTop .til {
    height: 19px;
    line-height: 19px;
    font-size: 16px;
    overflow: hidden;
    margin-bottom: 0px !important;
}

.DynamicTop .til a {
    color: #333;
    text-decoration: none;
}

.DynamicTop .time {
    line-height: 22px;
    padding: 8px 0;
    color: #999;
    margin-bottom: 0px !important;
}

.DynamicTop .text {
    font-size: 13px;
    line-height: 22px;
    height: 66px;
    overflow: hidden;
    color: #666;
}

.DynamicList ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.DynamicList li {
    line-height: 40px;
    border-bottom: 1px dashed #999999;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
}

.DynamicList li:nth-child(2n+1) {
    background: #F8FCFF;
}

.DynamicList li a {
    font-size: 13px;
    color: #262626;
    text-decoration: none;
    padding-left: 19px;
    background: url(../images/icon.png) no-repeat 10px -219px;
}

.page {
    margin-top: 20px;
    padding: 20px 0;
    text-align: center;
    font-family: "Microsoft YaHei", SimHei;
}

.page a {
    display: inline-block;
    padding: 0 10px;
    height: 27px;
    line-height: 27px;
    border: 1px solid #ddd;
    margin: 0 2px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.page a.on {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.page input {
    width: 57px;
    height: 27px;
    line-height: 27px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
}

.page .go {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    cursor: pointer;
}

/* 添加响应式布局样式 */
@media screen and (max-width: 768px) {
    .w980 {
        padding: 15px;
    }

    .inContent {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .inContentLeft {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 15px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .inContLeftPic {
        width: 184px;
        margin: 0 auto 13px;
        float: none;
    }

    .inContLeftList {
        width: calc(100%); 
        margin: 0 auto;
    }

    .inContentRight {
        width: calc(100% - 30px) !important;  /* 减去左右各15px的页边距 */
        float: none !important;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }

    .inContentRightPic img {
        width: 100%;
        height: auto;
    }

    /* 调整内容区域的padding */
    .proAdvantage,
    .teams,
    .stocksThrough {
        padding: 20px 15px;
    }

    /* 调整动态列表的布局 */
    .DynamicTop {
        height: auto;
        padding-bottom: 15px;
    }

    .DynamicTop .photo {
        width: 100%;
        height: auto;
        float: none;
        margin-right: 0;
        margin-bottom: 15px !important;
    }

    .DynamicTop .photo img {
        width: 100%;
        height: auto;
    }

    /* 调整分页在移动端的显示 */
    .page {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .page a,
    .page input {
        margin: 2px;
    }
}

/* Weglot 语言切换样式 */
.weglot-container {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .weglot-container {
        margin: 10px 0;
    }
}

/* 公告弹窗样式 */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.announcement-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    margin: 100px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.announcement-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.close-btn {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.announcement-body {
    padding: 20px;
}

.announcement-body h4 {
    margin: 0 0 10px;
    color: #333;
    font-size: 16px;
}

.announcement-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.announcement-text {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.announcement-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.no-more-today {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.confirm-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.confirm-btn:hover {
    background: #cf3144;
}

@media screen and (max-width: 768px) {
    .announcement-content {
        width: 95%;
        margin: 50px auto;
    }
}

.boxed {
  font-size: 13px;
}

/* 华夏基金内容样式 */
.content-body {
  max-width: 1280px;
  min-width: 1000px;
  margin: 0 auto;
}
.content-body div, .content-body span {
  box-sizing: content-box;
}
.content1 {
  min-width: 1280px;
  padding-top: 69px;
  padding-bottom: 69px;
  width: 100%;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
  letter-spacing: 0;
}
.content2 {
  padding-top: 69px;
  padding-bottom: 69px;
  width: 100%;
  min-width: 1280px;
  background: #ffffff;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
  letter-spacing: 0;
}
.gsgl .b1 {
  position: relative;
  margin: 0 auto;
}
.gsgl .b1 .title {
  margin-bottom: 36px;
  text-align: center;
}
.gsgl .b1 video {
  border-radius: 10px;
  width: 990px;
  margin: 0 auto;
  display: block;
}

.gsgl .b1 .video-container {
  width: 990px;
  height: 557px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.gsgl .b1 .video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 视频预览样式 */
.gsgl .b1 .video-preview {
  width: 990px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.gsgl .b1 .video-thumbnail {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.gsgl .b1 .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gsgl .b1 .video-thumbnail:hover img {
  transform: scale(1.05);
}

.gsgl .b1 .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gsgl .b1 .video-thumbnail:hover .video-overlay {
  opacity: 1;
}

.gsgl .b1 .play-button {
  transition: transform 0.3s ease;
}

.gsgl .b1 .video-thumbnail:hover .play-button {
  transform: scale(1.1);
}

.gsgl .b1 .video-info {
  padding: 30px;
  text-align: center;
}

.gsgl .b1 .video-info h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.gsgl .b1 .video-info p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.gsgl .b1 .video-link-btn {
  display: inline-block;
  background: var(--primary-1);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.gsgl .b1 .video-link-btn:hover {
  background: #b30f22;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(214, 18, 41, 0.3);
}
.gsgl .b1 .blank {
  width: 100%;
  /* background: #ffffff; */
  height: 120px;
}
.gsgl .b2 {
  width: 100%;
  max-width: 1920px;
  min-width: 1300px;
  height: auto;
  overflow: hidden;
}
.gsgl .b2 .b2-1 {
  float: right;
}

.gsgl .b2 .b2-1 .left {
  float: right;
  padding-top: 88px;
  height: auto;
  width: 553px;
  padding-right: 40px;
}

.gsgl .b2 .b2-1 .right {
  width: 620px;
  float: right;
}

.gsgl .b2 .b2-1 .left .text {
  margin-bottom: 40px;
}

.gsgl .b2 .b2-1 .left .text .title {
  font-size: 36px;
  text-align: left;
  line-height: 45px;
  color: #2a2d41;
}

.gsgl .b2 .b2-1 .left .text .num {
  display: inline-block;
  color: #333333;
  font-size: 27px;
  line-height: 28px;
}

.gsgl .b2 .b2-1 .left .text .num .big {
  font-size: 59px;
}

.gsgl .b2 .b2-1 .left .text .num .info {
  font-size: 15px;
  color: #333333;
}

.gsgl .b2 .b2-1 .left .text .source {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 18px;
}

.blue {
  color: #2a2d41;
  font-weight: bold;
  font-size: 18px;
}

.red {
  color: #bf0008;
  font-size: 18px;
  font-weight: bold;
}

.gsgl .b3 {
  width: 100%;
  max-width: 1920px;
  min-width: 1280px;
  height: 566px;
  overflow: hidden;
}
.gsgl .b3 .content {
  width: 1280px;
  height: 566px;
  margin: 0 auto;
  position: absolute;
  right: 0;
}
.gsgl .b3 .content .bg {
  left: 0;
  top: 0;
  position: absolute;
}
.gsgl .b3 .content .chart {
  position: absolute;
  width: 788px;
  height: 318px;
  left: 38px;
  top: 135px;
  z-index: 1;
  overflow: hidden;
}
.block .bg {
  display: block;
  margin: 0 auto;
}

.gsgl .b4 {
  width: 100%;
  max-width: 1920px;
  min-width: 1280px;
  height: 720px;
  overflow: hidden;
}

.gsgl .b4 .content {
  width: 1280px;
  height: 712px;
  margin: 0 auto;
  position: absolute;
  right: 0;
}

.gsgl .b4 .content .bg {
  left: 0;
  top: 0;
  position: absolute;
}

.gsgl .b4 .content .chart {
  position: absolute;
  width: 658px;
  height: 358px;
  left: 38px;
  top: 135px;
  z-index: 1;
  overflow: hidden;
}

.gsgl .b5 .con {
  padding: 70px 55px;
}

.gsgl .b5 .con .cl {
  width: 648px;
  float: left;
}

.gsgl .b5 .con .cl .abtit {
  font-size: 26px;
  color: #474747;
  padding-bottom: 5px;
}

.gsgl .b5 .con .cl .ap {
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  border-bottom: 1px solid #e9e9e9;
  color: #474747;
}

.gsgl .b5 .con .cl .ap .apt {
  font-size: 14px;
  width: 200px;
  float: left;
  color: #333333;
  font-weight: 600;
}

.gsgl .b5 .con .cl .ap .app {
  color: #333333;
  margin-left: 200px;
}
.gsgl .b5 .con .cmap {
  margin-left: 702px;
  height: 492px;
}
.gsgl .b5 .con .cmap img {
  width: 100%;
}
.gsgl .b3 .content .arrow {
  width: 313px;
  position: absolute;
  left: 320px;
  top: 170px;
  z-index: 100;
}

@media screen and (max-width: 1600px) {
  .gsgl .b2 .b2-1 .right {
    width: calc(100% - 680px);
  }
  .gsgl .b2 .b2-1 .right img {
    width: 100% !important;
    object-fit: cover;
  }
  .gsgl .b3 .content {
    width: 100%;
  }
  .gsgl .b3 .content .bg {
    height: 100%;
  }
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    /* 重置基础容器 */
    .content-body {
        max-width: 100%;
        min-width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    /* 重置内容区域 */
    .content1,
    .content2 {
        min-width: 100%;
        width: 100%;
        padding: 20px 0;
    }

    /* 视频区域 */
    .gsgl .b1 {
        width: 100%;
        /* padding: 0 15px; */
    }
    
    .gsgl .b1 video {
        width: 100%;
        max-width: 100%;
    }

    .gsgl .b1 .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .gsgl .b1 .video-preview {
        width: 100%;
        margin: 0 auto;
    }

    .gsgl .b1 .video-thumbnail {
        height: 250px;
    }

    .gsgl .b1 .video-info {
        padding: 20px 15px;
    }

    .gsgl .b1 .video-info h4 {
        font-size: 20px;
    }

    .gsgl .b1 .video-info p {
        font-size: 14px;
    }

    .gsgl .b1 .video-link-btn {
        font-size: 14px;
        padding: 10px 25px;
    }

    /* 资产规模区域 */
    .gsgl .b2 {
        width: 100%;
        min-width: 100%;
        height: auto;
    }

    .gsgl .b2 .b2-1 {
        width: 100%;
        padding: 0 15px;
    }

    .gsgl .b2 .b2-1 .left,
    .gsgl .b2 .b2-1 .right {
        width: 100%;
        float: none;
        padding: 15px;
        height: auto;
    }

    .gsgl .b2 .b2-1 .right img {
        width: 100%;
        height: auto;
    }

    /* 图表区域优化 */
    .gsgl .b3,
    .gsgl .b4 {
        width: 100%;
        min-width: 100%;
        height: auto;
        position: relative;
        overflow: visible;
        margin-bottom: 20px;
    }

    .gsgl .b3 .content,
    .gsgl .b4 .content {
        width: 100%;
        height: auto;
        position: relative;
        right: auto;
        padding: 15px;
        box-sizing: border-box;
    }

    .gsgl .b3 .content .bg,
    .gsgl .b4 .content .bg {
        width: 100%;
        height: auto;
        position: relative;
        display: none; /* 在移动端隐藏背景图 */
    }

    .gsgl .b3 .content .chart,
    .gsgl .b4 .content .chart {
        width: 100%;
        height: 300px;
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
        padding: 10px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    /* 隐藏箭头图标 */
    .gsgl .b3 .content .arrow {
        display: none;
    }

    /* 调整图表文字大小 */
    .gsgl .b3 .content .chart text,
    .gsgl .b4 .content .chart text {
        font-size: 12px !important;
    }

    /* 调整图表图例位置 */
    .gsgl .b3 .content .chart .echarts-legend,
    .gsgl .b4 .content .chart .echarts-legend {
        padding: 10px 0;
        text-align: center;
    }

    /* 公司基本情况 */
    .gsgl .b5 .con {
        padding: 20px 15px;
    }

    .gsgl .b5 .con .cl {
        width: 100%;
        float: none;
    }

    .gsgl .b5 .con .cmap {
        width: 100%;
        margin: 20px 0 0 0;
        height: auto;
    }

    /* 文字调整 */
    .gsgl .b2 .b2-1 .left .text {
        margin-bottom: 20px;
    }

    .gsgl .b2 .b2-1 .left .text .title {
        font-size: 20px;
        line-height: 1.4;
    }

    .gsgl .b2 .b2-1 .left .text .num {
        width: 100% !important;
        padding-right: 0 !important;
    }

    /* 数字显示调整 */
    .num {
        margin-bottom: 15px;
    }

    .num .big {
        font-size: 36px;
    }

    .num .info {
        font-size: 14px;
    }
}

/* 平板设备优化 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .content-body {
        max-width: 100%;
        min-width: 100%;
        overflow-x: hidden;
    }

    .content1,
    .content2 {
        min-width: 100%;
    }

    .gsgl .b2,
    .gsgl .b3,
    .gsgl .b4 {
        min-width: 100%;
    }

    .gsgl .b2 .b2-1,
    .gsgl .b3 .content,
    .gsgl .b4 .content {
        width: 100%;
        padding: 0 20px;
    }

    .gsgl .b3 .content .chart,
    .gsgl .b4 .content .chart {
        width: 90%;
        height: 400px;
        margin: 0 auto;
        position: relative;
        left: 0;
    }
}

.article-grid-heading p{
    font-size: 16px;
}

/* 视频列表布局 */
.articles-grid-thirds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.article-grid-item video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.article-grid-item iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .articles-grid-thirds {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 平板设备适配 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .articles-grid-thirds {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* 会议预览样式 */
.meeting-preview {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.meeting-preview img.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meeting-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.meeting-play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .meeting-play-btn {
        width: 40px;
        height: 40px;
    }
    
    .play-icon {
        width: 16px;
        height: 16px;
    }
}

/* 会议模态框样式 */
.meeting-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.meeting-modal-content {
    position: relative;
    margin: auto;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
}

.meeting-modal-close {
    position: absolute;
    right: -40px;
    top: -40px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.meeting-modal-close:hover {
    color: #ccc;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .meeting-modal-content {
        width: 95%;
        height: 60%;
    }
    
    .meeting-modal-close {
        right: 0;
        top: -40px;
    }
}

.meeting-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.meeting-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.meeting-date {
    font-size: 14px;
    margin-bottom: 5px;
}

.meeting-duration {
    font-size: 12px;
    opacity: 0.8;
}

.meeting-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.meeting-time {
    color: #fff;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 文档列表两列显示 */
.articles-small-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;  /* 抵消子元素的padding */
}

.articles-small-grid .w-dyn-item {
    width: calc(48% - 20px);  /* 两列布局，考虑间距 */
    margin: 10px;
    box-sizing: border-box;
}

.article-small {
    height: 100%;
    background: #fff;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.article-small:hover {
    transform: translateY(-2px);
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .articles-small-grid .w-dyn-item {
        width: 100%;  /* 移动端单列显示 */
    }
}

/* 公司资质证书图片布局 */
.cert-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 0 20px;
}

.cert-image-item {
    text-align: center;
}

.cert-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cert-image:hover {
    transform: scale(1.05);
}

.cert-title {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

/* 政策建议书样式 */
.policy-document {
    padding: 60px 0;
}

.policy-document .container {
    padding: 0 20px;
}

.policy-document .boxed {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.policy-document h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-1);
}

.policy-document .text-large {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.policy-document ul {
    padding-left: 0;
    list-style: none;
}

.policy-document ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.policy-document ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-1);
    font-weight: bold;
    font-size: 18px;
}

.main-container {
  max-width: 1280px;
  margin-top: 18px;
  padding-left: 0;
  padding-right: 0;
}

.footer_links {
  position: relative;
  margin-bottom: 17px;
}
.footer_links .footer_logo {
  width: 285px;
  display: block;
}
.footer_links img {
  width: auto;
  height: 50px;
}
.footer_links ul {
  width: 650px;
  position: absolute;
  top: 3px;
  left: 285px;
}
.footer_links li {
  float: left;
  width: 100px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.footer_copyright {
  text-align: center;
  line-height: 22px;
  border-top: 1px solid silver;
  padding: 17px 0 20px;
  color: #333;
  font-size: 14px;
}
.icp {
  padding: 5px 0;
}
.icp .icon_anquan, .icp .icon_wangan {
  background: url(../images/footer.png) no-repeat;
  display: inline-block;
  text-indent: -9999px;
  overflow: hidden;
  vertical-align: middle;
  margin: -7px 0 0;
}
.icp .icon_wangan {
  background-position: -25px -50px;
  height: 33px;
  width: 25px;
}
.icp .icon_anquan {
  background-position: 0 -50px;
  height: 30px;
  width: 25px;
  margin: -5px 0 0;
}
.icp a, .pub_email a {
  color: #333;
  margin-left: 10px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .cert-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0;
    }
    
    .cert-title {
        font-size: 14px;
    }

    .policy-document {
        padding: 40px 0;
    }

    .policy-document .boxed {
        padding: 24px;
        margin-bottom: 24px;
    }

    .policy-document h4 {
        font-size: 18px;
    }

    .policy-document .text-large {
        font-size: 14px;
        line-height: 1.6;
    }

    .policy-document .grid-halves {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* 移动端sectionft添加边距 */
    .sectionft.bg-gray-4 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .sectionft.bg-gray-4 .main-container {
        padding-left: 0;
        padding-right: 0;
    }
}