/*PC端样式*/
@media screen and (min-width: 1000px) {
    .box{
        position: relative;
        width: 80%;
        /*height: 1024px;*/
        opacity: 1;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        /*border-width: 0px 1px 1px 0px;
        border-style: solid;
        border-color: rgb(255, 217, 0);*/
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-top: 1px;
        display: flex;
        display: -webkit-flex; /* Safari */ /*Webkit内核的浏览器，需要加上-webkit前缀*/
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        align-content: flex-start;
    }

    .neirong_box{
        width: 45%;
        height: auto;
        min-height: 150px;
        opacity: 1;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.3);
        border-width: 0px 1px 1px 0px;
        border-style: solid;
        border-color: rgba(255, 255, 255, 1);
        margin: 10px;
        display: flex;
        display: -webkit-flex; /* Safari */ /*Webkit内核的浏览器，需要加上-webkit前缀*/
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .neirong_box:hover{
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    }

    .neirong_box_img{
        width: 100px;
        height: 100px;
        opacity: 1;
        /*background: rgba(255, 255, 255, 1);*/
        border-radius: 10px;
        margin: 25px;
        overflow: hidden;
        /*margin-top: 49%;*/
    }

    .neirong_box_img_style{
        width: 100px;
        height: 100px;
    }

    .neirong_box_hezi{
        width: calc(100% - 180px);
        height: auto;
        margin: 10px 20px 10px 0px;
        /*background-color: aqua;*/
    }

    .neirong_box_hezi_biaoti{
        margin-top: 0px;
        color: rgba(30, 0, 202, 1);
        font-weight: bold;
        font-size: 22px;
    }

    .neirong_box_hezi_miaoshu{
        font-size: 18px;
        color: rgba(50, 50, 50, 1);
    }

    .neirong_box_hezi_miaoshu a{
        color: rgba(50, 50, 50, 1);
    }

    .neirong_box_hezi_miaoshu a:hover{
        color: rgba(0, 0, 255, 1);
    }
}
/*移动端样式*/
@media screen and (max-width: 1000px) {
    .box{
        position: relative;
        width: 90%;
        /*height: 1024px;*/
        opacity: 1;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        /*border-width: 0px 1px 1px 0px;
        border-style: solid;
        border-color: rgb(255, 217, 0);*/
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-top: 1px;
        display: flex;
        display: -webkit-flex; /* Safari */ /*Webkit内核的浏览器，需要加上-webkit前缀*/
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
    }

    .neirong_box{
        width: 90%;
        height: auto;
        min-height: 150px;
        opacity: 1;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.3);
        border-width: 0px 1px 1px 0px;
        border-style: solid;
        border-color: rgba(255, 255, 255, 1);
        margin: 10px;
        padding-left: 10px;
        display: flex;
        display: -webkit-flex; /* Safari */ /*Webkit内核的浏览器，需要加上-webkit前缀*/
        flex-direction: column;
        align-content: center;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .neirong_box:hover{
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    }

    .neirong_box_img{
        margin: 0 auto;
        width: 100px;
        height: 100px;
        opacity: 1;
        /*background: rgba(255, 255, 255, 1);*/
        border-radius: 10px;
        overflow: hidden;
        /*margin-top: 49%;*/
    }

    .neirong_box_img_style{
        width: 100px;
        height: 100px;
    }

    .neirong_box_hezi{
        width: 100%;
        height: auto;
        margin: 10px 20px 10px 0px;
        /*background-color: aqua;*/
    }

    .neirong_box_hezi_biaoti{
        margin-top: 0px;
        color: rgba(30, 0, 202, 1);
        font-weight: bold;
        font-size: 22px;
        text-align: center;
    }

    .neirong_box_hezi_miaoshu{
        font-size: 18px;
        color: rgba(50, 50, 50, 1);
    }
    
    .neirong_box_hezi_miaoshu a{
        color: rgba(50, 50, 50, 1);
    }
    
    .neirong_box_hezi_miaoshu a:hover{
        color: rgba(0, 0, 255, 1);
    }
}