html,
body,
body>form,
body>form>.main {
    height: 100%;
    margin: 0;
    overflow-y: auto;
}

.ul-no-style,
.action-list,
.tab-btns-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.action-list>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.75rem;
    background-color: rgb(212, 227, 250);
    border-bottom: 1px solid rgb(187, 194, 223);
    text-decoration: none;
    color: #222;
    position: relative;
}

.action-list>li>a:hover {
    background-color: #2F528F;
    color: #FFF;
}

.action-list>li>a>img {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 2.25rem;
}

.action-list>li>a>p {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.action-list>li>a::after {
    content: "";
    background-color: #2F528F;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 1rem;
    position: absolute;
    display: block;
    width: 1.375rem;
    height: 1.375rem;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23FFFFFF%3B%22%20points%3D%223.404%2C2.051%208.354%2C7%203.404%2C11.95%205.525%2C14.07%2012.596%2C7%205.525%2C-0.071%20%22%2F%3E%3C%2Fsvg%3E");
}

/* ＝＝＝＝＝＝ 分頁 ＝＝＝＝＝＝ */

.tab-div {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
}

.tab-btns-div {
    flex-grow: 0;
    flex-shrink: 0;
}

.tab-contents-div {
    flex-grow: 1;
    flex-shrink: 1;
    height: 100%;
    overflow-y: auto;
}

.tab-btns-list,
.ui-navbar ul.tab-btns-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.tab-li {
    flex: 1;
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.8rem;
    text-decoration: none;
    background-color: rgb(212, 227, 250);
    color: #000;
    font-weight: bold;
}

.tab-li+.tab-li .tab-btn {
    border-left: 1px solid rgb(187, 194, 223);
}

.tab-btn.is-selected {
    background-color: #2F528F;
    color: white;
}

.tab-content-div {
    display: none;
    height: 100%;
    overflow-y: auto;
    padding: 1rem;
}

.tab-content-div.is-opened {
    display: block;
}

/* ＝＝＝＝＝＝ 拖吊場 ＝＝＝＝＝＝ */

.towing-yards .towing-yard {
    padding: 0.375rem 0.375rem 0.375rem 0.675rem;
    position: relative;
    font-size: 0.95rem;
    background-color: #d4e3fa;
    color: #222;
    text-shadow: 0 1px 0 #eeeeee;
    font-weight: bold;
    border-bottom: 1px solid #BBC2DF;
    line-height: 1.3;
}

.towing-yards .towing-yard:not(.towing-yard-recommend):hover {
    background-color: #2F528F;
    border-color: #808080;
    color: #ffffff;
    text-shadow: 0 1px 0 #eeeeee;
}

.towing-yards .towing-yard-recommend {
    border: 2px solid red;
    text-shadow: 0 1px 0 #444444;
    background-color: #CCEEFF;
}

.towing-yards .towing-yard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.towing-yards .img-navigation {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
}

.towing-yards .towing-yard-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* ＝＝＝＝＝＝ 功能樣式 ＝＝＝＝＝＝ */

.h-100 {
    height: 100% !important;
}

.oy-a {
    overflow-y: auto !important;
}