/* 工具全局 */
#tools-wrap {
    display: flex;
    justify-content: center;
}
.tools-column {
    width: 300px;
    height: 150px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .05);
    margin: 10px;
}
.tools-column .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(31 41 55);
}
.tools-column .accept {
    position: relative;
    float: right;
    font-size: 0.75rem;
    line-height: 1rem;
    background-color: rgb(17 24 39);
    font-weight: 500;
    border-radius: 0.5rem;
    color: #fff;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    border: none;
    transition: all .15s cubic-bezier(0.4, 0, 0.2, 1);
}
.tools-column .accept:hover {
    background-color: rgb(55 65 81);
}
.tools-column .accept:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.tools-body{
    margin : 10px 0px;
}

/* 食物 */
.tools-body .description {
    color: rgb(75 85 99);
}

/* 人民币转换器 */
#Money {
    font-family: monospace;
    max-width: 180px;
    outline: none;
    border: 1px solid #dadada;
    padding: 0px;
    border-radius: 5px;
    background-color: #f3f7fe;
    transition: .3s;
    color: #3b82f6;
}