.journal-page {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.journal-container {
  /* background: url(https://lanhu-oss-proxy.lanhuapp.com/585fde090903214ea3f8ccb62842a2b4)
    100% no-repeat; */
  /* background-size: 100% 100%; */
  width: 100%;
}

.journal-content {
  position: relative;
  width: 100%;
  /* background: url(https://lanhu-oss-proxy.lanhuapp.com/04bd1a037654e806c7e96615ea5aea4a)
    100% no-repeat;
  background-size: 100% 100%; */
}

.filter-section {
  box-shadow: 5px 9px 21px 0px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 5px;
  padding: 20px 0;
  /* margin-top: 85px; */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.filter-row-container{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-row,
.filter-row-2 {
  display: flex;
  /* align-items: center; */
  gap: 15px;
  width: 100%;
  padding: 10px 40px;
}

.filter-label {
  color: rgba(91, 91, 91, 1);
  font-size: 14px;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  line-height: 1.9;
  min-width: 70px;
}

.filter-options-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.filter-option {
  background-color: transparent;
  border-radius: 25px;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(91, 91, 91, 1);
  font-size: 13px;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
}

.filter-option:hover {
  color: rgba(45, 80, 226, 1);
}

.filter-option.active {
  background-color: rgba(45, 80, 226, 1);
  color: rgba(255, 255, 255, 1);
}

.journal-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 40px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.journal-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 40px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.journal-card {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 100%;
  min-height: 160px;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 20px;
}

.journal-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.journal-cover-box {
  width: 150px;
  flex-shrink: 0;
  /* border-right: 1px solid #eee; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
  margin-left: 3px;
}

.journal-cover-box img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.journal-right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journal-header-row {
  padding: 15px 20px;
  /* border-bottom: 1px solid #eee; */
}

.journal-title-main {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  font-family: AlibabaPuHuiTi_2_75_SemiBold;
}

.journal-title-sub {
  font-size: 14px;
  color: #666;
  font-family: AlibabaPuHuiTi_2_55_Regular;
}

.journal-details-grid {
  display: flex;
  /* border-bottom: 1px solid #eee; */
  padding: 0 10px;
}

.detail-item {
  flex: 1;
  padding: 15px 10px;
  /* border-right: 1px solid #eee; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.detail-item:last-child {
  border-right: none;
}

.detail-item:nth-child(1) { flex: 1.2; }
.detail-item:nth-child(2) { flex: 0.8; }
.detail-item:nth-child(3) { flex: 0.8; }
.detail-item:nth-child(4) { flex: 0.8; }
.detail-item:nth-child(5) { flex: 1.5; }
/*.detail-item:nth-child(6) { flex: 1.5; margin-left: -1.3vw;}*/
.detail-item:nth-child(6) { flex: 1.5; margin-left: -5vw;}

.detail-label {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  font-family: AlibabaPuHuiTi_2_75_SemiBold;
}

.detail-value {
  font-size: 13px;
  color: #666;
  font-family: ArialMT, AlibabaPuHuiTi_2_55_Regular;
  word-break: break-word;
}

.journal-footer-row {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.footer-left {
  flex: 1;
  padding: 10px 20px;
  /* border-right: 1px solid #eee; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-label {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  font-family: AlibabaPuHuiTi_2_75_SemiBold;
}

.footer-value {
  font-size: 13px;
  color: #666;
  font-family: ArialMT, AlibabaPuHuiTi_2_55_Regular;
}

.footer-right {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-btn {
  color: #d93025;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  font-family: AlibabaPuHuiTi_2_75_SemiBold;
  transition: all 0.3s;
}

.consult-btn:hover {
  opacity: 0.8;
}

.jc-action-btn-new {
    text-align: center;
    font-size: max(12px, 1vw);
    font-weight: 500;
    cursor: pointer;
    color: #2D50E2;
    /* padding: max(8px, 0.67vw) max(30px, 2.5vw); */
    padding: max(6px, -0.33vw) max(24px, 0.5vw);
    border: 1px solid #2D50E2;
    border-radius: 50px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.jc-action-btn-new:hover {
    background-color: #2D50E2;
    color: #fff;
}

.journal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.journal-title {
  color: rgba(91, 91, 91, 1);
  font-size: 18px;
  font-family: AlibabaPuHuiTi_2_75_SemiBold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
  transition: color 0.3s ease;
  cursor: pointer;
}

.journal-title:hover {
  color: rgba(45, 80, 226, 1);
}

.journal-id-box {
  border-radius: 6px;
  height: 32px;
  border: 2px solid rgba(239, 239, 239, 1);
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.journal-id-label {
  color: rgba(91, 91, 91, 1);
  font-size: 12px;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
}

.journal-id-value {
  color: rgba(91, 91, 91, 1);
  font-size: 12px;
  font-family: ArialMT;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
}

.journal-detail-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 120px;
  padding: 0 10px;
}

.detail-label {
  color: rgba(91, 91, 91, 1);
  font-size: 14px;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
  margin-bottom: 8px;
}

.detail-value {
  color: rgba(91, 91, 91, 1);
  font-size: 14px;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: left;
  white-space: normal;
  line-height: 1.5;
  word-break: break-word;
}

.journal-stats-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 150px;
  padding: 0 10px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.stat-row:last-child {
  margin-bottom: 0;
}

.stat-label {
  color: rgba(91, 91, 91, 1);
  font-size: 13px;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
}

.stat-value {
  color: rgba(91, 91, 91, 1);
  font-size: 14px;
  font-family: ArialMT;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
}

.journal-price-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 100px;
  padding: 0 10px;
}

.price-label {
  color: rgba(91, 91, 91, 1);
  font-size: 13px;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
  margin-bottom: 8px;
}

.price-text {
  font-size: 0;
  font-family: AlibabaPuHuiTi_2_75_SemiBold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
}

.price-symbol {
  color: rgba(230, 55, 55, 1);
  font-size: 14px;
  font-family: AlibabaPuHuiTi_2_75_SemiBold;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
}

.price-value {
  color: rgba(230, 55, 55, 1);
  font-size: 18px;
  font-family: Arial-BoldMT;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
}

.pagination {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 40px;
  padding-bottom: 40px;
}

.pagination-prev,
.pagination-next {
  color: rgba(91, 91, 91, 1);
  font-size: 14px;
  font-family: ArialMT;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  line-height: 1.8;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.pagination-prev:hover,
.pagination-next:hover {
  color: rgba(45, 80, 226, 1);
  background-color: rgba(45, 80, 226, 0.1);
}

.pagination-number {
  color: rgba(91, 91, 91, 1);
  font-size: 14px;
  font-family: ArialMT;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  line-height: 1.8;
  cursor: pointer;
  padding: 5px 12px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.pagination-number:hover {
  color: rgba(45, 80, 226, 1);
  background-color: rgba(45, 80, 226, 0.1);
}

.pagination-number.active {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(45, 80, 226, 1);
  font-weight: bold;
}

.pagination-spacer {
  display: none;
}

.page-title {
  background-color: rgba(45, 80, 226, 1);
  height: 60px;
  width: 100%;
  position: absolute;
  left: 0;
  top: max(78px, 6.5vw);
  display: flex;
  align-items: center;
}

.page-title-text {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 60px;
  display: block;
  width: 100%;
  margin-left: max(336px, 28vw);
}

.page-title-bg {
  position: absolute;
  left: max(84px, 7vw);
  top: max(78px, 6.5vw);
  width: max(64.8px, 5.4vw);
  height: 80px;
}

.jc-bottom-image {
  position: absolute;
  left: max(121.92px, 10.16vw);
  top: max(57.32px, 4.66vw);
  width: max(100.08px, 8.34vw);
  height: max(72.6px, 6.05vw);
}

.jc-breadcrumb {
  background-color: rgba(45, 80, 226, 1);
  width: max(1200px, 100vw);
  height: max(50.04px, 4.17vw);
  /* margin-top: max(22.56px, 1.88vw); */
}

.jc-breadcrumb-title {
  width: max(35.04px, 2.92vw);
  height: max(17.52px, 1.46vw);
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: max(18.72px, 1.56vw);
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: max(18.84px, 1.57vw);
  margin: max(16.8px, 1.4vw) 0 0 max(244.32px, 20.36vw);
}

.jc-breadcrumb-path {
  width: max(364.44px, 30.37vw);
  height: max(13.2px, 1.1vw);
  overflow-wrap: break-word;
  font-size: 0;
  font-family: AlibabaPuHuiTi_2_45_Light;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: max(13.8px, 1.15vw);
  margin: max(21.84px, 1.82vw) max(123.12px, 10.26vw) 0 max(433.08px, 36.09vw);
}

.jc-breadcrumb-text {
  width: max(364.44px, 30.37vw);
  height: max(13.2px, 1.1vw);
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: max(13.68px, 1.14vw);
  font-family: AlibabaPuHuiTi_2_45_Light;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: max(13.8px, 1.15vw);
}

.jc-breadcrumb-link {
  width: max(364.44px, 30.37vw);
  height: max(13.2px, 1.1vw);
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: max(11.76px, 0.98vw);
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: max(11.88px, 0.99vw);
}

.jc-breadcrumb-separator {
  width: max(364.44px, 30.37vw);
  height: max(13.2px, 1.1vw);
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: max(11.76px, 0.98vw);
  font-family: AlibabaPuHuiTi_2_55_Regular;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: max(11.88px, 0.99vw);
}

.jc-breadcrumb-current {
  width: max(364.44px, 30.37vw);
  height: max(13.2px, 1.1vw);
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: max(11.76px, 0.98vw);
  font-family: ArialMT;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: max(11.88px, 0.99vw);
}

/* 气泡提示样式 */
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: help;
  color: #ff9800;
}

.tooltip-container::before {
  content: attr(data-tooltip);
  visibility: hidden;
  width: 600px;
  height: auto;
  background-color: #ebeef2;
  color: rgba(91, 91, 91, 1);
  text-align: left;
  border-radius: 6px;
  padding: 15px;
  position: absolute;
  z-index: 1000;
  top: 50%;
  right: 100%;
  margin-top: -150px;
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  line-height: 1.6;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: normal;
  box-sizing: border-box;
  pointer-events: none;
}



.tooltip-container:hover::before {
  visibility: visible;
  opacity: 1;
}

/* 确保在小屏幕上也能正常显示 */
@media (max-width: 768px) {
  .tooltip-container::before {
    width: 300px;
    height: 250px;
  }
}