



.fuwu_bg{
    height: 421px;
}
.fuwu_bg>img{
    width: 100%;
    height: 100%;
}

.fuwu_list{
    margin-top: 44px;
    margin-bottom: 85px;
    position: relative;
    /*margin-top: -55px;*/
}
.fuwu_pos{

}
.fuwu_list_main{
    display: grid;
    /*grid-template-columns: repeat(4, 1fr);*/
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* 最小宽度为100px，最大宽度等分 */

    column-gap: 20px;
    row-gap: 20px;
}
.index_fuwu_item {
    background: #fff;
    border-radius: 7px;
}
.index_fuwu_item:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 20px rgba(16, 85, 189, .1);
    transform: translate(0, -.25rem) rotate(0) skew(0) skewY(0) scaleX(1) scaleY(1);
}

.index_fuwu_item_img {
    margin: 10px 10px 25px 10px;
    background: #7e889a;
    height: 217px;
}
.index_fuwu_item_img >img{
    width: 100%;
    height: 100%;
}


/* 新增CSS样式 */
/* 服务商模块样式增强 */
.index_fuwu_item .index_fuwu_item_img {
    position: relative;
    overflow: hidden; /* 新增：防止遮罩溢出 */
}

/* 遮罩层样式 */
.index_fuwu_item .qr_mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    opacity: 0;
    transition: opacity 0.3s;
}

/* 鼠标悬停时显示遮罩 */
.index_fuwu_item:hover .qr_mask {
    opacity: 1;
}

/* 二维码容器样式优化 */
.index_fuwu_item .qr_code_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(255,255,255,0.9);
    padding: 20px; /* 增加内边距 */
    border-radius: 8px;
    max-width: 240px; /* 最大宽度 */
    width: 100%; /* 自适应宽度 */

    display: flex;          /* 新增：使用flex布局 */
    justify-content: center;/* 水平居中 */
    align-items: center;    /* 垂直居中 */
}

/* 二维码图片样式 */
.index_fuwu_item .qr_code_container img {
    max-width: 180px;
    height: auto;
    display: block;         /* 确保图片为块级元素 */
}

/* 悬停时显示二维码 */
.index_fuwu_item:hover .qr_code_container {
    opacity: 1;
}




.index_fuwu_item_title {
    padding: 13px 10px 9px 10px;
    border-top: 1px solid #d8d8d8;

    font-size: 17px;
    font-weight: 500;
    text-align: left;
    color: #999999;
}


/*
服务商版本
*/

.top-banner {
    cursor: pointer;
    position: relative;
}

.top-banner > img {
    width: 1200px;
    height: 246px;
}
.top-banner-text{
    position: absolute;
    top: 80px;
    left: 96px;
}
.top-banner-text > p:first-child {
    height: 48px;
    line-height: 48px;
    font-size: 36px;
    font-family: DOUYU, DOUYU-Regular;
    font-weight: 400;
    text-align: left;
    color: #2d3755;
    margin-bottom: 11px;
}
.top-banner-text > p:last-child {
    height: 28px;
    line-height: 28px;
    font-size: 20px;
    font-family: PingFang HK, PingFang HK-Regular;
    font-weight: 400;
    text-align: left;
    color: #2d3755;
}

.top-banner-ewm{
    position: absolute;
    top: 45px;
    right: 120px;
    width: 120px;
    height: 120px;
    background: #ffffff;
}
.top-banner-ewm > img{
    width: 100%;
    height: 100%;
}

.fuwu-list-main{

}
.fuwu-list{
    display: flex;
    flex-direction: column;

}
.detail-shop-info{
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-wrap: nowrap;
    cursor: pointer;
    margin-bottom: 20px;
}
.detail-shop-logo{
    width: 120px;
    height: 120px;
    border-radius: 5px;
    margin-right: 20px;
}
.detail-shop-logo img{
    border-radius: 5px;
    width: 100%;
    height: 100%;
}
.detail-shop-title{
    flex: 1;
    margin-top: 5px;
}
.detail-shop-title-name{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.detail-shop-title-name span{
    font-weight: 100;
    font-size: 14px;
    color: #828282;
    margin-left: 20px;
}
.detail-shop-title-desc{
    font-size: 16px;
    color: #828282;
}
.detail-shop-btn{
    display: flex;
    align-items: center;
}
.detail-shop-btn-btn{
    padding: 8px 20px;
    text-align: center;
    background: linear-gradient(180deg,#2d3755, #7e889a);
    border-radius: 6px;
    color: #fff;
}










.fuwu_center_card{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 9px;
    row-gap: 20px;
}
.c_card{
    width: 293px;
    cursor: pointer;
}
.c_card:hover{
    box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 20px rgba(16, 85, 189, .1);
    transform: translate(0, -.25rem) rotate(0) skew(0) skewY(0) scaleX(1) scaleY(1);
}
.c_card_item{
    padding: 9px 10px;

    background: #ffffff;
}
.c_card_img{
    height: 217px;
    background: #7e889a;
    margin-bottom: 10px;
}
.c_card_img>img{
    width: 100%;
   height: 100%;
    background: #7e889a;
}
.c_card_title{
    margin-top: 9px;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    color: #333333;
    margin-bottom: 5px;
}
.c_card_price{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: #666;
}

.c_price{
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    color: #2d3755;
    /*width: 70px;*/

    margin-left: -6px;
    margin-right: 10px;

}
.c_price>span:first-child{
}
.c_price>span:last-child{

}
.c_tips{
    width: 129px;
    height: 30px;
    line-height: 30px;
    background: linear-gradient(90deg,#ffdbb4, #ffffff);
    border-radius: 15px;
}
.c_tips>p{
    padding-left: 14px;
    font-size: 11px;
    font-weight: 500;
    text-align: left;
    color: #e96d20;
    margin-bottom: 13px;
}
.c_card_bottom{
    padding: 12px 10px;
    border-top: 2px solid  #f2f4f7;
    background: #fff;
    font-size: 11px;
    font-weight: 500;
    text-align: left;
    color: #999999;
}