*{
    padding: 0;
    margin: 0;
}
body{
    background: url('../img/banner_bg.png') no-repeat top center;
    background-size: cover;
    height: 100vh;
    min-width: 1240px;
}
/*.t{*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: -12px;*/
/*    transform: translateX(-50%);*/
/*}*/
.content{
    width: 1200px;
    height: 420px;
    background-color: rgba(255, 255, 255, .85);
    border-radius: 24px;
    border: 1px solid #e6e6e6;
    position: absolute;
    left: 50%;
    top: 280px;
    transform: translateX(-50%);
    padding: 50px 60px;
}

.title{
    width: 100%;
    position: absolute;
    left: 0;
    top: -50px;
}

.items{
    display: flex;
    gap: 24px;
    padding-top: 46px;
    box-sizing: border-box;
}

.item{
    width: 288px;
    height: 288px;
    box-shadow: 0px 8px 40px 0px rgba(161, 125, 177, 0.3);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.item:hover{
    transform: translateY(-10px);
}

.item1{
    background: #c5587d url('../img/icon1.png') no-repeat center calc(100% - 10px);
}

.item2{
    margin-top: 40px;
    background: #ec8f8a url('../img/icon2.png') no-repeat center calc(100% - 10px);
}

.item3{
    background: #e17f68 url('../img/icon3.png') no-repeat center calc(100% - 10px);
}

.item4{
    margin-top: 40px;
    background: #eebc7f url('../img/icon4.png') no-repeat center calc(100% - 10px);
}

.item5{
    background: #9978e5 url('../img/icon1.png') no-repeat center calc(100% - 10px);
}

.item span{
    display: block;
    color: #ffffff;
    margin-top: 50px;
    padding: 0px 30px;
    font-size: 24px;
    font-weight: bold;
    line-height: 34px;
    text-shadow: 2px 0px 0px rgba(182, 52, 24, 0.3);
    
}