@charset "utf-8";

.widget-worktime {
    height: 22px;
    overflow: hidden;
    position: absolute;
    padding-left: 30px;
    right: 0;
    bottom: 30px;
}
.widget-worktime ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-worktime li {
    display: flex;
    align-items: center;
    width: 540px;
}
.widget-worktime .current {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    padding-left: 35px;
    position: relative;
}
.widget-worktime .current:before {
    content: '';
    display: block;
    width: 26px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 2px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}
.widget-worktime li.iso-kr .current:before {
    background-image: url('../imgs/iso-kr@2x.png');
}
.widget-worktime li.iso-vn .current:before {
    background-image: url('../imgs/iso-vn@2x.png');
}
.widget-worktime .status {
    display: inline-block;
}
.widget-worktime .date {
    flex: 0 0 210px;
    text-align: right;
    color: rgba(107, 118, 132, 0.7);
    font-size: 14px;
    font-weight: 500;
}
.widget-worktime .control {
    position: absolute;
    left: 0;
    top: 2px;
    width: 8px;
    height: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.widget-worktime .control div {
    background: url('../imgs/button.png') no-repeat 0 0;
    width: 8px;
    height: 6px;
}
.widget-worktime .control .next {
    transform: rotate(180deg);
}
/* -- mobile*/
.widget-worktime.mobile {
    right: auto;
    left: 50%;
    bottom: 15px;
    padding-left: 0;
    transform: translateX(-50%);
    white-space: nowrap;
}
.widget-worktime.mobile li {
    width: 100%;
}
.widget-worktime.mobile .current {
    font-size: 16px;
}
.widget-worktime.mobile .date {
    display: none;
}




