<!--

/**高德地图开始导航按钮样式**/

   #mapcontainer {
            width: 100%;
            height: 60px;
        }

        .nav-btn {
            display: block;
			font-size:38px; 
            margin: 70px auto;
            padding: 30px 42px;
            background: #007AFF;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
        }
		
		.nav-btn:hover {
             background: #025ccb; /* 悬停时颜色变深 */
             transition: background 0.3s ease; /* 添加过渡动画效果 ?:ml-citation{ref="6,7" data="citationList"} */
        }

        .nav-btn:active {
             background: #0555b7; /* 点击时颜色更深 */
        }
		
		
/**高德地图信息窗自定义样式**/
        #container {
            height: 880px;
            width: 100%;
        }
		
        .content-window-card {
            position: relative;
            box-shadow: none;
            bottom: 0;
            left: 0;
            width: auto;
            padding: 0;
        }

        .content-window-card p {
            height: 2rem;
        }

        .custom-info {
            border: solid 0px silver;
        }

        div.info-top {
            position: relative;
            background: none repeat scroll 0 0 #F8F8F8;
            border-bottom: 1px solid #CCCCCC;
            border-radius: 5px 5px 0 0;
        }

        div.info-top div {
            display: inline-block;
            color: #333333;
            font-size: 14px;
            font-weight: bold;
            line-height: 31px;
            padding: 0 10px;
        }

        div.info-top img {
            position: absolute;
            top: 10px;
            right: 10px;
            transition-duration: 0.25s;
        }

        div.info-top img:hover {
            box-shadow: 0px 0px 5px #000;
        }

        div.info-middle {
            font-size: 12px;
            padding: 10px 6px;
            line-height: 20px;
        }

        div.info-bottom {
            height: 0px;
            width: 100%;
            clear: both;
            text-align: center;
        }

        div.info-bottom img {
            position: relative;
            z-index: 104;
        }

        span {
            margin-left: 5px;
            font-size: 11px;
        }

        .info-middle img {
            float: left;
            margin-right: 6px;
        }


.info-middle {
  background: #FFFFFF;           /* 内容背景色 */
  border-left: 0px solid #DDDDDD;  /* 左侧分隔线 */
  border-right: 0px solid #DDDDDD; /* 右侧分隔线 */
  padding: 15px;
}

-->