* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f4f5f7;
    font-family: "宋体", "微软雅黑", "黑体";
}

.jianli-mian {
    background-color: #fff;
    margin: 20px auto;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 12px 12px 24px #d0d0d0, -12px -12px 24px #f0f0f0;
}

.jianli-mian-title {
    font-size: 23px;
    line-height: 80px;
    margin-bottom: 10px;
    font-weight: 700 !important;
    text-align: center;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: inset 5px 5px 10px #dcdcdc, inset -5px -5px 10px #f1f1f1;
}

.jianli-bascinfo {
    padding: 10px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: inset 5px 5px 10px #dcdcdc, inset -5px -5px 10px #f1f1f1;
}

.jianli-bascinfo .jl-info {
    border-radius: 5px;
    margin: 10px;
    padding: 6px;
    font-size: 16px;
    background: #ffffff;
    box-shadow: 6px 6px 20px #d9d9d9, -6px -6px 20px #ffffff;
}

.jianli-bascinfo .jianli-tx {
    text-align: right;
    max-width: 130px;
    margin: 10px auto;
    margin-right: 10px;
    padding: 4px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 6px 6px 20px #dedede, -6px -6px 20px #ffffff;
}

.jianli-bascinfo img {
    width: 100%;
    height: 100%;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    border-radius: 4px;
}


/* 
*
*模块内容样式
*
 */

.jianli-modes {
    display: block;
    margin-bottom: 10px;
    clear: both;
}

.layui-row div:last-child {
  margin-bottom: 0px !important;
}

.jianli-mode-title {
    display: inline-block;
    margin-bottom: 10px;
}

.jianli-mode-title>h2 {
    font-weight: 700;
}

.mode-icon {
    margin: 0 5px;
    font-size: 18px !important;
}

.content {
    padding: 15px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: inset 5px 5px 10px #dcdcdc, inset -5px -5px 10px #f1f1f1;
}

.jianli-cont-title {
    font-weight: 700;
}

.jianli-cont-con {
    text-align: center;
}

.jianli-cont-right {
    text-align: right;
}

.jianli-cont-text {
    line-height: 28px;
}

.jianli-cont-txticon::before {
    content: " ";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 99px;
    background: linear-gradient(145deg, #fff);
    box-shadow: 1px 1px 6px #d9d9d9, -1px -1px 6px #ffffff;
}


/*
* footer
*/

.jianli-footer {
    text-align: center;
    margin-top: 30px;
    line-height: 20px;
    margin-bottom: 10px;
}


/* 按钮边框的大小、位置、样式 */

.toTop-arrow {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    display: none;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 5px 5px 15px #e6e6e6, -5px -5px 15px #ffffff;
}

.btn-top-icon {
    color: #000;
    font-size: 32px;
    font-weight: 700;
}


/* 取消点击按钮时的聚焦 */

.toTop-arrow:focus {
    outline: none;
}

/**
*滚动条样式
*/

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 99px;
    background-color: #5e5e5e;
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #f6f6f6;
}

/**
*自适应
*/

@media (max-width: 767px) {
    .jianli-mian {
        margin: 10px !important;
    }
    .jianli-mian-title {
        font-size: 18px;
        line-height: 60px;
    }
    .jianli-cont-title {
        line-height: 25px !important;
    }
    .jianli-cont-title>span::before {
        display: inline-block;
        content: "";
        height: 12px;
        width: 12px;
        margin-right: 5px;
        border-radius: 2px;
        background: #ffffff;
        box-shadow: 1px 1px 6px #cccccc, -1px -1px 6px #ffffff;
    }
    .jianli-cont-con {
        text-align: unset !important;
    }
    .jianli-cont-right {
        text-align: unset !important;
    }
    .toTop-arrow {
        right: 0.5rem;
        bottom: 3rem;
    }
}