* {
    margin: 0;
    padding: 0;
}

body {
    background: #fafafa;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.image-grid {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px; */
}

.image-item {
    width: 100%;
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
}

.image-item-linkBox {
    position: relative;
    margin-bottom: -1px;
}

.linkbox1 {
    position: absolute;
    width: 30%;
    height: 30%;
    /* background: #fff; */
    left: 15%;
    bottom: 0px;
}

.linkbox2 {
    position: absolute;
    width: 30%;
    height: 30%;
    /* background: #fff; */
    right: 15%;
    bottom: 0px;
}

.btnbox {
    position: fixed;
    height: 200px;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-20px);
    transition: all 0.3s ease;
    display: flex;
}

.btnbox.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btnboxlinkbox1 {
    width: 400px;
}

.btnboxlinkbox1 img {
    width: 400px;
}

.btnboxlinkbox2 {
    width: 400px;
}

.btnboxlinkbox2 img {
    width: 400px;
}