@import "variables.css";
img{
	width: 100%;
}
body{
	font-family: "Noto Sans TC","SF Pro TC","SF Pro Display","SF Pro Icons","PingFang TC","Microsoft JhengHei","Helvetica Neue","Helvetica","Arial",sans-serif;
	color: #333;
}
body.bg-gray{
	background-color: #F2F2F4;
}
header{
	background-color: #000;
	height: 62px;
	/*position: fixed;*/
	width: 100%;
}
header .wrap{
	padding: 0 19px;
}
header .myvideo-logo{
	width: 137px;
	height: 56px;
	position: relative;
	top: 4px;
}
.top-banner{
	width: 100%;
	height: 200px;
	background-image: url(../images/top-bg.png);
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
h1{
	font-size: 40px;
	line-height: 200px;
	font-weight: bold;
	color: #FFF;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
	text-align: center;
}
body.bg-gray h2{
	font-weight: 500;
	font-size: 32px;
	line-height: 1.5;
	color: #333;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 24px;
}
.d-f{
	display: flex;
}
.aic{
	align-items: center;
}
.info-content{
	min-height: 60vh;
	margin-bottom: 60px;
}
.tab{
	border-bottom: #CBD6E4 solid 1px;
	padding: 10px 30px 12px 30px;
}
.tab-item{
	display: inline-block;
	font-size: 0;
	margin-right: 30px;
	margin-top: 20px;
}
.tab-item-input+label{
	cursor: pointer;
	position: relative;
	font-size: 14px;
	color: #2D3C4F;
	opacity: 0.9;
}
.tab-item-input:checked+label,
.tab-item-input:hover+label{
	opacity: 1;
}
.tab-item-input{
	-webkit-appearance: none;
	margin: 0;
	opacity: 0;
}
.tab-item-input+label:after{
	content: "";
	width: 100%;
	position: absolute;
	right: 0;
	left: 0;
	bottom: -11px;
	height: 4px;
	background-color: transparent;
	-webkit-border-radius: 2px;
	        border-radius: 2px;
	-webkit-transition: background-color .2s;
	   -moz-transition: background-color .2s;
	    -ms-transition: background-color .2s;
	     -o-transition: background-color .2s;
	        transition: background-color .2s;
}
.tab-item-input:checked+label:after{
	background-color: var(--color-orange-1);
}
.tab-content{
	width: 80%;
	margin: 0 auto;
	max-width: 864px;
	margin-top: 30px;
}
.tab-content{
	display: none;
}
.tab-content.payIntroTab1{
	display: block;
}
.tab-content .block{
	margin-bottom: 30px;
}
.tab-content section{
	margin-bottom: 50px;
}
.tab-content h2{
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 12px;
	line-height: 1.2;
}
.tab-content h3{
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 12px;
	line-height: 1.5;
}
.tab-content h4{
	font-size: 18px;
	margin-bottom: 12px;
	line-height: 1.5;
}
.tab-content p{
	font-size: 15px;
	margin-bottom: 12px;
	line-height: 1.5;
}
.tab-content a{
	color: var(--color-orange-1);
	transition: all .2s ease-in-out;
}
.tab-content a:hover{
	text-decoration: underline;
	color: var(--color-orange-2);
}
.tab-content .img-group{
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
.tab-content .img-group .img-wrap{
	width: 33%;
}
.tab-content .img-group.img-5 .img-wrap{
	width: 19%;
}

footer{
	background-color: #F2F2F2;
	border-top: #E0E0E0 solid 1px;
	height: 60px;
	font-size: 13px;
	color: #999;
}
footer a{
	display: inline-block;
}
footer .wrap{
	background-color: #F2F2F2;
	padding: 0 20px;
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
footer .links{
	display: inline-block;
	vertical-align: middle;
}
footer .links a{
	margin-right: 30px;
	-webkit-transition:color .2s;
	   -moz-transition:color .2s;
	    -ms-transition:color .2s;
	     -o-transition:color .2s;
	        transition:color .2s;
    padding: 20px 10px;
    line-height: 2;
}
footer .links a:hover{
	color: #777;
}
footer .copyright{
	display: inline-block;
	padding: 20px 10px;
	line-height: 2;
	vertical-align: middle;
}

.icon{
	display: inline-block;
	vertical-align: middle;
	background-color: #f4f4f4;
	text-align: center;
	width: 24px;
	height: 24px;
	-webkit-border-radius: 50px;
	        border-radius: 50px;
	padding: 6px;
}

.icon svg{
	width: 24px;
	height: 24px;
	color: #888;
	fill: currentColor;
	position: relative;
}

.google-play{
	width: 40px;
	height: 40px;
	display: flex;
}

.google-play img{
	width: 100%;
	height: auto;
}

.select-list{
	margin: 0 auto;	
	width: 90%;
	max-width: 320px;
}

.select-list li{
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
}

.select-list li a{
	padding: 16px 24px;
	display: block;
	-webkit-transition: all .2s ease-in-out;
	   -moz-transition: all .2s ease-in-out;
	    -ms-transition: all .2s ease-in-out;
	     -o-transition: all .2s ease-in-out;
	        transition: all .2s ease-in-out;	
}

.select-list li .device-name{
	color: #333;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	display: block;
	margin-bottom: 4px;
	-webkit-transition: color .2s ease-in-out;
	   -moz-transition: color .2s ease-in-out;
	    -ms-transition: color .2s ease-in-out;
	     -o-transition: color .2s ease-in-out;
	        transition: color .2s ease-in-out;
}

.select-list li .info{
	color: #9a9a9a;
	font-weight: 400;
	font-size: 14px;
}

.select-list li a:hover{
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.select-list li a:hover .device-name{
	color: var(--color-orange-1);
}

.main-content{
	min-height: calc(100vh - 130px);
}
@media screen and (max-width: 1024px){
	.tab{
		/* padding: 0 0 20px 0; */
		padding: 0;
		height: 51px;
	}
	.tab ul::-webkit-scrollbar{
		display: none;
	}
	.tab ul{
		font-size: 0;
		display: flex;
		-webkit-align-content: flex-start;
		        align-content: flex-start;
		-webkit-justify-content: flex-start;
		        justify-content: flex-start;		
		-webkit-flex-wrap: nowrap;
		    -ms-flex-wrap: nowrap;
		        flex-wrap: nowrap;
		overflow-x: scroll;
		padding-left: 20px;
		padding-right: 20px;
		/* padding-bottom: 14px; */
		height: 52px;
		top: 2px;
		position: relative;
		
		-ms-overflow-style: none;
		overflow: -moz-scrollbars-none;
		-webkit-overflow-scrolling: touch;
	}
	.tab-item{
		white-space: nowrap;
		margin-top: 0;
		padding-top: 20px;
	}
	.tab-item-input+label:after{
		/* bottom: -6px; */
	}
}

@media screen and (max-width: 768px){
	.top-banner{
		height: 120px;
	}
	h1{
		line-height: 120px;
		font-size: 32px;
	}
	.tab-content h2{
		font-size: 28px;
	}
	footer .wrap{
		padding: 10px 20px;
		display: block;
	}
	footer .links{
		display: block;
	}
	footer .links a{
		display: inline-block;
		padding: 10px 10px;	
	}
	footer .copyright{
		display: block;
		padding: 10px;
	}
	.tab-item-input+label{
		font-size: 16px;
	}
}

@media screen and (max-width: 420px){
	h1{
		font-size: 24px;
	}
	.tab-content h3{
		font-size: 20px;
	}
	.tab-item{
		margin-right: 16px;
	}
}





