.tbutton {
    border-radius: 15px;
    background-color: #FA5053;
    color: white;
    border: none;
    padding: auto auto;
    //font-size: 18px;
    cursor: pointer;
    //writing-mode: vertical-lr; /* 使文本竖向排列，从右向左 */
    //text-orientation: mixed; /* 文本方向，mixed 是常用值 */
    transition: background-color 0.3s ease;
}

.tbutton:hover {
    background-color: #e3494c;
}

.htmlColor{
    color:white;
}

.t2button {
    border-radius: 15px;
    background-color: #006BED;
    color: white;
    border: none;
    padding: auto auto;
    //font-size: 18px;
    cursor: pointer;
   // writing-mode: vertical-lr; /* 使文本竖向排列，从右向左 */
    //text-orientation: mixed; /* 文本方向，mixed 是常用值 */
    transition: background-color 0.3s ease;
}

.t2button:hover {
    background-color: #006BED;
}

.tClosebutton {
    border-radius: 15px;
    background-color: #fcb2b2;
    color: white;
    border: none;
    padding: auto auto;
    //font-size: 18px;
    cursor: pointer;
   // writing-mode: vertical-lr; /* 使文本竖向排列，从右向左 */
    //text-orientation: mixed; /* 文本方向，mixed 是常用值 */
    transition: background-color 0.3s ease;
}

.tClosebutton:hover {
    background-color: #fcb2b2;
}

.t3button {
    border-radius: 15px;
    background-color: #3BA73B;
    color: white;
    border: none;
    padding: auto auto;
    font-size: 18px;
    cursor: pointer;
    writing-mode: vertical-lr; /* 使文本竖向排列，从右向左 */
    text-orientation: mixed; /* 文本方向，mixed 是常用值 */
    transition: background-color 0.3s ease;
}

.t3button:hover {
    background-color: #328432;
}
.dialog_button {
    border-radius: 15px;
    background-color: #3BA73B;
    color: white;
    border: none;
    padding: auto auto;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dialog_button:hover {
    background-color: #328432;
}
.dialog_no_button {
    border-radius: 15px;
    background-color: #FA5053;
    color: white;
    border: none;
    padding: auto auto;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dialog_no_button:hover {
    background-color: #e3494c;
}
.dialog_no_button_disEnabled{
    border-radius: 15px;
    background-color: #c4c4c4;
    color: white;
    border: none;
    padding: auto auto;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}