@charset "utf-8";

.widget-exchange {
    background: var(--main-color);
    border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
    height: 162px;
    padding: 40px 20px 0;
}
.widget-exchange .title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.widget-exchange .title .iso {
    font-size: 12px;
    font-weight: normal;
    color: #ffffffcc;
    padding-left: 28px;
}
.widget-exchange .title .iso img {
    vertical-align: middle;
    margin: 0 2px 2px 0;
    height: 15px;
}
.widget-exchange .content {
    border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    height: 42px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.widget-exchange .content .group {
    flex: 1;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.widget-exchange .content strong {
    font-size: 12px;
    font-weight: normal;
    color: #ffffffb2;
}
.widget-exchange .content span {
    font-weight: normal;
}
.widget-exchange .content .red {
    color: #ff6565;
}
.widget-exchange .content .blue {
    color: #86d9ff;
}
/* -- mobile */
.widget-exchange.mobile {
    height: auto;
    padding: 20px;
}
.widget-exchange.mobile .content {
    flex-wrap: wrap;
    height: auto;
}
.widget-exchange.mobile .content .group {
    flex: 0 0 100%;
    height: 40px;
}






