@charset "UTF-8";
@import url("plugins.css");
@import url("fontello.css");

:root {
	--main: #fec938;
	--secondary: #000000;
	--bg: #efefef;
	--bg-header: #000000;
	--bg-navbar: #686564;
	--bg-img: #d5d5d5;
	--white: #ffffff;
	--black: #000000;
	--gray: #666666;
	--gray-light: #d9d9d9;
	--transition-2: ease 0.2s;
	--transition-3: ease 0.3s;
	--transition-5: ease 0.5s;
	--transition-6: ease 0.6s;
	--fonts: 'Roboto', Helvetica, 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
	--slider-arrow: url(../img/icon-slider-arrow.svg) no-repeat center center / 100% 100%;
	--bg-img:linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 0),
		linear-gradient(rgba(255, 255, 255, 0.2) 0, transparent 0),
		linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 0),
		linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0, transparent 0);
	--pp-dpp:#038d23;/* 民進黨 */
	--pp-kmt:#0266be;/* 國民黨 */
	--pp-tpp:#06a7af;/* 民眾 */
	--pp-sb:#bf3e22;/* 基進 */
	--pp-npp:#ffb700;/* 時力 */
	--pp-tsn:#c97400;/* 台聯 */
	--pp-pfp:#ff8100;/* 親民 */
	--pp-np:#ffdf00;/* 新黨 */
	--pp-gp:#67b37e;/* 綠黨 */
	--pp-nonp:#bbbbbb;/* 無黨 */
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	color: var(--black);
	font-family: var(--fonts);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	background-color: var(--main);
	background-image: var(--bg-img);
	background-repeat: repeat;
	background-size: 25px 25px;
	background-position: center center;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0
}
h1,
h2,
h3 {
	font-weight: 700
}
h4,
h5,
h6 {
	font-weight: 500
}

a {
	text-decoration: none !important;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

span,
a,
a:hover {
	display: inline-block;
	text-decoration: none;
	color: inherit;
}
.countycityNav-wrapper span,
.countycityNav-wrapper a,
.countycityNav-wrapper a:hover {
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%
}

a:hover {
	color: var(--main)
}

a:hover,
a:focus {
	color: var(--main);
	text-decoration: none
}

p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	color: var(--black);
	line-height: 24px;
}

.img-ratio {
	position: relative;
	--ratio: 16 / 10;
	height: 0;
	padding-bottom: calc(100%/(var(--ratio)));
}

.img-ratio>img, .img-ratio>iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.position-relative {
	position: relative !important;
}

.form-control:focus {
	box-shadow: none;
	outline: 0 none;
	border-bottom: 1px solid var(--main);
}

dl,
ol,
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bg {
	background-color: var(--bg);
}

.bg-fixed {
	background-attachment: fixed;
}

.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
}

.section-padding {
	/* padding-top: 100px; */
	padding-bottom: 90px;
}
.section-padding-y {
	padding: 90px 0
}


.section-title {
	text-align: left;
}

.section-title.align {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.section-title h3 {
	position: relative;
	color: var(--white);
	font-size: 38px;
	font-weight: 700;
	line-height: 1.3;
	/* padding-bottom: 10px; */
	letter-spacing: 2px;
	text-transform: capitalize;
	z-index: 2;
}
.section-title h3::before {
	content: '';
	display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent url(../img/title-bef.png)no-repeat center 100%/contain;
    margin-right: 15px;
	vertical-align: bottom;
}
.section-title h3::after {
	content: '';
	display: inline-block;
    width: 40px;
    height: 40px;
    background: transparent url(../img/title-aft.png)no-repeat center 100%/contain;
	margin-left: 10px;
}
#over-years {
    background: var(--white) linear-gradient(180deg,transparent 50%,#efefef 95%,var(--bg));
}

.display-table {
	width: 100%;
	height: 100%;
	display: table;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

.mr-top-50 {
	margin-top: 50px;
}

.more {
	text-align: center;
	margin: 10px auto 0
}

.btn.more {
	font-size: 17px;
	line-height: 1;
	font-weight: 500;
	color: var(--black);
	background: var(--white);
	padding: 10px 15px 10px 25px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
}

.btn.more:hover {
	background: rgba(255, 255, 255, 0.5);
}
.btn.more:hover i {
	transform: translateX(20px);
}

.back-to-top {
	position: fixed;
	display: none;
	color: var(--black);
	width: 47px;
	height: 47px;
	line-height: 47px;
	border-radius: 50px;
	right: 20px;
	bottom: 25px;
	text-align: center;
	background: rgba(255, 255, 255, .6);
	z-index: 99;
}
.back-to-top i {
	color: var(--black);
	font-size: 20px
}

.back-to-top:hover {
	background: rgba(0,0,0,0.4);
	transform: translateY(-8px);
	-webkit-transform: translateY(-8px);
}
.back-to-top:hover i {
	color: var(--white);
}


.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 15px;
}

.owl-theme .owl-dots .owl-dot span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background: rgba(255, 255, 255, 0.5);
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
}

.owl-carousel .owl-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 選單列 */
.navbar {
	padding: 0;
	box-shadow: 0 5px 15px 0 rgb(0 0 0 / 5%);
}

.navbar-b {
	background: transparent;
}

.navbar-b.navbar-reduce {
	animation: .6s navbar-reduce;
    -webkit-animation: .6s navbar-reduce;
}
@keyframes navbar-reduce {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }
    100% {
        opacity: 1;
        transform: translateY(0);
	}
}

.navbar-b.navbar-trans {
	position: absolute;
	top: 220px;
	background: var(--black);
}

.navbar-b.navbar-trans .navbar-nav .nav-link {
	letter-spacing: 3px;
	padding: 0.875rem;
}

.navbar-b.navbar-trans .navbar-nav .nav-link,
.navbar-b.navbar-reduce .navbar-nav .nav-link {
	/* width: 200px; */
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1rem;
	transition: var(--transition-2);
	-webkit-transition: var(--transition-2);
}

.navbar-b.navbar-trans .nav-item,
.navbar-b.navbar-reduce .nav-item {
	position: relative;
	padding-left: 0;
}

.navbar-b.navbar-trans .nav-link,
.navbar-b.navbar-reduce .nav-link {
	width: 100%;
	color: var(--white);
	text-align: center;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.navbar-b.navbar-trans .nav-link:hover,
.navbar-b.navbar-reduce .nav-link:hover {
	color: var(--white);
	background: var(--gray);
}
/* .navbar-b.navbar-trans .nav-link:hover::before,
.navbar-b.navbar-reduce .nav-link:hover::before,
.navbar-b.navbar-trans .nav-link:hover::after,
.navbar-b.navbar-reduce .nav-link:hover::after {
	content: '';
	display: inline-block;
	width: 20px;
	aspect-ratio: 1 / 1;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+PHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTTI0MCAxMjhhMTUuNzkgMTUuNzkgMCAwIDEtMTAuNSAxNWwtNjMuNDQgMjMuMDdMMTQzIDIyOS41YTE2IDE2IDAgMCAxLTMwIDBMODkuOTMgMTY2TDI2LjUgMTQzYTE2IDE2IDAgMCAxIDAtMzBMOTAgODkuOTNsMjMtNjMuNDNhMTYgMTYgMCAwIDEgMzAgMEwxNjYuMDcgOTBsNjMuNDMgMjNhMTUuNzkgMTUuNzkgMCAwIDEgMTAuNSAxNVoiLz48L3N2Zz4=)no-repeat center 100%;
	color: var(--white);
} */

/* .navbar-b.navbar-trans .nav-link:hover {
	color: var(--secondary);
} */

/* .navbar-nav .nav-item:hover {
	background: rgba(0, 0, 0, 0.3);
	transition: .1s;
	-webkit-transition: .1s;
} */

.navbar-b.navbar-trans .show>.nav-link,
.navbar-b.navbar-trans .active>.nav-link,
.navbar-b.navbar-trans .nav-link.show,
.navbar-b.navbar-trans .nav-link.active {
	color: var(--white);
}

.navbar-expand-md .navbar-nav {
	/* flex-grow: 1; */
	justify-content: center;
	/* max-width: 50vw; */
}

.navbar-social-media a,
.footer-social-media a {
	display: inline-block;
	position: relative;
	margin: 0 7px;
	color: var(--black);
	width: 38px;
	height: 38px;
	font-size: 18px;
	line-height: 38px;
	text-align: center;
	white-space: nowrap;
	-webkit-transition: all .3s;
	transition: all .3s;
	z-index: 3;
}

.navbar-social-media a::after,
.footer-social-media a::after {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	border-radius: 50px;
	background: transparent;
	-webkit-transition: all .3s;
	transition: all .3s;
	z-index: -1;
	border: 1px solid var(--black);
}

.navbar-b.navbar-reduce .navbar-social-media a::after {
	border: 1px solid #ccc;
}

.navbar-b.navbar-reduce {
	background: var(--black);
	/* -webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px); */
}

.navbar-b.navbar-reduce .active {
	color: var(--main);
	background: var(--white)
}

.navbar-b.navbar-trans .nav-link.active {
	color: var(--white);
	background: var(--black)
}

.navbar-b.navbar-reduce .nav-link {
	color: var(--white);
}

.navbar-b.navbar-reduce .nav-link:hover:not(.active),
.navbar-b.navbar-reduce .nav-link:focus {
	color: var(--white);
	background: var(--gray);
}

.navbar-b.navbar-reduce .show>.nav-link,
.navbar-b.navbar-reduce .active>.nav-link,
.navbar-b.navbar-reduce .nav-link.show,
.navbar-b.navbar-reduce .nav-link.active {
	color: var(--main);
	background: var(--white);
}

.navbar-b.navbar-reduce .navbar-brand {
	color: var(--white);
}

.navbar-b.navbar-reduce .navbar-toggler span {
	background: var(--black);
}

.navbar-b .social-share {
	display: none;
}

.navbar-b .navbar-brand {
	color: var(--black);
	font-size: 28px;
	font-weight: 800;
}

.navbar-b .dropdown-menu {
	margin: 1.12rem 0 0;
	border-radius: 0;
}

.navbar-b .dropdown-menu .dropdown-item {
	padding: .7rem 1.7rem;
	transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item:hover {
	background-color: var(--white);
	color: var(--black);
	transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item.active {
	background-color: var(--white);
}

.navbar-toggler {
	position: relative;
}

.navbar-toggler:focus,
.navbar-toggler:active {
	outline: 0;
}

.navbar-toggler span {
	display: block;
	background-color: var(--black);
	height: 3px;
	width: 22px;
	margin-top: 4px;
	margin-bottom: 4px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	left: 0;
	opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
	transition: -webkit-transform .35s ease-in-out;
	transition: transform .35s ease-in-out;
	transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
	position: absolute;
	left: 5px;
	top: 10px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
	height: 12px;
	visibility: hidden;
	background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
	position: absolute;
	left: 5px;
	top: 10px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	opacity: 0.9;
}

.circle {
	background: #2980b9;
	width: 200px;
	line-height: 200px;
	display: inline-block;
	color: #fff;
	border-radius: 100%;
}

.breaking-news {
	/* position: absolute; */
	/* top: 278.5px; */
	width: 100%;
	/* max-width: 1280px; */
	font-size: 95%;
	/* text-align: left; */
	background: var(--white);
	/* padding: 4px; */
	/* white-space: nowrap; */
	overflow: hidden;
	/* z-index: 99; */
}
.breaking-news > .wrap {
	display: flex;
	flex-flow: row nowrap;
	max-width: 1240px;
	width: 100%;
	height: 30px;
    align-items: center;
	margin: 0 auto;
	padding: 0 10px;
	overflow: hidden;
}
.breaking-news .title {
	display: flex;
	align-items: center;
	color: red;
	font-size: 95%;
	font-weight: 600;
	line-height: 1;
	/* margin-left: 12px; */
	white-space: nowrap;
}
.breaking-news .title::after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 15px;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9IiNmZjAwMDAiIGQ9Im04LjAwNiAyMS4zMDhsLTEuMDY0LTEuMDY0TDE1LjE4NyAxMkw2Ljk0MiAzLjc1NmwxLjA2NC0xLjA2NEwxNy4zMTMgMTJsLTkuMzA3IDkuMzA4WiIvPjwvc3ZnPg==)no-repeat center / 100%;
}
.breaking-news .item {
	font-size: 95%;
	font-weight: 400;
	line-height: 1.5;
}
.breaking-news .item a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
	color: var(--black);
}
.breaking-news .list.owl-carousel {
	/* max-width: calc(1280px - 150px); */
	width: 100%;
	overflow-x: hidden;
}
.breaking-news .list.owl-carousel a.item {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	width: 100%;
	color: var(--black);
}
.breaking-news .list.owl-carousel a.item:hover {
	color: var(--red);
}
.breaking-news.fixedtop {
    position: sticky;
    top: 63px;
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
    animation: .7s fixedtop;
    -webkit-animation: .7s fixedtop;
}
/* @keyframes fixedtop {
	50% {
		transform: translateY(-50px);
		-webkit-transform: translateY(-50px);
	}
	100% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
} */

.owl-carousel.vertical {
	transform: rotate(90deg);
}
.owl-carousel.vertical .item {
	transform: rotate(-90deg);
}

/* 版頭Banner */
.home-area {
	position: relative;
	color: var(--black);
	text-align: center;
	/* background-color: var(--main); */
	/* background-image: url(../img/kv-bg.jpg); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	/* padding-bottom: 0px; */
	z-index: 1;
	overflow: hidden;
}

.equal-height {
	/* -js-display: flex; */
	/* display: -ms-flexbox; */
	/* display: -webkit-box; */
	display: flex;
	/* -webkit-box-pack: center; */
	/* -ms-flex-pack: center; */
	/* -webkit-box-orient: vertical; */
	/* -webkit-box-direction: normal; */
	/* -ms-flex-direction: column; */
	position: relative;
	flex-direction: column;
	justify-content: center;
	min-height: 220px;
	/* height: 100%; */
	width: 100%;
}

.equal-height .topbar {
	position: absolute;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	/* background: var(--main); */
	z-index: 11;
}

.logo-nn {
	display: flex;
	width: 120px;
	height: 36px;
	padding: 0;
}

.logo-nn a {
	width: 100%;
	height: 100%;
	background: url(../img/logo-nownews-light.svg) no-repeat;
	background-position: center;
	background-size: 100%;
	text-indent: 101%;
	white-space: nowrap;
	overflow: hidden;
}
.logo-nn.mb {
	width: 85px;
	height: 35px;
}

.topbar .social-share {
	position: relative;
}

.topbar .social-share a {
	width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 43px;
	color: var(--black);
	border-radius: 50px;
	margin-right: 8px;
	padding: 0;
}

.topbar .social-share a:last-child {
	margin-right: 0;
}

.topbar .social-share a:hover {
	/* color: var(--white); */
	background: var(--white)
	/* transform: scale(1.2);
	-webkit-transform: scale(1.2); */
}
.topbar .social-share a:first-child {
	width: 20px;
	height: 20px;
	fill: transparent;
	background: none;
}

.home-content {
	display: flex;
	position: relative;
	flex-flow: row wrap;
	justify-content: center;
	/* margin-top: 20px; */
	z-index: 5;
}

.home-content h1.header-logo {
	position: relative;
	/* max-width: 500px; */
	/* background: url(../img/kv-logo.png) no-repeat center / contain; */
	width: 640px;
	/* --ratio: 1 / 2; */
	/* margin-top: 12px; */
	/* text-indent: 101%; */
	/* white-space: nowrap; */
	/* overflow: hidden; */
}
/* .home-content h1.header-logo::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle,#fff,#fff,transparent);
    -webkit-transform: scale(1.5,.05);
    transform: scale(1.5,.05);
    z-index: 0;
} */

/* .home-content h1.header-logo img {
	width: 100%;
} */

/* 倒數計時 */
/* .home-content .countdown-timer {
	position: relative;
	align-self: center;
	text-align: center;
	margin-top: 20px;
} */

/* #countdown li:last-child {
	display: none
} */

/* .home-content .countdown-timer ul li {
	display: inline-block;
	font-size: 18px;
	color: var(--white);
	padding: 20px;
} */

/* .home-content .countdown-timer ul li::after {
	content: '：';
	position: absolute;
	top: 30px;
	font-size: 52px;
	line-height: 1.3;
	padding-left: 14px;
} */

/* .home-content .countdown-timer ul li:nth-child(3)::after {
	font-size: 0;
} */

/* .home-content .countdown-timer ul li span {
	display: block;
	color: var(--black);
	font-size: 54px;
	font-weight: 700;
	text-align: center;
	letter-spacing: -2px;
	width: 80px;
	background: var(--secondary);
	margin-bottom: 7px;
	padding: 5px;
	border-radius: 10px;
} */


/* 總統候選人數據 */
.chart-wrap {
	position: relative;
	height: 0;
	background: var(--white);
	padding-bottom: 67%;
	overflow: hidden;
}
.chart-wrap > * {
	position: absolute;
	inset: 0;
	width: 100%;
}
/* 快析文字 */
/* .show-hide {
	text-align:center;
}
.read-more-wrap {
	opacity:1;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
}
.show-hide > a {
	font-size: 1rem;
	margin-top: 15px;
}
.show-hide > a:hover, .show-hide > a:focus {
	color: var(--white);
}
.read-more-state {
	display: none;
}
.read-more-target {
	opacity: 0;
	max-height: 0;
	font-size: 0;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
	opacity: 1;
	max-height: 999em;
	font-size: 0.875rem;
	text-align: left;
	padding: 0.25rem 0;
}
.read-more-state ~ .read-more-trigger:before {
	content: '詳細說明 ⇣';
}
.read-more-state:checked ~ .read-more-trigger:before {
	content: '收合 ⇡';
}
.read-more-trigger {
	cursor: pointer;
	color: var(--gray);
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0.01em;
	border-top: 1px dotted rgba(0, 0, 0, 0.5);
	margin-top: 0.5rem;
	padding: 0.25rem 2rem;
	transition: ease .2s;
	-webkit-transition: ease .2s;
}
.read-more-trigger:hover {
	color:var(--black);
} */

.alink {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.items-link {
	width: 60%;
	background: var(--white);
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 6px;
	display: none;
	-webkit-transform: translate(-50%,-50%);
	transition: var(--transition-3);
	-webkit-transition: var(--transition-3);
}

.items-link .items-link-wrap {
    position: relative;
}
.items-link .items-link-wrap .close {
    position: absolute;
    top: -10px;
    right: -40px;
    width: 25px;
    height: 25px;
    background: none;
    border: 0;
    outline: none;
    cursor: pointer;
    z-index: 2;
}
.items-link .items-link-wrap .close:before, .items-link .items-link-wrap .close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-bottom: 2px solid var(--white);
    opacity: 1;
}
.items-link .items-link-wrap .close:before {
    transform: rotate(45deg);
}
.items-link .items-link-wrap .close:after {
    transform: rotate(-45deg);
}
.items-link .items-link-wrap b {
	position: absolute;
	top: -6px;
    left: -45px;
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
    /* opacity: 0.6; */
}
.items-link-list a {
	display: flex;
    flex-flow: row-reverse;
    justify-content: flex-end;
    align-items: center;
	padding: 6px;
	font-weight: 400;
	white-space: nowrap;
}
.items-link-list a:hover {
	background: var(--main);
}
.items-link-list a:hover h4 {
	color: var(--white);
}
.items-link-list a:hover span {
	color: var(--main);
	background: var(--white);
}
.items-link-list a h4 {
	font-size: 19px;
	font-weight: 400;
}
.items-link-list a span {
    width: 20px;
    height: 20px;
    color: var(--white);
    font-size: 9px;
    line-height: 20px;
    text-align: center;
    background: var(--main);
    border-radius: 100%;
    padding: 0 5px;
    margin-right: 10px;
    transition: all .5s;
    -webkit-border-radius: 100%;
}


/* 黨徽 */
.pp-dpp {
	background: url(../img/pp-dpp.png);
}
.pp-kmt {
	background: url(../img/pp-kmt.png);
}
.pp-tpp {
	background: url(../img/pp-tpp.png);
}
.pp-sb {
	background: url(../img/pp-sb.png);
}
.pp-npp {
	background: url(../img/pp-npp.png);
}
.pp-stn {
	background: url(../img/pp-tsn.png);
}
.pp-pfp {
	background: url(../img/pp-pfp.png);
}
.pp-np {
	background: url(../img/pp-np.png);
}
.pp-gp {
	background: url(../img/pp-gp.png);
}
.pp-nonp {
	background: url(../img/pp-nonp.png);
}

header.title {
	color: var(--white);
	text-align: left;
	letter-spacing: 3px;
	z-index: 1;
}
header.title h3 {
	font-size: 42px;
	white-space: nowrap
}
header.title h4 {
	display: inline-flex;
    flex-flow: row nowrap;
    /* justify-content: flex-end; */
	align-items: center;
	gap: 10px;
}
header.title .p-title {
	font-size: 22px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 1px;
	white-space: nowrap
}
header.title .p-mark {
	width: 37px;
	height: 37px;
	background-color: var(--bg-img);
	background-repeat: no-repeat;
    background-position: 50%;
    background-size: 110%;
	border: 1px solid var(--white);
	border-radius: 50px;
	overflow: hidden;
}
header.title h3 span {
	font-size: 16px;
	font-weight: 300;
	/* margin-left: 5px; */
	letter-spacing: 1px;
}


.dpp {/* 民進黨 */
	background: var(--pp-dpp);
}
.kmt {/* 國民黨 */
	background: var(--pp-kmt);
}
.tpp {/* 民眾 */
	background: var(--pp-tpp);
}
.sb {/* 基進 */
	background: var(--pp-sb);
}
.npp {/* 時力 */
	background: var(--pp-npp);
}
.tsn {/* 台聯 */
	background: var(--pp-tsn);
}
.pfp {/* 親民 */
	background: var(--pp-pfp);
}
.np {/* 新黨 */
	background: var(--pp-np);
}

/* .ref-item h2 {
	display: inline-block;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: 3px;
	color: var(--black);
	background: var(--secondary);
	padding: 3px 14px 1px;
	border: 3px solid var(--black);
	border-radius: 50px;
	z-index: 9;
} */

/* .ref-item h2,
.ref-item .two-item .agree b,
.ref-item .two-item .disagree b,
.thumb .result {
	user-select: none;
} */

/* .ref-item .thumb {
	width: 100%;
	--ratio: 1/0.8;
	background: var(--main);

	margin-top: -20px;
	overflow: hidden;
	z-index: -1;
} */

/* .ref-item .fn-btn {
	display: flex;
	width: 100%;
	gap: 5px;
	background: linear-gradient(-70deg, var(--main) 20%, var(--main) 49%, #fff 49.1%, #fff 50.9%, #000 51%, #000 100%);
} */

/* .ref-item .fn-btn a {
	width: 50%;
	font-size: 21px;
	letter-spacing: 1px;
	color: var(--white);
	padding: 10px;
	overflow: hidden;
} */

/* .ref-item .fn-btn a:hover {
	color: var(--secondary);
} */

/* 開票數 */
/* .ref-item .two-item {
	display: flex;
	flex-flow: row nowrap;
	gap: 6px;
}

.ref-item .two-item .agree,
.ref-item .two-item .disagree {
	width: 50%;
	padding: 5px 0;
}

.ref-item .two-item .agree b,
.ref-item .two-item .disagree b {
	display: inline-block;
	font-size: 24px;
	letter-spacing: 5px;
	padding: 3px;
}

.ref-item .two-item .agree .num,
.ref-item .two-item .disagree .num {
	color: var(--main);
	font-size: 23px;
	text-align: center;
	padding: 2px;
}

.ref-item .two-item .disagree .num {
	color: var(--black);
}

.ref-item .two-item .agree .num.not,
.ref-item .two-item .disagree .num.not {
	background: #e3e3e3;
}

.thumb .result {
	display: inline-block;
	font-size: 50px;
	top: 35%;
	color: var(--white);
	z-index: 9;
	filter: drop-shadow(0px 3px 6px black);
	-webkit-filter: drop-shadow(0px 3px 6px black);
}

.thumb .result::before {
	content: '投票結果';
	display: block;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 5px;
}

.thumb .result b.yes {
	color: var(--secondary);
}

.two-item .num.win {
	background: var(--secondary) !important
} */


/* 最新影音 */
#video-slide.owl-theme .owl-next,
#video-slide.owl-theme .owl-prev {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background: #333;
	margin-top: -20px;
	transform: translateY(-50%);
	outline: none;
}

/* 最新影音arrow */
#video-slide.owl-theme .owl-prev {
	left: -60px;
	background: var(--slider-arrow);
}

#video-slide.owl-theme .owl-next {
	right: -60px;
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	background: var(--slider-arrow);
}

#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {
	background: #333;
}

.owl-theme .owl-dots .owl-dot {
	outline: none;
}

.social-media a {
	display: inline-block;
	padding: 0px 5px;
	margin: 0px 8px;
	color: var(--black);
}

.social-media a:hover {
	opacity: .5
}


.bg-area {
	min-height: 550px;
	width: 100%;
	background: var(--black) url(../img/bg-section.jpg);
	/* padding: 70px 0; */
}

.bg-area {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	padding-bottom: 0;
	overflow: hidden;
}


/* 新聞專區 */
#news {
	position: relative;
	overflow: hidden;
}
#news .video-text h3 {
	max-height: 50px;
	line-height: 1.3;
	padding: unset;
	margin-bottom: 10px;
	-webkit-line-clamp: 2;
}
#news .video-text p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
	line-height: 1.5;
	color: var(--gray);
	padding: unset;
	/* padding-bottom: 10px; */
	text-overflow: ellipsis;
	overflow: hidden;
}
.navbar-collapse.owl-carousel .owl-item > div {
	cursor: pointer;
	margin: 6% 8%;
	transition: margin 0.4s ease;
}
.navbar-collapse.owl-carousel .owl-item.center > div {
	cursor: auto;
	margin: 0;
}
.navbar-collapse.owl-carousel .owl-item:not(.center) > div:hover {
	opacity: .75;
}

.video-box {
	position: relative;
	font-size: 0;
	/* margin-bottom: 15px */
	/* padding: 10px; */
	/* border: 1px solid #ccc; */
	/* box-sizing: border-box; */
}

/* .video-box:before {
	position: absolute;
	content: "";
	left: 0px;
	right: 0px;
	bottom: 0;
	min-width: 100%;
	border-bottom: 1px solid var(--gray);
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	transform: scaleX(0);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 2;
} */

/* .video-box:hover:before {
	transform: scaleX(1);
} */

/* LIVE直播 */
.video-live {
	background: var(--bg);
}
.video-container {
	position: relative;
	padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container embed, .video-container iframe, .video-container img, .video-container object, .video-container video {
	position: absolute;
	inset: 0;
    width: 100%;
    height: 100%;
}

.video-icon i {
	display: inline-block;
	position: absolute;
	top: 2.5%;
	left: 1%;
	color: var(--white);
	font-size: 45px;
	-webkit-transition: all .4s;
	transition: all .4s;
	z-index: 3;
}

.video-icon i:after {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	border-radius: 50px;
	z-index: -1;
	-webkit-transition: all .4s;
	transition: all .4s;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.video-box:hover .video-icon i {
	opacity: 0.3;
}

.video-text {
	text-align: left;
	padding: 15px;
	min-height: 95px;
}

.video-text h3 {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	font-size: 18px;
	color: var(--black);
	font-weight: 500;
	letter-spacing: 1px;
	overflow: hidden;
}
.video-text span {
	font-size: 14px;
	color: var(--gray);
}

/* .video-cont {
	padding: 15px;
	border: 1px solid #c9c9c9cc;
	background: var(--bg);
} */

.slider .video-content h3 a {
	color: black;
}

.video-content h3 a {
	font-size: 19px;
	font-weight: 500;
	color: var(--white);
	padding: 0 15px;
    text-align: justify;
	display: block;
}

.single-video {
	position: relative;
	-webkit-border-radius: 13px;
	border-radius: 13px;
	overflow: hidden;
}

.single-video .video-content {
	position: relative;
	background: var(--white);
	/* overflow: hidden; */
}

.video-img {
	--ratio: 16 / 9;
	background: var(--bg-img);
	overflow: hidden;
}

.single-video img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.group-col .single-video:first-child {
	margin-bottom: 20px;
}

.single-video:hover img {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.single-video:hover h3 a {
	color: var(--main);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: var(--white);
}
.owl-theme .owl-dots .owl-dot span {
	transition: .3s;
	-webkit-transition: .3s;
}
.owl-theme .owl-dots .owl-dot.active span {
	width: 30px;
}

/* 最新影音 */
.section-title h3 span::before,
.section-title h3 span::after {
	display: inline-block;
	font-size: 30px;
}

.card-body:not(#poll .card .card-body) {
	min-height: 530px;
	text-align: center;
}

/* 影音新聞 */
#video-bts {
    position: relative;
    /* height: 55vh; */
    /* min-height: 25rem; */
	/* min-height: 580px; */
    width: 100%;
    /* background-color: var(--gray); */
	/* padding-bottom: 70px; */
    overflow: hidden;
}
#video-bts .single-video {
	background: rgba(0,0,0,0.5);
	z-index: 1;
}

/* #video-bts video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
} */

#video-bts .container {
	position: relative;
	z-index: 2;
}

/* #video-bts .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(45deg, rgba(0,0,0,.3) 50%, rgba(0,0,0,.7) 50%);
	background-size: 3px 3px;
	z-index: 1;
} */

/* @media (pointer: coarse) and (hover: none) {
	#video-bts {
		background: url('../img/bg-section.jpg') no-repeat center center fixed;
	}
	#video-bts video {
		display: none;
	}
} */

/* 候選人 */
#candidate {
	position: relative;
}
.candidate-item {
	display: flex;
	position: relative;
	background: linear-gradient(to left bottom, transparent 50%, rgba(0,0,0,0.05) 0) no-repeat 100% 0 / 1.7em 1.7em, linear-gradient(-135deg, transparent 1.2em, #e1e1e1 0);
	margin-top: 30px;
}
.candidate-item .title {
	position: absolute;
	right: 0;
	bottom: 10%;
	font-size: 0;
	color: var(--black);
	background: var(--white);
	padding: 12px 20px;
	z-index: 2;
}
.candidate-item .title h3 {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 5px;
	letter-spacing: 5px
}
.candidate-item .title h3.ts {
	letter-spacing: 1px
}
.candidate-item .title .p-title {
	font-size: 65%;
	color: var(--gray);
	letter-spacing: 0.5px;
}
.candidate-item header.title h4 {
	gap: 5px
}
.candidate-item .title .p-mark {
	width: 27px;
	height: 27px;
	border: 0
}
.candidate-item .info-text {
	width: 60%;
	text-align: left;
}
.info-text .experience {
	display: flex;
	flex-flow: column nowrap;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	/* white-space: nowrap; */
}
/* .info-text .experience span {
	padding-left: 15px;
}
.info-text .experience span::before {
	content: '．';
} */
.info-text .social-share a {
	font-size: 22px
}
.more-news {
	color: var(--white);
	font-size: 17px;
	background: var(--main);
	/* padding: 3px 15px; */
	border-radius: 0;
}
.more-news:hover {
	color: var(--white);
	background: var(--black);
}
.candidate-item .headshot {
	width: 50%;
	/* min-height: 220px; */
	--ratio: 1.7 / 1;
	margin-top: -30px;
	z-index: 1;
}

/* 候選人金句 */
.motto.candidate-item {
	display: flex;
	position: relative;
	max-width: 500px;
	height: 260px;
	background: var(--white);
	background: linear-gradient(to right, var(--white) 95%, transparent 95%);
	margin: auto;
	margin-top: 30px;
	/* transition: ease .3s; */
}
/* .motto.candidate-item:hover {
	transform: translateY(-10px);
	-webkit-filter: drop-shadow(0 20px 10px rgba(0,0,0,0.1));
    filter: drop-shadow(0 20px 10px rgba(0,0,0,0.1));
} */
.motto.candidate-item .title {
	position: absolute;
	right: 0;
	bottom: 10%;
	font-size: 0;
	color: var(--black);
	background: var(--white);
	padding: 12px 20px;
	z-index: 2;
}
.motto.candidate-item .headshot {
	width: 40%;
	/* min-height: 220px; */
	/* --ratio: 1.75 / 1; */
	--ratio: unset;
	height: 100%;
	padding-bottom: 1.5rem;
	margin-top: -1.5rem;
	margin-bottom: 1.5rem;
	z-index: 1;
}
.motto.candidate-item .info-text {
	display: flex;
	flex-direction: column;
}
.motto.candidate-item .info-text .experience {
	display: flex;
	position: relative;
	flex-flow: row nowrap;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
}
.motto.candidate-item .info-text .experience::before {
	content: '';
	/* display: inline-block;
	position: relative;
	width: 10px;
	height: 100%; */
	vertical-align: bottom;
	background: var(--black);
	border-left: 10px solid #000;
	margin-right: 12px;
}
.motto.candidate-item .info-text p {
	flex-grow: 1;
	/* height: 280px; */
	font-size: 18px;
	margin-top: 1.25rem;
	padding: 15px 0;
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	letter-spacing: 0.1em;
	overflow-y: auto;
}

/* 前進總統府 */
#candidate-intro {
	position: relative;
	overflow: hidden;
}
#candidate-intro .owl-carousel .owl-stage,
#candidate-intro .owl-carousel .owl-stage-outer {
	display: flex;
	flex-flow: row nowrap!important;
	justify-content: flex-start!important;
}
/* #candidate-intro .owl-carousel .owl-stage > .owl-item {
	max-width: 460px;
	width: 100%;
} */
.intro-item {
	position: relative;
	/* max-width: 460px; */
	width: 100%;
	overflow: hidden;
}
.intro-item .intro-header {
	display: flex;
	position: relative;
	/* justify-content: space-between; */
    align-items: center;
	min-height: 250px;
    /* padding-left: 1rem; */
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
}
.intro-item .intro-header.dpp {
	background-image: url(../img/candidate-intro-lai1.png);
}
.intro-item .intro-header.kmt {
	background-image: url(../img/candidate-intro-ho1.png);
}
.intro-item .intro-header.tpp {
	background-image: url(../img/candidate-intro-kp1.png);
}
.intro-item .intro-header header {
	font-size: 20px;
	height: 50%;
	line-height: 1.6;
	/* margin-right: 0.875rem; */
    padding-top: 0.875rem;
    padding-left: 1.25rem;
	white-space: nowrap;
    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
	text-shadow: 0 0 2px var(--white), 0 0 2px var(--white), 0 0 2px var(--white);
}
.intro-item .intro-header header h3 {
	font-size: 32px;
	font-weight: 700;
}
/* .intro-item .intro-header header::before {
	content: '';
	display: inline-block;
    width: 80px;
	height: 100px;
	padding-left: 1.5rem;
	border-top: 1px solid var(--black);
	border-left: 1px solid var(--black);
} */
/* .intro-item .intro-header header::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
    width: 80px;
	height: 25%;
    padding: 5px;
	border-left: 1px solid var(--black);
} */
.intro-item header .numb {
	width: 33px;
	height: 33px;
	font-size: 21.5px;
	font-family: Poppins,Montserrat,Helvetica,Arial,sans-serif;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: var(--white);
	margin: 5px 5px 5px 0;
	border: 1px solid var(--white);
	border-radius: 50px;
	text-shadow: none;
	-webkit-border-radius: 50px;
}
.intro-item .intro-header .headshot {
	display: inline-block;
    width: 350px;
    vertical-align: bottom;
    --ratio: 16 / 9;
}
.intro-item .intro-content {
	position: relative;
	width: 100%;
	/* height: 285px; */
	font-size: 16px;
	color: var(--white);
	padding: 0.5rem;
	/* background: var(--black); */
	/* overflow-y: auto; */
}
/* .intro-item .intro-content::after {
	content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 25%;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.2));
    z-index: 2;
} */
.intro-item .intro-content ul {
	list-style: none;
}
.intro-item .intro-content li {
	display: block;
	line-height: 1.7;
}
/* .intro-item .intro-content li::before {
	content: '．';
} */
/* .intro-item .intro-content > div {
	padding-bottom: 10px;
} */
/* .intro-item .intro-content > div:nth-child(2) {
	padding-top: 10px;
	padding-bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
} */
.intro-item .intro-content span {
	font-size: 16px;
}
.elected {
	position: absolute;
	left: 50%;
	bottom: 60%;
	width: 110px;
	aspect-ratio: 1/1;
	background-color: transparent;
	background-image: url(../img/icon-elected.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, .1));
	-webkit-filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, .1));
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.ballot {
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, .2));
	-webkit-filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, .2));
}
.ballot h4 {
    font-size: 22px;
    margin-bottom: 5px;
}
.ballot strong {
    font-size: 54px;
    line-height: 1;
}

/* .live-btn {
	position: absolute;
	left: 0;
	bottom: 5%;
	padding: 0 10px;
	padding-right: 15px;
	line-height: 1.8;
	background: rgba(255,200,56,.7);
	transition: ease .2s;
	-webkit-transition: ease .2s;
	z-index: 1;
} */
/* .live-btn:hover {
	background: var(--white);
} */
/* .live-btn a {
	font-size: 17px;
	color: var(--black);
} */
/* 立委候選人介紹  */
.info-wrap {
	display: block;
	position: relative;
    height: 0;
    background: var(--white);
    overflow: hidden;
}
.info-wrap > * {
	position: absolute;
    inset: 0;
    width: 100%;
}
.info-wrap.mb {
	display: none;
}
.legislator-a .info-wrap {
	padding-bottom: 91%;
}
.legislator-b .info-wrap {
	padding-bottom: 60%;
}


/* .section-title h3::before {
	margin-right: 10px;
} */

/* .section-title h3::after {
	margin-left: 10px;
} */


/* 藍綠版圖變化 */
#territory-change {
    position: relative
}
.tc {
    position: absolute;
    top: 28%;
    right: -4%;
    z-index: 9;
}
#territory-change .nav-item {
    font-size: 24px;
    font-weight: 500
}
#territory-change .nav-link {
    color: var(--black);
    background: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
}
#territory-change .nav-pills .nav-link.active,
#territory-change .nav-pills .show>.nav-link {
    background: var(--main);
}
.twmap-box {
    --ratio: 1/1
}
.y-chart {
    --ratio: 0.7/1
}


/* 選情焦點 */
#hot-news {
	position: relative;
	/* background: var(--white) */
}
#hot-news .single-video {
	transition: .3s;
}

#hot-news .single-video:hover {
	border-radius: 3px;
}

#hot-news .single-video .video-text h3 a {
	color: var(--main);
}

#hot-news .video-cont {
	/* padding: 15px */
}

/* #hot-news .video-cont.bg {
	border: 0;
	background: #f7f7f7;
} */

#hot-news .single-video,
#hot-news .single-video .video-img {
	position: relative;
	overflow: hidden;
}

#hot-news a.trace-click-news {
	width: 100%;
}

#hot-news .video-text {
	display: flex;
	flex-direction: column;
	text-align: justify;
	margin-left: auto;
	padding: 15px 0 0;
}

#hot-news .video-text h3 {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	font-size: 18px;
	color: var(--black);
	max-height: 50px;
	text-align: justify;
	letter-spacing: 1px;
	margin-bottom: 10px;
	/* padding: 10px 0 0; */
	transition: .2s;
	-webkit-transition: .2s;
    overflow: hidden;
}

#hot-news .single-video:hover .video-text h3 {
	color: var(--main);
}

#hot-news .video-text p {
	display: none
}

/* #intereport .video-text p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: var(--black);
	font-size: 16px;
	line-height: 1.4rem;
	max-height: 63px;
	padding: 0 5px;
	text-overflow: ellipsis;
	overflow: hidden;
} */

#hot-news .video-text span {
	font-size: 13px;
	color: #a3a3a3;
	margin-left: auto;
	white-space: nowrap;
}


.fancybox-slide--iframe .fancybox-content {
	max-width: 1100px;
	max-height: 80%;
	width: 100%;
	margin: 0;
	background: transparent;
	border-radius: 10px;
	overflow: hidden;
	border: none;
}

.fancybox-button {
	width: 60px;
	height: 60px;
	background: transparent;
}

.fancybox-navigation .fancybox-button div {
	padding: 0;
}

.fancybox-button--play,
.fancybox-button--thumbs {
	display: none
}

.fancybox-infobar {
	top: auto;
	bottom: 0;
	left: 50%;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
	cursor: grab
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
	cursor: grab
}


/* BTN */
/* .abtn {
	position: relative;
	color: white;
	border-radius: 50px;
	background: var(--white);
} */


/* 投票 */
/* .vote-area {
	position: relative;
}

.vote {
	display: flex;
	justify-content: center;
	padding: 30px 0 0;
}

.vote a {
	max-width: 360px;
	height: 65px;
	animation-name: zoom;
	animation-duration: 0.75s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	transform-origin: 5.5em 0.5em;
}

@keyframes zoom {
	0% {
		transform: scale(0.95);
	}

	50% {
		transform: scale(0.9);
	}

	100% {
		transform: scale(1);
	}
}

.vote a img {
	width: 100%;
	height: 100%;
} */

/* Share icon */
.share-side {
	position: fixed;
	top: 40%;
	right: 5px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 99991;
}

.share-side a {
	display: block;
	color: #666;
	width: 50px;
	height: 50px;
	font-size: 28px;
	line-height: 1.6;
	text-align: center;
	background: var(--main);
	border-radius: 50px;
	margin: 18px 10px;
	padding: 5px;
	-webkit-filter: drop-shadow(0 0 6px #000);
	filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}

.share-side a:hover {
	color: var(--black);
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

.share-side a:hover:nth-child(1) {
	background: #3b589e
}

.share-side a:hover:nth-child(2) {
	background: #01c203
}

.share-side a:hover:nth-child(3) {
	background: #16c26c
}

/* Social link */
.social-link {
    display: inherit;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.social-link::before {
    content: '追蹤我們';
    color: var(--black);
    font-size: 17px;
    margin-top: 5px;
    margin-right: 15px
}

.social-link a {
    width: 40px;
	height: 40px;
	color: var(--white);
	font-size: 24px;
    line-height: 1.7;
    border-radius: 100%;
    background: var(--black);
    margin-right: 15px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.social-link a img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: .2s;
}

.social-link a:last-child {
    margin-right: 0
}

.social-link a:hover {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.social-link a:nth-child(1):hover {
    background: #1877f2
}

.social-link a:nth-child(2):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%)
}

.social-link a:nth-child(3):hover {
    background: red
}


/* Footer */
.footer-area {
	padding: 50px 0;
	background: var(--bg);
}

.footer-social-media {
	margin-bottom: 20px;
}

.footer-social-media a {
	margin: 0 10px;
	font-size: 16px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	opacity: .5;
}

.footer-social-media a:hover {
	opacity: 1;
}

.footer-social-media a:hover:after {
	background: var(--black);
	border: 0;
}

.copyright-area {}

.copyright-area p {
	color: var(--black);
	font-size: 16px;
}

.copyright-area p a {
	color: var(--white);
	font-weight: 500;
}

@media (max-width: 329px) {
	.navbar-nav {
		margin-top: 15px
	}

	.navbar-b .nav-item:last-child {
		margin-bottom: 0px
	}

	.section-title h2 {
		font-size: 33px
	}

	.video-icon i {
		top: 30%;
		left: 36.5%
	}

	.more-link {
		padding: 0.2rem
	}

	.more-link {
		justify-content: flex-end;
		padding: 1rem
	}

	.fancybox-infobar {
		left: 45%
	}

	.tab-list i {
		display: none
	}

	/* section#nine-in-one-elections .update-time {
		font-size: 10px;
		letter-spacing: 0;
	} */

	/* section#nine-in-one-elections .update-time span {
		font-weight: 300;
		letter-spacing: 0;
	} */
}
@media (max-width: 360px) {
	.intro-item .intro-header header {
		font-size: 5vmin!important;
	}
}

@media (min-width: 330px) and (max-width: 425px) {
	.fancybox-infobar {
		left: 45%
	}
}

@media (min-width: 426px) and (max-width: 575px) {}

@media only screen and (max-width: 479px) {
	.navbar-nav {
		margin-top: 15px
	}

	.navbar-b .nav-item {
		margin-bottom: 15px
	}

	.navbar-b .nav-item:last-child {
		margin-bottom: 0px
	}

	.home-area .home-content h1 {
		font-size: 33px;
		line-height: 1.3
	}

	.about-img-wrapper {
		text-align: center
	}

	.about-content {
		margin-top: 35px
	}

	.timeline-item .box {
		padding-left: 25px
	}

	#project .project-list .nav li {
		float: unset
	}

	#project .project-list .nav li {
		margin: 0 5px 20px
	}

	.single-testimonial {
		padding: 0
	}

	.blog-item {
		margin-bottom: 25px
	}

	.blog-item:last-child {
		margin-bottom: 0px
	}

	.upcorner-title h3 {
		font-size: 28px;
		line-height: 2
	}

	.upcorner-title p {
		width: 150px;
		height: 55px
	}

	.fancybox-slide--iframe .fancybox-content {
		max-height: 90%
	}

	.fancybox-button {
		width: 60px;
		height: 50px
	}
}

@media only screen and (max-width: 575px) {
	.equal-height {
		min-height: 55vmin!important;
	}
	/* .breaking-news {
		top: 44vmin!important;
	} */
	.breaking-news .title, .breaking-news a {
		font-size: 16px;
	}
	.breaking-news .title {
		margin-left: 0;
	}
	/* .breaking-news .item {
		width: 90%;
	} */
	.breaking-news .title::after {
		width: 20px;
	}

	.topbar .social-share a {
		width: 8vw;
		height: 8vw;
		font-size: 5.5vw;
		margin-right: 2vw;
	}


	#big.owl-theme .owl-next,
	#big.owl-theme .owl-prev,
	#video-slide.owl-theme .owl-next,
	#video-slide.owl-theme .owl-prev {
		width: 8vw;
		height: 8vw;
	}

	.ref-item h2 {
		font-size: 7vw;
	}

	.ref-item .fn-btn a,
	.ref-item .two-item .agree b,
	.ref-item .two-item .disagree b {
		font-size: 6vw;
	}

	.ref-item .two-item .agree .num,
	.ref-item .two-item .disagree .num {
		font-size: 7vw;
	}

	.thumb .result {
		font-size: 17vw;
	}

	.thumb .result::before {
		font-size: 7vw;
	}
	.social-link::before {
		content: '追蹤我們';
		color: var(--black);
		font-size: 15px;
		margin-top: 5px;
		margin-right: 15px
	}
	.social-link a {
		width: 35px;
		height: 35px;
		font-size: 20px;
		line-height: 35px;
		margin-right: 15px;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.fancybox-slide--iframe .fancybox-content {
		max-height: 95%;
		min-height: 97%
	}

	.home-area .arrow {
		display: none
	}
}

@media (max-width: 767px) {
	.share-side {
		display: none
	}

	.navbar-b.navbar-trans .navbar-nav .nav-link,
	.navbar-b.navbar-b.navbar-reduce .navbar-nav .nav-link {
		margin-top: 0;
		padding: 5px 0;
	}

	.navbar-b.navbar-trans {
		top: 0;
		background: transparent;
	}

	.navbar-b.navbar-trans .nav-link:hover {
		background: var(--black);
		border-radius: 3px;
	}

	.navbar-expand-md .navbar-nav {
		max-width: unset
	}

	.navbar-b.navbar-trans .navbar-nav .nav-link,
	.navbar-b.navbar-reduce .navbar-nav .nav-link {
		font-size: calc(16px + 1vw);
		font-weight: 500;
	}

	.d-flex-dir {
		display: flex;
		flex-direction: row-reverse;
	}

	.navbar-b .social-share {
		display: flex;
		flex-direction: row-reverse;
	}

	.home-area {
		background-attachment: unset;
		background-position: 100%
	}

	.home-content .showtime {
		flex-direction: column
	}

	.section-padding {
		/* padding-top: 7vh; */
		padding-bottom: 5.5vh;
	}
	.section-padding-y {
		padding-top: 5.5vh;
		padding-bottom: 5.5vh;
	}
	/* body section:first-of-type {
		padding-top: 2vh
	} */

	.fancybox-slide {
		padding: 15px
	}

	.fancybox-toolbar {
		left: 0
	}

	.fancybox-infobar {
		left: 43vw
	}

	.fancybox-navigation .fancybox-button {
		top: calc(50% - 50px)
	}

	.navbar-nav {
		margin: 5vmin auto
	}

	.navbar-b .nav-item:last-child {
		margin-bottom: 0px
	}

	.navbar-toggler {
		padding: .25rem
	}

	#navbarDefault {
		width: 100%;
		height: auto;
		height: 100vh;
		background: var(--bg);
		/* overflow-y: scroll; */
	}

	.navbar-b.navbar-trans .navbar-toggler span {
		background: var(--black);
	}


	.navbar-b.navbar-trans .nav-item a {
		color: var(--black);
	}

	.navbar-b.navbar-reduce {
		background: var(--bg);
	}

	/* 選單Bar */
	.navbar-b.navbar-trans,
	.navbar-b.navbar-reduce {
		/* padding: 3px 7px; */
		background: var(--bg);
		/* -webkit-backdrop-filter: blur(90px);
		backdrop-filter: blur(90px); */
		/* background: rgba(0, 0, 0, 0.5); */

		/* display: none; */
	}

	/* .navbar-b.navbar-reduce .active {
		border-radius: 3px	;
		-webkit-border-radius: 3px;
    } */

	.navbar-b.navbar-trans .nav-item,
	.navbar-b.navbar-reduce .nav-item {
		width: 100%;
		text-align: center;
	}

	.navbar-b.navbar-reduce .nav-link {
		color: var(--black);
		text-align: center
	}

	/* .navbar-b.navbar-reduce .nav-link.active {
		color: var(--white);
		background: var(--black);
	} */

	.navbar-b.navbar-reduce .nav-link:hover:not(.active) {
		background: var(--main);
		border-radius: 3px;
	}

	.navbar-social-media {
		display: flex;
		/* justify-content: space-evenly; */
		align-items: center;
	}

	.navbar-b.navbar-trans .navbar-social-media a,
	.navbar-b.navbar-reduce .navbar-social-media a {
		width: 30px;
		height: 30px;
		font-size: 22px;
		margin: 0;
		/* margin-right: 5px; */
		padding: 5px 0;
		color: var(--black);
		line-height: 1;
	}

	.navbar-b.navbar-trans .navbar-social-media a:nth-child(2),
	.navbar-b.navbar-reduce .navbar-social-media a:nth-child(2) {
		margin: 0 5px;
	}
	/* .navbar-b.navbar-trans .navbar-social-media a:first-child,
	.navbar-b.navbar-reduce .navbar-social-media a:first-child {
		width: 18px;
		height: 18px;
		visibility: hidden;
	} */
	.navbar-b.navbar-trans .navbar-social-media a::after,
	.navbar-b.navbar-reduce .navbar-social-media a::after {
		background: transparent;
		border: 0
	}

	/* 快訊 */
	/* .breaking-news, .breaking-news.fixedtop {
		top: 43px;
	} */
	.breaking-news .title span {
		display: none;
	}

	.equal-height {
		min-height: 35vmin;
		margin-top: 0;
		/* margin-bottom: 20px; */
	}

	.equal-height .topbar {
		/* padding: 3.5vw; */
		display: none;
	}

	.about-img-wrapper {
		text-align: center
	}

	.home-content {
		flex-flow: column wrap;
		margin-top: 50px;
	}

	.home-area .home-content h1 {
		position: relative;
		/* margin-top: 17.5vw; */
	}

	.home-content h1.header-logo {
		max-width: 560px;
		width: 100%;
		/* background: url(../img/logo-mb.png) no-repeat center / 100%; */
		--ratio: 4 / 2.65;
	}

	.section-title h3,
	.section-title h3::before,
	.section-title h3::after,
	.stars-area .section-title h3,
	.stars-area .section-title h3::before,
	.stars-area .section-title h3::after,
	.news-content a {
		font-size: calc(100% + 1.5vw);
		line-height: 1.4;
		letter-spacing: 0;
	}
	/* .section-title h3::after {
		width: 60px;
		height: 4px;
	} */

	/* section#referendum .update-time {
		font-size: 12px
	} */

	/* section#referendum .update-time::after {
		display: block;
		margin-left: unset;
		border-left: unset;
		padding-left: unset;
	} */

	/* .section-title h3::before,
	#video .section-title h3::before {
		width: 5vw;
		height: 7vw;
		margin-right: 5px;
	} */
    #territory-change .nav-item {
        font-size: 21px;
    }
    .y-chart {
        --ratio: 0.385/1
    }
	.info-wrap {
		display: none;
	}
	.chart-wrap {
		padding-bottom: 105%;
	}
	.info-wrap.mb {
		display: block;
	}
	.legislator-a .info-wrap.mb {
		padding-bottom: 180%;
	}
	.legislator-b .info-wrap.mb {
		padding-bottom: 110%;
	}

	#video .section-title h3::before,
	#video .section-title h3::after {
		font-size: 5vw
	}

	.slider .slider__controls .slider__pagination {
		margin-top: 30px
	}
    .ballot h4 {
        font-size: 18px;
    }
    .ballot strong {
        font-size: 46px;
    }
	/* .owl-theme .owl-nav.disabled+.owl-dots {
		margin-top: 0
	} */

	.owl-theme .owl-dots .owl-dot span {
		width: 10px;
		height: 10px
	}
	.card-body {
		padding: 1.25rem 0;
	}
	.section-title.align {
		margin-bottom: 6vmin;
	}
	/* 九合一大選 */
	/* .city {
		box-shadow: var(--main) 8px 8px 0;
	} */
	/* .city .city-img {
		--ratio: 1 / 0.9;
	} */
	.items-link {
		top: 60%;
		width: 100%;
		padding: 6px;
	}
	.items-link-list a {
		padding: 4px 12px;
	}
	.items-link-list a h4 {
		font-size: 5vw;
	}
	.items-link-list a span {
		width: 15px;
		height: 15px;
		font-size: 8px;
		line-height: 15px;
		margin-right: 7px;
		padding: 0px 3px;
	}
	.items-link .items-link-wrap b {
		top: -25%;
		left: 5px;
		font-size: 5.5vw;
		-webkit-writing-mode: unset;
		writing-mode: unset;
	}
	.items-link .items-link-wrap .close {
		top: -24%;
		right: 0;
		width: 20px;
		height: 20px;
	}
	.show-hide > a {
		font-size: 0.75rem;
		margin-top: 5px;
	}
	.read-more-trigger {
		font-size: 0.75rem;
	}
	.read-more-state:checked ~ .read-more-wrap .read-more-target {
		font-size: 0.75rem;
	}

	/* 選情民調 */
	/* .mayoral-cand {
		min-height: 250px;
	}
	header.title h3 {
		font-size: calc(100% + 3vw);
	}
	header.title .p-title {
		font-size: calc(100% - 2.5vw);
		letter-spacing: 0
	}
	.info-ds {
		font-size: calc(100% - 1.5vw);
	}
	.mayoral-cand .headshot {
		right: -280px;
	}
	.mayoral-cand .headshot .inner {
		width: 50%;
	}
	.mayoral-cand .popularity {
		font-size: calc(100% + 10vw);
		margin-top: 0;
	}
	.mayoral-cand::before {
		top: 0;
		left: 0;
		background-size: 55%;
	}
	.mayoral-cand .progress {
		height: 17px
	}
	.mayoral-cand .popularity {
		-webkit-filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.3));
		filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.3))
	}
	.info-text-wrap p {
		font-size: 12px;
	}
	.info-text-wrap .btn.more {
		font-size: 15px;
	} */
	/* 選情影音新聞 */
	#video-bts {
		min-height:unset
	}
	.video-icon i {
		font-size: 40px;
	}
	#video-slide.owl-theme .owl-prev {
		left: -20px;
	}
	#video-slide.owl-theme .owl-next {
		right: -20px;
	}
	.video-box {
		margin-top: 3vmin;
		/* margin-bottom: 3vmin */
	}
	.video-content h3 {
		font-size: 18px;
		/* padding: 2.5vw 0; */
	}
	.video-content h3 a {
		font-size: calc(100% - 1.5vw);
		padding: 0;
	}
	.video-text {
		padding: 5vmin
	}
	/* 候選人 */
	.info-text .experience, .info-text .more-news {
		font-size: 4.5vmin;
	}
	.candidate-item .title h3 {
		font-size: 6vmin
	}
	.candidate-item .headshot {
		min-height: 240px;
		margin-top: -25px
	}
	.info-text .social-share a {
		font-size: 20px
	}

    .tc {
        position: unset
    }

	/* 候選人金句 */
	/* .candidate-item .info-text {
		width: 55%;
	} */
	/* .motto.candidate-item .info-text .experience {
		font-size: 20px;
	} */
	/* .motto.candidate-item .headshot {
		width: 45%;
		margin-top: -1rem;
		margin-bottom: 1rem;
	} */
	/* .motto.candidate-item .info-text p {
		font-size: 16.5px;
		margin-top: 1rem;
	} */

	/* 總統候選人介紹 */
	.intro-item .intro-header {
		min-height: 200px;
		min-height: 45vmin;
	}
	.intro-item .intro-header header {
		font-size: 20px;
		padding-top: 0.5rem;
		margin-right: 0.5rem;
		padding-left: 0.75rem;
	}
	.intro-item .intro-header header h3 {
		font-size: calc(100% + 1.5vw);
	}
    .intro-item header .numb {
		width: 25px;
		height: 25px;
		font-size: 18px;
		line-height: 1.35;
	}
	.intro-item .intro-header .headshot {
		/* width: 250px; */
		width: 100%;
	}
	.intro-item .intro-content {
		/* height: 365px; */
		font-size: 15.5px;
	}
	/* .live-btn {
		bottom: 1%;
		padding: 0px 10px;
		line-height: 1.5;
	} */
	/* .live-btn a {
		font-size: 15px;
	} */
	.elected {
		width: 25vmin;
	}

	/* 選情焦點 */
	#hot-news .video-img {
		--ratio: 16 / 10;
	}
	#hot-news .video-text h3 {
		font-size: 80%;
	}
	#hot-news .video-text span {
		font-size: 65%;
	}

	.news-content span {
		font-size: 6vw;
		color: var(--main)
	}

	.about-content {
		margin-top: 35px
	}
	.group-col .single-video:first-child {
		margin-bottom: 10px;
	}

	/* .btn.more {
		font-size: calc(14px + 1vw);
	} */

	.btn.more::after {
		font-size: 10px;
		margin-left: 3px;
	}

	.video-img {
		--ratio: 16 / 10
	}


	.footer-area {
		padding: 6vw 0;
	}

	.copyright-area p {
		font-size: 13px;
		line-height: 1.5;
	}

	.back-to-top {
		left: 10px;
		bottom: 20px
	}
}

@media (min-width: 768px) {
	.navbar-expand-md .navbar-collapse {
		width: 1440px;
		overflow-y: hidden;
		overflow-x: scroll;
	}
	.navbar-expand-md .navbar-collapse::-webkit-scrollbar {
		display: none;
	}
	.navbar-expand-md .navbar-nav .nav-link {
		padding: 1rem;
	}
	.equal-height {
		margin-bottom: 130px;
	}

	.home-area .arrow {
		display: none
	}

	.btn.detail {
		display: none
	}

	section#referendum .ref-item:hover {
		transform: translateY(-5px);
		-webkit-transform: translateY(-5px);
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	.navbar-b.navbar-trans .nav-link,
	.navbar-b.navbar-reduce .nav-link {
		font-size: 2.2vw
	}

	.navbar-b.navbar-trans .nav-item,
	.navbar-b.navbar-reduce .nav-item {
		padding-right: 0
	}

	.navbar-b.navbar-trans {
		top: 200px
	}

	.navbar-social-media a {
		font-size: 1.5vw;
		width: 3vw;
		height: 3vw;
		line-height: 3vw;
		margin: 0 0.3vw
	}

	.navbar-b.navbar-trans .navbar-nav .nav-link,
	.navbar-b.navbar-reduce .navbar-nav .nav-link {
		font-size: calc(16px + 0.2vw);
	}
	/* .city {
		box-shadow: var(--main) 9px 9px 0
	} */
	.items-link {
		width: 67%;
	}

	.equal-height {
		min-height: 180px;
	}

	.home-area {
		background-attachment: unset
	}

	.home-content {
		flex-flow: row nowrap;
		margin-top: 30px;
	}

	.home-content h1.header-logo {
		max-width: 450px;
		width: 100%;
		--ratio: 16 / 4.1;
	}

	/* 倒數計時 */
	/* .home-content .countdown-timer {
		margin-left: auto;
	} */

	/* .home-content .countdown-timer ul li {
		display: inline-block;
		font-size: 15px;
		color: var(--white);
		padding: 10px;
	} */

	/* .home-content .countdown-timer ul li::after {
		content: '：';
		position: absolute;
		top: 41px;
		font-size: 36px;
		line-height: 1.3;
		padding-left: 5px;
	} */

	/* .home-content .countdown-timer ul li span {
		font-size: 42px;
		width: 55px;
		margin-top: 20px;
	} */

	.about-img-wrapper {
		text-align: center
	}

	.about-content {
		margin-top: 35px
	}

	.timeline-item .box {
		padding-left: 25px
	}

	#project .project-list .nav li {
		margin: 0 5px 20px
	}

	ul.tab-list {
		max-width: 100%
	}

	.blog-item {
		margin-bottom: 25px
	}

	.blog-item:last-child {
		margin-bottom: 0px
	}

	.fancybox-toolbar {
		left: 0
	}

	.fancybox-infobar {
		left: 45%
	}

	.fancybox-slide--iframe .fancybox-content {
		max-height: 100%;
		min-height: 100%
	}

	#video .swiper-button-prev {
		left: 0;
	}

	#video .swiper-button-next {
		right: 0;
	}

	#video .video-icon i {
		top: 40%;
		left: 45%
	}

	#video .swiper-button-next,
	#video .swiper-button-prev {
		top: 32%;
	}

	.intro-item .intro-header .headshot {
		width: 35vmin;
	}

	.motto.candidate-item {
		height: 320px;
	}
	/* .intro-item .intro-content {
		height: 370px;
	} */
}

@media (max-width: 991px) {
	#poll .card .card-body {
		margin-left: unset;
		margin-right: unset;
	}
	#poll .row > [class*="col-"]:not(#poll .info-text-wrap *) {
		padding-right: 0;
		padding-left: 0;
	}
	.mayoral-cand {
		padding-left: 0
	}

	.skew {
		-webkit-backface-visibility: hidden;
		transform: unset;
		-webkit-transform: unset;
		position:relative;
		left: unset;
	}
	.mayoral-cand::before, .mayoral-cand .title, .mayoral-cand .popularity, .mayoral-cand .progress, .mayoral-cand .headshot img {
		transform: unset;
		-webkit-transform: unset;
	}
	.motto.candidate-item .info-text p {
		max-height: unset;
	}
}
@media (min-width: 992px) {
	.section-title.align {
		margin-bottom: 3rem;
	}
	/* #poll .tab-pane .row > .col:nth-child(3n+1) .mayoral-cand {
		padding-left: 115px
	} */
	/* .mayoral-cand .progress {
		margin-left: -120px
	} */
	/* .intro-item .intro-content {
		height: 340px;
	} */
	/* #poll .mayoral-cand:first-child .popularity {
		margin-left: 50px!important;
	} */
}
@media (max-width: 1199px) {
	.bg-area {
		background-attachment: unset
	}
	#video-bts {
		background-attachment: unset;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.navbar-b.navbar-trans .nav-link,
	.navbar-b.navbar-reduce .nav-link {
		font-size: 2.2vw
	}

	.navbar-b.navbar-trans {
		top: 260px;
	}

	.navbar-social-media a {
		font-size: 1.7vw;
		width: 3.3vw;
		height: 3.3vw;
		line-height: 3.3vw;
		margin: 0 0.3vw
	}

	.navbar-expand-md .navbar-nav .nav-link {
		padding-right: 1.3rem;
		padding-left: 1.3rem
	}
	.home-area {
		background-attachment: unset;
		min-height: 270px;
	}

	.home-content h1.header-logo {
		max-width: 580px;
		--ratio: 16 / 4.1;
	}
}
@media (min-width: 1200px) and (max-width: 1399px) {
	/* .intro-item .intro-content {
		height: 420px;
	} */
	.intro-item .intro-header header {
		font-size: 16px;
		margin-right: 0.5rem;
		margin-bottom: -100px;
		padding-top: 0.5rem;
		padding-left: 0.75rem;
	}
	.intro-item .intro-header header h3 {
		font-size: 26px;
	}
	.intro-item header .numb {
		width: 26px;
		height: 26px;
		font-size: 18px;
		line-height: 1.4;
		margin-right: 3px;
	}
}
@media (min-width: 1400px) {
	.navbar-expand-md .navbar-collapse {
		justify-content: center;
	}
	.breaking-news .item a {
		display: inline-block;
		overflow: unset;
	}
	.cth16 {
		max-width: 1650px;
	}
	/* .intro-item .intro-content {
		height: 360px;
		overflow: hidden;
	} */
	/* .intro-item .intro-content {
		display: inline-flex;
	} */
	/* .intro-item .intro-content > div{
		width: calc(100% / 2);
	} */
}