.system-show {
    padding-top: 68px;
}

.system-show .show-outer {
    position: relative;
}

.system-show .show-outer .show-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.system-show .show-outer .show-list {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}

.system-show .show-outer .show-list .show-option {
    width: calc((100% - 200px) / 4);
    height: 210px;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    flex: 0 0 1;
}

.system-show .show-outer .show-list .show-option .show-title {
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #1d2129;
    font-weight: 550;
}

.system-show .show-outer .show-list .show-option .show-icon {
    margin: 0 auto;
    width: 108px;
    height: 108px;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .system-show {
        padding-top: 50px;
    }

    .system-show .show-outer .show-list {

        padding: 20px 20px 10px;

    }

    .system-show .show-outer .show-list .show-option {
        width: calc((100% - 50px) / 4);
        height: 80px;
        background-color: #fff;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .system-show .show-outer .show-list .show-option .show-title {
        height: 30px;
        font-size: 12px;

    }

    .system-show .show-outer .show-list .show-option .show-icon {
        margin: 0 auto;
        width: 40px;
        height: 40px;
    }
}