    .infoBoxContent {
        font-size: 12px;
        color: #000;
        border: 1px solid #ff5e14;
        background: rgba(255, 255, 255, .9);
        padding: 10px 10px;
        line-height: 24px;
        width: 280px;
        position: relative;
        border-radius: 6px;
    }

    .border-triangle-bottom {
        width: 100px;
        height: 30px;
        border: 1px solid #ff5e14;
        position: relative;
        border-radius: 6px;
    }

    .infoBoxContent:after,
    .infoBoxContent:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border: 12px solid transparent;
        border-top-color: rgb(255, 94, 20);
        left: 50%;
        margin-left: -20px;
        bottom: -24px;
    }

    .infoBoxContent:after {
        border-top-color: #fff;
        bottom: -23px;
    }



    .infoBoxContent .title {
        height: 42px;
        font-size: 14px;
        line-height: 42px;
        /* padding-left: 30px; */
    }

    .infoBoxContent .title strong {
        font-size: 14px;
        line-height: 42px;
        /* padding-left: 30px; */
    }

    .infoBoxContent .content {
        border-top: none;
        height: 80px;

    }