/* ----- socialList ----- */
.socialList {
	position: relative;
	width: 100%;
	margin: 30px auto 0 auto;
}

.socialList ul {
	display: flex;
	list-style: none;
	flex-direction: row;
	align-items: stretch;
	align-content: stretch;
	flex-wrap: wrap;
	letter-spacing: -9px;
	margin: -10px;
}

.socialList ul li {
	position: relative;
	display: inline-block;
	width: 33.333%;
	letter-spacing: 0;
	padding: 10px;
	box-sizing: border-box;
	vertical-align: top;
}

.socialList ul li a {
	display: block;
	width: 100%;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.socialList dl {
	width: 100%;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.socialList dl.qrCode1 {
	background: #06c755;
}

.socialList dl.qrCode2 {
	background: #0866ff;
}

.socialList dl.qrCode3 {
	background: #ff0000;
}

.socialList dl.qrCode4 {
	background: #fc0a77;
}

.socialList dl.qrCode5 {
	background: #0a66c2;
}

.socialList a:hover dl.qrCode1,
.socialList a:focus dl.qrCode1 {
	background: #049440;
}

.socialList a:hover dl.qrCode2,
.socialList a:focus dl.qrCode2 {
	background: #145bcc;
}

.socialList a:hover dl.qrCode3,
.socialList a:focus dl.qrCode3 {
	background: #cc0000;
}

.socialList a:hover dl.qrCode4,
.socialList a:focus dl.qrCode4 {
	background: #cc0860;
}

.socialList a:hover dl.qrCode5,
.socialList a:focus dl.qrCode5 {
	background: #074b8f;
}

.socialList dl dt {
	font-family: "PingFang TC Semibold", "微軟雅黑", "Microsoft YaHei";
	font-size: 2.1em;
	font-weight: bold;
	line-height: 135%;
	padding: 10px 10px 15px 10px;
	box-sizing: border-box;
	background: #FFF;
	overflow: hidden;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.socialList dl.qrCode1 dt {
	color: #06c755;
}

.socialList dl.qrCode2 dt {
	color: #0866ff;
}

.socialList dl.qrCode3 dt {
	color: #ff0000;
}

.socialList dl.qrCode4 dt {
	color: #fc0a77;
}

.socialList dl.qrCode5 dt {
	color: #0a66c2;
}

.socialList a:hover dl.qrCode1 dt,
.socialList a:focus dl.qrCode1 dt {
	color: #049440;
}

.socialList a:hover dl.qrCode2 dt,
.socialList a:focus dl.qrCode2 dt {
	color: #145bcc;
}

.socialList a:hover dl.qrCode3 dt,
.socialList a:focus dl.qrCode3 dt {
	color: #cc0000;
}

.socialList a:hover dl.qrCode4 dt,
.socialList a:focus dl.qrCode4 dt {
	color: #cc0860;
}

.socialList a:hover dl.qrCode5 dt,
.socialList a:focus dl.qrCode5 dt {
	color: #074b8f;
}

.socialList dl dt:before {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}

.socialList dl.qrCode1 dt:before {
	background-image: url(../images/about/qrCode-1.png);
}

.socialList dl.qrCode2 dt:before {
	background-image: url(../images/about/qrCode-2.png);
}

.socialList dl.qrCode3 dt:before {
	background-image: url(../images/about/qrCode-3.png);
}

.socialList dl.qrCode4 dt:before {
	background-image: url(../images/about/qrCode-4.png);
}

.socialList dl.qrCode5 dt:before {
	background-image: url(../images/about/qrCode-5.png);
}

.socialList dl dd {
	color: #fff;
	font-family: "PingFang TC Semibold", "微軟雅黑", "Microsoft YaHei";
	font-size: 1.9em;
	font-weight: bold;
	line-height: 135%;
	padding: 10px 0 5px 0;
}

.socialList dl dd span {
	position: relative;
	display: inline-block;
	padding-right: 25px;
}

.socialList dl dd span:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	width: 17px;
	height: 17px;
	margin-top: -8.5px;
	background-color: #ffffff;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 100% auto;
	-webkit-mask-position: 50% 50%;
	mask-position: 50% 50%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-image: url(../images/about/icon/moreBtn-icon.svg);
	mask-image: url(../images/about/icon/moreBtn-icon.svg);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

@media screen and (max-width:990px) {}

@media screen and (max-width:768px) {
	.socialList dl dt span {
		display: inline-block;
		max-width: 6em;
	}

	.socialList dl dd {
		font-size: 1.7em;
	}
}

@media screen and (max-width:540px) {
	.socialList ul li {
		width: 50%;
	}

	.socialList ul li a {
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}

	.socialList dl {
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}

	.socialList dl dt {
		-webkit-border-radius: 15px;
		-moz-border-radius: 15px;
		border-radius: 15px;
	}
}

@media screen and (min-width:991px) {
	.socialList {
		margin-top: 25px;
	}

	.socialList ul li {
		width: 20%;
	}

	.socialList dl dt span {
		display: inline-block;
		max-width: 6em;
	}
}

@media screen and (min-width:1200px) {}

@media screen and (min-width:1600px) {
	.socialList {
		margin-top: 40px;
	}

	.socialList ul {
		margin: -15px;
	}

	.socialList ul li {
		padding: 15px;
	}

	.socialList dl dt {
		font-size: 2.3em;
	}

	.socialList dl dt span {
		max-width: 100%;
	}

	.socialList dl dd {
		font-size: 2.1em;
	}
}

@media screen and (min-width:1920px) {}