.service-support {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    min-height: 290px;
    background-color: #f3f5f8;
    padding: 20px;
    position: relative;
}

.use-scenarios {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    height: 490px;
    background-color: #f3f5f8;
    padding: 20px;
    position: relative;
}

.use-scenarios-box {
    flex: 1;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
    /* line-height: 0; */
    position: relative;
}

.use-scenarios-box:not(:first-child) {
    margin-left: 2%;
}

.use-scenarios-box > img {
    width: 200%;
    height: calc(100% - 10vh);
    object-fit: cover;
    transition: .5s;
}

.use-scenarios-box > span {
    font-size: 3.8vh;
    display: block;
    text-align: center;
    height: 10vh;
    line-height: 2.6;
}
.scenarios-surface {
    position: absolute;
    padding: 20px;
    top: 0;
    color: white;
    visibility: visible;
    opacity: 1;
    transition: .5s;
    border: 1px solid white;
    width: 100%;
    height: calc(100% - 10vh);
    display: flex;
    flex-direction: column;
}
.scenarios-cont {
    position: absolute;
    padding: 20px;
    top: 0;
    color: white;
    visibility: hidden;
    opacity: 0;
    transition: .5s;
    border: 1px solid white;
    width: 100%;
    height: calc(100% - 10vh);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.use-scenarios-box:hover {
    flex: 1 1 50%;
}

.use-scenarios-box:hover > img {
    width: 100%;
    opacity: 0.1;
}
.use-scenarios-box:hover > .scenarios-cont {
    visibility: visible;
    opacity: 1;
    color: black;
}

.use-scenarios-box-active {
    flex: 1 1 50%;
    width: 100%;
    height: 100%;
    opacity: 1!important;
    visibility: visible!important;
    color: black!important;
}

.use-scenarios-item-text {
    font-size: 16px;
    color: #181818;
    opacity: .8;
}

.use-scenarios-button {
    display: inline-block;
    box-sizing: border-box;
    min-width: 104px;
    height: 36px;
    padding: 0 24px;
    color: #fff;
    font-size: 14px;
    line-height: 34px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background-color: #0052d9;
    border: 1px solid transparent;
    outline: 0 none;
    cursor: pointer;
    box-shadow: 8px 8px 20px 0 rgb(55 99 170 / 10%);
}

.use-scenarios-button:hover {
    background-color: #2670e8;
    box-shadow: none;
    transition: all .3s ease-in-out;
}