﻿
/* 重置与基础 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background: url(../images/gb/manageindexnew/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;
}

/* 头部导航 */
header {
    /* box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.07); */
    /* background: rgba(37, 91, 199, 1); */
    padding: 0 24px;
    display: flex;
    align-items: center;
    font-size: 14px;
    height: 60px;
    justify-content: space-between;
    color: #fff;
}

.logo {
    margin-top: 4px;
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}


.footer {
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .footer .name {
        color: rgba(34, 34, 34, 1);
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 4px;
    }

    .footer .tel {
        color: rgba(102, 102, 102, 1);
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
    }



.container {
    text-align: center;
    height: inherit;
    position: relative;
    padding-right: 86px;
    padding-left: 86px;
    display: flex;
    flex-direction: column;
}

h1 {
    width: 650px;
    height: 82px;
    background: url(../images/gb/manageindexnew/title.png) no-repeat 0 0;
    background-size: cover;
    margin: 0 auto;
    flex-shrink: 0;
    margin-bottom: 82px;
}

.grid {
    /* width: 1504px; */
    margin: 0 auto;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .grid .menu-card {
        flex: 0 0 calc(20% - 16px);
        cursor: pointer;
        padding: 20px 32px;
        display: flex;
        color: rgba(2, 2, 2, 1);
        font-size: 24px;
        align-items: center;
        margin-bottom: 38px;
        position: relative;
        font-weight: normal;
        height: 150px;
        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/manageindexnew/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;
        }


