index.css 1.2 KB
body {
    padding: 0;
    margin: 0;
    color: #FFFFFF;
}

.index_bg {
    width: 100%;
    height: 100vh;
    /*background-color: #f5f5f5;*/
    background-image: url(./img/bg.png);
    background-size: 100% 100%;
}

.index_header {
    width: 100%;
    height: 80px;
    /*background-color: #fff;*/
    position: absolute;
    top: 25%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0px 4px 4px rgba(0, 40, 85, 0.72);
    font-size: 32px;
}

.index_core {
    width: 100%;
    height: 350px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;

}

.index_core_item {
    width: 261px;
    height: 350px;
    margin: 0 20px;
    cursor: pointer;
    border-radius: 16px;
}
.index_core_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_core_item:hover {
    box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.3);
}

.index_footer {
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index_footer div {
    margin: 0 20px;
}