@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,body {
    height:100%;
	font-family:  'Roboto', 'Roboto Condensed', sans-serif;
	font-size: 16px;
    -webkit-text-size-adjust: none;
}
#noie6 {
	height: 40px; /*高度*/
	width: 100%; /*寬度*/
    background: #FFDFDF; /*背景色*/
    border: 1px solid #FF2F2F; /*邊線*/
    clear: both; /*清除繼承上方的浮動*/
    color: #555; /*字體顏色*/
    display: block; /*顯示方式*/
    font-size: 16px; /*字體大小*/
	line-height: 40px;
    position: relative; /*相對定位*/
    text-align: center; /*文字置中*/
    top: 10px; /*距離上方10px*/
}
.markPoint:before{
        content: '';
        display: block;
        position: relative;
        width: 0;
        height: 100px;
        margin-top: -70px;
      }
h1 {font-size: 8vmin; color:#007985; font-weight:300; line-height:8vmin;}

h3 {font-size: 5vmin; color:#333; font-weight:300; line-height:8.5vmin;}
.arborgreen{background-color:#007985}
.white{background-color:#fff}
.lightgray{background-color:#eaeaea}
.lightgreen{background-color:#d0dbdd}

/*==============================================================================Mobile version=============================================*/
@media screen and (max-width: 767px){

.header__nav{
  width:100%;
	height:60px;
	margin:0px auto;
	position:fixed;
  top:0;
  left:0;
	background-color:#fff;
	overflow:hidden;
	padding-top:10px;
	padding-bottom:10px;
	z-index:9998;
	box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
}
.header__nav h1 {
  float:none;
  padding-left:20px;
  padding-top:3px;   
}
.header__nav h1 a{
  display:block;
  width:8vw;
  min-width:140px;
  margin-top: 10px;
  background-image: url(https://www.arbor-technology.com/Event/Infotainment-Solution/images/arbor-logo.svg);
  background-repeat:no-repeat;
  background-size:contain;
  text-indent: -9999px;
}
.header__nav ul{
  float:right;
  padding-right: 10px;
  padding-top:5px;
  list-style:none;
  display:none;
}
#header--mobile{
  width:100%;
  height:283px;
  background-color:rgba(255,255,255,0);
  position:fixed;
  top:0;
  left:0;
  transform:translate3d(0px,-1000px,0px);
  z-index:9999;
  display:block;
}
#header__menu{
  width:32px;
  height:32px;
  padding:4px;
  background-color:#fff;
  position:fixed;
  right:15px;
  top:15px;
  cursor:pointer;
  z-index:9998;
}
.line{
  width:80%;
  height:2px;
  margin:4px auto;
  background-color:#007985;
} 
	
	#header--mobile.goIN{
		transition:all 1s ease; /* 1s 代表產生動畫時間 */
		transform:translate3d(0px,0px,0px); /*讓選單回到 0 螢幕之內*/
	}
	
	#header--mobile.goOUT{
		transition:all 1s ease; /* 1s 代表產生動畫時間 */
		transform:translate3d(0px,-1000px,0px); 
		/*把選單推出去 -1000 螢幕之外*/
	}
	
	#header--mobile #XX{
		display:block;		
		background-color:#fff;
		width:60px;
		height:40px;
		color:#9e9e9e;
		position:absolute;
		font-size:25px;
		right:5px;
		top:15px;
		text-align:center;
		line-height:30px;
		cursor:pointer;
	}	
	#header--mobile ul{
		width:100%;
		height:205px;
		position:fixed;
		background-color:#fff;
		top:40px;
		bottom:0;
		left:0;
		right:0;
		margin:auto;
    	list-style:none;
	}
	#header--mobile li{
		width:100%;
		float:none;
	}
	#header--mobile li:last-child{	
	border-bottom:1px solid #9e9e9e;
	}
	#header--mobile li a{
		display:block;
		width:100%;
		line-height:50px;
		text-align:center;
		text-decoration:none;
		color:#9e9e9e;
		font-weight:500;
		border-top:1px solid #9e9e9e;	
	}
.wrapper{
	width:100%;
	height:100%;
	margin-top:0px;
}
/*CSS Slide*/
.slider_container {
    margin-top: 50px;
    width: 100%;
    height: 490px;
    position: relative;
	z-index: -1;
	display: none;
}

.slider_container div {
    width: 100%;
    height: 0;
    padding-bottom: 38.54%;
    background-repeat: no-repeat;
    background-size: cover;
	opacity: 0;
    filter: alpha(opacity=0);
	position:absolute;
	top:0;
    -webkit-animation: round 10s linear infinite;
            animation: round 10s linear infinite;
}
.slider_container div:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.slider_container div:nth-child(2) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}

/*.slider_container:hover div {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
}*/
.slider_container_s {
    margin-top: 60px;
    width: 100%;
    height: 0;
	z-index: -1;
	display: block;
	padding-bottom: 110%;
}
.slider_container_s div {
    width: 100%;
    height: 0;
    padding-bottom: 122%;
    background-repeat: no-repeat;
    background-size: cover;
	opacity: 0;
    filter: alpha(opacity=0);
	position:absolute;
	top:60px;

    -webkit-animation: round 10s linear infinite;
            animation: round 10s linear infinite;
}
.slider_container_s div:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.slider_container_s div:nth-child(2) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}
@-webkit-keyframes round {
    10% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    60% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}
@keyframes round {
    10% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    60% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}

/*CSS Slide end*/
h2 {font-size: 6vmin; color:#007985; font-weight:300; line-height:8vmin;}
.article {font-size: 16px; color:#333; font-weight:300; line-height:22px;}
.features {font-size: 14px; color:#fff; font-weight:500; line-height:24px;}
.intro{width:100%; height:63%; margin-top: 4.68rem; margin-bottom: 1.75rem; position: relative; z-index: 60; }
.arrowshade{width:100%; height:100%; margin-top:0; display:flex;align-items:center;}
#advantage{width:100%; margin:50px 0; text-align:center; }
.advantage--content{width:100%; min-width: 320px; padding:10px; text-align:center; float:none;}
.advantage--content:after{
content: '';
display: block;
clear: both;
}
.advantage--content img{ width:50%; max-width: 220px; position: block;}
.ppanorama--container {
  clear:both;
  margin: 0;
  width: 100%;
  height: auto;
  display:none
}
.ppanorama--container-s {
  clear:both;
  margin: 0;
  width: 100%;
  height: auto;
}
/*
.ppanorama {
  clear:both;
  margin: 15px 0;
  cursor:col-resize;

  width: 100%;
  height: 0;
  padding-bottom: 50%;

  background-image:url(../images/panoramic.jpg);
  background-size:contain;
  background-position: 0 0;

  transition: background-position 1s linear;
} 暫時沒用到的全景效果*/
#download{width:100%; height: auto; padding:15px; position:relative; background-color:#fff;}
.download--title{text-align:center}
.download--content{width:94%; height: auto; padding-top:20px; padding-left:20px; padding-bottom:55px; margin:10px auto 20px; position:relative;}
.download--catalogs {background-color:rgba(40%,40%,40%,0); position:absolute; right:-20px; bottom:-10px; z-index:5 }
.download--catalogs img {width: 250px; height:auto; position:relative; bottom:-5px; z-index:-1}
.download--features { width: 100%;  padding-left:10px; padding-right: 20px; text-align:left; float:none;  }
.download--features ul{ }
.download--features li{ }
#stories{width:100%; height:auto; background-color:#d2dfe4; padding:15px; }
.stories--sample{width:100%; height:auto; padding:0 2.75rem;}
.stories--sample img {width:90%;}
.stories--content{width:100%;}
#products{width:85%; height:auto; position: relative; margin: 20px auto;}
.products--list {display: flex; flex-wrap: wrap;}
.products--tab {box-sizing: border-box; width: 100%; padding: 30px 0; position:relative; background-color:#d0dbdd;}
.products--tab:nth-child(2n+1){background-color:#eaeaea;}
.products--tab:nth-child(2n+5){background-color:#eaeaea;}
.products--tab:nth-child(2n+6){background-color:#d0dbdd;}
.products--tab:nth-child(2n+9){background-color:#eaeaea;}
.products--name{font-family:  'Roboto Condensed', sans-serif; font-size: 20px; color:#333; font-weight:500; line-height:2.25rem; width:90%; margin-left: 20px; margin-top: 15px; letter-spacing:0;}
.products--name-m{font-family:  'Roboto Condensed', sans-serif; font-size: 20px; color:#333; font-weight:500; line-height:2.25rem; width:90%; margin-left: 20px; margin-top: 15px; letter-spacing:0; display:none}
.products--name-s{font-family:  'Roboto Condensed', sans-serif; font-size: 20px; color:#333; font-weight:500; line-height:2.25rem; width:60%; margin-left: 20px; margin-top: 15px; letter-spacing:0;}
.products--buttonwrapper{width:40%; padding: 0; margin-left: 20px; margin-top: 2vh;}
.products--button{width:150px; height:30px; border-radius:15px; background-color:#007985; font-family:  'Roboto', sans-serif; font-size: 1rem; color:#fff; font-weight:400; line-height:30px; text-align:center; margin: 7px 0;}
.products--button a {color:#fff; text-decoration:none;}
.formwrapper{width:100%; padding:80px 5px 40px; background-color: rgba(79,123,176,0.14)}
.hover-zoom {
  margin: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-size: 90%;
  background-position: right center ;
  background-repeat: no-repeat;
  position: relative;
}
.hover-zoom:hover {
  background-size: 97%;
}
.hover-zoom p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5em;
  margin: 0;
  box-sizing: border-box;
}              
    .footercontainer {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    .footercontainer a {
        display: block;
        width: 12.5vw;
        height: auto;
        float: left;
        padding-left: 1.5vw;
    }

    .footercontainer img {
        width: 100%;
        height: auto;
    }
#ok {display:block; width: 100%; height:auto; font-size: 1.75vmin; font-weight: 500; color:#fff; line-height: 4.25vmin; text-align:center; align-items:center; background-color: rgba(85,85,85,0.8); padding:20px 30px; position:fixed; bottom:0; z-index:9000}
}

/*==========================================================================================Desktop version================================================================================*/
@media screen and (min-width: 768px){
h2 {font-size: 6vmin; color:#007985; font-weight:300; line-height:12vmin;}
.article {font-size: 2vmin; color:#333; font-weight:300; line-height:3.255vmin;}
.features {font-size: 1.125rem; color:#fff; font-weight:500; line-height:2.5rem;}
#header--mobile{
  width:100%;
  height:100%;
  background-color:rgba(255,255,255,1);
  position:fixed;
  top:0;
  left:0;
  transform:translate3d(-2000px,0px,0px);
  z-index:9998;
  display:none;
  font-weight:500;
}


.header__nav{
  width:100%;
	height:75px;
	margin:0px auto;
	position:fixed;
  top:0;
  left:0;
	background-color:#fff;
	overflow:hidden;
	z-index:10;
	box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
}

.header__nav h1 {
  float:left;
  padding-left:30px;
  padding-top: 25px;   
}
.header__nav h1 a{
  display:block;
  width:13vw;
  min-width:200px;
  height: 25px;
  background-image: url(https://www.arbor-technology.com/Event/Infotainment-Solution/images/arbor-logo.svg);
  background-repeat:no-repeat;
  background-size:contain;
  text-indent: -9999px;
}
.header__nav ul{
  float:right;
  padding-right: 10px;
  padding-top:25px;
  list-style:none;
}
.header__nav li{
  float:left;
}
.header__nav li a{
  display:block;
  padding-left:20px;
  padding-right:20px;
	text-align:center;
	text-decoration:none;
	color:#9e9e9e;
	font-size:1em;
	font-weight:500;
}

.wrapper{
	width:100%;
	height:100%;
	margin-top:0px;
}
/*CSS Slide*/
.slider_container {
	margin-top: 75px;
    width: 100%;
	height: 0;
    position: relative;
	padding-bottom: 29.68%;
}

.slider_container div {
    width: 100%;
    height: 0;
    padding-bottom: 29.68%;
    background-repeat: no-repeat;
    background-size: cover;
	opacity: 0;
    filter: alpha(opacity=0);
	position:absolute;
	top:0;
    -webkit-animation: round 10s linear infinite;
            animation: round 10s linear infinite;
}

@-webkit-keyframes round {
    10% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    60% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}
@keyframes round {
    10% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    60% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}
.slider_container div:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.slider_container div:nth-child(2) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}
/*.slider_container:hover div {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
}*/
.slider_container_s {
    margin-top: 60px;
    width: 100%;
    height: 800px;
    position: relative;
	z-index: -2;
	display:none;
}
.slider_container_s div {
    width: 100%;
    height: 0;
    padding-bottom: 38.54%;
    background-repeat: no-repeat;
    background-size: cover;
	opacity: 0;
    filter: alpha(opacity=0);
	position:absolute;
	top:0;
    -webkit-animation: round 10s linear infinite;
            animation: round 10s linear infinite;
}
.slider_container_s div:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.slider_container_s div:nth-child(2) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}
/*CSS Slide end*/
.intro{width:100%; height:63%; margin-top: 4.68rem; margin-bottom: 1.75rem; position: relative; z-index: 60;}
.arrowshade{width:100%; height:100%; margin-top:0; display:flex;align-items:center;}
/*.arrowshade{width:100%; height:100%; position:absolute; z-index: 50; margin-top:0; background-image:url(../images/arrowshade.png);background-position: left top; background-repeat: no-repeat; background-size: cover;}*/
.introduction {width:44vw; height:65%; margin-left: 3.75rem; font-size: 2.5vmin; color:#333; font-weight:300; line-height:4vmin; z-index: 40; letter-spacing: -1px; border: 1px solid rgba(140,5,7,1.00)}

#advantage{width:93.75%; margin:0 auto;text-align:center; }
.advantage--content{ width:24.5%; min-width: 270px; padding:2rem 1rem; text-align:center; float:left}
.advantage--content:after{
content: '';
display: block;
clear: both;
}
.advantage--content img{ width:55%; max-width: 220px; position: block;}
.ppanorama--container {
  clear:both;
  margin: 0;
  width: 100%;
  height: auto;
}
.ppanorama--container-s {
  clear:both;
  margin: 0;
  width: 100%;
  height: auto;  
  display:none
}
.ppanorama {
  clear:both;
  margin: 0 auto;
  cursor: e-resize;

  width: 100%;
  height: 0;
  padding-bottom: 25%;

  background-image:url(../images/panoramic.jpg);
  background-size: cover;
  background-position: 0 0;

  transition: background-position 1s linear;
}
#download{width:100%; height: auto; padding:2rem 4rem;  position:relative;}
.download--content{ width:100%; height: auto; padding-top:2.5rem; padding-left:4rem; padding-bottom:35px; position:relative;}
.download--catalogs {background-color:rgba(40%,40%,40%,0); position:absolute; right:-20px; bottom:-10px; }
.download--catalogs img {width: 34vw; height:auto; position:relative; bottom:0; right:-10px; }
.download--catalog {width: 34rem; height:18rem; background-image:url(../images/catalog.png); background-repeat:no-repeat; background-position:right top; background-size:75%;  position:absolute; right:-20px; bottom:-10px;}
.download--features { width: 32%; min-width:445px; padding-left:10px; margin-right: 2.5rem; text-align:left; float:left;}
.download--features ul{ }
.download--features li{ }
#stories{width:100%; height:auto; background-color:#d2dfe4; padding:2rem 0 3rem 0; }
.stories--sample{width:100%; height:auto; padding:2rem 2.75rem;}
.stories--sample img {width:100%;}
.stories--content{width:100%;}
#products{width:90%; height:auto; position: relative; margin: 0 auto; }
.products--list { display: flex; flex-wrap: wrap;}
.products--tab { box-sizing: border-box; width: 25%; padding: 30px 0; position:relative; background-color: #d0dbdd;}
.products--tab:nth-child(2n+1){background-color:#eaeaea;}
.products--tab:nth-child(2n+5){background-color:#d0dbdd;}
.products--tab:nth-child(2n+6){background-color:#eaeaea;}
.products--tab:nth-child(2n+9){background-color:#d0dbdd;}

/*.products--tab{width:25%; height:250px; float:left;position: relative;}*/
.products--name{font-family:  'Roboto Condensed', sans-serif; font-size: 1.75rem; color:#333; font-weight:500; line-height:2.25rem; width:48.5%; margin-left: 20px; margin-top: 15px; letter-spacing:-1px;}
.products--name-m{font-family:  'Roboto Condensed', sans-serif; font-size: 1.75rem; color:#333; font-weight:500; line-height:2.25rem; width:48.5%; margin-left: 20px; margin-top: 15px; letter-spacing:-1px;}
.products--name-s{font-family:  'Roboto Condensed', sans-serif; font-size: 1.75rem; color:#333; font-weight:500; line-height:2.25rem; width:48.5%; margin-left: 20px; margin-top: 15px; letter-spacing:-1px;display:none}
.products--buttonwrapper{width:40%; padding: 0; margin-left: 20px; margin-top: 2vh;}
.products--button{width:150px; height:30px; border-radius:15px; background-color:#007985; font-family:  'Roboto', sans-serif; font-size: 1rem; color:#fff; font-weight:400; line-height:30px; text-align:center; margin: 7px 0;}
.products--button a {color:#fff; text-decoration:none;}
.hover-zoom {
  margin: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-size: 90%;
  background-position: right center ;
  background-repeat: no-repeat;
  position: relative;
}
.hover-zoom:hover {
  background-size: 97%;
}
.hover-zoom p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5em;
  margin: 0;
  box-sizing: border-box;
}              


.formwrapper{width:100%; padding:80px 5px 40px ;margin-top:30px; background-color: rgba(79,123,176,0.14)}
.footercontainer {
    margin-left: auto;
    margin-right: auto;
    width: 24%;
}

.footercontainer a {
    display: block;
    width: 5.8vw;
    height: auto;
    float: left;
    padding-left: 1.1vw;
}

.footercontainer img {
    width: 100%;
    height: auto;
}
.clear {clear:both;}
#ok {display:block; width: 100%; height:auto; font-size: 1.5vmin; font-weight: 500; color:#fff; line-height: 3vmin; text-align:center; align-items:center; background-color: rgba(85,85,85,0.8); padding:20px 30px; position:fixed; bottom:0; z-index:9000}
}

