/* 头部end */
.lazyload {
	opacity: 0;
	transition: opacity 0.5s;
}

.lazyloaded {
	opacity: 1;
}

.lazyload[data-bg] {
	background-image: none;
}

/* Header 样式 - 按照 Figma 设计还原 */
.header {
    background: #141517;
    height: 62px;
    position: relative;
    z-index: 100;
    width: 100%;
}

.header_inner {
    height: 62px;
    position: relative;
    justify-content: space-between;
}

.logo {
    display: block;
}

.logo_text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(219, 190, 155, 1) 0%, rgba(200, 191, 180, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 29px;
    display: block;
    height: 29px;
}

.header_right {
    display: flex;
    gap: 70px;
}

.header_right_a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 22px;
    display: block;
    text-decoration: none;
    position: relative;
}

.header_right_a:hover {
    color: #DBBE9C;
}

.header_right_a.active {
    font-size: 16px;
    font-weight: 500;
    color: #DBBE9C;
}
.header_right_a.active::after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #DBBE9C;
    position: absolute;
    bottom: -20px;
    left: 0;
}
.header_right_search {
    width: 250px;
    height: 42px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.10);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_right_search2 {
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    outline: none;
    flex: 1;
    height: 100%;
}

.header_right_search2::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
}

.header_right_search3 {
    width: 16px;
    height: 17px;
}

.header_right_search:hover .header_right_search3 {
    opacity: 0.8;
}

/* Banner 样式 */
.xxp-sildes .widget{
    height: 100%;
}

.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-image: url('../images/index_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding: 40px 0;
}

.banner_content {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

/* 左侧产品列表 */
.banner_product_list {
    width: 240px;
    box-sizing: border-box;
    height: 560px;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.20) 100%);
    backdrop-filter: blur(5px);
}

.product_item {
    box-sizing: border-box;
    width: 260px;
    padding: 30px 46px 30px 26px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.product_item::after {
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
    opacity: 0.7;
    position: absolute;
    bottom: 0;
    left: 20px;
}

.product_item:hover a{
    color: #DBBE9C;
}


.product_item_header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product_icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.product_info {
    flex: 1;
    min-width: 0;
}

.product_title {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 20px;
}
.product_title a{
    color: #FFFFFF;
}
.product_desc_mask {
    position: absolute;
    top: 0;
    left: 246px;
    z-index: 11;
    transform: translateX(6px);
    border-radius: 4px;
    background: linear-gradient(90deg, #F4FAFD 0%, #FFF 100%);
    box-shadow: 0 0 10px 0 rgba(0, 19, 58, 0.10);
    min-height: 80px;
    min-width: 600px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.product_item:hover .product_desc_mask,
.product_desc_mask:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product_desc_mask a {
    display: block;
    word-break: keep-all;
    font-size: 12px;
    color: #666;
    line-height: 20px;
    padding: 0 20px;
    transition: color 0.2s;
}

.product_desc_mask a:first-child {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.product_desc_mask a:hover {
    color: var(--secondary-color);
}

.product_desc {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 17px;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}
.product_desc a{
    color: rgba(255, 255, 255, 0.7);
}
.product_arrow {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    flex-shrink: 0;
}

.product_divider {
    width: 200px;
    height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.view_all {
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.view_all_text {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    opacity: 0.7;
}

.view_all_arrow {
    width: 8px;
    height: 14px;
    opacity: 0.7;
    margin-left: 5px;
}

/* 中间主内容区 */
.banner_main {
    width: 920px;
    height: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Swiper 轮播样式 */
.banner_swiper {
    width: 100%;
    height: 428px;
    border-radius: 8px;
    overflow: hidden;
}

.banner_swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner_main_bg {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.banner_main_bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.banner_main_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(36, 21, 4, 1) 0%, rgba(56, 36, 21, 0.02) 64%);
}

.banner_main_title {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.banner_main_title_text {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 48px;
    font-weight: 700;
    color: #DBBE9C;
    line-height: 66px;
    text-align: center;
}

.banner_main_title_sub {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 28px;
    font-weight: 500;
    color: #DBBE9C;
    line-height: 38px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
}

.banner_main_btn {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 50px;
    height: 40px;
    border-radius: 283px;
    border: 1px solid #966A23;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #DBBE9C;
    transition: all 0.3s;
    text-decoration: none;
}

.banner_main_btn:hover {
    background: rgba(219, 190, 156, 0.1);
}

.banner_main_btn img {
    width: 8px;
    height: 8px;
}

/* Swiper 分页器样式 */
.banner_swiper .swiper-pagination {
    bottom: 20px;
}

.banner_swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    opacity: 0.5;
    margin: 0 4px;
}

.banner_swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #DBBE9C;
}

/* 广告位展示 */
.banner_ad_list {
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.20) 100%);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner_ad_item {
    width: 190px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.banner_ad_list .banner_ad_item:hover{
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.banner_ad_img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.banner_ad_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner_ad_title {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 26px;
}

.banner_ad_desc {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Regular';
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 16px;
}

/* 右侧用户区域 */
.banner_user_panel {
    box-sizing: border-box;
    width: 240px;
    height: 560px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.20) 70%);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.user_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.user_avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.user_text {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
}

.user_btns {
    width: 150px;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn_login {
    width: 70px;
    height: 24px;
    background: #756653;
    border-radius: 2px;
    font-family: 'PingFang SC';
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    line-height: 24px;
    display: block;
    text-decoration: none;
}

.btn_login:hover {
    opacity: 0.8;
}

.btn_register {
    width: 70px;
    height: 24px;
    background: transparent;
    border: 0.5px solid rgba(233, 233, 233, 0.5);
    border-radius: 2px;
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Regular';
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    line-height: 22px;
    display: block;
    text-decoration: none;
}

.btn_register:hover {
    border-color: #DBBE9C;
    color: #DBBE9C;
}

.panel_divider {
    width: 100%;
    height: 1px;
    background: #E9E9E9;
    opacity: 0.2;
}

.quick_entry {
    width: 190px;
}

.quick_entry_title {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 19px;
    margin-bottom: 10px;
}

.quick_entry_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 20px;
}

.quick_item {
    width: 49px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.quick_icon {
    width: 20px;
    height: 20px;
}

.quick_item span {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Regular';
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.quick_item:hover span {
    color: #DBBE9C;
}

.help_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help_title {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 19px;
}

.help_item {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 16px;
    text-decoration: none;
}

.help_item:hover {
    color: #DBBE9C;
}

/* 在线商城模块 - 所有样式独立，带 shop_ 前缀 */
.shop_section {
    background-image: url('../images/shop_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.shop_wrap {
    position: relative;
    z-index: 1;
}

.shop_flex2 {
    display: flex;
    align-items: center;
}

/* 标题和筛选 */
.shop_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.shop_title {
    gap: 20px;
}

.shop_title_deco {
    gap: 10px;
}

.shop_title_icon {
    width: 118px;
    height: 20px;
}

.shop_title_text {
    font-size: 38px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 52px;
    margin: 0;
}


.shop_section .shop_title_text{
    color: #DBBE9C;
}

.shop_tabs {
    gap: 20px;
}

.shop_tab {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
    line-height: 26px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;

    opacity: 0.7;
    background: rgba(255, 255, 255, 0.20);
}

.shop_tab:hover {
   opacity: 1;
}

.shop_tab.on {
    opacity: 1;
}

/* banner+阐述 */
.shop_banner_wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.shop_banner {
    position: relative;
    width: 380px;
    height: 440px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-image: url('../images/shop_bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

     display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 78px 50px 0;
    gap: 40px;
}

.shop_banner_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.shop_banner_title {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 34px;
}

.shop_banner_desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 26px;
    overflow: hidden;
}

.shop_banner_btn {
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    padding: 0px 20px;
    background: #966A23;
    border-radius: 136px;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
    display: flex;
    align-items: center;
}

.shop_banner_btn img {
    width: 8px;
    height: 8px;
}

.shop_side_banner {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 440px;
}


.shop_side_banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0.5;
}

.shop_side_btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 136px;
    gap: 10px;
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Regular';
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.shop_side_btn:hover {
    background: #FFFFFF;
}

.shop_side_btn img {
    width: 8px;
    height: 8px;
}

/* 产品列表 */
.shop_product_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.shop_product_item {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.shop_product_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.shop_product_img {
    width: 100%;
    height: 272px;
    background: #F5F5F5;
    overflow: hidden;
}

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

.shop_product_info {
    padding: 16px;
}

.shop_product_name {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 22px;
    margin-bottom: 10px;
    overflow: hidden;
}

.shop_product_price {
    gap: 10px;
    display: flex;
    align-items: center;
}

.shop_price_current {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 20px;
    font-weight: 500;
    color: #E52020;
}

.shop_price_original {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    text-decoration: line-through;
}

/* 企业大全模块 - 所有样式独立，带 enterprise_ 前缀 */
.enterprise_section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../images/company_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.enterprise_wrap {
    position: relative;
    z-index: 1;
}

/* 标题 */
.enterprise_title {
    gap: 20px;
    margin-bottom: 40px;
}

.enterprise_title_deco {
    gap: 10px;
}

.enterprise_title_icon {
    width: 118px;
    height: 20px;
}



.enterprise_title_text {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 38px;
    font-weight: 500;
    color: #333333;
    line-height: 52px;
    margin: 0;
}

.enterprise_content {
    gap: 20px;
    margin-top: 40px;
}

.enterprise_left {
    flex: 1;
    min-width: 0;
}

/* 广告位 */
.enterprise_ad {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;

    background-image: url('../images/company_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 40px;
}


.enterprise_ad_text {
    font-size: 32px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 40px;
}

.enterprise_ad_btn {
    height: 48px;
    line-height: 48px;
    padding: 0px 20px;
    background: #966A23;
    border-radius: 42px;
    gap: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}
.enterprise_ad_btn div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
}
.enterprise_ad_btn div img {
    display: block;
    margin-left: 2px;
    width: 8px;
    height: 8px;
}

.enterprise_ad a:hover{
    color: #FFFFFF !important;
}

/* 企业列表 */
.enterprise_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 8px;
    overflow: hidden;
}

.enterprise_item {
    box-sizing: border-box;
    background: #FFFFFF;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border-top: 1px solid #EAEAEE;
    border-left: 1px solid #EAEAEE;
}
.enterprise_item:nth-child(4n+1) {
    border-left: none;
}

.enterprise_item_img {
    width: 100%;
    height: 180px;
    background: #F5F5F5;
    overflow: hidden;
}

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

.enterprise_item_info {
    padding: 20px;
}

.enterprise_item_header {
    gap: 8px;
    margin-bottom: 20px;
}
.enterprise_item_logoa{
    box-sizing: border-box;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid rgba(150, 106, 35, 0.20);
}
.enterprise_item_logo {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    flex-shrink: 0;
}

.enterprise_item_name {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Medium';
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 22px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.enterprise_item_desc {
    font-family: 'Alibaba PuHuiTi', 'Alibaba-Regular';
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    line-height: 18px;
    height: 54px;
    margin-bottom: 15px;
}

.enterprise_item_btn {
    height: 28px;
    line-height: 28px;
    padding: 0px 14px;
    background: #FCF6F0;
    border-radius: 55px;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #966A23;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}

.enterprise_item:hover .enterprise_item_btn {
    background: #966A23;
    color: #fff;
}
.enterprise_item:hover .enterprise_item_btn img {
    content: url('../images/jt_white.svg');
}
.enterprise_item_btn img {
    width: 8px;
    height: 8px;
}

.enterprise_btn_white {
    background: #DBBE9C;
    color: #FFFFFF;
}

.enterprise_btn_white:hover {
    background: rgba(219, 190, 156, 0.8);
}

.enterprise_btn_white img {
    filter: brightness(0) invert(1);
}

/* 右侧信息展示 */
.enterprise_right {
    width: 345px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFEEDA 0%, #FFF 18.75%);
    padding: 20px;
    box-sizing: border-box;
}

.enterprise_info_header {
    gap: 10px;
}

.enterprise_info_title {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    line-height: 26px;
}

.enterprise_info_icon {
    width: 14px;
    height: 14px;
}

.enterprise_info_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 15px;
}
.enterprise_info_item{
    padding-top: 20px;
    border-top: 1px solid #E9E9E9;
}
.enterprise_info_item:nth-child(1) {
    border-top: none;
}

.enterprise_info_item_title {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    line-height: 20px;
    margin-bottom: 10px;
}
.enterprise_info_item:hover .enterprise_info_item_title {
    color: var(--secondary-color);
}
.enterprise_info_item:hover .enterprise_info_item_desc {
    color: var(--secondary-color);
    opacity: 0.7;
}
.enterprise_info_item_desc {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    line-height: 16px;
}


.enterprise_info_btn {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-self: center;
    height: 40px;
    width: 100%;
    line-height: 40px;
    padding: 0 10px;
    background: #FCF6F0;
    border-radius: 64px;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.enterprise_info_btn img {
    width: 8px;
    height: 8px;
}

/* 招商列表 */

.enterprise_merchant_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.enterprise_merchant_item {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.enterprise_merchant_item:hover .enterprise_merchant_img {
    transform: scale(1.05);
}

.enterprise_merchant_img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.enterprise_merchant_tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 0 8px;
    background: linear-gradient(98deg, #F5A81C 1.54%, #F5471C 97.74%);
    font-family: 'PingFang SC';
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
}

.enterprise_merchant_name {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    line-height: 52px;
    padding: 0px 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}



/* 行业展会区域 */
.z_zh {
	width: 100%;
	background-position: center top;
	background-size: cover 100%;
	box-sizing: border-box;
	overflow: hidden;
	padding: 80px 0 0;
	background-repeat: no-repeat;
    position: relative;
}
.z_zh::after {
    content: '';
    background: linear-gradient(180deg, #E6DFDA 0%, #F7F7F6 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

}

.z_zh .z_tit {
	color: #fff;
}

.z_zh .shop_title_text{
    color: #DBBE9C;
}

/* 上方大卡片 */
.z_zh1 {
	margin-top: 41px;
	display: flex;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin-bottom: 10px;
}

.z_zh1 li {
	flex: 1;
	background: #FFFFFF;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s;
}

.z_zh1 li a {
	display: block;
	text-decoration: none;
}

.z_zh1_1 {
	width: 100%;
	height: 360px;
	overflow: hidden;
	position: relative;
}

.z_zh1_1 img {
	width: 100%;
	height: 100%;
	transition: transform 0.3s;
}

.z_zh1 li:hover .z_zh1_1 img {
	transform: scale(1.05);
}

.z_zh1_2 {
	box-sizing: border-box;
	width: 100%;
	height: 214px;
	padding: 30px 30px 0;
}

.z_zh1_2a {
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	line-height: 22px;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.z_zh1_2b {
	font-weight: 400;
	font-size: 14px;
	color: #999;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 48px;
	margin-bottom: 30px;
}

.z_zh1_2c {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 40px;
	border-radius: 91px;
	border: 1px solid var(--primary-color);
	box-sizing: border-box;
	background: #fff;
	font-weight: 400;
	font-size: 12px;
	color: var(--secondary-color);
	transition: all 0.3s;
}

.z_zh1_2c img {
	width: 8px;
	height: 8px;
	margin-left: 10px;
	display: block;
}

.z_zh1 li:hover .z_zh1_2c {
	background: var(--secondary-color);
	color: #fff;
    border: 1px solid transparent;
}

.z_zh1 li:hover .z_zh1_2c img {
	content: url('../images/jt_white.svg');
}

/* 下方小卡片 */
.z_zh2 {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: space-between;
}

.z_zh2 li {
	width: calc(50% - 10px);
	height: 154px;
	margin-top: 20px;
	background: #FFFFFF;
	border-radius: 8px;
	padding: 20px 20px 0;
	box-sizing: border-box;
	transition: all 0.3s;
}

.z_zh2 li:hover {
	box-shadow: 0px 0px 10px 0px rgba(0, 24, 34, 0.1);
}

.z_zh2 li a {
	display: block;
	text-decoration: none;
}

.z_zh2_1a {
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	line-height: 25px;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.z_zh2_1b {
	font-weight: 400;
	font-size: 14px;
	color: #999;
	line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 40px;
	margin-bottom: 20px;
}

.z_zh2_1c {
	margin-left: auto;
	align-items: center;
	width: fit-content;
	display: flex;
	font-size: 14px;
	color: 999;
	transition: all 0.3s;
}

.z_zh2_1c img {
	width: 8px;
	height: 8px;
	margin-left: 20px;
	display: block;
}

.z_zh2 li:hover .z_zh2_1c {
	color: var(--secondary-color);
}
.z_zh2 li:hover .z_zh2_1a {
	color: var(--secondary-color);
}
.z_zh2 li:hover .z_zh2_1b {
	color: var(--secondary-color);
    opacity: 0.6;
}

.z_zh2 li:hover .z_zh2_1c img {
	content: url('../images/jt_primary.svg');
}

/* 行业新闻区域 */
.z_news {
	width: 100%;
	background-position: center top;
	background-size: cover;
	box-sizing: border-box;
	overflow: hidden;
	padding: 80px 0;
	background-repeat: no-repeat;
}
.z_news .shop_title_text{
    color: var(--secondary-color);
}
.enterprise_section .shop_title_text{
    color: var(--secondary-color);
}
.z_fm .shop_title_text{
    color: #fff;
    font-size: 32px;
}
.z_news1 {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 402px;
	padding: 0 150px 0 80px;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.z_news1_bg {
	width: 100%;
	height: 322px;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: -1;

}

/* 左侧选项卡列表 */
.z_news1_1 {
	flex: none;
	width: 460px;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.z_news1_1 li {
	box-sizing: border-box;
	height: 126px;
	background: #FFFFFF;
	border-radius: 8px;
	padding: 20px 20px 0;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}

.z_news1_1 li.on {}

.z_news1_1 li div {
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	line-height: 26px;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.z_news1_1 li.on div {
	color: var(--secondary-color);
}

.z_news1_1 li p {
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	margin-bottom: 10px;
}

.z_news1_1 li.on p {
	color: var(--secondary-color);
}

.z_news1_1 li span {
	font-weight: 400;
	font-size: 12px;
	color: #999999;
	line-height: 20px;
}

.z_news1_1 li.on span {
	color: var(--secondary-color);
}

/* 右侧内容卡片区 */

.z_news1_2 {
	width: 420px;
	height: 286px;
    border-radius: 8px;
	background: rgba(255, 255, 255, 0.80);
	backdrop-filter: blur(5px);
	border-radius: 8px;
	box-sizing: border-box;
	padding: 40px 40px 0;
}


.z_news1_2a span {
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	line-height: 26px;
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.z_news1_2a p {
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	line-height: 20px;
	height: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	margin-bottom: 40px;
}

.z_news1_2a a {
	width: 160px;
	height: 40px;
	background: var(--secondary-color);
	border-radius: 123px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 12px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
    margin: 0 auto;
}


.z_news1_2a a img {
	width: 8px;
	height: 8px;
	margin-left: 10px;
	display: block;
}

.xne1 {
	display: flex;
	gap: 30px;
	margin-top: 40px;
}

.xne1_1 {
	flex: none;
	width: 460px;

}

.xne1_1a {
	width: 100%;
	height: 312px;
	border-radius: 10px;
    overflow: hidden;
}

.xne1_1b {
	box-sizing: border-box;
	padding: 20px 0 0;
}

.xne1_1b1 {
	font-weight: 500;
	font-size: 18px;
	color: #333333;
	line-height: 26px;
}

.xne1_1b2 {
	margin-top: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	line-height: 20px;
}

.xne1_1b3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}
.xne1_1b3 p{
	color: #999;
	font-size: 14px;
	line-height: 20px;
}
.xne1_1b3 a {
	width: 106px;
	height: 37px;
	border-radius: 223px;
	border: 1px solid #DED9D9;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 12px;
	color: #666666;
}

.xne1_1b3 a img {
	display: flex;
	width: 8px;
	height: 8px;
	margin-left: 10px;
}

.xne1_2 {
	flex: none;
	width: 460px;
}

.xne1_2 li {
	padding-top: 21px;
    padding-bottom: 21px;
    border-top: 1px solid #EAEAEA;
}

.xne1_2 li:nth-child(1) {
	padding-top: 0;
    border-top: none;
}

.xne1_2 .xne1_1b2 {
	margin-top: 12px;
}

.xne1_2 .xne1_1b3 {
	margin-top: 12px;
}

.xne1_2 .xne1_1b3 a {
    width: 40px;
    height: 40px;
    display: flex;
	justify-content: center;
	align-items: center;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}
.xne1_2 .xne1_1b3 a img{
    margin-left: 4px;
    width: 14px;
    height: 14px;
}
.xne1_1:hover .xne1_1b1 {
	color: var(--secondary-color);
}
.xne1_1:hover .xne1_1b3 a {
	 color: #fff;
	border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.xne1_1:hover .xne1_1b3 img {
	content: url(../images/jt_white.svg);
}

.xne1_2 li:hover .xne1_1b1 {
	color: var(--secondary-color);
}

.xne1_2 li:hover .xne1_1b3 a {
	background: var(--secondary-color);
}

.xne1_2 li:hover .xne1_1b3 a img {
	content: url(../images/jt_white.svg);
}

/* 表单区域 */
.z_fm {
	width: 100%;
	background-position: center top;
	background-size: cover;
	box-sizing: border-box;
	overflow: hidden;
	padding: 80px 0 0;
	background-repeat: no-repeat;
}

.z_form {
	box-sizing: border-box;
}

.z_form_c {
	width: 570px;
	margin: 0 auto;
    margin-top: 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-content: flex-start;
    gap: 10px;
}

.z_form1 {
	position: relative;
	width: 100%;
}

.z_form1.z_form2 {
	width: calc(50% - 5px);
}

.z_form1 p {
	font-family: 'AlibabaPuHuiTi-Medium';
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	line-height: 19px;
}

.z_form3.z_form1 p {
	top: 16px;
	transform: translateY(0);
}

.z_form1 input {
	width: 100%;
	height: 62px;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.10);
	border-radius: 6px;
	border: 1px solid #EDEDED;
	border: none;
	box-sizing: border-box;
	font-size: 14px;
	color: #fff;
	outline: none;
	padding-left: 96px;
}

.z_form1.z_form2 input {
	height: 50px;
}

.z_form1 input::placeholder {
	color: #fff;
    opacity: 0.7;
	font-weight: 500;
}

.z_form1 textarea {
	width: 100%;
	height: 140px;
	background: rgba(255, 255, 255, 0.10);
	border-radius: 6px;
	border: none;
	box-sizing: border-box;
	padding: 45px 20px 20px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	resize: none;
	outline: none;
	font-family: inherit;
}

.z_form1 textarea::placeholder {
	color: #fff;
    opacity: 0.7;
	font-weight: 500;
}


.z_submit {
	margin: 0 auto;
	margin-top: 26px;
	position: relative;
}

.z_submit input[type="submit"] {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 2;
}

.z_submit>div {
	font-family: 'AlibabaPuHuiTi-Medium';
	width: 154px;
	height: 48px;
	background: var(--secondary-color);
	border-radius: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 14px;
	color: #FFFFFF;
	pointer-events: none;
	transition: all 0.3s;
}

.z_submit>div img {
	width: 8px;
	height: 8px;
	margin-left: 30px;
	display: block;
}



/* 底部区域 */
.z_ft {
	width: 100%;
	padding: 80px 0;
	box-sizing: border-box;
}

.z_ft_w {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.z_ft1 {
	flex: none;
     display: flex;
    flex-direction: column;
    gap: 40px;
}

.z_ft1 a {
	display: block;
}
.z_ft_logo{
    font-family: "Alimama ShuHeiTi";
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	background: linear-gradient(90deg, #DBBE9B 0%, #C8BFB4 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.z_ft_logo img{
    height: 29px;
    display: block;
}
.z_ft1_1a{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.z_ft1_1{
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.z_ft1_1 img{
    display: flex;
    margin-right: 12px;
    width: 20px;
    height: 20px;
}
.z_ft2 {
	display: flex;
	gap: 80px;
}

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

.z_ft2 ul li {
	line-height: 30px;
}

.z_ft2 ul li:first-child {
	margin-bottom: 20px;
	line-height: 22px;
}

.z_ft2 ul li:first-child a {
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 22px;
}

.z_ft2 ul li a {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 30px;
	transition: all 0.3s;
	text-decoration: none;
}

.z_ft2 ul li a:hover {
	color: #fff;
	text-decoration: underline;
}

.z_ft3 {
	text-align: center;
	font-weight: 400;
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	line-height: 22px;
	padding: 20px 0 0;
}

.z_ft3 a {
	color: rgba(255, 255, 255, 0.5);
}
