* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    background-color: #F6F6F6;
    color: #333;
}
.bg-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1316px;
    background: linear-gradient( 180deg, #E0E8FA 0%, #F5F8FD 55%, #F6F6F6 100%);
}
.bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 435px;
    background: linear-gradient( 0, #E0E8FA 0%, #F5F8FD 55%, #F6F6F6 100%);
}
.home-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 0;
}
.module-title, .module-title-small {
    font-weight: bold;
    font-size: 16px;
    color: #191919;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
}
.module-title-small {
    font-size: 14px;
}
.module-title::before, .module-title-small::before {
    content: '';
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 3px;
    height: 14px;
    background: #337DFF;
}
.section-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    margin: 0;
    z-index: 1;
    line-height: 22px;
}
.section-title::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 8px;
    background: linear-gradient( 270deg, #FFFFFF 0%, #D1E3FF 100%);
}

.view-more {
    font-size: 12px;
    color: #7F7F7F;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 2px;
    line-height: 1; /* 设置行高为1，减少文字垂直空间，让视觉中心更准确 */
}
.view-more img {
    display: block; /* 移除图片的基线对齐问题 */
    width: 10px;
    height: 10px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; /* 防止图标被压缩 */
}
.view-more:hover {
    color: #337DFF;
}
.module-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 16px;
}
/* 左侧导航菜单 */
.module-01 .left-nav-menu {
    width: 244px;
    height: 370px;
    background: linear-gradient( 180deg, #F5F9FE 0%, #FFFFFF 100%);
    border-radius: 8px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 16px 20px;
}
.module-01 .nav-category {
    margin-bottom: 10px;
}
.module-01 .nav-category-title,
.module-01 .nav-category-title h3 {
    font-weight: 500;
    font-size: 14px;
    color: #191919;
    margin: 0;
    line-height: 28px;
}
.module-01 .nav-category-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    font-weight: 400;
    font-size: 12px;
    color: #7F7F7F;
    cursor: pointer;
    transition: all 0.3s ease;
}
.module-01 .nav-category-items .nav-category-item {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}
.module-01 .nav-category-items .nav-category-item:hover {
    color: #337DFF;
}
/* 中间内容区域 */
.module-01 .center-content {
    width: 675px;
    height: 370px;
    background: #F5F8FD;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
}
.module-01 .center-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 右侧登录/服务面板 */
.module-01 .right-sidebar {
    width: 249px;
    height: 370px;
    background: linear-gradient( 180deg, #EDF2FA 0%, #FFFFFF 100%);
    border-radius: 8px;
    border: 2px solid #fff;
    padding: 30px 0;
}
.module-01 .login-panel {
    height: 180px;
}
.module-01 .logout .login-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}
.module-01 .logout .login-link {
    font-size: 14px;
    cursor: pointer;
}
.module-01 .logout .login-link::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 3px;
}
.module-01 .logout .login-link-active::after {
    background: #337DFF;
}
.module-01 .logout .login-link-active {
    color: #337DFF;
    font-weight: 500;
}
.module-01 .logout .qrcode-panel {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.module-01 .logout .qrcode-image {
    width: 144px;
    height: 144px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: #F5F8FD;
    border-radius: 8px;
}
.module-01 .login-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 10px;
}
.module-01 .login-info .user-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin-top: 16px;
}
.module-01 .login-info .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.module-01 .login-info .welcome-text {
    font-size: 20px;
    color: #191919;
}
.module-01 .login-info .workbench-btn {
    display: block;
    width: 217px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #337DFF;
    border-radius: 8px;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}
.module-01 .login-info .workbench-btn:hover {
    background: #2964CD;
}
.module-01 .value-services-panel {
    margin-top: 16px;
    padding: 0 16px;
}
.module-01 .value-services-panel .service-title {
    font-weight: 500;
    font-size: 14px;
    color: #191919;
    margin-bottom: 8px;
}
.module-01 .value-services-panel .service-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 15px;
}
.module-01 .value-services-panel .service-item {
    font-weight: 400;
    font-size: 12px;
    color: #7F7F7F;
    cursor: pointer;
    position: relative;
    padding-left: 12px;
    line-height: 20px;
}
.module-01 .value-services-panel .service-item a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
.module-01 .value-services-panel .service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #CCCCCC;
}
.module-01 .value-services-panel .service-item:hover {
    color: #337DFF;
}
.module-01 .value-services-panel .service-item:hover::before {
    background: #337DFF;
}
/* Module-02 四个分类导航 */
.module-02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 16px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
    height: 104px;
    background: linear-gradient( 180deg, #EDF1FB 0%, #FFFFFF 100%);
    border-radius: 8px;
    border: 2px solid #FFFFFF;
    padding:16px 20px;
}
.module-02 .nav-item .nav-item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
}
.module-02 .nav-item .nav-item-title img {
    width: 14px;
    height: 14px;
}
.module-02 .nav-item .nav-item-title p,
.module-02 .nav-item .nav-item-title h3 {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    color: #191919;
    line-height: 28px;
}
.module-02 .nav-item .nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 2px 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}
.module-02 .nav-items li {
    font-weight: 400;
    font-size: 12px;
    color: #7F7F7F;
    transition: color 0.3s ease;
}
.module-02 .nav-items li a {
    color: inherit;
    text-decoration: none;
}
.module-02 .nav-items li:hover,
.module-02 .nav-items li:hover a {
    color: #337DFF;
}
/* Module-03 精选标讯 */
.module-03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 16px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.module-03 .featured-bids {
    width: 935px;
    background: white;
    border-radius: 8px;
    padding: 20px;
}
.module-03 .bids-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 40px;
}
.module-03 .bids-section {
    width: calc(50% - 20px);
    margin-top: 24px
}
.module-03 .section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 12px;
}
.module-03 .bids-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.module-03 .bids-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
}
.module-03 .bid-title {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 12px;
    text-decoration: none;
    display: block;
}
.module-03 .bid-title:hover {
    color: #337DFF;
}
.module-03 .bid-date {
    font-size: 12px;
    color: #7F7F7F;
    white-space: nowrap;
}
.module-03 .bid-date time {
    color: inherit;
}
/* 中标喜讯模块 */
.module-03 .winning-bid-news {
    width: 249px;
    padding: 20px;
    background: linear-gradient( 180deg, #FFF1F3 0%, #FFFFFF 100%);
    border-radius: 8px;
    border: 2px solid #FFFFFF;
}
.module-03 .winning-bid-news .winners-list {
    padding: 0;
    margin-top: 8px;
}
.module-03 .winning-bid-news .winners-list .winner-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 6px 0;
    cursor: pointer;
}
.module-03 .winning-bid-news .rank-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    background: #F5F5F5;
    margin-right: 10px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-03 .winning-bid-news .medal-icon {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 10px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-03 .winning-bid-news .medal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.module-03 .winning-bid-news .winner-text {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.module-03 .winning-bid-news .winners-list .winner-item:hover .winner-text {
    color: #337DFF;
}
.ad-banner {
    width: 100%;
    margin-top: 16px;
}
.ad-banner img {
    width: 100%;
    height: auto;
}
/* Module-04 企业信息和热门行业 */
.module-04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 16px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.module-04-left {
    width: 935px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}
/* 企业信息部分 */
.module-04 .company-info {
    width: 935px;
    background: white;
    border-radius: 8px;
    padding: 20px;
}
.module-04 .company-info .section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 16px;
}
.module-04 .company-info .module-title {
    margin: 0;
}
.module-04 .company-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    background: linear-gradient( 133deg, #DFEAFD 0%, #EFEEFF 100%);
    border-radius: 8px;
    padding: 16px 10px;
    margin-top: 16px;
}
.module-04 .company-list {
    width: 200px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-04 .company-list .company-item {
    font-size: 14px;
    color: #191919;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 3px;
    height: 46px;
    line-height: 46px;
    padding-left: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    
}
.module-04 .company-list .company-item:hover {
    color: #337DFF;
}
.module-04 .company-list .company-item.active {
    background: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 16px;
}
.module-04 .company-detail {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    background: linear-gradient( 180deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.17) 100%);
    border-radius: 8px;
    padding: 16px;
}
.module-04 .company-detail .company-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.module-04 .company-detail .company-header .company-icon {
    width: 48px;
    height: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 14px;
    color: #FFFFFF;
    border-radius: 6px;
    padding: 3px;
}
.module-04 .company-detail .company-header .company-icon span {
    text-align: center;
    line-height: 22px;
}

.bg1 {
    background: url('/static/images/homepage/company_info/enterprise_icon.png') #9FC7B3 no-repeat;
    background-size: 100% 100%;
  }
  .bg2 {
    background: url('/static/images/homepage/company_info/enterprise_icon.png') #E3B4A8 no-repeat;
    background-size: 100% 100%;
  }
  .bg3 {
    background: url('/static/images/homepage/company_info/enterprise_icon.png') #E1D1B9 no-repeat;
    background-size: 100% 100%;
  }
  .bg4 {
    background: url('/static/images/homepage/company_info/enterprise_icon.png') #99A2D6 no-repeat;
    background-size: 100% 100%;
  }
  .bg5 {
    background: url('/static/images/homepage/company_info/enterprise_icon.png') #99B4D6 no-repeat;
    background-size: 100% 100%;
  }
.module-04 .company-detail .company-header .company-name-box .company-name {
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    line-height: 22px;
    margin-bottom: 6px;
}
.module-04 .company-detail .company-header .company-name-box .company-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
}
.module-04 .company-detail .company-header .company-name-box .company-tags .tag {
    font-size: 12px;
    color: #4c4c4c;
    line-height: 18px;
    position: relative;
}
.module-04 .company-detail .company-header .company-name-box .company-tags .tag:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 8px;
    background: rgba(255,255,255,0.7);
}
.module-04 .company-detail .company-header .company-name-box .company-tags .tag.tag-status {
    color: #35C161;
}
.module-04 .company-detail .company-meta {
    font-size: 12px;
    color: #4c4c4c;
    line-height: 18px;
}
.module-04 .company-detail .bidding-records {
    margin-top: 16px;
}
.module-04 .company-detail .bidding-records .records-list {
    list-style: none;
    padding: 0;
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.module-04 .company-detail .bidding-records .records-list .record-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #FFFFFF;
    border-radius: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.module-04 .company-detail .bidding-records .record-number-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-04 .company-detail .bidding-records .record-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}
.module-04 .company-detail .bidding-records .record-text {
    font-size: 14px;
    color: #191919;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.module-04 .company-detail .bidding-records .record-count {
    color: #4c4c4c;
    font-size: 12px;
}
.module-04 .company-detail .bidding-stats {
    margin-top: 20px;
}
.module-04 .company-detail .bidding-stats .stats-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.module-04 .company-detail .bidding-stats .stat-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 12px;
    background: #FFFFFF;
    border-radius: 8px;
}
.module-04 .company-detail .bidding-stats .stat-card .stat-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 4px;
}
.module-04 .company-detail .bidding-stats .stat-card .stat-icon {
    width: 12px;
    height: 12px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    object-fit: contain;
}
.module-04 .company-detail .bidding-stats .stat-card .stat-label {
    font-size: 12px;
    color: #4c4c4c;
    line-height: 18px;
}
.module-04 .company-detail .bidding-stats .stat-card .stat-value {
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    line-height: 20px;
}
/* 热门行业部分 */
.module-04 .popular-industries {
    width: 249px;
    padding: 20px;
    background: linear-gradient( 183deg, #EDEEFF 0%, #FCFDFF 17%, #FFFFFF 100%);
    border-radius: 8px;
    border: 2px solid #FFFFFF;
}
.module-04 .popular-industries .industry-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}
.module-04 .popular-industries .industry-item {
    margin-bottom: 6px;
}
.module-04 .popular-industries .industry-item:last-child {
    margin-bottom: 0;
}
.module-04 .popular-industries .industry-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 4px;
}
.module-04 .popular-industries .industry-title {
    position: relative;
}
.module-04 .popular-industries .industry-title h3 {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    margin: 0;
    z-index: 1;
    line-height: 28px;
}
.module-04 .popular-industries .industry-title-line {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient( 270deg, #FFFFFF 0%, #D1E3FF 100%);
}
.module-04 .popular-industries .industry-keywords {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px 8px;
}
.module-04 .popular-industries .industry-keyword {
    font-size: 12px;
    color: #7F7F7F;
    cursor: pointer;
    transition: color 0.3s ease;
}
.module-04 .popular-industries .industry-keyword:hover {
    color: #337DFF;
}
/* 数据服务模块 */
.module-04 .data-services {
    width: 100%;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}
/* 趋势部分 */
.module-04 .data-services .trend-section {
    margin-top: 16px;
}
.module-04 .data-services .industry-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 12px;
    margin-bottom: -5px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow-x: auto;
}
.module-04 .data-services .industry-tabs .industry-tab {
    padding: 8px 32px 14px 32px;
    font-size: 14px;
    color: #191919;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 6px;
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-04 .data-services .industry-tabs .industry-tab:first-child {
    padding-left: 16px;
}
.module-04 .data-services .industry-tabs .industry-tab:last-child {
    padding-right: 16px;
}
.module-04 .data-services .industry-tabs .industry-tab .tab-icon {
    width: 16px;
    height: 16px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    object-fit: contain;
}
.module-04 .data-services .industry-tabs .industry-tab .tab-icon.icon-selected {
    display: none;
}
.module-04 .data-services .industry-tabs .industry-tab .tab-icon.icon-normal {
    display: block;
}
.module-04 .data-services .industry-tabs .industry-tab.active .tab-icon.icon-selected {
    display: block;
}
.module-04 .data-services .industry-tabs .industry-tab.active .tab-icon.icon-normal {
    display: none;
}
.module-04 .data-services .industry-tabs .industry-tab:hover {
    color: #337DFF;
}
.module-04 .data-services .industry-tabs .industry-tab:hover .tab-icon.icon-selected {
    display: block;
}
.module-04 .data-services .industry-tabs .industry-tab:hover .tab-icon.icon-normal {
    display: none;
}
.module-04 .data-services .industry-tabs .industry-tab.tab-left.active {
    background-image: url('/static/images/homepage/data_services/tab_left_active.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #337DFF;
}
.module-04 .data-services .industry-tabs .industry-tab.tab-middle.active {
    background-image: url('/static/images/homepage/data_services/tab_middle_active.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #337DFF;
}
.module-04 .data-services .industry-tabs .industry-tab.tab-right.active {
    background-image: url('/static/images/homepage/data_services/tab_right_active.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #337DFF;
}
.module-04 .data-services .region-tabs-container {
    background: linear-gradient( 180deg, #ECF4FF 0%, #F7FCFF 100%);
    border-radius: 8px;
    padding: 16px;
}
.module-04 .data-services .region-tabs {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 12px;
}
.module-04 .data-services .region-tabs .filter-tab {
    width: 48px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    color: #191919;
    background: #FFFFFF;
    border-radius: 4px;
}
.module-04 .data-services .filter-tab:hover {
    border: 1px solid #337DFF;
    color: #337DFF;
    line-height: 22px;
}
.module-04 .data-services .filter-tab.active {
    border: 1px solid #337DFF;
    color: #337DFF;
    line-height: 22px;
}
.module-04 .data-services .chart-panel {
    width: 100%;
    margin-top: 16px;
}
.module-04 .data-services .trend-chart {
    width: 100%;
    height: 314px;
}
/* 报告部分 */
.module-04 .data-services .report-section {
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E1E1E1;
    padding: 16px;
    margin-top: 16px;
}
.module-04 .data-services .report-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #191919;
    margin: 0 0 12px 0;
}
.module-04 .data-services .report-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 24px;
}
.module-04 .data-services .report-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.module-04 .data-services .report-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7f7f7f;
}
.module-04 .data-services .report-link {
    font-size: 12px;
    color: #7F7F7F;
    line-height: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.module-04 .data-services .report-item:hover .report-link {
    color: #337DFF;
}
.module-04 .data-services .report-item:hover::before {
    background: #337DFF;
}
/* Module-05 标书服务 */
.module-05 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 16px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.module-05 .tender-services {
    width: 935px;
    background: white;
    border-radius: 8px;
    padding: 20px;
}
.module-05 .tender-services-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.module-05 .tender-category-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}
.module-05 .category-tab {
    height: 24px;
    line-height: 22px;
    padding: 0 12px;
    font-size: 12px;
    color: #191919;
    background: #F4F5F8;
    border-radius: 4px;
    border: 1px solid #F4F5F8;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}
.module-05 .category-tab:hover {
    color: #337DFF;
    border: 1px solid #337DFF;
    background: #FFFFFF;
}
.module-05 .category-tab.active {
    color: #337DFF;
    border: 1px solid #337DFF;
    background: #FFFFFF;
}
.module-05 .tender-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 20px;
    gap: 24px 12px;
}
.module-05 .tender-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 8px;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.module-05 .tender-item:hover {
    background: rgba(51, 125, 255, 0.05);
    text-decoration: none;
}
.module-05 .tender-item:visited {
    color: inherit;
}
.module-05 .tender-item:link {
    color: inherit;
}
.module-05 .tender-icon {
    width: 60px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-05 .tender-content {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
}
.module-05 .tender-title {
    font-size: 12px;
    color: #191919;
    line-height: 20px;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.module-05 .tender-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #A6A6A6;
}
.module-05 .tender-pages,
.module-05 .tender-date {
    white-space: nowrap;
}
.module-05 .tender-ranking {
    width: 249px;
    padding: 20px;
    background: linear-gradient( 180deg, #ECF4FF 0%, #FAFDFF 21%, #FFFFFF 100%);
    border-radius: 8px;
    border: 1px solid #fff;
}
.module-05 .tender-ranking .ranking-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.module-05 .tender-ranking .ranking-top {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
}
.module-05 .tender-ranking .ranking-top .ranking-icon-box {
    position: relative;
    width: 34px;
    height: 40px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-05 .tender-ranking .ranking-top .ranking-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 40px;
}
.module-05 .tender-ranking .ranking-top .ranking-icon {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.module-05 .tender-ranking .ranking-top .ranking-text {
    font-weight: 500;
    font-size: 12px;
    color: #191919;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.module-05 .tender-ranking .ranking-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 18px;
    color: #7F7F7F;
    padding: 6px 0;
    cursor: pointer;
}
.module-05 .tender-ranking .ranking-item:hover .ranking-text {
    color: #337DFF;
}
.module-05 .tender-ranking .ranking-item .ranking-medal{
    width: 24px;
    height: 24px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    object-fit: contain;
}
.module-05 .tender-ranking .ranking-item:hover {
    color: #337DFF;
}
.module-05 .tender-ranking .ranking-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
}
.module-05 .tender-ranking .ranking-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    background: #F5F5F5;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-05 .tender-ranking .ranking-item .ranking-text {
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}
/* Module-06 供求市场 */
.module-06 {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.module-06 .supply-demand-market {
    padding: 20px;
    border-radius: 8px;
    background: white;
}
.module-06 .market-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.module-06 .market-column {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    border-radius: 8px;
    padding: 8px 8px 0 8px;
    border: 1px solid rgba(238, 238, 238, 1);
}
.module-06 .market-column.supplier-library {
    background: linear-gradient( 180deg, #F0F3FF 0%, #FFFFFF 100%);
}
.module-06 .market-column.product-library {
    background: linear-gradient( 180deg, #E6F8FF 0%, #FEFFFF 100%);
}
.module-06 .market-column.procurement-library {
    background: linear-gradient( 180deg, #FFF7EB 0%, #FEFFFF 100%);
}
.module-06 .column-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 4px;
    padding: 8px;
}
.module-06 .column-title {
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    margin: 0;
    line-height: 20px;
}
/* 供应商库样式 */
.module-06 .supplier-list {
    list-style: none;
    padding: 16px;
    margin: 0;
    border-radius: 8px;
    background: #fff;
}
.module-06 .supplier-item {
    display: block;
    padding: 10px 0;
    cursor: pointer;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 0;
    transition: all 0.3s ease;
}
.module-06 .supplier-item:hover {
    background: rgba(51, 125, 255, 0.03);
}
.module-06 .supplier-item .avatar-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 10px;
}
.module-06 .supplier-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #F5F5F5;
    border: 1px solid #EEEEEE;
}
.module-06 .supplier-info {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}
.module-06 .supplier-name {
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.module-06 .supplier-company {
    font-size: 12px;
    color: #666666;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.module-06 .supplier-business {
    font-size: 12px;
    color: #999999;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 4px;
}
/* 产品库样式 */
.module-06 .product-list {
    list-style: none;
    padding: 16px;
    margin: 0;
    border-radius: 8px;
    background: #fff;
}
.module-06 .product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.module-06 .product-item:last-child {
    margin-bottom: 0;
}
.module-06 .product-image-container {
    width: 96px;
    height: 72px;
    overflow: hidden;
    border-radius: 4px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-06 .product-image {
    display: block;
    width: 96px;
    height: 72px;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: scale(1);
    transform-origin: center center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-06 .product-item:hover .product-image {
    transform: scale(1.1);
}
.module-06 .product-info {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}
.module-06 .product-desc {
    font-size: 13px;
    color: #191919;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.module-06 .product-price {
    font-size: 14px;
    font-weight: 500;
    color: #FF3333;
    line-height: 20px;
}
/* 采购库样式 */
.module-06 .procurement-list {
    list-style: none;
    padding: 16px;
    margin: 0;
    border-radius: 8px;
    background: #fff;
}
.module-06 .procurement-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0 5px 12px;
    cursor: pointer;
    position: relative;
}
.module-06 .procurement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #CCCCCC;
}
.module-06 .procurement-content {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.module-06 .procurement-item:hover .procurement-content {
    color: #337DFF;
}
.module-06 .procurement-date {
    font-size: 12px;
    color: #999999;
    line-height: 18px;
    white-space: nowrap;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
/* Module-07 招投标攻略 */
.module-07 {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.module-07 .bidding-strategy {
    background: white;
    border-radius: 8px;
    padding: 20px;
    height: 328px;
    overflow: hidden;
}
.module-07 .strategy-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.module-07 .strategy-header .module-title {
    margin: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.module-07 .strategy-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 8px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    -webkit-box-pack: start;
    -ms-flex-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    min-width: 0;
    margin-left: 16px;
}
.module-07 .strategy-tab {
    padding: 6px 16px;
    font-size: 12px;
    color: #666666;
    background: #F5F5F5;
    border-radius: 4px;
    border: 1px solid #F5F5F5;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.5;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}
.module-07 .strategy-tab:hover {
    color: #337DFF;
    border-color: #337DFF;
    background: #FFFFFF;
}
.module-07 .strategy-tab.active {
    color: #337DFF;
    background: #FFFFFF;
    border-color: #337DFF;
    font-weight: 500;
}
.module-07 .strategy-content {
    margin-top: 0;
    width: 100%;
    overflow: hidden;
}
.module-07 .strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
    width: 100%;
    min-width: 0;
}
.module-07 .strategy-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 6px;
    cursor: pointer;
    padding: 10px 0;
    min-width: 0;
    width: 100%;
}
.module-07 .strategy-title {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    margin-right: 10px;
    font-size: 14px;
    color: #7f7f7f;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.module-07 .strategy-item:hover .strategy-title {
    color: #337DFF;
}
.module-07 .strategy-date {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 12px;
    color: #7f7f7f;
    line-height: 20px;
    white-space: nowrap;
}
/* Module-08 地区导航 */
.module-08 {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.module-08 .region-navigation {
    background: white;
    border-radius: 8px;
    padding: 20px;
}
.module-08 .region-navigation .module-title {
    margin: 0 0 16px 0;
}
.module-08 .region-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px 40px;
}
.module-08 .region-item {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 20px;
    white-space: nowrap;
}
.module-08 .region-item:hover {
    color: #337DFF;
}
/* Module-09 招标推荐平台 */
.module-09 {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.module-09 .tender-platform {
    background: white;
    border-radius: 8px;
    padding: 20px;
}
.module-09 .tender-platform .module-title {
    margin: 0 0 16px 0;
}
.module-09 .platform-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.module-09 .platform-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
.module-09 .platform-link {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 20px;
    white-space: nowrap;
}
.module-09 .platform-link:hover {
    color: #337DFF;
}
/* Module-10 地区导航（完整版） */
.module-10 {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.module-10 .region-navigation-full {
    background: white;
    border-radius: 8px;
    padding: 20px;
}
.module-10 .region-navigation-full .module-title {
    margin: 0 0 16px 0;
}
.module-10 .region-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
    padding-bottom: 0;
}
.module-10 .region-tab {
    font-size: 14px;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    position: relative;
    white-space: nowrap;
}
.module-10 .region-tab:hover {
    color: #337DFF;
}
.module-10 .region-tab.active {
    color: #337DFF;
    font-weight: 500;
}
.module-10 .region-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 4px;
    background: #337DFF;
}
.module-10 .region-list-container {
    position: relative;
}
.module-10 .region-list-full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px 20px;
}
.module-10 .region-item {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 20px;
    white-space: nowrap;
}
.module-10 .region-item:hover {
    color: #337DFF;
}

