* {
    margin: 0;
    padding: 0;
}

:root {
    --page-width: 1920px;
    --page-height: 1080px;
}

.page-wrap {
    min-height: var(--page-height);
    max-height: var(--page-height);
    min-width: var(--page-width);
    background-image: url(/screen/images/page_bg.png);
    overflow-y: hidden;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
}

.time-text {
    position: absolute;
    color: white;
    font-size: 30px;
    left: 370px;
    top: 30px;
    letter-spacing: 2px;
}

.date-text {
    position: absolute;
    color: white;
    font-size: 28px;
    right: 290px;
    top: 34px;
    letter-spacing: 2px;
}

.home-icon {
    position: absolute;
    left: 165px;
    top: 10px;
}

.close-icon {
    position: absolute;
    right: 165px;
    top: 10px;
}

.sys-title {
    background-image: url('/screen/images/title_bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    text-align: center;
    width: 800px;
    min-width: 800px;
    padding: 20px 0;
    margin: 0 auto;
    flex-shrink: 0;
}

.page-content {
    flex: 1;
    display: flex;
    padding: 50px;
    gap: 20px;
}

.page-content .left-wrap {
    flex-shrink: 0;
    width: 400px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}

.page-content .right-wrap {
    flex: 1;
    display: flex;


}

.page-content .right-wrap .right-right-wrap {
    width: 400px;
    flex-shrink: 0;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}

.page-content .right-left-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-sizing: border-box;
}

.page-content .right-wrap .right-inner-wrap {
    flex: 1;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.page-content .right-wrap .right-inner-bottom-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.page-content .right-wrap .right-inner-bottom-wrap .nav-item {
    background-image: url(/screen/images/default_btn_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 130px;
    height: 50px;
    text-align: center;
    line-height: 3;
    color: white;
    cursor: pointer;
    text-decoration: unset;
}

.page-content .right-wrap .right-inner-bottom-wrap .nav-item:hover {
    background-image: url(/screen/images/active_btn_bg.png) !important;
    text-shadow: 0 0 5px #00fcff;
}



.page-content .right-wrap .right-inner-bottom-wrap .nav-item-active {
    background-image: url(/screen/images/active_btn_bg.png) !important;
    text-shadow: 0 0 5px #00fcff;
}

.right-right-wrap .card-item {
    background-image: url(/screen/images/card_bezel_bg_r.png) !important;
}

.right-right-wrap .card-item .card-title {
    left: 56%;
}

.card-item {
    background-image: url(/screen/images/card_bezel_bg.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position-x: center;
    position: relative;
    padding: 55px 20px;
    box-sizing: border-box;
}

.card-item .card-title {
    text-shadow: 0 0 5px #00fcff;
    color: white;
    font-size: 20px;
    position: absolute;
    left: 24%;
    top: 0px;
}



.circle-num {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    background: radial-gradient(#168DCC, #07D4ED);
}

.fish-inner p:nth-child(1) .circle-num {
    color: white;
    background: linear-gradient(to bottom, #F86A28, #FAAC1C);
}

.fish-inner p:nth-child(2) .circle-num {
    color: white;
    background: linear-gradient(to bottom, #EB3FDF, #EA3E72);
}

.fish-inner p:nth-child(3) .circle-num {
    color: white;
    background: linear-gradient(to bottom, #0354D6, #00D2E6);
}

.company-image {
    height: 100px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
}

.company-desc {
    color: white;
    font-size: 14px;
    text-indent: 20px;
    cursor: pointer;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ky-wrap .ky-inner {
    display: flex;
    color: #7DDFF1;
    gap: 10px;
}

.ky-wrap .ky-inner img {
    width: 175px;
    height: 185px;
    align-self: flex-end;
}

.ky-wrap .ky-inner p {
    line-height: 1.7;
    font-size: 15px;
    cursor: pointer;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fish-wrap .fish-inner {
    display: flex;
    color: #7DDFF1;
    gap: 10px;
    align-items: flex-start;
}

.fish-wrap .fish-inner img {
    width: 160px;
    height: 180px;
    flex-shrink: 0;
}

.fish-wrap .fish-inner p {
    line-height: 1.7;
    font-size: 15px;
    cursor: pointer;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;

}



.hl-wrap .t-wrap {}

.hl-wrap table {
    width: 100%;
    color: #7DDFF1;
    text-align: center;
    border: unset;
    border-collapse: collapse;
    position: relative;
    top: -10px;
}

.hl-wrap table th {
    padding: 3px 0;
}

.hl-wrap table td {
    height: 28px;
    line-height: 28px;
    font-size: 14px;
}

.hl-wrap table tr:nth-child(odd) {
    /* background-color: #145091; */
}

.page-content .right-wrap .hl-wrap {
    padding-left: 10px !important;
    padding-right: 8px !important;
    background-image: url(/screen/images/card_bezel_bg_r_table.png) !important;

}

#sk-charts,
#fish-charts {
    width: 100%;
    height: 180px;
    position: relative;
}
