﻿/*PC端样式*/
@media screen and (min-width: 1000px) {
    .wailian{
    width: 80%;
    height: auto;
    /*background-color: aquamarine;*/
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    display: -webkit-flex; /* Safari */ /*Webkit内核的浏览器，需要加上-webkit前缀*/
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    }

    .wailian_box{
    width: 120px;
    height: 120px;
    margin: 4px 4px 4px 4px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 1));
    }

    .wailian_box:hover{
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
    }

    .wailian_icon{
    width: 100px;
    height: 90px;
    /*margin: 0px 5px 0px 5px;*/
    }

    .wailian_biaoti{
    width: 100%;
    margin: 0px;
    font-size: 14px;
    font-weight: bolder;
    color: rgba(0, 0, 0, 1);
    }
}

/*移动端样式*/
@media screen and (max-width: 1000px) {
    .wailian{
        width: 80%;
        height: auto;
        /*background-color: aquamarine;*/
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 10px;
        display: flex;
        display: -webkit-flex; /* Safari */ /*Webkit内核的浏览器，需要加上-webkit前缀*/
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        align-content: flex-start;
    }

    .wailian_box{
        width: 70px;
        height: 70px;
        margin: 4px 4px 4px 4px;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        border-width: 1px;
        border-color: rgb(255, 255, 255);
        border-style: solid;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 1));
        }
    
        .wailian_box:hover{
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
        }
    
        .wailian_icon{
        width: 70%;
        height: auto;
        /*margin: 0px 5px 0px 5px;*/
        }
    
        .wailian_biaoti{
        width: 100%;
        margin: 0px;
        font-size: 0.6em;
        font-weight: bolder;
        color: rgba(0, 0, 0, 1);
        }
}