
.nhselector_Modal{
    :global{
        .am-modal-header{
            padding:0.24rem 0.3rem 0.2rem;
            height: 0.8rem;
        }
    }
}
.nhselector_Container{
    .searchHeader{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 44px;
    }
    .searchWarp{
        // height: 0.88rem;
        flex: 1 1;
        background-color: #FFFFFF;
        :global{
            .am-search-input{
                border-radius: 1rem;
                border: 1.5px solid #EAEAEA;
                height: 0.6rem;
                background-color: #F2F2F2;
            }
            // 去掉取消按钮
            .am-search-cancel{
                display: none;
            }
            .am-search-input .am-search-clear{
                top: 0 !important;
            }
        }
    }

    .custom_drawer{
        position: relative;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        :global{
            .am-drawer-sidebar{
                background-color: #FFFFFF;
                overflow: auto;
                -webkit-overflow-scrolling: touch;
            }
            .am-drawer-sidebar .am-list {
                width: 100%;
                padding: 0;
            }
        }
    }
    
    .customListView{
        :global{
            .am-list-view-scrollview-content{
                // padding-bottom: 130px;
            }

            .am-list-item .am-list-line .am-list-content{
                width: 100%;
                font-weight: bold;
                font-size: 15px;
                padding: 0;
                height: auto;
                line-height: 1.5;
            }
        }
    }

    .itemList{
        display: flex;
        // justify-content: center;
        align-items: center;
        // padding-right: 20px;
        padding: 10px 0 10px 0px;
        width: 100%;
        position: relative;
        .itemList_img{
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
            >img{
                width: 48px;
                height: 48px;
            }
            margin-right: 10px;
        }
        .itemList_selectedWarp{
            position: absolute;
            right: 0;
            transition: all 0.1s linear;
        }
    }

    .hasSelectedWarp{
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 130px;
        background-color: #FFFFFF;
        box-shadow: 0px 1px 12px 0px rgba(0,0,0,0.12);
        padding: 6px 8px;
        text-align: left;
        .hasSelectedWarp_title{
            font-size: 0.28rem;
            color: rgba(0, 0, 0, 0.65);
            padding: 4px 0 10px 0;
            .allCheckWarp{
                position: absolute;
                right: 15px;
                top: 0;
                height: 36px;
                display: flex;
                align-items: center;
                >svg{
                    margin-left: 5px;
                }
            }
        }
        .hasSelectedWarp_content{
            white-space: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            min-height: 36px;
            &::-webkit-scrollbar {  // 去掉溢出时的滚动条
                width:0; 
                height:0; 
                display: none; 
            }
        }
        .selectedItem{
            display: inline-block;
            padding: 4px 6px;
            background-color: rgba(0, 0, 0, 0.15);
            color: rgba(0, 0, 0, 0.65);
            border-radius: 4px;
            position: relative;
            padding-right: 26px;
            margin-right: 8px;
            >svg{
                position: absolute;
                right: 4px;
                top: 4px;
            }
        }
    }

}