
@import url("../fonts/flaticon/flaticon.css");
@import url("../fonts/thin/thin.css");
@import url("../css/all.min.css");
@import url("revise.css");
@import url("header.css");
@import url("footer.css");
@import url("banner.css");


/*========================================================
                      	 標題設定
=========================================================*/

.s-header {
    position: relative;
    padding-top: 20px;
    text-align: center;
}
.s-header > div {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -40%);
    z-index: 1;
    font-weight: bold;
    font-size: 2.8rem;
    color: #dadada;
    width: 100%;
    opacity: 0.2;
}

.h2-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    color: #000;
    z-index: 2;
}
.h2-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background-color: #c56721;
    margin: 10px auto 4px;
}
.h2-title+p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
    color: #0e6e86;
    position: relative;
    z-index: 2;
}


@media (min-width: 640px) {
    .s-header {
        padding-top: 30px;
    }
    .s-header > div {
        font-size: 3.2rem;
    }
}
@media (min-width: 992px) {
    .s-header {
        padding-top: 40px;
    }
    .s-header > div {
        font-size: 5rem;
    }
    .h2-title {
        font-size: 2rem;
    }
    .h2-title+p {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
}
@media (min-width: 1200px) {
    .s-header {
        padding-top: 50px;
    }    
    .s-header > div {
        font-size: 6rem;
    }
}
@media (min-width: 1600px) {
    .s-header {
        padding-top: 60px;
    }  
    .s-header > div {
        font-size: 8rem;
    }
}






.h3-title {
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    margin-bottom: 20px;
}
.h3-title i {
    color: #06457e;
    display: inline-block;
    margin-right: 6px;
}
.h4-title {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.h5-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #e27a14;
}
.h5-title i {
    color: #e96424;
    display: inline-block;
    margin-right: 6px;
    font-size: 0.9rem;
}


/*========================================================
                      	 內頁框架
=========================================================*/

.content-wrap {
    position: relative;
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: 400px;
    overflow: hidden;
}

.img-100 {
    width: 100%;
    vertical-align: bottom;
}

/* 麵包屑 */
.breadcrumbs {
	text-align: center;
    font-size: 1rem;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #000;
	background-color: #f7f2ec;
}
.breadcrumbs a {
	display: inline-block;
	color: #000;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.breadcrumbs a.home i {
    display: inline-block;
    color: #000;
}
.breadcrumbs span {
    display: inline-block;
	margin: 0 7px;
	color: #000;
}


/*========================================================
                         回目錄頁
=========================================================*/

.btn-back {
	text-align: right;
    margin-top: 30px;
	margin-bottom: 30px;
}
.btn-back a {
    background-color: #ea5404;
	padding: 5px 20px;
	color: #fff;
    border-radius: 5px;
}
.btn-back a:hover {
    background-color: #efea3a;
    color: #000;
	text-decoration: none;
}

@media (max-width: 1199px) {
    .btn-back {
        text-align: center;
        margin-bottom: 0;
    }
    .btn-back a {
        display: block;
    }
    .btn-back a i {
        display: none;
    }
}

/*========================================================
                         動畫設定
=========================================================*/


.amin-01 {
    transform-origin: 100% 100%;
    animation: amin-01 2s ease-in-out infinite alternate;
}
@keyframes amin-01 {
    0% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(0);
    }
}

.amin-02 {
    transform: skew(-3deg);
    transform-origin: 60% 100%;
    animation: amin-02 1.5s ease-in-out infinite alternate;
}
@keyframes amin-02 {
    to {
        transform: rotate(0);
    }
}
.amin-03 {
    transform: rotate(-3deg) skew(1deg);
    transform-origin: 0 100%;
    -webkit-animation: amin-03 1.5s ease-in-out infinite alternate;
    animation: amin-03 1.5s ease-in-out infinite alternate;
}
@keyframes amin-03 {
    to {
        transform: rotate(0);
    }
}

.amin-04 {
    transform: rotate(-3deg) skew(1deg);
    transform-origin: 100% 0;
    -webkit-animation: amin-04 1.5s ease-in-out infinite alternate;
    animation: amin-04 1.5s ease-in-out infinite alternate;
}
@keyframes amin-04 {
    to {
        transform: rotate(0);
    }
}


.amin-05 {
    -webkit-transform: translateY(2px) scaleX(1);
    transform: translateY(2px) scaleX(1);
    -webkit-animation: amin-05 1s ease-in-out infinite alternate;
    animation: amin-05 1s ease-in-out infinite alternate
}
@keyframes amin-05 {
    to {
        -webkit-transform: translateY(-2px) scaleX(.7);
        transform: translateY(-2px) scaleX(.7)
    }
}



.bg-img1, .bg-img2, .bg-img3, .bg-img4, .bg-img5 {
    position: absolute;
    z-index: -1;
}
.bg-img1 img, .bg-img2 img, .bg-img3 img, .bg-img4 img, .bg-img5 img {
    width: 100%;
}
.bg-img1 {
    left: -30px;
    top: 150px;
    width: 120px;
}
.bg-img2 {
    right: 0;
    top: 500px;
    width: 180px;
}
.bg-img3 {
    left: -20px;
    top: 1200px;
    width: 150px;
}
.bg-img4 {
    right: 0;
    top: 1700px;
    width: 210px;
    height: 216px;
}
.bg-img5 {
    left: 0;
    top: 2400px;
    width: 180px;
}
.bg-img-left {
    left: 0;
    right: auto;
}
.bg-img-right {
    left: auto;
    right: 0;
}

@media (min-width: 992px) {
    .bg-img1 {
        width: 273px;
    }
    .bg-img2 {
        width: 404px;
    }
    .bg-img3 {
        width: 337px;
    }
    .bg-img4 {
        width: 448px;
    }
    .bg-img5 {
        width: 337px;;
    }
}



/*========================================================
                         關於我們
=========================================================*/

.about-wrap {
/*
    background: url("../img/about-bg.jpg") no-repeat top center;
    background-size: cover;
*/

}



.about-01 {
    margin-bottom: 3rem;
}
.about-01 .about-img {
    position: relative;
    padding: 5px 0 0 5px;
}
.about-01 .about-img:before {
    content: '';
    position: absolute;
    lefT: 0;
    top: 0;
    z-index: 1;
    width: 10%;
    height: 30%;
    background-color: #21b8c5;
}
.about-01 .about-img img {
    position: relative;
    z-index: 2;
    border: 15px solid #fff;
}
.about-01 .about-info {
    padding: 30px 30px;
}
.about-01 .about-info h3 {
    color: #000;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 40px;
    text-align: justify;
}
.about-01 .about-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-01 .about-info ul li {
    background: url("../img/about-icon.png") no-repeat left 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.2rem;
    line-height: 44px;
}

.about-01 .about-info ul li span {
    position: absolute;
    left: 10px;
    top: 6px;
    z-index: 2;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: #ea5404;

    color: #fff;
    font-size: 1rem;
    border-radius: 50%;
    text-align: center;
}


.about-info ul li[class*="col-"]:last-of-type {
    padding-right: 40px;
}


@media (min-width: 992px) {
    .about-01 .about-info {
        margin-left: 5%;
        margin-right: 5%;
    }
}
@media (min-width: 1600px) {
    .about-01 .about-info {
        font-size: 1.1rem;
    }
}




/*========================================================
                      	 熱銷個案
=========================================================*/

.hot-wrap {
/*
    background: url("../img/hot-bg.jpg") no-repeat top center;
    background-size: cover;
*/

}


.hot-item {
    position: relative;
    margin-bottom: 0rem;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}
.hot-item img {
    width: 100%;
    vertical-align: bottom;
}
.hot-item .year {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    display: inline-block;
    color: #fff;
    background-color: #ea5404;
    padding: 1px 15px;
    line-height: 24px;
    font-size: 0.8rem;
}


.hot-item-info {
    padding: 20px;
}
.hot-item-info h3 {
    font-weight: bold;
    font-size: 1.6rem;
}
.hot-item-info p {
    padding: 0;
}
.hot-item-info h3 + p {
    font-weight: bold;
    color: #ea5404;
    margin: 0;
}

.hot-item-img {
    position: relative;
    margin: 0;
    display: block;
    width: 100%;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}
.hot-item-img:hover {
    color: #fff
}
.hot-item-img:hover .hot-item-mask {
    opacity: 1;
    visibility: visible
}
.hot-item-img:hover .hot-item-mask::after {
    height: 100%
}
.hot-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}
.hot-item-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: .625rem 1rem;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    font-size: 1rem;
    font-weight: 700;
    transition: all .3s
}
.hot-item-mask::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 50px;
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
    transform: translateY(-50%);
    transition: all .3s
}
.hot-item-mask span {
    position: relative;
    display: block;
    z-index: 2;
    padding: 6px 30px 4px;
    border: 1px solid #fff;
}

@media (min-width: 1600px) {
    .hot-wrap {	
        padding-left: 10%;
        padding-right: 10%;
    }
}



/*========================================================
                      熱銷個案內頁
=========================================================*/


.case-detail {
	padding-bottom: 40px;
	text-align: left; 
}

/*地點*/
.case-detail .case-detail-place {
    font-weight: bold;
    font-size: 1.3rem;
    color: #ea5404;
    margin-bottom: 10px;
}


/*建築規劃*/
.case-detail .case-detail-plan ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.case-detail .case-detail-plan ul li {
    position: relative;
    padding: 9px 4px 9px 120px;
    border-bottom: 1px dashed #ccc;
}
.case-detail .case-detail-plan ul li b {
    position: absolute;
    left: 0;
    top: 9px;
    z-index: 3;
    width: 110px;
    font-weight: normal;
    margin-left: 0;
    background-color: #f6e4db;
    text-align: center;
}
.case-detail .case-detail-plan ul li span {
    display: none;
}
.case-detail .case-detail-plan ul li a {
    color: #111;
    text-decoration: underline;
}
.case-detail .case-detail-plan ul li a:hover {
    text-decoration: none;
}

/*========================================================
                      	 歷年個案
=========================================================*/

/*.case-wrap {
    background: url("../img/case-bg.jpg") no-repeat top center;
    background-size: cover;

}*/





/*========================================================
                         最新消息
=========================================================*/

/*.news-wrap {
    background: url("../img/news-bg.jpg") no-repeat top center;
    background-size: cover;

}*/

/* 框架 */
.news-item {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	transform: translateY(0);
	transition: .3s ease-out transform;
}
.news-item:hover {
	transform: translateY(-5px);
}
.news-item:hover .news-item-info {
	box-shadow: 0 0 22px rgba(0, 0, 0, 0.22);
}
.news-item + .news-item {
	margin-top: 35px;
}

/* 圖片 */
.news-item-img {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.news-item-img img {
	transform: scale(1);
	transition: .3s ease-out all;
}
.news-item-img a {
	display: inline-block;
	position: relative;
}
.news-item-img a:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.4);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: .3s ease-out all;
}
.news-item-img a:hover:before {
	opacity: 1;
}
.news-item-img a:hover img {
	transform: scale(1.1);
}

/* 內容 */
.news-item-info {
	padding: 30px;
	background-color: #ffffff;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
	transition: .3s ease-out box-shadow;
}
.news-item-content {
}
.news-item-content h4 {
    font-weight: bold;
}
.news-item-content p {
    margin: 0;
}

/* 時間 */
.news-item-time {
    display: inline-block;
    background-color: #ea5404;
    color: #fff;
    padding: 0 10px;
    border-radius: 3px;
    font-size: 0.9rem;
    line-height: 24px;
    margin-bottom: 16px;
}


/* 了解更多 */
.news-item-more {
    margin-top: 10px;
    text-align: right;
}
.news-item-more a {
    font-weight: bold;
    color: #666;
    padding: 3px 10px 4px;
    border-radius: 3px;
    font-size: 1rem;
}
.news-item-more a:hover { 
    color: #ea5404;
}


/* 尺寸設定 */
@media (min-width: 768px) {
	.news-item {
		display: flex;
		max-width: 1170px;
	}
	.news-item-img {
		display: flex;
		width: 200px;
		flex-shrink: 0;
	}
	.news-item-img img {
		object-fit: cover;
		width: 100%;
		height: 100% !important;
	}
    .news-item-info {
        width: calc(100% - 200px);
    }
    .news-item-content {
        width: 100%;
    }
}
@media (min-width: 992px) {
	.news-item-img {
		width: 300px;
	}
	.news-item-info {
		display: flex;
		padding: 30px 40px;
        width: calc(100% - 300px);
	}

	.news-item + .news-item {
		margin-top: 50px;
	}
}



/*========================================================
                   	最新消息內頁
=========================================================*/

.news-detail {
	text-align: left;
    border-bottom: 2px dashed #adadad;  
}
.news-detail img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.news-detail time {
    color: #999;
    font-weight: bold;
}
.news-detail-title {
	text-align: left;
	margin: 0 0 20px 0;
	color: #333;
	font-weight: bold;
    font-size: 1.8rem;
}
.news-detail-content {
    margin-bottom: 40px;
}
.news-detail-link {
    border-top: 2px dashed #adadad;
    padding: 1rem;
    font-size: 0.9rem;
    background-color: #ededed;
}
.news-detail-link h4 {
    font-size: 1.1rem;
    font-weight: bold;
}
.news-detail-link a {
    display: inline-block;
    color: #333;
    text-decoration: underline;
    margin-left: 10px;
}
.news-detail-link a:hover {
    text-decoration: none;
}



/*========================================================
                         聯絡我們
=========================================================*/


.contact-info {
    
}
.contact-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.contact-info ul li {
	list-style: none;
/*	padding: 5px 0 5px 60px;*/
	position: relative;
	margin-bottom: 10px;
}
.contact-info ul li i {
    display: inline-block;
    width: 20px;
    text-align: center;
	margin: 0 5px;
	padding: 5px 0;
}
.contact-info ul li:nth-of-type(1) i {
    color: #e71c30;
}
.contact-info ul li:nth-of-type(2) i {
    color: #028ad3;
}
.contact-info ul li:nth-of-type(3) i {
    color: #2e9876;
}
.contact-info ul li:nth-of-type(4) i {
    color: #cd7f0c;
}

.contact-info ul li [class^="flaticon-"]:before, 
.contact-info ul li [class*=" flaticon-"]:before, 
.contact-info ul li [class^="flaticon-"]:after, 
.contact-info ul li [class*=" flaticon-"]:after {
    margin-right: 0px;
}



/*========================================================
                         各類表單
=========================================================*/



/* 表單設定 */
.form-horizontal {
	margin-bottom: 40px;
}
.form-horizontal label {
	margin-bottom: 0;
    font-weight: bold;
    color: #666;
}
.form-horizontal label span {
	color: #E90003;
}
.form-horizontal [class*="col-md-"] label:before,
.form-horizontal .mb-3 label:before {
    font-family: 'Font Awesome 5 free';
    content: "\f044";
    font-weight: 900;
    display: inline-block;
    margin-right: 5px;
    color: #111;
}
.form-horizontal .form-control {
	border: 1px solid #ddd;
	background-color: #f9f9f9;
}

.form-control::-moz-placeholder {
	color: #777;
	opacity: 1;
	font-size: 16px;
	font-weight: bold;
}
.form-control:-ms-input-placeholder {
	  color: #777;
}
.form-control::-webkit-input-placeholder {
	  color: #777;
}

/* 意見表單 */
.contact-form {
	margin-bottom: 20px;
}
.contact-form [class *= col-] {
	position: relative;
	margin-bottom: 10px;
}


.form-group {
	padding: 10px 15px;
	margin-bottom: 0 !important;
}
.form-group:nth-of-type(2n+2) {
	background-color: #ededed;
}
.form-group b {
	display: block;
	font-size: 15px;
}
.input {
	text-decoration: none;
	border: 1px solid #c7c7c7;
	width: 100%;
	padding: 2px 2px;
}

/* 尺寸設定 */
@media (min-width: 768px) {
	.form-info {
		padding: 20px 20px 20px 70px;
	}
	.form-info {
		margin-right: 15px;
	}
	.input {
		width: 40%;
	}
	.form-group b {
		display: inline-block;
	}
}



/*========================================================
                           表格
=========================================================*/

.table1 {
	border-collapse: collapse;
	text-align: left;
	margin: 0 0 20px 0;
    border: 1px solid #ccc;
}
.table1 th {
    padding: 10px 10px;
    text-align: center;
    border-right: 1px solid #ddd;
    background-color: #f1f1f1;
}
.table1 td {
    padding: 10px 15px;
    text-align: left;
}
.table1 td i {
    display: inline-block;
    margin-right: 5px;
    color: #e7a21a;
	font-size: 0.6rem;
}

.table-order {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}
.table-order tr {
    border: 1px solid #ddd;
    padding: 5px;
}
.table-order th, .table-order td {
    padding: 10px 1px;
    text-align: center;
}
.table-order th {
    background-color: #d6d6d6;
}
.table-order td span {
    display: block;
}
.table-order td img {
    max-width: 60px;
    max-height: 60px;
}
.table-order tr td:last-of-type a {
    color: #861d11;
}
@media screen and (max-width: 1199px) {
    .table-order {
        border: 0;
    }
    .table-order thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .table-order tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: 20px;
    }
    .table-order td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: left;
        position: relative;
        padding-left: 90px;
    }
    .table-order td::before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        width: 80px;
        margin-right: 10px;
        color: #000;
        font-size: 0.9rem;
        position: absolute;
        left: 0;
        z-index: 2;
        background-color: #d6d6d6;
        text-align: center;
    }
    .table-order td:last-child {
        border-bottom: 0;
    }
    .table-order td img {
        max-width: 100px;
        max-height: 100px;
        margin-left: -90px;
    }
}





/*========================================================
                         ul設定
=========================================================*/

.ul-s1 {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
}
.ul-s1 > li {
    padding: 0 0 0 40px;
    margin-bottom: 10px;
    position: relative;
}
.ul-s1 > li span {
	width: 30px;
	height: 30px;
	border-radius: 15px;
	font-size: 1rem;
	color: #000;
	line-height: 30px;
	text-align: center;
	background-color: #9abdd2;
    position: absolute; 
    left: 0; 
    top: 2px; 
    z-index: 9; 
}

.ul-s2 {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}
.ul-s2 li {
    border-bottom: 1px solid #ddd;
    padding: 3px 10px;
}
.ul-s2 li span {
    font-weight: bold;
    color: #548235;
}
.ul-s2 li:before {
    font-family: 'Font Awesome 5 free';
    content: "\f0da";
    font-weight: 900;
    display: inline-block;
    margin-right: 6px;
}








/*========================================================
                         圖片效果
=========================================================*/

a.figure {
	display: block;
	position: relative;
}
a.figure:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
a.figure:before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    content: '';
    display: inline-block;
    background: rgba(255,255,255,0.15) url(../img/magnifier.png) no-repeat center center;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    transition: .3s;
}


.picture-effect {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.picture-effect img {
	transform: scale(1);
	transition: .3s ease-out all;
}
.picture-effect a {
	display: inline-block;
	position: relative;
}
.picture-effect a:before {
	content: '了解更多';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(206, 26, 26, 0.4);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: .3s ease-out all;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}
.picture-effect a:hover:before {
	opacity: 1;
}
.picture-effect a:hover img {
	transform: scale(1.1);
}




