* {
    box-sizing: border-box;
}
:root{
    --color-default:33, 37, 46;
    --color-black:0, 0, 0;
    --color-bg-gray:242, 244, 247;
    --color-dot-gray:216, 216, 216;
    --color-blue:34, 61, 112;
    --color-green:65, 161, 99;
    --color-bule:#223d70;
    --color-sea:#3685FB;
    --color-primary:#223d70;
    --color-success:#67C23A;
    --color-warning:#E6A23C;
    --color-yellow:#FFCF4D;
    --color-danger:#F56C6C;
    --color-info:#909399;
    --color-orange:#ff8b30;
    --color-white:#ffffff;
    --color-gray:#FAFBFC;
    --color-title-b14:#242424;
    --color-transparent:transparent;
    --text-primary:#494949;
    --text-regular:#606266;
    --text-secondary:#909399;
    --text-placeholder:#C0C4CC;
    --gap-5:5px;
    --gap-8:8px;
    --gap-10:10px;
    --gap-15:15px;
    --gap-20:20px;
    --gap-40:40px;
    --border-4:4px;
    --border-8:8px;
    --border-12:12px;
    --font-28:28px;
    --font-24:24px;
    --font-20:20px;
    --font-18:18px;
    --font-16:16px;
    --font-14:14px;
    --font-12:12px;
}
html {
    font-family:"Noto Sans SC",HarmonyOS Sans SC, "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
    font-size: 14px;
    line-height: 1.48;
    word-spacing: 1px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}
a{
    text-decoration: none;
    color: var(--color-sea);
}
input{
    outline: none;
    appearance: none;
}
.wrap{
    max-width: 1330px;
    min-width: 1240px;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

.clearfix:after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
}

.master-page-body{
    height: 100%;
    padding: 10px;
    margin: 0;
    border-radius: 8px;
}
.master-list-btn a span{
    font-size: 12px;
}
.page-search .page-search-btn{
    display: flex;
    align-items: center;
}

.page-search-btn .search-launch{
    white-space: nowrap;
    font-size: 12px;
    margin-left: 8px;
    cursor: pointer;
    color: #223d70;
}
/* src/styles/skeleton.css */
.skeleton-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.skeleton-item {
    background-color: #e0e0e0;
}

/* 脉冲动画 */
.skeleton-pulse {
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* 波浪动画 */
.skeleton-wave {
    position: relative;
    overflow: hidden;
}

.skeleton-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
    );
    animation: skeleton-wave 1.6s linear infinite;
}

@keyframes skeleton-wave {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
::v-deep .el-popover{
    min-height: 340px !important;
    overflow-y: auto !important;
}