<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#chooseShop{
    width: 390px;
    background: #ffffff;
    border: 1px solid #ff960e;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 38px;
    z-index: 100;
    font-size: 12px;
    font-weight: 700;
    cursor: default;
}
#chooseShop&gt;.listBox{
    max-height: 300px;
    overflow-y: scroll;
    padding: 10px 10px;
}
#chooseShop&gt;.listBox::-webkit-scrollbar {/*æ»šåŠ¨æ¡æ•´ä½“æ&nbsp;·å¼*/
    width: 2px;     /*é«˜å®½åˆ†åˆ«å¯¹åº”æ¨ªç«–æ»šåŠ¨æ¡çš„å°ºå¯¸*/
    height: 2px;
    /*scrollbar-arrow-color:red;*/

}
#chooseShop&gt;.listBox::-webkit-scrollbar-thumb {/*æ»šåŠ¨æ¡é‡Œé¢å°æ–¹å—*/
    border-radius: 1px;
    -webkit-box-shadow: inset 0 0 5px #D8D8D8;
    background: #D8D8D8;
    scrollbar-arrow-color:#D8D8D8;
}
#chooseShop:after{
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #ff960e;
    content: " ";
    position: absolute;
    top: -11px;
    left: 40px;
    z-index: 100;
}
#chooseShop:before{
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid white;
    content: " ";
    top: -9px;
    position: absolute;
    left: 40px;
    z-index:999;
}
#chooseShop&gt;.listBox&gt;.list{
    position: relative;
    padding:5px 10px;
    line-height: 24px;
}
#chooseShop&gt;.listBox&gt;.list&gt;.name{
    font-size: 14px;
    font-weight: bold;
}
#chooseShop&gt;.listBox&gt;.list&gt;.name&gt;span{
    color: #FF960E;
    font-size: 12px;
    margin-left: 10px;
    cursor: pointer;
}
#chooseShop&gt;.listBox&gt;.list&gt;.address{
    color: #666666;
    font-size: 13px;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 320px;
}
#chooseShop&gt;.listBox&gt;.list:not(:last-child){
    border-bottom: 1px solid #D8D8D8;
}
#chooseShop .btn{
    position: absolute;
    width: 50px;
    height: 20px;
    opacity: 1;
    background: #ff960e;
    border-radius: 3px;
    line-height: 20px;
    text-align: center;
    color: white;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
#chooseShop&gt;.map{
    transform:none;
}
#chooseShop&gt;.map&gt;.grayBg{
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    bottom:0;
    background: rgba(0,0,0,0.50);
    overflow: hidden;
}</pre></body></html>