.layui-header{
    position: static !important;
}

.layui-footer{
    display: block;
    height: 100px;
    margin-top: 20px;
}
.index_types{
    margin-top: 28px;
    background-color: #fff;
    text-align: center;
}
.index_box{
    position: relative;
    /*border: 1px solid gold;*/
    font-size: 1rem;
    border-radius: 6px;
    transition: all .3s;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-top: 16px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 2px 4px 1px rgba(0, 0, 0, .09);

    &::before,
    &::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 60px;
        pointer-events: none;
    }

    &::before {
        top: -2px;
        left: -2px;
        border-top: 2px solid gold;
        border-left: 2px solid gold;
        pointer-events: none;
        border-radius: 6px;
    }

    &::after {
        right: -2px;
        bottom: -2px;
        border-bottom: 2px solid gold;
        border-right: 2px solid gold;
        pointer-events: none;
        border-radius: 6px;
    }

    /*&:hover::before,*/
    /*&:hover::after {*/
    /*    width: calc(100% + 9px);*/
    /*    height: calc(100% + 9px);*/
    /*    transition: 1s ease;*/
    /*    border-radius: 20px;*/
    /*    pointer-events: none;*/
    /*}*/
}

.index_box_header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #fff;
    line-height: 1;
}

.index_box_header img, .index_box_header span, .index_box_header i{
    width: 40px;
    height: 40px;
    margin-right: 5px;
    font-size: 40px;
}

.index_box_body{
    position: relative;
    margin-top: 1rem;
    font-size: .9rem;
    border-top: 1px solid #dddedf;
    padding-top: 1rem;
}

.index_box_body::before{
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    top: -6px;
    left: 15px;
    transform: rotate(45deg);
    border-top: 1px solid #dddedf;
    border-left: 1px solid #dddedf;
    background-color: #fff;
    pointer-events: none;
}
.index_box_body span{
    width: auto;
    text-align: left;
    color: #999;
    display: inline-block;
    float: left;
}
.index_box_body a{
    width: auto;
    text-align: right;
    display: inline-block;
    float: right;
}
.index_box_body p{
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 在溢出的部分显示省略号 */
    color: #999;
    font-size: 12px;
}