﻿/* CSS Document   Version: 1.0.0
   Date: 2021/05/11
   Author: He Jing
   Copyright: www.east.net
*/

        #newInfoWindow {
            position: relative;
            width: 365px;
            /*height: 95px;*/
            /*padding: 15px 13px;*/
            background: #fff;
            font-size: 0px;
            box-sizing: border-box;
            box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
            padding: 10px;
            border-radius: 5px;
        }

        #newInfoWindow .icon.icon-infoWindowClose {
            position: absolute;
            right: 13px;
            top: 15px;
            z-index: 999;
            cursor: pointer;
        }

        #newInfoWindow * {
            box-sizing: border-box;
            position: relative;
        }

        #newInfoWindow .img,
        #newInfoWindow .cont {
            display: inline-block;
            vertical-align: text-top;
        }

        #newInfoWindow .img {
            width: 95px;
            height: 65px;
        }

        #newInfoWindow .img img {
            width: 100%;
            height: 100%;
        }

        #newInfoWindow .cont {
            width: 240px;
            height: 65px;
            padding-left: 30px;
        }

        #newInfoWindow .cont i.icon {
            position: absolute;
            top: 0px;
            left: 10px;
            transform: scale(0.8);
        }

        #newInfoWindow .cont p._title {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 16px;
            color: #333333;
            padding-right: 20px;
        }

        #newInfoWindow .cont p.font2 {
            color: #666;
            overflow: hidden;
            font-size: 12px;
            line-height: 180%;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        #newInfoWindow .cont #viewInfo {
            color: #206ab0;
            background: none;
            border: 0;
            font-size: 12px;
            float: right;
            cursor: pointer;
            position: absolute;
            bottom: 0px;
            right: 0;
            background: #fff;
            padding: 5px 0 5px 18px;
        }