.duoyuyan-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .duoyuyan-dropbtn {
            background-color: #222222;
            color: #FF9900;
            padding: 8px 0 10px 25px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 4px;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .duoyuyan-dropbtn:hover {
            background-color: #222222;
			color: #FFFFFF;
        }
        
        .duoyuyan-arrow {
            width: 10px;
            height: 10px; 
            transition: transform 0.3s ease;
        }
        
        .duoyuyan-dropdown:hover .duoyuyan-arrow {
            transform: rotate(180deg);
        }
        
        .duoyuyan-dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1000;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .duoyuyan-dropdown-content a {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
            transition: background-color 0.2s;
        }
        
        .duoyuyan-dropdown-content a:hover {
            background-color: #f1f1f1;
        }
        
        .duoyuyan-dropdown:hover .duoyuyan-dropdown-content {
            display: block;
        }
        
        .duoyuyan-dropdown-item img {
            width: 24px;
            height: 16px;
            margin-right: 10px;
            object-fit: cover;
            border: 1px solid #ddd;
        }
		
	   /* µØÍ¼Í¼±êÑùÊ½ */
        #duoyuyan-map {
            margin-right: 2px;
            margin-left: 0;
            font-size: 0;
            width: 20px;
            height: 20px;
            -webkit-border-radius: 100%;
            background: url(1.gif) #FF9900 no-repeat center center;
            background-size: cover;
            display: block;
        }