
    .merchants_wrap {
        padding-top: 20px;
    }

    .merchants {
        padding-bottom: 70px;
    }

    .merchants_top {
        width: 100%;
        background: #F8F8F8;
        border-radius: 4px;
        padding: 12px 24px;
        margin-bottom: 20px;
    }

    .merchants_cell {
        display: flex;
    }

    .merchants_cell_content {
        flex: 1;
        display: flex;
        align-items: flex-start;
    }

    .merchants_cell_content_address_list,
    .merchants_cell_content_form_list {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        height: 38px;
        overflow: hidden;
    }

    .merchants_cell_content_form_list.open{
        height: auto;
    }

    .merchants_cell_label {
        width: 70px;
        line-height: 38px;
        font-weight: 400;
        font-size: 14px;
        color: #666666;
        text-align: right;
    }

    .merchants_cell_content_address_item,
    .merchants_cell_content_form_item {
        font-weight: 400;
        font-size: 14px;
        color: #000000;
        line-height: 38px;
        margin-left: 30px;
        cursor: pointer;
        /* margin-bottom: 4px; */
    }


    .merchants_cell_content_address_item.active,
    .merchants_cell_content_address_item:hover,
    .merchants_cell_content_form_item.active,
    .merchants_cell_content_form_item:hover {
        color: #00A378;
    }

    .merchants_cell_content_address_more {
        width: 42px;
        display: flex;
        align-items: center;
        font-weight: 400;
        font-size: 14px;
        color: #000000;
        line-height: 38px;
        margin-left: 30px;
        cursor: pointer;
        user-select: none;
    }

    .merchants_cell_content_address_more:hover {
        color: #00A378;
    }

    .merchants_cell_content_address_more img {
        width: 14px;
        height: 14px;
        transform: rotate(90deg);
        /* 变成#000000 */
        filter: brightness(0);
    }

    .merchants_cell_content_address_more.open img {
        transform: rotate(-90deg);
    }

    .merchants_cell_content_address_more:hover img {
        filter: brightness(1);
    }

    .merchants_cell_content_address_list.open {
        height: auto;
    }

    .merchants_search_wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .merchants_search_box {
        display: flex;
        align-items: center;
        background: #F8F8F8;
        border-radius: 4px;
        border: 1px solid #F0F0F0;
        /* padding: 9px 0; */
        font-size: 14px;
    }

    .merchants_search_input {
        width: 274px;
        outline: none;
        padding-left: 16px;
        padding-right: 12px;
        border: none;
    }

    .merchants_search_input::placeholder {
        color: #999999;
        font-size: 14px;
    }

    .merchants_search_input_line {
        width: 1px;
        height: 19px;
        background-color: #E5E7EB;
    }

    .merchants_search_btn {
        display: flex;
        align-items: center;
        padding: 9px 0;
        padding-left: 12px;
        padding-right: 16px;
        font-weight: 400;
        color: #333333;
        line-height: 22px;
        cursor: pointer;

    }

    .merchants_search_btn img {
        width: 17px;
        height: 17px;
        margin-right: 4px;
    }


    .merchants_list {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .merchants_list_item {
        position: relative;
        display: block;
        width: 590px;
        height: 188px;
        border-radius: 4px;
        border: 1px solid #E6E6E6;
        margin-right: 20px;
        margin-top: 20px;
        padding: 20px 16px;
        transition: all .2s;
        cursor: pointer;
    }

    .merchants_list_item_link {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 0;
    }


    .merchants_list_item:hover {
        box-shadow: 0px 2px 10px 0px rgba(174, 183, 191, 0.3);
    }

    .merchants_list_item:nth-child(-n+2) {
        margin-top: 0
    }

    .merchants_list_item:nth-child(2n) {
        margin-right: 0;
    }


    .merchants_list_item_top {
        display: flex;
        margin-bottom: 20px;
    }

    .merchants_main_business {
        font-weight: 400;
        font-size: 14px;
        color: #666666;
        line-height: 22px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .merchants_list_item_img {
        width: 160px;
        height: 106px;
        border-radius: 4px;
        display: block;
    }


    .merchants_list_item_info {
        max-width: 382px;
        margin-left: 16px;
        flex: 1;
    }

    .merchants_list_item_info_title {
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 18px;
        color: #000000;
        line-height: 26px;
    }

    .merchants_list_item_info_desc {
        display: flex;
        align-items: flex-start;
        font-weight: 400;
        font-size: 14px;
        color: #666666;
        line-height: 22px;
        margin-bottom: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .info_desc_entry {
        max-width: 50%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .info_desc_line {
        width: 1px;
        height: 12px;
        background-color: #E5E7EB;
        margin: 6px 12px;
    }

    .info_desc_market {
        display: flex;
        align-items: center;
        position: relative;
        color: #666666;
        flex: 1;
        /* max-width: 50%; */
        z-index: 2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .market_text{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .info_desc_market:hover {
        color: #00A378;
    }

    .info_desc_market_arrow{
        width: 14px;
        height: 14px;
        margin-top: 1px;
        margin-left: 2px;
        display: block;
    }

    .merchants_list_item_info_btn_wrap {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;

    }

    .merchants_list_item_info_location {
        display: flex;
        align-items: center;
        font-weight: 400;
        font-size: 14px;
        color: #666666;
        line-height: 22px;
    }

    .location_icon {
        width: 16px;
        height: 16px;
        margin-right: 2px;
    }

    .merchants_list_item_info_btn {
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 22px;
        padding: 4px 16px;
        background: #00A378;
        border-radius: 2px;
        cursor: pointer;
    }

    .merchants_list_item:hover .merchants_list_item_info_btn { 
        background: #00C28E;
    }
    
    .merchants_no_data_list {
        display: flex;
        flex-direction: column;
        padding: 150px 0 64px;
        align-items: center;
    }

    .no_merchant_list_img {
        width: 228px;
        height: 128px;
        display: block;
        margin-bottom: 16px;
    }

    .no_merchant_list_text {
        font-weight: 400;
        font-size: 16px;
        color: #969799;
        line-height: 24px;
    }


    .merchant_laypage_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .merchant_laypage_wrap .layui-laypage {
        margin: 0;
    }

    .layui-laypage a,
    .layui-laypage span {
        margin: 0;
    }

    #merchant_laypage .layui-laypage a,
    #merchant_laypage .layui-laypage .layui-laypage-curr,
    #merchant_laypage .layui-laypage .layui-laypage-spr {
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: #FFFFFF;
        border-radius: 5px;
        border: 1px solid #EBEBEB;
        margin-right: 8px;
        padding: 0;
        overflow: hidden;
    }

    #merchant_laypage .layui-laypage .layui-laypage-prev,
    #merchant_laypage .layui-laypage .layui-laypage-next {
        width: auto;
        padding: 0 12px;
    }

    #merchant_laypage .layui-laypage .layui-laypage-prev .layui-icon,
    #merchant_laypage .layui-laypage .layui-laypage-next .layui-icon {
        font-size: 14px;
    }

    .merchant_laypage_total {
        font-weight: 400;
        font-size: 12px;
        color: #666666;
        line-height: 20px;
        font-family: PingFang SC, Microsoft YaHei;
        margin-left: 20px;
    }