:root {
    --primary-color: #00629B; /* 默认主题色 */
    --primary-color-light: #6ad7f6; /* 亮版主题色 */
    --primary-color-dark: #2980b9; /* 暗版主题色 */
}

.bg {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(250, 250, 250);
}

body{
    padding: 0;
    margin: 0;
    font-family: "Roboto";
}

a {
    text-decoration: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.85);
}

/* a:hover{
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
} */

.no-border:hover{
    border-bottom:0px;
    color: var(--primary-color);
}

.container {
    max-width: 1280px;    
    margin: 0 auto;    
    background-color: #fff;
    padding: 0 8px;
    box-sizing: border-box;
}

.color{
    color: var(--primary-color);
}

.clear {
    clear: both;
}

.flex-v{
    display: flex;
    align-items: center;
}

.flex-h{
    display: flex;
    justify-content: center;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-wrap{
    flex-wrap: wrap;
}

.text-center{
    text-align: center;
}

.web-card{
    background-color: #fff;
    border-radius: 2px;
    padding: 16px 16px;
    /* box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.15); */
}

.web-card-title-box{
    position: relative;
}

.web-card-title{
    font-size: 18px;
    font-weight: 600;
    color: #000000d9;
    margin-bottom: 8px;   
    padding: 0 8px 8px 12px; 
    border-bottom: 1px solid #E5E5E5;
}

.web-card-title-flag{
    position: absolute;
    top: 6px;
    left: 0px;
    width: 4px;
    height: 12px;
    border-radius: 4px;
    background: var(--primary-color);
}

.web-card-list{
    font-size: 14px;
    color: var(--primary-color);    
    margin-left: 5px;
    cursor: pointer;
    display: inline-block;    
    box-sizing: border-box;
    text-decoration-line: underline;
    line-height: 28px;
}

.button{
    background: none; /* 移除背景 */
    border: 1px solid var(--primary-color); /* 移除边框 */
    outline: none; /* 移除聚焦时的轮廓 */
    padding: 6px 10px; /* 移除内边距 */
    font-size: 12px; /* 设置字体大小 */
    color: var(--primary-color); /* 设置字体颜色 */
    cursor: pointer;
}

.button:hover{
    color:#fff;
    background-color: var(--primary-color);
}