@charset "utf-8";

	h1 {
        width: 800px;
        font-size: 2.2em;
        font-weight: bold;
        text-align: center;
        margin: 1% auto 0;
        line-height: 2;
        color: #e49aa5;
        border-bottom: 2px solid #e49aa5;
        letter-spacing: 5px;
    
}
	.sub-title{
		color: #dcdcdc;
	}

	.content {
        width: 60%;
        height: auto;
        margin: 2.5% auto 0;
        background-color: #f9f8f8;
        border-radius: 5px;
        -webkit-box-shadow: 0 0 10px #bdc3c4;
        -moz-box-shadow: 0 0 10px #bdc3c4;
        box-shadow: 0 0 10px #bdc3c4;
        overflow: hidden;
        padding: 4% 5%;
    }
	.book {
        width: 25%;
        height: auto;
        float: left;
        box-shadow: 0 0 3px #bdc3c4;
        overflow: hidden;
        cursor: pointer;
    }
    
    .book img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1, 1);
        transition: all 1s ease-out;
    }
    
    .book:hover {
        box-shadow: 0 0 8px #a2a2a2;
    }
    
    .book img:hover {
        transform: scale(1.2, 1.2);
    }

	.introduce {
        width: 72%;
        height: auto;
        float: right;
        padding: 0 0 0 3%;
    }
    
    .introduce2 {
        width: 72%;
        height: auto;
        float: right;
        padding: 0 0 0 3%;
    }
	.line {
        border-left: 8px solid #d19920;
        margin-right: 1.5%;
    }
	.line2 {
			border-left: 8px solid #2db99a;
			margin-right: 1.5%;
		}
	hr.style-one {
        border: 0;
        height: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        margin: 1.5% auto;
    }
	.introduce p {
        font-size: 1.05em;
        line-height: 1.6;
        padding: 0 0 0 3%;
        color: #7c7c7c;
        text-align: justify;
    }
	/*------按鈕-------*/
    
    .button {
	width: 100%;
	height: auto;
	clear: both;
	padding-top: 6%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	/*margin-left: 29%;*/
    }
    
    button {
        font-size: 1em;
        line-height: 3;
        font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
        border-radius: 5px;
        border: 0;
        cursor: pointer;
        -webkit-transition-duration: 0.4s;
        /* Safari */
        transition-duration: 0.4s;
    }
    
    .b_en {
		color: #FFF;
		background-color: #ae946a;
		border: 2px solid #ae946a;
		width: 30%;
		}
    
    .b_r {
        color: #FFF;
        background-color: #91aa93;
        border: 2px solid #91aa93;
        margin-left: 5%;
        width: 30%;
    }
    
    button:focus {
        outline: 0;
    }
    
    .b_en:hover {
        border: 2px solid #ae946a;
        background-color: #FFF;
        color: #ae946a;
    }
    
    .b_r:hover {
        border: 2px solid #91aa93;
        background-color: #FFF;
        color: #91aa93;
    }
	

@media screen and (max-width: 800px){
	h1 {
        width: 90%;
        margin: 5vh auto 3vh;
    
	}
	.sub-title {
		color: #dcdcdc;
		line-height: 2em;
		width: 95%;
		margin: 0 auto;
		text-align: center;
	}
	.content {
		width: 80%;
		height: auto;
		margin: 2.5% auto 0;
		background-color: #f9f8f8;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px #bdc3c4;
		-moz-box-shadow: 0 0 10px #bdc3c4;
		box-shadow: 0 0 10px #bdc3c4;
		overflow: hidden;
		padding: 4% 5%;
	}
	.b_en {
		width: 100%;
		margin: 0 0 1vh 0;
		}
	button {
		font-size: 1em;
		line-height: 2;
		height: auto;
	}
}






























