.page-column {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: 1200px;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.page-column-item {
    flex: 1;
    width: 392px;
    height: 262px;
    background: linear-gradient(167deg, #FFFFFF 0%, #F2F8FF 100%), #FFFFFF;
}

.page-column-table {
    width: 594px;
    height: 356px;
}

.page-column-chart {
    width: 594px;
    height: 356px;
}

.page-column-item-title {
    display: flex;
    align-items: center;
    width: 392px;
    height: 62px;
    padding: 0 16px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #DBECFD 0%, rgba(255, 255, 255, 0) 100%);
}

.page-column-table .page-column-item-title,
.page-column-chart .page-column-item-title {
    width: 594px;
}

.page-column-item-title-label {
    display: flex;
    flex: 1;
    align-items: center;
}

.page-column-item-title-label img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.page-column-item-title-label span {
    height: 22px;
    font-weight: 600;
    font-size: 16px;
    color: #262626;
    line-height: 22px;
}

.page-column-item-title-label span b {
    color: #115DB2;
}

.page-column-item-title-more {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.page-column-item-title-more span {
    height: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #8F8F8F;
    line-height: 20px;
}

.page-column-item-title-more img {
    width: 14px;
    height: 14px;
    margin-left: 4px;
}

.page-column-table .page-table {
    top: 0;
}

.page-column-table .page-table .page-table-body {
    height: 220px;
    border: none;
}

.page-column-table .page-table .page-table-body table tr {
    border-bottom: 1px solid #F0F0F0;
}

.page-column-table .page-table tr {
    height: 37px;
}

.page-column-table .page-table th {
    background: #EAEFF5;
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.page-column-table .page-table td {
    font-weight: 400;
    font-size: 14px;
    color: #262626;
    line-height: 20px;
}


.page-column-table table td.red {
    color: #D40000;
}

.page-column-table table td.green {
    color: #01A31C;
}

/* 修改滚动条整体样式 */
.page-column-table ::-webkit-scrollbar {
    width: 4px;
}

/* 修改滚动条轨道样式 */
.page-column-table ::-webkit-scrollbar-track {
    background: #FFFFFF;
}

/* 修改滚动条滑块样式 */
.page-column-table ::-webkit-scrollbar-thumb {
    background-color: #DDDDDD;
    border-radius: 4px;
}

#chart {
    margin: auto;
    width: 565px;
    height: 260px;
    text-align: center;
}

.page-column-item-list {
    box-sizing: border-box;
    height: 200px;
    padding: 16px;
}

.page-column-table .page-column-item-list,
.page-column-chart .page-column-item-list {
    height: 294px;
}

.page-column-item-list-content {
    display: flex;
    align-items: center;
    height: 20px;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 14px;
    color: #262626;
    line-height: 20px;
}

.page-column-item-list-content:last-child {
    margin-bottom: 0;
}

.page-column-item-list-content .icon {
    width: 4px;
    height: 4px;
    margin-right: 6px;
    border-radius: 50%;
    background: #DDDDDD;
}

.page-column-item-list-content:hover .icon {
    background: #115DB2;
}

.page-column-item-list-content .text {
    flex: 1;
    height: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #262626;
    line-height: 20px;
}

.page-column-item-list-content .text:hover {
    color: #115DB2;
}

.marquee-content {
    height: 200px;
    overflow: hidden;
}

.marquee-content .marquee-content-list-item {
    display: flex;
    align-items: center;
    height: 36px;
    font-weight: 400;
    font-size: 14px;
    color: #262626;
    line-height: 36px;
}

.marquee-content .marquee-content-list-item p {
    display: flex;
    align-items: center;
    flex: 1;
    width: 346px;
}

.marquee-content-list-item {
    display: flex;
    align-items: center;
}

.marquee-content .marquee-content-list-item-icon {
    width: 4px;
    height: 4px;
    margin-right: 6px;
    border-radius: 50%;
    background: #DDDDDD;
}

@keyframes marquee-animation {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }

}

.page-column-hidden {
    display: none;
}

.page-column-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1200px;
    height: 64px;
    background: linear-gradient(137deg, #FFFFFF 0%, #F2F8FF 100%);
    margin: 20px auto 0;
    cursor: pointer;
}

.page-column-more-text {
    height: 24px;
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
    color: #115DB2;
    margin-right: 8px;
}

.page-column-more-arrow {
    width: 24px;
    height: 24px;
}

.empty-tip {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #666666;
    font-size: 16px;
}

.empty-tip img {
    width: 124px;
    height: 80px;
}

.empty-tip span {
    height: 20px;
    margin-top: 16px;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    line-height: 20px;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-list {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 1200px;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.page-list-left {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.page-list-left-top {
    display: flex;
    align-items: center;
    gap: 12px;
}


.page-column-company {
    width: 796px;
}

.page-list-right {
    width: 392px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-column-banner {
    display: flex;
    align-items: center;
    position: relative;
    width: 392px;
    height: 168px;
    border-radius: 4px;
}

.page-column-search {
    background: linear-gradient(135deg, #0A54D9 0%, rgba(26, 139, 238, 0.12) 100%);
    background: url("../images/index-search-banner.png") no-repeat;
    background-size: 100% 100%;
}

.page-column-custom {
    background: linear-gradient(135deg, #128E11 0%, rgba(16, 192, 27, 0.1) 100%);
    background: url("../images/index-custom-banner.png") no-repeat;
    background-size: 100% 100%;
}

.page-column-train {
    background: linear-gradient(135deg, #DE6905 0%, rgba(241, 160, 2, 0.13) 100%);
    background: url("../images/index-train-banner.png") no-repeat;
    background-size: 100% 100%;
}

.page-column-banner-tip {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 32px;
    background: #D40000;
    font-weight: 400;
    font-size: 11px;
    color: #FFFFFF;
}

.page-column-banner-icon {
    width: 44px;
    height: 44px;
    margin-left: 10px;
}

.page-column-banner-text {
    flex: 1;
    margin-left: 10px;
}

.page-column-banner-text-title {
    height: 32px;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 32px;
}

.page-column-banner-text-subtitle {
    height: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}

/* .page-column-search .page-column-banner-text-title {
    text-shadow: 0px 0px 6px #064E9E;
}

.page-column-search .page-column-banner-text-subtitle {
    text-shadow: 0px 0px 6px #064E9E;
}

.page-column-search .page-column-banner-text-title {
    text-shadow: 0px 0px 6px #00728B;
}

.page-column-search .page-column-banner-text-subtitle {
    text-shadow: 0px 0px 6px #064E9E;
}

.page-column-search .page-column-banner-text-title {
    text-shadow: 0px 0px 6px #A84200;
}

.page-column-search .page-column-banner-text-subtitle {
    text-shadow: 0px 0px 6px #A84200;
} */

.page-column-banner-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 24px;
    height: 24px;
}

.page-column-banner-arrow img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.page-top-info {
    position: fixed;
    top: 315px;
    right: 0;
    width: 168px;
    height: 132px;
    background: #FFFFFF;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

.page-top-login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    width: 168px;
    height: 132px;
}

.page-top-login-top {
    display: flex;
    align-items: center;
}

.page-top-login-top img {
    width: 36px;
    height: 36px;
}

.page-top-login-top span {
    margin-left: 8px;
    height: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #262626;
    line-height: 20px;
}


.page-top-login-button {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-top-login-button p {
    box-sizing: border-box;
    width: 60px;
    height: 32px;
    line-height: 32px;
    font-weight: 400;
    font-size: 14px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DDDDDD;
    color: #262626;
    cursor: pointer;
    text-align: center;

}

.page-top-login-button p.active {
    background: #115DB2;
    color: #FFFFFF;
    border: none;
}

.page-top-center {
    display: none;
    padding: 32px 12px 24px 16px;
    text-align: center;
    background: #FFFFFF;
}

.page-top-center-name {
    height: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #262626;
    line-height: 20px;
}

.page-top-center-button {
    margin-top: 16px;
}

.page-top-center-button {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.page-top-center-button p {
    box-sizing: border-box;
    width: 88px;
    line-height: 32px;
    height: 32px;
    font-weight: 400;
    font-size: 14px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DDDDDD;
    color: #262626;
    cursor: pointer;
    text-align: center;
}

.page-top-center-button p.active {
    border: none;
    background: #115DB2;
    color: #FFFFFF;
}

.page-top-center-button .limit,
.page-top-center-button .auth {
    display: none;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.price-index-modal {
    display: none;
    position: absolute;
    width: 1200px;
    height: 813px;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.03);
    border-radius: 13px;
    z-index: 9999;
}

.price-chart-modal {
    display: none;
    position: absolute;
    width: 1200px;
    height: 1031px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    z-index: 9999;
}

.table-loading {
    height: 260px;
    line-height: 180px;
    color: #666666;
    font-size: 18px;
    border-bottom: 1px solid #E6E6E6;
    text-align: center;
}

.chart-loading {
    height: 200px;
    line-height: 200px;
    color: #666666;
    font-size: 18px;
    text-align: center;
}

/* 覆盖下拉框的样式 */
.column-select {
    margin-right: 140px;
}

.column-select .layui-form-item {
    margin-bottom: 0;
}

.column-select .layui-input-block {
    min-height: 30px;
    margin-left: 0;
}

.column-select .layui-select-title {
    width: 186px;
}

.column-select .layui-form-select .layui-input {
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #EAEFF5;
    height: 30px;
    font-weight: 400;
    font-size: 14px;
    color: #262626;
}

.column-select .layui-form-select dl {
    padding: 4px;
}

.column-select .layui-form-select dl dd,
.column-select .layui-form-select dl dt {
    line-height: 30px;
    font-weight: 400;
    font-size: 14px;
    color: #262626;
    margin-bottom: 4px;
}

.column-select .layui-form-select dl dd:hover,
.column-select .layui-form-select dl dd.layui-this,
.column-select .layui-form-select dl dd.layui-this,
.column-select .layui-btn {
    background: #EAEFF5;
}

.index-tip {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666666;
    font-size: 16px;
}

.page-table-body .index-tip {
    height: 260px;
    line-height: 260px;
    border-bottom: 1px solid #E6E6E6;
}