.section-title {
    /*background-image: url("../../image/goods-bg/goods-ywly.png");*/
}

.scope-content {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
}

.scope-title {
    font-size: 32px;
    font-family: 'ssrrr', sans-serif;
    color: #0078c5;
    line-height: 50px;
}

.scope-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.scope-items .scope-item:nth-child(2n){
    flex-direction: row-reverse;
}
.scope-items .scope-item:nth-child(2n) .scope-right{
    padding: 50px 100px 50px 15%;
}
.scope-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #efefef;
    transform-origin: top center;
}

.scope-item .scope-left {
    width: 50%;
    height: 400px;
    overflow: hidden;
}
.scope-item .scope-right {
    width: 50%;
    height: 400px;
    box-sizing: border-box;
    padding: 50px 15% 50px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.scope-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}
.scope-item .scope-left:hover img{
    transform-origin: center;
    transform: scale(1.1);
}

.scope-item__title, .scope-item__synopsis, .scope-item__more {
    box-sizing: border-box;
}

.scope-item__title {
    color: #0078c5;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 50px;
    padding-top: 10px;
}

.scope-item__synopsis {
    color: #595757;
    height: 90px;
    line-height: 30px;
    overflow: hidden;
    letter-spacing: 2px;
}
.scope-item__more{
    width: 120px;
    color: #FFFFFF;
    background-color: #00a0e9;
    border-top-left-radius: 5px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 5px;
    font-size: 22px;
    text-align: center;line-height: 36px;
    cursor: pointer;
    transition: all .3s;
}
.scope-item__more:hover{
    color: #0078c5;
    background-color: #FFFFFF;
    box-shadow: 1px 1px 5px #dddddd;
}