.content{
    position: relative;
    min-height: 500px;
    width:100%;
    margin-bottom:20px;
}
.box{
    -webkit-box-shadow: #666 0px 0px 10px; 
    -moz-box-shadow: #666 0px 0px 10px; 
    box-shadow: #666 0px 0px 10px; 
    /* background: #EEFF99;  */
    width:80%;
    min-height:400px;
    display: block;
    box-sizing: border-box;
    padding:20px 50px;
}
.substence {
    display: inline-block;
    font-size: 14px;
    width: 80%;
    text-align: justify;
    text-justify: inter-character;
}
.right{
    float: right;
}
.left{
    float:left;
}
.layui-container .title {
    width: 100%;
    height: 80px;
    font-weight: 800;
    font-size: 18px;
    color: #4682B4;
}
    .layui-container .title .name::after {
        content: '';
        width: 200px;
        height: 3px;
        background: #FFD700;
        /*1.首先使伪类显示方式为块级元素*/
        display: block;
        /*2.通过相对定位的方式控制两侧内容的位置*/
        position: relative;
        top: -15px;
        left: 100px;
    }
.layui-card{
    box-shadow:none;
    text-align:center;
}
.image {
    background: #EEFF99;
    width: 300px;
    min-height: 300px;
    position: absolute;
    transform: translateY(5%);
    top: 25%;
}
.guide {
    position: fixed;
    left: 10px !important;
    z-index: 99;
    top: 10px;
    display: none;
}
.guide ul {
    width: 100%;
    height: 100%;
}
.guide ul li {
    line-height: 50px;
    text-align: center;
}
.guide ul li:hover{
    cursor:pointer;
}
@media screen and (min-width: 1200px){
    .guide{
        width:150px;
    }
}
@media screen and (min-width: 992px){
    .guide{
        width:200px;
    }
}
@media screen and (min-width: 768px){
    .guide{
        width:150px;
    }
}