* {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    color: #444;
}

table {
    margin: 20px 0;
}
table caption {
    text-align: left;
    padding: 0 10px;
    margin: 10px 0;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    text-wrap: nowrap;
}
th,
td {
    padding: 2px 6px;
    text-align: center;
    text-wrap: nowrap;
}

.w80 {
    width: 80px;
    min-width: 80px;
}

.w50 {
    width: 50px;
    min-width: 50px;
}

.width-240 {
    width: 240px;
    max-width: 240px;
}

.today-row * {
    color: #006051;
}

.text-overflow {
    text-overflow: ellipsis;
    overflow: hidden;
}

.text-right {
    text-align: right !important;
}

select {
    padding: 2px;
    margin: 2px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
    font-size: 15px;
    color: #333;
    -webkit-appearance: none; /* 移除iOS上的默认样式 */
    -moz-appearance: none; /* 移除Firefox上的默认样式 */
    appearance: none; /* 移除默认样式 */
      
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="%23000" d="M2048 640v128H0V640h2048zm0 768v128H0v-128h2048z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%; /* 调整箭头位置 */
    background-size: 12px; /* 调整箭头大小 */
    width: 260px;
    text-align: center;
}

@media (max-width: 600px) {
    table {
        overflow-x: auto;
        display: block;
    }

    .w600-none {
        display: none;
    }

    .w600-show {
        text-align: left;
    }

    .w600-w80 {
        width: 84px;
        max-width: 84px;
    }
}
@media (min-width: 601px) { 
    .w600-show {
        display: none;
    }
}
