/*phone: w < 768px*/
@media screen and (max-width: 768px){
    .container{
        width:100%;
        /* background-color: green; */
    }
}
/*pad: w >= 768  && w< 992*/
@media screen and (max-width: 992px) and (min-width: 768px) {
    .container{
        width:100%;
        /* background-color: blue; */
    }
}
/*中等屏幕   w >= 992  && w<1200*/
@media screen and (max-width: 1200px) and (min-width: 992px) {
    .container{
        width:100%;
        /* background-color: pink; */
    }
}

.center-vertical {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
} 

.overWidth {
    width:150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: auto;
}

a.editable-click {
    width: 100px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: none;
    margin: auto;
}

.img-round {
    border-radius: 8px;
}

.logo {
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size:50px 50px;
}

.triangle {
    margin-top: 0px;
    margin-left: 24px; 
    border-radius: 3px;
    width: 0px;
    height: 0px;
    border-width: 13px;
    border-style: solid;
    border-color: rgb(164, 198, 57) rgb(164, 198, 57) transparent transparent;
}

.triangle img {
    margin-top: -12px;
    margin-left: 0px; 
}
