﻿
/* 重置与基础 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    font-family: "Microsoft YaHei", sans-serif;
    background: url(../images/gb/pzgl/bg.png) no-repeat center center;
    color: #333;
    min-height: 950px;
    background-size: 100% 100%;
    position: relative;
}
*/
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


.container {
    text-align: center;
    height: inherit;
    position: relative;
    padding-right: 86px;
    padding-left: 86px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/*h1 {
    width: 650px;
    height: 82px;
    background: url(../img/title.png) no-repeat 0 0;
    background-size: cover;
    margin: 0 auto;
    flex-shrink: 0;
    margin-bottom: 82px;
}*/

.grid {
    /* width: 1504px; */
    margin: 156px auto;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .grid .menu-card {
        flex: 0 0 calc(50% - 16px);
        cursor: pointer;
        padding: 20px 32px;
        display: flex;
        color: rgba(2, 2, 2, 1);
        font-size: 22px;
        align-items: center;
        margin-bottom: 38px;
        position: relative;
        font-weight: normal;
        height: 130px;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 1);
        border-radius: 6px;
        backdrop-filter: blur(20px);
        background: linear-gradient(-45.00deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8) 100%);
    }

        .grid .menu-card .menu-title {
            display: flex;
            text-align: left;
        }

        .grid .menu-card:hover {
            border: 2px solid rgba(51, 111, 255, 1);
        }

            .grid .menu-card:hover .menu-title {
                font-weight: 700;
            }

        .grid .menu-card .title {
            font-weight: 600;
            color: rgba(255, 255, 255, 1);
            font-size: 16px;
            position: absolute;
            padding-left: 20px;
            left: 0;
            top: -32px;
        }

        .grid .menu-card .icon {
            width: 60px;
            height: 60px;
            margin-right: 28px;
        }

        .grid .menu-card .title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 12px;
            height: 12px;
            background: url(../images/gb/scjy/point.png) no-repeat 0 0;
            background-size: 100% 100%;
        }

        .grid .menu-card .guide {
            color: rgba(63, 115, 246, 1);
            position: absolute;
            right: 16px;
            bottom: 8px;
            font-size: 14px;
            text-decoration: none;
        }
