﻿body {
    margin-top: 190px;
    color: #ffffff;
    background-color: #101010;
}

/*----- 內容背景樣式 -----*/
.content-wrap {
    width: 100%;
    background-image: url('../img/big-bg.jpg');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

/*首頁 標題樣式*/
.index-title {
    background-image: url('../img/index-title.png');
    background-repeat: no-repeat;
    background-size:contain;
    background-position:center;
    width: 442px;
    margin: 20px auto;
    text-align: center;
    line-height: 60px;
    font-size:32px;
}

/*----- 最新消息 首頁 -----*/
.news-container {
    width: 30%;
    margin-left:15%;
    padding-top:100px;
}

.news-list {
    list-style: none;
    padding: 0px;
    margin-top:30px;
    width: 100%;
    height: 350px;
}

.news-list li {
    padding: 20px 0px;
    border-bottom: 1px solid #333333;
}

.news-list li:hover {
    background-color: rgba(173,144,43,0.1);
}

.news-list-date {
    color: #ffffff;
    background-color: #B8A37E;
    margin-bottom: 10px;
    padding: 3px;
    width: 100px;
    text-align: center
}

.news-list-title > a, .news-list-title > a:hover {
    font-size: 16px;
    color: #ffffff;
}

.news-list-content {
    color: #fff;
}

/*----- 產品介紹 首頁 -----*/
.product-container {
    margin-top: 300px;
    width: 80%;
    margin-left:auto;
    margin-right:auto;
}

/*----- 產品介紹 分類 首頁 -----*/
#productsType {
    text-align: center;
}

    #productsType ul {
        list-style: none;
        display: inline-block;
    }

        #productsType ul li {
            float: left;
            margin-right: 5px;
            padding: 10px 0px;
        }

            #productsType ul li > a {
                padding: 7px;
                color: #fff;
                border: 1px solid #794200;
            }

                #productsType ul li > a:hover {
                    color: #fff;
                    background-color: #794200;
                }

/*----- 產品介紹 列表 首頁 -----*/
.product-list {
    list-style: none;
    padding: 0px;
    width: 100%;
}

    .product-list li {
        display: inline-block;
        vertical-align: top;
        border-radius: 10px;
        padding: 15px;
        margin: 10px;
        border: 1px solid #794200;
        text-align: center;
        width: 280px;
        height: 400px;
    }

        .product-list li:hover {
            background-color: rgba(173,144,43,0.1);
        }

            .product-list li > a {
                display:block;
                width: 240px;
                height: 200px;
                overflow:hidden;
            }

    .product-list img {
        border-radius: 10px;
        max-width: 240px;
        min-width:100%;
        max-height: 200px;
    }

    .product-list li:hover > a > img {
        transform: scale(1.1,1.1);
        transition: all 0.5s ease-out;
    }

.product-list-title {
    color: #ffffff;
    padding: 15px 0px;
}
    .product-list-title > a {
        color: #ffffff;
        padding: 15px 0px;
    }

.product-list-content {
    padding: 10px 0px;
    text-align: left;
    color: #fff;
    word-wrap: break-word;
    word-break: normal;
    white-space: normal;
}

.product-list-content > p {
    max-width: 100%;
    word-wrap: break-word;
    word-break: normal;
    white-space: normal;
}