﻿* {
    margin: 0px;
    padding: 0px;
}

body {
    background-image: url("/image/h_bg.png");
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 40px;
    left: 0px;
    padding: 12px 0px;
    box-sizing: border-box;
    z-index: 1000;
    background-image: url("/image/h_bg.png");
}

.search {
    width: 90vw;
    display: flex;
    align-items: center;
    background-color: white;
    height: 42px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}

    .search > div {
        height: 100%;
    }

        .search > div:nth-child(2) {
            flex: 1;
        }

    .search select {
        font-size: 13px;
    }

    .search input {
        width: 100%;
        text-indent: 1rem;
    }


    .search select,
    .search input {
        outline: none;
        border: 0px;
        height: 100%;
    }

    .search > div:last-child {
        font-size: 14px;
        display: flex;
        align-items: center;
    }

#data {
    margin-top: 106px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.news {
    width: 100%;
    display: flex;
    margin: 16px;
    border: 1px solid #786052;
    box-sizing: border-box;
    position: relative;
}

    .news > div > img {
        width: 120px;
        height: 90px;
        display: flex;
    }

    .news > div:nth-child(2) {
        flex: 1;
        width: 0px;
        padding: 12px 16px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .news > div:nth-child(2) > div {
            width: 100%;
        }

            .news > div:nth-child(2) > div:first-child {
                color: black;
                font-size: 15px;
            }

            .news > div:nth-child(2) > div:last-child {
                color: #786052;
                font-size: 13px;
                display: flex;
            }

                .news > div:nth-child(2) > div:last-child > div {
                    border-top: 1px solid #786052;
                    border-bottom: 1px solid #786052;
                    padding: 4px;
                }

    .news > div:last-child {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

        .news > div:last-child > div:first-child {
            position: relative;
            width: 100%;
            height: 100%;
        }

            .news > div:last-child > div:first-child > div {
                width: 15px;
                height: 15px;
            }

                .news > div:last-child > div:first-child > div:nth-child(1) {
                    position: absolute;
                    top: -1px;
                    left: -1px;
                    transform: rotate(-90deg);
                    background-image: url("/image/ns1.png");
                }

                .news > div:last-child > div:first-child > div:nth-child(2) {
                    position: absolute;
                    top: -1px;
                    right: -1px;
                    background-image: url("/image/ns1.png");
                }

                .news > div:last-child > div:first-child > div:nth-child(3) {
                    position: absolute;
                    bottom: -1px;
                    left: -1px;
                    transform: rotate(180deg);
                    background-image: url("/image/ns1.png");
                }

                .news > div:last-child > div:first-child > div:nth-child(4) {
                    position: absolute;
                    bottom: -1px;
                    right: -1px;
                    transform: rotate(90deg);
                    background-image: url("/image/ns1.png");
                }


.product {
    width: 50%;
    height: calc((100vw - 64px) / 2 / 9 * 16);
    display: flex;
    padding: 16px;
    box-sizing: border-box;
}

    .product > div {
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
    }

        .product > div > div:first-child {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
        }

            .product > div > div:first-child > div {
                padding-top: 15px;
                padding-right: 15px;
                width: 18px;
                color: white;
            }

            .product > div > div:first-child img {
                width: 24px;
                height: 24px;
                padding-top: 15px;
                margin-right: 6px;
            }

        .product > div > div:last-child {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
        }

            .product > div > div:last-child > div {
                width: 15px;
                height: 15px;
            }

                .product > div > div:last-child > div:nth-child(1) {
                    position: absolute;
                    top: 0px;
                    left: 0px;
                    transform: rotate(-90deg);
                    background-image: url("/image/p4.png");
                }

                .product > div > div:last-child > div:nth-child(2) {
                    position: absolute;
                    top: 0px;
                    right: 0px;
                    background-image: url("/image/p4.png");
                }

                .product > div > div:last-child > div:nth-child(3) {
                    position: absolute;
                    bottom: 0px;
                    left: 0px;
                    transform: rotate(180deg);
                    background-image: url("/image/p4.png");
                }

                .product > div > div:last-child > div:nth-child(4) {
                    position: absolute;
                    bottom: 0px;
                    right: 0px;
                    transform: rotate(90deg);
                    background-image: url("/image/p4.png");
                }
