.fund {
    /* background-color: #ccc; */
    margin: 40px auto;
}
.fund .link {
    color: green;
}
.fund .button {
    box-sizing: border-box;
    display: inline-block;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #2271b1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.2em;
    font-weight: 400;
    transition: background-color .2s;
    box-shadow: 0px 2px 0px #1a5686;
}
.fund .button:hover  {
    background-color: #267fc6;
}
.fund .block .button {
    width: 100%;
    margin: 10px 0;
}
.fund .block {
    background-color: #ecf4fc;
    border-radius: 6px;
    padding: 20px;
}
.fund .block > span {
    display: flex;
    justify-content: space-between;
}
.fund .riskimage {
    margin: 0 auto 10px;
    display: block;
    width: 60%;
}
.fund .morningstar span {
    color: #ccc;
}
.fund .morningstar span.highlight {
    color: #ff5400;
}
.fund .yieldtable {
    border-collapse: collapse;
    border-radius: 5px;
}
.fund .yieldtable td {
    padding: 10px;
    background-color: #ecf4fc;
}
.fund b {
    font-weight: 500;
}
.fund .concat {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.fund .link.expand {
    cursor: pointer;
}
