/* 轮播图片样式 */
.carousel-item img {
	width: 100%;
}

/* 轮播标题和描述样式 */
.carousel-caption {
		padding: 20px 20px 100px;
		text-align: left;
}

/* 页面标题 */
.page-title {
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -0.02em;
	text-align: center;
	color: #181D27;
	margin: 3rem 0 2rem;
}

/* 新闻卡片 */
.news-card-list div:first-child .news-card .news-img{
	height: 100%;
}
.news-card {
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
	height: 100%;
}
.news-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.news-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.news-content {
	padding: 1.2rem;
}
.news-date {
	font-size: 0.9rem;
	color: #007bff;
	margin-bottom: 0.5rem;
}
.news-title {
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	line-height: 1.5;
	margin-bottom: 1rem;
	height: 4.5rem; 
	overflow: hidden;
}



@media (max-width: 768px) {
	.news-img, .news-card-list div:first-child .news-card .news-img {
		height: 150px;
	}
	.news-title {
		height: auto;
	}
}
.business-link {
	font-size: 0.9rem;
	color: #0086C9;
	cursor: pointer;
}
.business-main .business-link::after {
    display: inline-block;
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background: url(../image/business/arrow-up-right.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
}
.business-link:hover {
	color: #0086C9;
}

/* 核心业务 */
.business-card {
		height: 100%;
		text-align: left;
		position: relative;
		text-decoration: none;

}
.business-card:hover {
	text-decoration: none;
}
.business-main {
		padding: 60px 15px 15px;
		background-color: #f5f5f5;
		min-height: 182px;
		height: auto;
		box-sizing: border-box;
		border-radius: 8px;
		margin-top: -40px;
}
.business-card .business-card-img {
		height: 200px;
		border-radius: 1rem;
		width: 92%;
		left: 4%;
		position: relative;
		overflow: hidden;
}
.business-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.business-card-img:hover img{
	transform: scale(1.2);
}
.business-title {
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 8px;
		color: #181D27;
}
.business-desc {
		font-size: 16px;
		color: #666;
		margin-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.business-card .business-card-img {
		height: 200px;
	}
	.business-main {
		height: auto;
		min-height: 182px;
		padding: 52px 15px 20px;
		box-sizing: border-box;
	}
	.business-title,
	.business-desc {
		word-break: break-word;
		overflow-wrap: anywhere;
	}
		
		.carousel-item {
				height: auto;
		}
		
}

/* 实时股价 */
.stock-card {
		color: #fff;
		border-radius: .5rem;
		overflow: hidden;
}
.stock-code-box {
		width: 32%;
		box-sizing: border-box;
		padding: 32px;
		text-align: center;
		background: #1F55A9;
		text-align: left;
}
.stock-code-box .fs-0 {
	font-size: 3rem;
	line-height: 1;
}
.stock-price-box {
		width: 32%;
		box-sizing: border-box;
		padding: 32px;
		text-align: center;
		position: relative;
		background: #174A97;
}
.stock-price-box-inner {
	justify-content: space-between;
}
.stock-price {
		font-size: 3rem;
		font-weight: bold;
	    line-height: 1;
}
.stock-price .arrow-up,.stock-price .arrow-down {
	display: inline-block;
	vertical-align: middle;
	width: 3rem;
	height: 3rem;
	background: url(../image/home/arrow-down.png) no-repeat;
	background-size: 100% 100%;
}
.stock-price .arrow-up {
    transform: rotate(180deg);
}
.stock-change {
		font-size: 1.5rem;
		color: #fff;
		padding-top: 1rem;
}
.stock-change span {
	display: block;
}
.stock-time {
		font-size: 1rem;
		text-align: left;
}
.stock-info-box {
		width: 36%;
		box-sizing: border-box;
		padding: 24px 26px;
		font-size: 0.8rem;
		background: #123F85;
}
.stock-info-row {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: 12px;
		row-gap: 4px;
}
.stock-info-row span {
		min-width: 0;
		line-height: 1.35;
		white-space: normal;
		overflow-wrap: anywhere;
}
.stock-info-row:last-child span:nth-child(3),
.stock-info-row:last-child span:nth-child(4) {
		font-size: 0.72rem;
		line-height: 1.3;
}
.note {
		font-size: 0.8rem;
		color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
		.stock-card {
			display: grid!important;
			height: auto;
		}
		.stock-code-box, .stock-price-box, .stock-info-box {
				width: auto;
				min-width: 0;
		}
		.stock-home-container {
			padding: 0 12px;
		}
		.stock-code-box {
			grid-column: 1 / -1;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 14px 16px;
		}
		.stock-code-box .fs-4 {
			font-size: 0.9rem!important;
		}
		.stock-code-box .fs-0 {
			font-size: 1.5rem;
			margin-top: 0!important;
		}
		.stock-price-box {
			grid-column: 1 / -1;
			padding: 16px;
		}
		.stock-price-box-inner {
			display: grid!important;
			grid-template-columns: minmax(0, 1fr) auto;
			gap: 0.75rem;
			align-items: center;
		}
		.stock-price {
			font-size: 2.25rem;
			white-space: nowrap;
			text-align: left;
		}
		.stock-price .fs-5 {
			font-size: 0.95rem!important;
		}
		.stock-change {
			padding-top: 0;
			font-size: 1rem;
			white-space: nowrap;
		}
		.stock-info-box {
			grid-column: 1 / -1;
			padding: 14px 10px;
			font-size: 0.75rem;
		}
		.stock-info-row {
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 0.2rem;
			text-align: center;
		}
		.stock-info-row span {
			min-width: 0;
			line-height: 1.45;
			overflow-wrap: anywhere;
		}
		.stock-info-row.mb-3 {
			margin-bottom: 0.75rem!important;
		}
		
}

/* 首页移动端首图：使用独立的 16:9 视觉比例，避免被压成二级页横幅高度 */
@media (max-width: 768px) {
	.carousel-container .carousel-inner,
	.carousel-container .carousel-item {
		height: auto;
		aspect-ratio: 16 / 9;
	}
	.carousel-container .carousel-item img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}


   .doc-list {
         border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        overflow: hidden;
      }

      .doc-list__table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
      }
      .doc-list__table th,
      .doc-list__table td {
        padding: 12px 24px;

        text-align: left;
      }
      .doc-list__table th,
      .doc-list__table tr {
        border-bottom: 1px solid #e5e7eb;
      }

      .doc-list__table th {
        background: #FAFAFA;
        font-weight: 400;
        color: #717680;
        text-align: left;
      }

      .doc-list__th--date {
        width: 150px;
        font-weight: 500;
        color: #717680;
        font-size: 16px;
      }

      .doc-list__th--title {
        font-weight: 500;
        color: #717680;
      }

      .doc-list__table .doc-list__th--actions {
        width: 100px;
        text-align: right;
      }

      .doc-list__cell--date {
        font-size: 18px;
        line-height: 26px;
        color: #535862;
      }

      .doc-list__cell--title {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        line-height: 26px;
        color: #181D27;
      }

      .doc-list__icon--pdf {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
      }

      .doc-list__icon--download {
        width: 16px;
        height: 16px;
      }

      .doc-list__table .doc-list__cell--actions {
        text-align: right;
      }

      .doc-list__table a {
        color: inherit;
        text-decoration: none;
      }

      .doc-list__table a:hover {
        text-decoration: none;
		  color:#0086C9;
      }

      /* 业绩发布移动端：长报告名称必须由表格行自动撑开 */
      @media (max-width: 768px) {
        .doc-list__table,
        .doc-list__table tbody,
        .doc-list__table tr,
        .doc-list__table td {
          height: auto !important;
        }

        .doc-list__table tr {
          min-height: 0 !important;
        }

        .doc-list__table td.doc-list__cell--title {
          display: flex !important;
          align-items: flex-start !important;
          min-height: 84px !important;
          padding-top: 14px !important;
          padding-bottom: 14px !important;
          overflow: visible !important;
          line-height: 1.4 !important;
        }

        .doc-list__table td.doc-list__cell--title > a {
          display: block !important;
          height: auto !important;
          min-height: 0 !important;
          flex: 1 1 auto;
          min-width: 0;
          line-height: inherit !important;
        }

        .doc-list__table td.doc-list__cell--title > a > div {
          display: block !important;
          height: auto !important;
          max-height: none !important;
          white-space: normal !important;
          overflow: visible !important;
          overflow-wrap: anywhere;
          word-break: break-word;
        }
      }
.custom-year-select {
  position: relative;
  width: 240px;
}

.custom-year-select-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  height: 40px;
  box-sizing: border-box;
  font-size: 18px;
  color: #333;
  transition: border-color 0.3s ease;
}
.custom-year-select-display:hover {
  border-color: #0086C9;
}

.custom-year-select-display i {
  color: #909399;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.custom-year-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 200px;
  overflow: hidden;
}

.custom-year-select-options {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}

.custom-year-option {
  padding: 8px 14px;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  transition: background-color 0.2s ease;
}

.custom-year-option:hover {
  background-color: #f5f7fa;
}

.custom-year-option.active {
  background-color: #ecf5ff;
  color: #0086C9;
  font-weight: 500;
}
