/**
重置css
 */
.grid-demo {
    border: 1px solid #00ff84;
    text-align: center;
    font-size: 14px;
}
.mobile-head-language{
    display: none;
}
/* 确保header始终固定在顶部 */
.page_head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* 使用高z-index确保不会被其他内容覆盖 */
    width: 100%;
}

/* 分页样式 */
/* 基础重置 */
#pull_right {
    width: 100%;
    padding: 5px 0;
    box-sizing: border-box;
    overflow: hidden;
    /* 防止分页溢出 */
}

.pull_right {
    display: flex;
    justify-content: center;
    /* 居中显示 */
    align-items: center;
}

.pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    /* 小屏幕自动换行 */
    gap: 6px;
    /* 页码间距 */
    justify-content: center;
}

.pagination li {
    margin: 0;
    padding: 5px 5px;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    min-width: 36px;
    /* 保证点击区域大小 */
    height: 36px;
    line-height: 36px;
    /* 垂直居中 */
    text-align: center;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    background-color: #f5f5f5;
    touch-action: manipulation;
    /* 优化触摸体验 */
}


/* 禁用状态（上一页/下一页不可点击时） */
.pagination li.disabled span {
    color: #999;
    background-color: #eee;
    cursor: not-allowed;
}

/* 当前页样式 */
.pagination li.active span,
.pagination li.layui-menu-item-checked span {
    background-color: #007bff;
    /* 主题色 */
    color: #fff;
    font-weight: bold;
    border: none;
}

/* 链接悬停/点击效果 */
.pagination li a:hover {
    background-color: #e9ecef;
}

.pagination li a:active {
    background-color: #dde1e6;
}

/* 可选：添加滚动时的背景变化效果，增强视觉体验 */
.page_head {
    transition: background-color 0.3s ease;
    background-color: transparent;
    /* 初始背景透明 */
}

.page_head.fixed-nav-appear {
    background-color: #fff;
    /* 滚动后显示实色背景 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* 可选：添加阴影增强层次感 */
}

.page_head.fixed-nav-disappear {
    background-color: transparent;
    /* 滚动后隐藏背景 */
}

/* 避免页面内容被固定导航遮挡 */
/* 与导航高度一致 */
body {
    padding-top: 82px;
}
.margin-top-30 {
    margin-top: 30px;
}
@media only screen and (max-width: 950px) {
    body {
        padding-top: 0px;
    }
    .page_head,.mobile-head-items {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        /* 使用高z-index确保不会被其他内容覆盖 */
        z-index: 9999999999;
        width: 100%;
    }

    
    #header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        border: none;
        z-index: 2;
    }
}


.gotops {
    /* 按钮容器定位 */
    position: fixed;
    right: 5px;
    bottom: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
    /* 默认隐藏 */
    z-index: 999;
    /* 确保在页面顶层 */
}

.gotops em {
    /* 圆形按钮样式 */
    font-size: 12px;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background-image: url(/sikaien/imgs/top.png);
    background-size: 30px 30px;
    /* 控制宽高 */
    background-repeat: no-repeat;
    /* 避免图片重复（可选） */
    border-radius: 50%;
    /* 圆形 */
    text-align: center;
    line-height: 30px;
    /* 文字垂直居中 */
    opacity: 0.8;
    transition: all 0.3s;
}

.gotops em:hover {
    background-color: #555;
    /* hover效果 */
    opacity: 1;
}

.width-percent-100 {
    width: 100%;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-20 {
    font-size: 20px;
}

.font-color-red {
    color: red;
}

.font-color-white {
    color: white;
}

.text-align-center {
    text-align: center;
}

.global_h2_v1 {
    font-size: 26px;
    text-align: center;
    padding: 20px 0;
    font-weight: 500;
    color: #000;
    line-height: 24px;
}

.global_p_v1 {
    text-align: center;
    line-height: 24px;
    color: #666666;
    padding: 10px 0;
}

.global_p_v1_contents {
    padding-top: 100%;
}

.global_p_v1_contents h3 {
    font-size: 14px;
    font-weight: 500;
    width: calc(100% - 30px);
    text-align: center;
    line-height: 24px;
    position: absolute;
    top: 73%;
    color: #9e9b9b;
    padding: 0 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    left: 10px;
}

.global_p_v1_contents span {
    width: calc(100% - 30px);
    text-align: center;
    line-height: 24px;
    position: absolute;
    top: 80%;
    color: #777777;
    padding: 0 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    left: 10px;
}

.global_p_v1_contents h3 a {
    font-size: 14px;
    color: #073E7B;
}

.global_p_v1_contents span a {
    font-size: 18px;
    color: #073E7B;
}
.global_p_v1_contents h3 a:hover,
.global_p_v1_contents span a:hover {
    color: #922626;
}


/* 手机端样式（<768px） */
@media screen and (max-width: 770px) {
    
    .global_h2_v1 {
        font-size: 20px;
    }

    .global_p_v1_contents h3 {
        top: 72%;
    }

    .global_p_v1_contents span {
        top: 80%;
    }

    .global_p_v1_contents h3 a {
        font-size: 18px;
    }

    .global_p_v1_contents h3 a:hover,
    .global_p_v1_contents span a {
        font-size: 18px;
    }
}


.global_a_v1 {
    text-align: center;
}

.global_a_v1 a {
    display: inline-block;
    padding: 8px 40px;
    margin: 0 10px;
    margin-top: 15px;
    /* 蓝色到红色的45度角渐变 */
    /* background: linear-gradient(45deg, #073E7B, #f8d0d0); */
    background: #D0092E;
    /* 蓝色到红色的45度角渐变 */
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.global_a_v1 a:hover {
    opacity: 0.9;
}

/* 手机端样式（<768px） */
@media screen and (max-width: 770px) {
    .global_a_v1 a {
        width: 100%;
        font-size: 16px;
    }
}

/* 重置 layui 样式 S */
.layui-form-select dl dd.layui-this {
    background-color: #f8f8f8;
    color: #26336d;
    font-weight: 700
}

.layui-input,
.layui-textarea {
    display: block;
    width: 100%;
    padding-left: 10px;
    border: 1px solid #26336d;
}

.layui-btn-group .layui-btn-primary:hover {
    border-color: #d2d2d2;
    color: #26336d
}

.layui-input:hover,
.layui-textarea:hover {
    border-color: #d2d2d2 !important
}

.layui-input:focus,
.layui-textarea:focus {
    border-color: #26336d !important;
    box-shadow: 0 0 0 3px rgba(22, 183, 119, .08)
}

/* 重置 layui 样式 E */

/* 常见问题说明 S */
.question_answer_list li {
    cursor: pointer;
    border: 1px solid #aeaeae;
    width: 100%;
    margin: 10px auto;
}

.question_answer_list h3 {
    font-size: 12px;
    /* font-weight: normal; */
}

.question_answer_to {
    float: right;
    line-height: 16px;
    font-size: 14px;
}

.answer {
    display: none;
    font-size: 12px;
    padding: 10px;
    line-height: 20px;
}

.question {
    font-size: 14px;
    padding: 10px;
}

/* 常见问题说明 E */