.container {
  width: 1465px;
  position: relative;
  margin: 0 auto 31px;
  padding: 40px 0 20px;
  background-image: url(../images/finance/bj2.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
}
.tiaotiao{
  width: 1465px;
  height: 12px;
  margin: 0 auto;
  background-color: #d9d9d9;
}
.nekb{
  width: 30%;
  float: left;
  height: 12px;
  background-color: #5386fb;
}
/* 产品卡片样式 */
.product-card {
    display: flex;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    width: 94%;
    margin: 0 auto 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.product-card:hover {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}
/* 产品图片占位 */
.product-image {
  width: 35%;
  background-color: #f0f0f0;
  margin-right: 20px;
  flex-shrink: 0;
  height: 280px;
}
/* 产品信息区域 */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 60px 20px 20px;
}
.pagination a:last-child {
  font-weight: bold;
  font-family: '宋体';
}
/* 产品标题行 */
.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.product-title {
  font-size: 22px;
  font-weight: bold;
  color: #4b4948;
  margin-right: 15px;
}
/* 星级评分 */
.star-rating {
  display: flex;
  align-items: center;
}
.star-rating span {
  color: #727171;
  font-family: "MyCustomFont", sans-serif; 
  margin-left: 5px;
  font-size: 20px;
  font-weight: normal;
}
.star-rating span i{
    color: #f66953;
}
.star {
  color: #f66953;
  margin-right: 2px;
}
/* 产品描述 */
.product-desc {
  font-size: 18px;
  color: #727171;
  font-family: "MyCustomFont", sans-serif; 
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: normal;
}
/* 融资信息 */
.funding-info {
  display: flex;
  gap: 20px;
}
.funding-info span {
  font-size: 18px;
  color: #727171;
  font-family: "MyCustomFont", sans-serif; 
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: normal;
}
.funding-info span font{
  color: #f66953;
}
/* 操作按钮 */
.action-buttons {
  width: 25%;
}
.action-buttons button {
  width: 100%;
}
.view-details-btn {
  background: linear-gradient(to right, #5587fb, #7ba2fc);
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.view-details-btn:hover {
  background-color: #40a9ff;
}
/* 分页控件 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.pagination a {
  color: #666;
  text-decoration: none;
  padding: 8px 12px;
  margin: 0 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pagination a:hover {
  background-color: #f0f0f0;
  color: #1890ff;
}
.pagination a.active {
  background-color: #1890ff;
  color: white;
}
.pagination .ellipsis {
  padding: 0 10px;
  color: #999;
  cursor: default;
}
