body {
    background: #f5f5f5;
}

body.night {
    background: #131726;
}

.wrapper {
    padding: 10px;
    text-align: center;
    height: 100vh;

}

.status {
    display: flex;
    color: #333;
    font-size: 12px;
}

.night .status {
    color: #9EA7C4;
}

.status ul {
    display: flex;
    margin: 0 0 20px 10px;
}

.status ul li {
    margin-right: 10px;
}

.ways-item {
    padding: 0 8px;
    background: #fff;
    border-radius: 16px;
}

.night .ways-item {
    background: #191F36;
}

.status ul li i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    margin-right: 5px;
}


.status ul .green {
    background: #78D345;
}

.status ul .yellow {
    background: #F2994A;
}

.status ul .red {
    background: #EB5757;
}

.ways-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    margin-bottom: 10px;
}

.item-left {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.night .item-left {
    color: #E1E9FF;
}

.text {
    margin-right: 5px;
}

.link-btn {
    width: 66px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #D02443;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 10px;
}

.night .link-btn {
    background: #007AFF;
}


.reload {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #D02443;
    border-radius: 10px;
    height: 50px;
    color: #fff;
    width: 260px;
    padding: 10px 0px;
    margin-top: 50px;
}

.night .reload{
    background: #007AFF;
}

.reload img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.site {
    display: none;
}

.common-header{
    background: #f5f5f5;
}

.common-header .header-title {
    background-image: unset !important;
}

#js-nav {
    display: flex;
    justify-content: center; /* 外层容器置中 */
    align-items: center;
    height: 80px;
}

#js-nav ul {
    display: flex;
    justify-content: space-between; /* 子元素分散 */
    align-items: center;
    width: 100%; /* 固定宽度或最大宽度 */
    padding: 0;
    margin: 0;
    list-style: none;
}

#js-nav ul li {
    width: 48%;
    cursor: pointer;
    padding: 10px 20px;
    background: #fff;
    color: #999;
    border-radius: 30px;
    transition: background 0.2s ease;
}

.night #js-nav ul li {
    background: #191F36 !important;
    color: #999 !important;
}

.night #js-nav ul li.active {
    background: #007AFF !important;
    color: #fff !important;
}

#js-nav ul li:hover {
    background: #ddd;
}

#js-nav ul li.active {
    background: #d02443;
    color: #fff;
}

.night #js-nav ul li.active {
    background: #007AFF;
    color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

