﻿#SLIDE {
    border-bottom: 1px solid silver;
    width: 100%;
    text-align:center;
    overflow: hidden;
    position: relative;
}
#SLIDE_CONTENT {
    height: 500px;
    display:flex;
    background-color:azure;
}
#SLIDE_CONTENT img {
    height: 100%;
}
#SLIDE_PAGE {
    display: inline-block;
    cursor:pointer;
    position: absolute;
    top: 450px;
    left:500px;
    padding: 5px 10px;
    border-radius: 15px;
}
#SLIDE_PAGE:hover {
    background-color: white;
    color:brown;
}

#SLIDE_LEFT {
    display: inline-block;
    position: absolute;
    background-color: transparent;
    top: 220px;
    left: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    opacity:60%;
}

    #SLIDE_LEFT:hover {
        background-color: whitesmoke;
        opacity: 100%;
    }

#SLIDE_RIGHT {
    display: inline-block;
    position: absolute;
    background-color: transparent;
    top: 220px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 60%;
}

    #SLIDE_RIGHT:hover {
        background-color: whitesmoke;
        opacity: 100%;
    }

.IMG_DIS {
    width:1200px;
}

#CATEGORY {
    display: flex;
    width: 1178px;
    border: 1px solid silver;
    padding: 10px;
    background-color: white;
    justify-content: space-between;
}

div#NEWITEM {
    width: 1198px;
    background-color: white;
    border:1px solid silver;
    border-top:none;
}

    div#NEWITEM .item-title {
        display: flex;
        color:darkslategray;
        justify-content: center;
        padding: 20px;
        background-color:whitesmoke;
        font-size: 18px;
        font-weight: bold;
        border-bottom:1px solid silver;
    }

        div#NEWITEM .item-title i {
            display: flex;
            font-size: 18px;
            font-weight: bold;
            padding-right: 10px;
        }

div#NOTICE-MASK {
    z-index: 99999998;
    position: fixed;
    background-color: black;
    opacity: 0.1;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

div#NOTICE-BOX {
    z-index: 99999999;
    border: 5px solid firebrick;
    position: fixed;
    background-color: white;
}

div#NOTICE1 {
    padding-right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: darkslategray;
}

div#NOTICE2 {
    padding: 20px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
}

div#NOTICE3 {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.fa-star {
    color: brown !important;
}