@charset "utf-8";
/* CSS Document */



/*----- 首頁 -----*/
.indexBanner {
	margin-top: 81px;
	overflow: hidden;
	position: relative;
	clear: both;
}

.indexBanner figure {
	width: 100%;
	height: 580px;
	display: block;
	-webkit-transition: left 1s ease;
	-moz-transition: left 1s ease;
	-o-transition: left 1s ease;
	transition: left 1s ease;
}

.indexBanner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indexBanner > p {
	position: absolute;
	bottom: 25px;
	left: 50%;
	z-index: 3;
	-ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: auto;
	padding: 0;
	margin: 0;
}

.indexBanner > p > a {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	text-indent: 20em;
	overflow: hidden;
	margin: 0 7px;
}

.indexBanner > p > a.active,
.indexBanner > p > a:hover {
	background-color: #fff;
}



/* 車輛搜尋 */
.searchWrap {
	position: absolute;
	top: 81px;
	left: 50%;
	margin-left: -700px;
    max-width: 400px;
	z-index: 990;
}

.searchArea {
	width: 395px;
	height: 580px;
	position: relative;
	padding: 0 20px 30px;
	background-color: rgba(228, 232, 234, 0.85);
}

.searchTitle {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	padding: 11px 20px;
	margin: 0 -20px;
	background-color: #0a80bf;
}

.subheading {
	font-size: 20px;
	font-weight: bold;
	margin: 25px 0 20px;
}

.rentalBox,
.seatBox {
	font-size: 16px;
	padding: 12px 15px;
	margin-right: 0;
	margin-bottom: 20px;
	background: #fff;
}

.dateField {
	width: 61%;
	float: left;
	padding-left: 42px;
}

.timeField {
	width: 36%;
	float: right;
	padding-left: 38px;
}

.searchIcon-01 {
	background: url(../images/date.svg) no-repeat left;
}
.searchIcon-02 {
	background: url(../images/time.svg) no-repeat left;
}
.searchIcon-03 {
	background: url(../images/people.svg) no-repeat left;
}

.searchIcon-01,
.searchIcon-02,
.searchIcon-03 {
	background-size: 28px auto;
}

.input {
	width: 100%;
	padding: 3px 0;
	border: none;
	background-color: #fff;
}

.input:focus,
.select:focus,
.searchBtn:focus {
  outline: 0;
}

.select {
	width: 100%;
	border: 0;
	font-size: 16px;
	padding: 3px 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
}

.seat-select {
	width: -webkit-calc(100% - 40px);
	width: -moz-calc(100% - 40px);
	width: calc(100% - 40px);
	padding-right: 25px;
	margin-left: 40px;

	/*移除箭頭樣式*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	/*改變右邊箭頭樣式*/
	background: url(../images/pro-down.png) no-repeat right 4px center;

	/*為下拉小箭頭留出一點位置，避免被文字覆蓋*/
}

/*清除ie的默認選擇框樣式，隱藏下拉箭頭*/
select::-ms-expand {
	display: none;
}

.searchBtn {
	position: absolute;
	bottom: 30px;
	width: -webkit-calc(100% - 40px);
	width: -moz-calc(100% - 40px);
	width: calc(100% - 40px);
	height: 52px;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	border: none;
	cursor: pointer;
	line-height: 52px;
	border-radius: 5px;
	background: #008cd6;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.searchBtn:hover {
	background: #f35c59;
}

.mobile-search {
	display: none;
}



/* 首頁服務 */
.serviceArea {
	margin-top: 60px;
	margin-bottom: 60px;
}

ul.serviceList {
	margin-bottom: -40px;
}

ul.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

ul.serviceList .row {
    margin-left: -23px;
    margin-right: -23px;
}

ul.serviceList li.col-sm-4 {
	padding-left: 25px;
	padding-right: 25px;
}

ul.serviceList li {
	margin-bottom: 40px;
}

ul.serviceList li .serviceBox {
	position: relative;
	overflow: hidden;
	vertical-align: top;
	cursor: pointer;
	border-radius: 8px;
	border: 1px solid #ccc;
}

ul.serviceList li:hover .serviceBox {
	border: 1px solid #008cd6;
}

.photo-mask {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
}

ul.serviceList li figure img {
	width: 100%;
	height: auto;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul.serviceList li:hover figure img {
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
}

ul.serviceList li h3 {
	font-size: 20px;
	color: #000;
	font-weight: bold;
	padding: 3px 25px 15px;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul.serviceList li:hover h3 {
	color: #008cd6;
}

ul.serviceList li h3:after {
	font-family: 'icomoon';
	content: '\e90a';
	position: absolute;
	top: 5px;
	right: 15px;
	width: 24px;
	height: 24px;
	font-size: 15px;
	color: #fff;
	font-weight: normal;
	border-radius: 99em;
	background-color: #008cd6;
	text-align: center;
	line-height: 23px;
}



/* 首頁車款 */
.hotCarArea {
	padding: 60px 0 80px;
}

a.moreBtn {
	width: 150px;
	margin: 0 auto;
	margin-top: 65px;
	font-size: 15px;
	color: #fff;
	padding: 9px 0 8px;
	display: block;
	position: relative;
	border-radius: 99em;
	background-color: #000;
	text-align: center;
}

a.moreBtn span {
    font-size: 16px;
	position: absolute;
	right: 18px;
	top: 7px;
}

a.moreBtn:hover {
	background-color: #f35c59;
}



/* 服務項目 */
.summaryLeft,
.summaryRight {
	width: 50%;
	height: 486px;
	float: left;
	display: table;
}

.summaryLeft {
	position: relative;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	text-align: center;
}

.summaryRight {
	color: #fff;
	background-color: #008cd6;
}

.summaryRight .txtBlock {
	display: table-cell;
	padding: 0 18%;
	vertical-align: middle;
}

.summaryRight h3 {
	font-size: 48px;
	font-weight: bold;
	margin-top: -5px;
	font-family: 'Oswald', 微軟正黑體, 新細明體, sans-serif;
	line-height: 1.2;
}

.summaryRight .subtitle {
	font-size: 24px;
	margin: 3px 0 25px;
}

.summaryTxt {
	line-height: 1.8;
}

ul.featureIcon {
	margin: 45px -8% 0;
	text-align: center;
}

ul.featureIcon li {
	display: inline-block;
	width: -webkit-calc(33.333333% - 4px);
	width: -moz-calc(33.333333% - 4px);
	width: calc(33.333333% - 4px);
	text-align: center;
}

ul.featureIcon li .featureTxt {
    font-size: 16px;
    color: #fff;
	font-weight: bold;
    margin-top: 15px;
	text-align: center;
}



@media (max-width: 1399px){

/*----- 首頁 -----*/
.searchWrap {
	left: 0;
	margin-left: 0;
}

.summaryRight .txtBlock {
	padding: 0 13%;
}

}


@media (max-width: 1199px){

/*----- 首頁 -----*/
.indexBanner figure {
	height: 460px;
}

.searchArea {
	width: 310px;
	height: 460px;
}

ul.featureIcon li {
	width: -webkit-calc(33.333333% - 10px);
	width: -moz-calc(33.333333% - 10px);
	width: calc(33.333333% - 10px);
	padding: 0 8px;
}

}


@media (max-width: 991px){

/*----- 首頁 -----*/
.indexBanner {
	margin-top: 63px;
}

.searchWrap {
	top: 63px;
}

ul.serviceList .row {
    margin-left: -13px;
    margin-right: -13px;
}

ul.serviceList li.col-sm-4 {
	padding-left: 13px;
	padding-right: 13px;
}

ul.serviceList li h3 {
	padding-left: 18px;
	padding-right: 18px;
}

ul.featureIcon li figure img {
	width: 62px;
	height: 62px;
}

}


@media (max-width: 767px){

/*----- 首頁 -----*/
.indexBanner figure {
	height: 300px;
}

.summaryLeft,
.summaryRight {
	width: 100%;
	float: none;
}

.summaryLeft {
	height: 200px;
}

.summaryRight {
	height: auto;
	padding: 60px 0 65px;
}

.summaryRight .txtBlock {
	padding: 0 11%;
}


/*----- mobile search -----*/
.searchWrap {
	padding: 0;
	position: relative;
	top: 0;
	max-width: 100%;
	height: 435px;
	background-color: #f5f5f5;
}

.searchArea {
	width: 100%;
	height: auto;
	padding: 0 25px;
	margin-top: 1px;
	background-color: transparent;
}

.searchTitle {
	padding-left: 25px;
	margin: 0 -25px;
}

.searchBtn {
	position: relative;
	width: 100%;
	bottom: 0;
}

}


@media (max-width: 575px){

/*----- 首頁 -----*/
.indexBanner figure {
	height: 180px;
}

.indexBanner > p {
	bottom: 7px;
}

.searchTitle,
.subheading,
.searchBtn {
	font-size: 18px;
}

.hotCarArea {
	padding: 50px 0 60px;
}

a.moreBtn {
	margin-top: 45px;
}

.summaryRight h3 {
	font-size: 36px;
	font-weight: normal;
}

.summaryRight .subtitle {
	font-size: 20px;
}

.aboutCon .subtitle02 {
	font-size: 20px;
}

}


@media (max-width: 480px){

/*----- 首頁 -----*/



}
