﻿* {
    padding: 0px;
    margin: 0px;
}
.header {
    background-color: rgba(35,28,26,0.8);
    height: 80px;
    width: 100%;
    position: fixed;
    z-index:9999;
}
    .header .CssTitle {
        position: relative;
        top: -10px;
        left: 0px;
        margin-right: 80px;
        margin-bottom: 0px;
        justify-content: right;
        text-align-last: end;
        height: 30px;
    }
    .header .CssTitle .btn:hover{
        color:#fff;
    }
    .header .CssNav {
        width: 100%;
        position: relative;
        top: -10px;
        left: 0px;
        margin-right: 50px;
        margin-bottom: 0px;
        justify-content: right;
        /*border:1px solid #ff0000;*/
    }
    .header .CssNav .nav-link:hover {
        color:#ff0000;
    }
    .header .CssMemList {
    /*position: relative;
    top: 10px;
    left: 10px;*/
    }
    
    /**news**/
    .news {
        background-color: antiquewhite;
        color: #fff;
        height: 95vh;
        background-image: url("../images/龍津校.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .news h2 {
        font-size: 60px;
        margin-top: 60px;
    }

    .news p {
        color: #fff;
        font-size: 20px;
        margin: 25px 0;
    }

    .news a {
        color: #fff;
        text-decoration: none;
        border: 1px solid #acacac;
        border-radius: 5px;
        padding: 10px 20px;
    }
/**slogan***/
.slogan {
    background-color: #485652;
    color: #fff;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    line-height: 1.8em;
}
/**product***/
.product {
    background-color: #ede9db;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 100px 180px 80px;*/
    padding: 20px 30px;
}

    /*.product div {
        margin:10px;*/
        /*width: 300px;*/
        /*text-align: center;
    }

    .product img {
        width: 100%;
        border-radius: 10px;
    }

    .product h3 {
        font-size: 20px;
        margin: 20px 0;
    }

    .product p {
        font-size: 14px;
        line-height: 1.6em;
    }*/

/**響應式語法**/
@media screen and (max-width:768px) {
    .product {
        flex-direction: column;
        padding: 50px;
    }
}