@charset "UTF-8";
/**
 *
 * @authors ethan
 * @date    2018-07-02
 * @version 0.1
 *
 * @authors ethan
 * @date    2018-09-12
 * @version 0.2
 /*
淺灰色 #DCDCDC
淺紫色 #7D7AF4
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family:sans-serif;
	word-wrap:break-word;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a, a:link, a:visited, a:hover, a:active {
/* 　color: #7D7AF4; */
	color: #8d6be7;
	text-decoration: none;
}

*{
	/* -webkit-tap-highlight-color:transparent; */
}
html,body{
	width: 100%;
	/* overflow: hidden; */
	/* transform: translateZ(0); */
	/* -webkit-transform: translateZ(0); */
/*
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}
html{
    height: 100%;
}
body{
	float: left;
	margin:0;
	padding: 0;
	font-size: 1em;
	/* -webkit-user-select: none; */
	-webkit-tap-highlight-color:transparent;
}
body.show{
    opacity:1;
    -webkit-transition: opacity .3s; /* Safari */
    transition: opacity .3s;
}
img{
	display: block;
	height: auto;
}
select:focus{
    outline: none;
}
input{
	caret-color : #7D7AF4;
}
input:focus{
    outline: none;
}
::placeholder{
	color:#DCDCDC;
}
::-webkit-input-placeholder { /* WebKit browsers */
color:#DCDCDC;
}
::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:#DCDCDC;
}
:-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#DCDCDC;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:#DCDCDC;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0px 1000px #FFF inset; /*淡淡的白*/
	transition: background-color 5000s ease-in-out 0s; /*透明*/
}
button {
    color: #fff;
    border: none;
    outline: 0;
    background: #7D7AF4;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 1em;
}
button:disabled {
	color: #C2C4C7;
	background: #EDEEF0;
}
hr {
    width: 100%;
    height: 0;
    border: solid 1px #f5f5f5;
    margin: 1em 0;
}
.flex{
    /*flex-direction:row;*/
    display: -webkit-flex;
    display: flex;
}
.inline-flex{
	display: -webkit-inline-flex;
    display:inline-flex;
}
.flex-start{
    justify-content:flex-start;
}
.flex-end{
    justify-content:flex-end;
}
.center{
    justify-content:center;
}
.space-between{
    justify-content:space-between;
}
.space-around{
    justify-content:space-around;
}
.article-img{
    margin-left: -15px;
    width: calc(100% + 30px);
}
.container {
    /* margin-right: auto;  */
    /* margin-left: auto; */
    /* padding-top: 10px; */
    /* padding-bottom: 10px; */
    padding-left: 15px;
    padding-right: 15px;
    /* background-color: #fff; */
}
.user-img{
	background-color: #f3f3f3;
}
.default-user-img{
	display: block;
	margin: 0 auto;
	/* margin-top: 15px; */
}

/*主要disable 和 enable 方法*/
.icon-disable{
	opacity: .3;
}
.icon-enable{
	opacity: 1;
}
.icon-camera{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/camera.png);
}
.icon-user-empty{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/user.png);
}
.icon-edit-2{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/edit-2.png);
}
.icon-arrow-top{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/chevron-up.png);
}
.icon-arrow-bottom{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/chevron-down.png);
}
.icon-arrow-left{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/chevron-left.png);
}
.icon-arrow-right{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/chevron-right.png);
}
.icon-greyArrow-top{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/grey-up.png);
}
.icon-greyArrow-bottom{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/grey-down.png);
}
.icon-greyArrow-left{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/grey-left.png);
}
.icon-greyArrow-right{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/grey-right.png);
}
.icon-white-heart{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/white-heart.png);
}
.icon-white-star{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/star.png);
}
.icon-white-message-circle{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/message-circle.png);
}
/*white*/
.icon-white-recommend-done{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-recommend-done.png);
}
.icon-white-payment-info{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-payment-info.png);
}
.icon-white-address{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-address.png);
}
.icon-white-shop{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-shop.png);
}
.icon-white-coin{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-coin.png);
}
.icon-white-contact{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-contact.png);
}
.icon-white-delivery{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-delivery.png);
}
.icon-white-coupon{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-coupon.png);
}
.icon-white-user-fb{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/icon-coupon.png);
}
.icon-white-user-follow{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/follow@3x.png);
}
.icon-white-user-followed{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/followed@3x.png);
}
/*deepgrey*/
.icon-deepgrey-recommend-done{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/icon-recommend-done.png);
}
.icon-deepgrey-payment-info{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/icon-payment-info.png);
}
.icon-deepgrey-address{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/icon-address.png);
}
.icon-deepgrey-shop{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/icon-shop.png);
}
.icon-deepgrey-coin{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/icon-coin.png);
}
.icon-deepgrey-contact{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/icon-contact.png);
}
.icon-deepgrey-delivery{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/icon-delivery.png);
}
.icon-deepgrey-coupon{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/icon-coupon.png);
}
/*popapp-user-page icon*/
.icon-user-post{
	background-image: url(https://static.popdaily.com.tw/img/user/post@2x.png);
}
.icon-user-save{
	background-image: url(https://static.popdaily.com.tw/img/user/save@2x.png);
}
.icon-user-post-on, .active .icon-user-post{
	background-image: url(https://static.popdaily.com.tw/img/user/post@2x_on.png);
}
.icon-user-save-on, .active .icon-user-save{
	background-image: url(https://static.popdaily.com.tw/img/user/save@2x_on.png);
}
.icon-user-record{
	background-image: url(https://static.popdaily.com.tw/img/user/record@2x.png);
}
/*popapp-user-edit-page icon*/
.icon-user-edit-camera{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/camera01@3x.png);
}
.icon-user-edit-camera-btn{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-white/camera02@3x.png);
}

.icon-user-edit-name-input{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/edit-icon-user@3x.png);
}
.icon-user-edit-id-input{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/edit-icon-vertify@3x.png);
}
.icon-user-edit-des-input{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/edit-icon-edit@3x.png);
}
.icon-user-edit-ig-input{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/edit-icon-igicon@3x.png);
}
.icon-user-edit-fb-input{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/edit-icon-fbicon@3x.png);
}
.icon-user-right-arrow{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-deepgrey/edit-icon-right@3x.png);
}
/*popapp-footerNav icon*/
.icon-footerNav-facebook{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-footerNav-facebook@3x.png);
}
.icon-footerNav-messemger{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-footerNav-messemger@3x.png);
}
.icon-footerNav-sms{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-footerNav-sms@3x.png);
}
.icon-footerNav-line{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-footerNav-line@3x.png);
}
.icon-footerNav-twitter{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-footerNav-twitter@3x.png);
}
.icon-footerNav-other{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/icon-footerNav-other@3x.png);
}
.icon-footerNav-alert{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/share-alert@3x.png);
}
.icon-footerNav-delete{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/share-delete@3x.png);
}
.icon-footerNav-link{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/share-link@3x.png);
}
.icon-footerNav-lock{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/share-lock@3x.png);
}
.icon-footerNav-edit {
	background-image: url(https://static.popdaily.com.tw/img/globalicon/share-edit@3x.png);
}
.icon-footerNav-block {
	background-image: url(https://static.popdaily.com.tw/img/globalicon/share-block@3x.png);
}
.icon-footerNav-sanction {
	background-image: url(https://static.popdaily.com.tw/img/globalicon/share-sanction@3x.png);
}
.icon-footerNav-adminDel {
	background-image: url(https://static.popdaily.com.tw/img/globalicon/admin-delete@3x.png);
}
.icon-footerNav-report {
	background-image: url(https://static.popdaily.com.tw/img/globalicon/share-report@3x.png);
}

.icon-cycle-mid-empty
{
	display: block;
	width: 16px;
	height: 16px;
	text-align: center;
	border:1px solid #333;
	color: #333;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    font-weight: normal;
    font-size: .9em;
}
.icon-cycle-mid-empty-333
{
	line-height: 16px;
}
.icon-cycle-mid-empty-ffcf4b
{
	border:1px solid #ffcf4b;
	color: #ffcf4b;
	line-height: 16px;
}
.icon-cycle-mid-empty p
{
	margin-left: 1px;
	padding-bottom: 2px;
}
.icon-free-express
{
	display: block;
	width: 28px;
	height: 14px;
	background-image: url(https://static.popdaily.com.tw/img/globalicon/car.png);
	background-size: 28px 14px;
}
.icon-display
{
	display: inline-block;
}
.user-img{
	width: 100%;
	height: 100%;
	margin: 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;

}
.user-img img{
	margin-top: 0px;
	display: block;
	width: 100%;
	height: auto;
	/*position: relative;*/
}
.user-upload-img{
	/* background-image: url(https://static.popdaily.com.tw/img/user/upload.png); */
	/* background-image: url(https://static.popdaily.com.tw/img/queen.jpg); */
}
.like-button{
	float: right;
	width: 20px;
	height: 20px;
	margin-top: 2%;
	background-image: url(https://static.popdaily.com.tw/img/globalicon/like01.png);
	background-size: cover;
	background-position: center;
}
.like-button-on{
	background-image: url(https://static.popdaily.com.tw/img/globalicon/like02.png) !important;
}
/* .follow-button-on{

	background-image: url(https://static.popdaily.com.tw/img/globalicon/star@3x.png);
  	-vendor-animation-duration: 3s;
		-vendor-animation-delay: 2s;
		-vendor-animation-iteration-count: infinite;
} */
.saved-button-on{

	background-image: url(https://static.popdaily.com.tw/img/globalicon/star@3x.png);
  	-vendor-animation-duration: 3s;
		-vendor-animation-delay: 2s;
		-vendor-animation-iteration-count: infinite;
}
.submit-button{
	position: relative;
	display: block;
	margin: 4px auto;
	max-width: 500px;
	width: 96%;
	/*height: 58px;*/
	width: calc(100% - 24px);
	height: 2.2em;
	background-color: #838eff;
	/*background-color:#9999ff;*/
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1em;
	line-height: 2.2em;
	color: #fff;
	text-align: center;
}
.submit-button-on{
	background-color:#7D7AF4;
}


.popapp-container .popapp-ctrl-box {
	left: 0;
    right: 0;
    position:-webkit-sticky;
    position: sticky;
}

.popapp-ctrl-box{
    position:-webkit-sticky;
	position: sticky;
	width: 100%;
	z-index: 2;
	/* margin-top: 30px; */
	/* margin-top: 0px; */
	margin: 0;
	/* margin-left: 10px; */
	/* display: none; */
}

.popapp-ctrl-box * {
	box-sizing: border-box;
}

.popapp-ctrl-box:after {
    content: "";
    display: block;
    clear: both;
}

.popapp-ctrl-box-top{
	margin-top: 0;
	top: -1px;
	padding-top: 1px;
	position: fixed;
	background-color: #FFF;
	color: #333;
	/* box-shadow: 0px 0px 10px 1px rgba(230,230,230,1); */
	border-bottom: 1px solid #DCDCDC;
}

.popapp-ctrl-box.filter{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,ffffff+100&0.4+1,0.1+69,0+93 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0.4) 0%, rgba(3,3,3,0.4) 1%, rgba(176,176,176,0.1) 69%, rgba(237,237,237,0) 93%, rgba(255,255,255,0) 100%) !important; /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.4) 0%,rgba(3,3,3,0.4) 1%,rgba(176,176,176,0.1) 69%,rgba(237,237,237,0) 93%,rgba(255,255,255,0) 100%) !important; /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(3,3,3,0.4) 1%,rgba(176,176,176,0.1) 69%,rgba(237,237,237,0) 93%,rgba(255,255,255,0) 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

    border-bottom:initial;

    /* box-shadow:0 0 15px 0 rgba(255,255,255,.5),inset 0 0 15px 0 rgba(255,255,255,.5); */

}

.popapp-ctrl-box .popapp-back-button{
	margin-left: 5px;
	float: left;
	width: 40px;
	height: 40px;
	background-image: url(https://static.popdaily.com.tw/img/icon/keyboard_arrow_left_white_72x72.png);
	background-position: center;
	background-size: 30px;
	background-repeat: no-repeat;
	cursor: pointer;
	background-position-y:6px;
}
.popapp-user-lefttop-button{
	float: left;
	margin-right: 5px;
	left:-100px;
}
.popapp-user-righttop-button{
	float: right;
	margin-right: 5px;
	right: -100px;
}
.popapp-user-center-button{
	display: block;
	width: 40px;
	height: 40px;
	background-position: center;
	background-size: 20px;
	background-repeat: no-repeat;
	cursor: pointer;
}
.popapp-user-left-button{
	float: left;
	margin-right: 5px;
	left: -100px;
	width: 40px;
	height: 40px;
	background-position: center;
	background-size: 20px;
	background-repeat: no-repeat;
	cursor: pointer;
}
.popapp-ctrl-box .popapp-more-horizontal-button{
	float: right;
	margin-right: 5px;
	right: -100px;
	width: 40px;
	height: 40px;
	background-image: url(https://static.popdaily.com.tw/img/icon/more_horiz_white_72x72.png);
	background-position: center;
	background-size: 25px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.popapp-ctrl-box .popapp-settings-button{
	display: none;
	float: right;
	margin-right: 5px;
	right: -100px;
	width: 40px;
	height: 40px;
	background-image: url(https://static.popdaily.com.tw/img/icon/settings_white_72x72.png);
	background-position: center;
	background-size: 20px;
	background-repeat: no-repeat;
	cursor: pointer;
	/* opacity: .9; */
}

.popapp-ctrl-box .popapp-settings-button.black{
	background-image: url(https://static.popdaily.com.tw/img/icon/settings_grey_72x72.png);
	opacity: .8;
}
.popapp-ctrl-box .popapp-settings-button.white{
	background-image: url(https://static.popdaily.com.tw/img/icon/settings_white_72x72.png);
	opacity:1;
}
.popapp-ctrl-box .popapp-invalidName-button.white{
	background-image: url(https://static.popdaily.com.tw/img/icon/invalidName@3x.png);
	opacity:1;
}

.popapp-instagram-button.white{
	margin: 0 auto;
	width: 32px;
	height:32px;
	background-image: url(https://static.popdaily.com.tw/img/icon/ig@2x.png);
	background-size: 32px;
	cursor: pointer;

}
.popapp-facebook-button.white{
	margin: 0 auto;
	width: 32px;
	height:32px;
	background-image: url(https://static.popdaily.com.tw/img/icon/fb@2x.png);
	background-size: 32px;
	cursor: pointer;

}
.popapp-ctrl-box .popapp-back-button.black{
	background-image: url(https://static.popdaily.com.tw/img/icon/keyboard_arrow_left_grey_72x72.png);
}
.popapp-ctrl-box .popapp-more-horizontal-button.black{
	background-image: url(https://static.popdaily.com.tw/img/icon/more_horiz_grey_72x72.png);
}
.popapp-ctrl-box .popapp-more-horizontal-button.white{
	background-image: url(https://static.popdaily.com.tw/img/icon/more_horiz_white_72x72.png);
}
.popapp-ctrl-box .popapp-back-button.x-png{
	background-image: url(https://static.popdaily.com.tw/img/icon/x-png.png);
}
.popapp-ctrl-box .title{
	width: calc(100% - 90px);
	padding: 0 10px;
	line-height: 40px;
	height: 40px;
	text-align: center;
	float: left;
	color: #666;
	font-weight: bold;
	display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.popapp-ctrl-box span {
    line-height: 40px;
}

.popapp-cssCloseBTN{
    position: relative;
    right: 0;
    margin-top: 14px;
    width: 24px;
    height: 24px;
    opacity: 0.7;
    border-radius: 999em;
    background-color: #D3D3D3;
    cursor: pointer;
}
.popapp-cssCloseBTN:before, .popapp-cssCloseBTN:after {
  	position: absolute;
  	top: 6px;
	left: 11px;
  	content: '';
  	height: 13px;
  	width: 2px;
  	background-color: #fff;
}
.popapp-cssCloseBTN:before {
  transform: rotate(45deg);
}
.popapp-cssCloseBTN:after {
  transform: rotate(-45deg);
}

.popapp-policy-body{
    padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 80px;
    font-size: 0.9em;
}
.popapp-policy-body .title-font{
    width: 100%;
	font-size: 1.2rem;
	padding: 10px 0 0;
}
.popapp-policy-body .title-font:after {
    content: "";
    display: block;
    height: 0;
    border: solid 1px #f5f5f5;
    margin: 1em 0;
}
.popapp-policy-body .title-font .subtitle {
    float: right;
    font-size: 0.8rem;
    color: #7D7AF4;
    line-height: 1.2rem;
}
.popapp-policy-body p{
    width: 100%;
    font-size: 1em;
    line-height: 1.6em;
    padding-top: 5px;
    padding-bottom: 5px;
}
.popapp-policy-body ol{
     list-style-type:decimal;
     margin: 15px 20px;
     font-size: 1em;

}
.popapp-policy-body ol li{
    padding: 5px 0;
    line-height: 1.6em;
}

.popapp-policy-body img {
    width: 100%;
    max-width: 500px;
}

.popapp-policy-body input,
.popapp-policy-body textarea {
    border: solid 1px #ccc !important;
    border-radius: 4px;
    padding: .5em;
    margin-bottom: 1em;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.popapp-policy-body input:focus,
.popapp-policy-body textarea:focus {
    border: solid 1px #7D7AF4 !important;
}

.popapp-policy-body button {
    width: 100%;
    padding: 1em 0;
}
@media (min-width: 768px) {
    .popapp-container .popapp-policy-body input {
        width: calc(50% - 5px);
        float: left;
    }
    .popapp-container .popapp-policy-body input:nth-child(2n + 1) {
        margin-right: 10px;
    }
}


/* 彈跳選單 */
#popapp-popup {
	max-width: 400px;
	width: 80%;
	text-align: center;
	display: none;
	/* margin-top: -60px; */

	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

#popapp-popup .popapp-popup_button {
	background-color: white;
	font-size: 1.1em;
	line-height: 2.8em;
	margin: 0;
	min-height: 1em;
	border-radius: 10px;
	margin-bottom: 10px;
	text-align: center;
	color: #a26ee2;
	/* border: 1px solid #848282; */
	cursor: pointer;
	overflow: hidden;
}
#popapp-popup .sanctionBTN,
#popapp-popup .logBTN,
#popapp-popup .shareMsger,
#popapp-popup .popapp-popup_close {
	margin-top: 30px;
}
#fade,
#fade_wrapper,
#fade_background {
  transition: all 0.3s;
}

/* popViewSwipe */
.popViewSwipe{
	width: 100%;
	float: left;
	/* overflow: hidden; */
}
.popViewSwipe .carousel{
	float: left;
	width: 100%;
	scroll-behavior: smooth;
	transition-duration: 0;
	-moz-transition-duration: 0; /* Firefox 4 */
	-webkit-transition-duration: 0; /* Safari 和 Chrome */
	-o-transition-duration: 0; /* Opera */

	will-change: transform;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
	-moz-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
	-o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
	-ms-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.popViewSwipe .carousel360{
	transition-duration: 360ms;
	-moz-transition-duration: 360ms; /* Firefox 4 */
	-webkit-transition-duration: 360ms; /* Safari 和 Chrome */
	-o-transition-duration: 360ms; /* Opera */
}

#popapp-progress-bar {
	position: relative;
	width: 0;
	height: 20px;
	margin-top: 15px;
	margin-left: 4px;
	background: repeating-linear-gradient(-45deg, #7D7AF4, #7D7AF4 20px, #c79aff 20px, #c79aff 40px);
	border-radius: 0.8em;
	transition: width 800ms;
}

.popapp-progress-bg {
	width: 90%;
	margin: 0 auto;
	height: 28px;
	display: block;
	z-index: -1;
	margin-top: -35px;
}
.popapp-progress-bg span{
	line-height: 1.5em;
}
.loading-overlay {
	background-image: url('https://static.popdaily.com.tw/img/bg_trans.png?7');
	opacity: 1;
}
.loading-overlay.loading-theme-dark {
	background-color: initial;
}


/* 追蹤按鈕 */
.popapp-personalpage-content .follow-poster,
.popapp-article-content .follow-poster{
    line-height: 26px;
    float: left;
    height: 26px;
    text-align: center;
    font-size: 1em;
    border: 1px solid #838EFF;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1px;
	background: #838EFF;
	float: right;
}
.popapp-personalpage-content .follow-poster{
	float: initial;
	margin: 0px auto;
	margin-bottom: 5px;
}
.popapp-personalpage-content  .follow-poster span,
.popapp-article-content .follow-poster span{
    display: inline-block;
    color: #FFF;
}
.popapp-personalpage-content  .follow-poster:not(.follow-poster-on) span:before,
.popapp-article-content .follow-poster:not(.follow-poster-on) span:before{
    content: "＋";
    display: inline-block;
}
.popapp-personalpage-content .follow-poster-on,
.popapp-article-content .follow-poster-on{
    border:1px solid #DCDCDC;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: transparent;
}
.popapp-personalpage-content  .follow-poster-on span,
.popapp-article-content .follow-poster-on span{
    color: #DCDCDC;
}

.popapp-container {
    box-sizing: border-box;
    /* background: #f9f9f9; */
    min-height: 100vh;
}

/* .pc.web .popapp-container{
    background: #f9f9f9;
} */
.web .popapp-container {
    /* min-height: calc(100vh - 2em - 20px); */
}

.popapp-container * {
    box-sizing: border-box;
}

.popapp-container > * {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.popapp-container.small-col > div,
.popapp-container.small-col > button.full-width {
    max-width: 600px;
}

.popapp-container.center {
	min-height: 0;
}

.popapp-content {
    overflow-x: hidden !important;
}

.popapp-content label[for],
.popapp-content [type="checkbox"],
.popapp-content select,
.popapp-content button
{
    cursor: pointer;
}

.popapp-content .popapp-post-con {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    cursor: pointer;
    color: #58595b;
    -webkit-transition: opacity .4s, transform .4s;
    -o-transition: opacity .4s, transform .4s;
    transition: opacity .4s, transform .4s;
}

.popapp-content .popapp-post-con.hide {
	opacity: 0;
	transform: translateY(-10px);
}

.popapp-content .popapp-post-con .title:empty,
.popapp-content .popapp-post-con .des:empty {
    display: none;
}

.popapp-content .popapp-post-con .img {
    width: 80px;
    height: 80px;
    background: rgb(237, 238, 240);
    margin-left: 15px;
}

.popapp-content .popapp-post-con .info {
    flex: 1;
}

.popapp-content .popapp-post-con .title {
    line-height: 2em;
     font-weight: 600;
    /* margin-bottom: .5em; */
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popapp-content .popapp-post-con .des {
    line-height: 1.5em;
    font-size: .9em;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.popapp-content .popapp-post-con .title:empty + .des {
    -webkit-line-clamp: 4;
}

.popapp-content .popapp-post-con.pgc .title {
	line-height: 1.5em;
	-webkit-line-clamp: 3;
}

.popapp-content .popapp-post-con .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popapp-content .popapp-post-con .detail {
    display: flex;
    width: 100%;
    /*margin: 0 -15px;*/
    padding-top: 15px;
    font-size: .8em;
}

.popapp-content .popapp-post-con .detail .author-con {
    flex: 1;
    min-width: 0;
}

.popapp-content .popapp-post-con .detail .author-con .poster-img {
    position: relative;
    float: left;
    width: 18px;
    height: 18px;
    margin: 0;
    vertical-align: middle;
    border-radius: 100px;
    overflow: hidden;
    background: #ccc;
}

.popapp-content .sec-con > .info .author-con .poster-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.popapp-content .popapp-post-con .author-con .poster-name {
    display: inline-block;
    width: calc(100% - 33px);
    vertical-align: middle;
    overflow: hidden;
    height: 18px;
    line-height: 18px;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.popapp-content .popapp-post-con .like-con .like-num {
    float: right;
    margin-left: 3px;
    line-height: 18px;
    color: #666;
}

.popapp-content .popapp-post-con .like-con .like-icon {
    float: right;
    width: 18px;
    height: 18px;
    margin-top: 0px;
    background-image: url(https://static.popdaily.com.tw/img/globalicon/like01.png?0425);
    background-size: cover;
    background-position: center;
    margin-right: 1px;
    -vendor-animation-duration: 3s;
    -vendor-animation-delay: 2s;
    -vendor-animation-iteration-count: infinite;
}

/* 圓弧白框 */
.popapp-content.radius-block {
    padding: 0 15px;
    overflow-y: scroll;
    flex: 1;
    background-color: transparent;
}

.popapp-content.radius-block > div > label:first-child:not(.switch), .popapp-content.radius-block > div > .title {
    width: 100%;
    padding-bottom: 15px;
}

.popapp-content.radius-block input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    display: block;
    font-size: 1em;
    border: 0;
}

[class *= "Editor"].popapp-content.radius-block input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    width: 100%;
    font-size: 1.4em;
}

.popapp-content.radius-block textarea {
    width: 100%;
    height: 7.5em;
    outline: none;
    resize: vertical;
    font-size: 1em;
    border: 0;
    line-height: 1.5em;
    resize: vertical;
}

.popapp-content.radius-block > div:not(.mask),
.popapp-content.radius-block > li:not([data-type="text"]):not([data-type="version"]) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
	border-radius: 4px;
}

.mobile .popapp-mask,
.mobile .popapp-content.radius-block:focus-within .mask {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.popapp-mask {
	display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    z-index: 999;
}

.popapp-content.radius-block > div:focus-within{
    z-index: 2;
    position: relative;
}

.popapp-content.radius-block > div [name="title"], .popapp-content.radius-block > div [name="des"] {
    margin-top: 15px;
}

.popapp-content.radius-block > div .user-info{
    /* margin-top: 50px; */
    /* position: absolute; */
    float: left;
    width: calc(100% - 8em);
}

.popapp-content.radius-block > div .user-info .user-img {
    width: 30px;
    height: 30px;
    float: left;
    margin-right: 5px;
}

.popapp-content.radius-block > div .user-info .user-name{
    float: left;
    top: 50%;
    height: 30px;
    font-size: 0.8em;
    line-height: 30px;
    width: calc(100% - 55px);
    color: #666;
}
.popapp-content.radius-block > div .classification{
    float: left;
    width: calc(8em - 15px);
}
.popapp-content.radius-block > div .classification select{
    color: #666;
    float: right;
    text-align: right;
    direction: rtl;
    padding-right: 25px;
    line-height: 30px;
    font-size: .9em;
    width: 8em;
    height: 30px;
    border-radius: 5px;
    border: 0px;
    background-color: white;
    background-repeat: no-repeat;
    background-size: 1.3em 1.3em;
    background-image: url(/img/globalicon/category.png);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: initial;
}
.popapp-content.radius-block > div .classification select option{
    text-align: right;
    direction: rtl;
}

.popapp-content.radius-block > div .hint {
    font-size: 0.8em;
    color: #ccc;
    margin-left: auto;
    margin-top: 15px;
}

.popapp-content.radius-block > div [ type="file"] {
    display: none;
}

.popapp-content.radius-block > div img.preview:not([src]) {
    display: none;
}

.popapp-content.radius-block > div img.preview {
    width: 100%;
    max-width: 500px;
}

button.full-width {
	display: block;
    width: calc(100% - 24px);
    margin: 12px auto 45px;
    height: 2.2em;
	padding: .4em 0;
	margin-bottom: 110px;
}

/* 滿寬白框 */
.popapp-content.block > div {
    background: #FFF;
    margin-bottom: 10px;
    position: relative;
}

.popapp-content .popapp-form > div, .popapp-content .popapp-input {
    display: flex;
    align-items: center;
}

.popapp-content .popapp-form > div > *:not(select), .popapp-content .popapp-input > * {
    font-size: 1em;
    padding: 15px;
}

.popapp-content .popapp-form > div > * + input {
    padding-left: 0;
}

.popapp-content .popapp-form > .multi {
    display: flex;
}

.popapp-content .popapp-form > .multi > *:not(:first-child) {
    border-left: solid 2px #F7F7F7;
}

.popapp-content .popapp-form input,
.popapp-content .popapp-form select,
.popapp-content .popapp-input input {
    flex: 1;
    text-align: right;
    font-size: 1em;
    border: 0;
}

.popapp-content .popapp-form > div:not(:last-child) {
    border-bottom: solid 2px #F7F7F7;
    clear: both;
}

.popapp-content .popapp-form select {
    color: #666;
    font-size: 1em;
    height: calc(1em + 32px);
    width: 100%;
    padding: 0 0 0 15px;
    border: 0;
    border-radius: 0;
}

.popapp-content .popapp-form input[type="date"] {
    direction: rtl;
}

.popapp-content .popapp-form input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    -webkit-appearance: none;
    color: transparent;
}

.popapp-content .popapp-form input[type="date"]::-webkit-clear-button,
.popapp-content .popapp-form input[type="date"]::-webkit-inner-spin-button {
	display: none;
    -webkit-appearance: none;
}

.popapp-content .popapp-form select, .popapp-content .popapp-form input.dropdown {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(/img/globalicon/grey-down.png) no-repeat;
    background-color: initial;
    background-position: calc(100% - 10px) center;
    background-size: 1.5em 1.5em;
}

.popapp-content .popapp-form select:invalid {
    color: #ccc;
}

/* 蓋板頁面 */
.popapp-overlay {
    background-color: #FFF;
    height: 100%;
    width: 100%;
    float: left;
    color: #666;
    z-index: 1000;
    position: fixed;
    top: 0;
    display: none;
}

.popapp-overlay.active {
    display: flex;
    flex-direction: column;
}

.popapp-overlay .popapp-header {
    position:absolute;
    float: left;
    position: initial;
    margin-top: 0;
    margin-bottom: 15px;
    padding: 3px 0;
    max-width: 100%;
    border-bottom: 0;
    background: #ffffff;
}

.popapp-overlay .popapp-header .title {
    width: calc(100% - 110px);
    padding: 0 10px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    float: left;
    color: #666;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.popapp-overlay .popapp-header .close,
.popapp-overlay .popapp-header .back,
.popapp-overlay .popapp-header .search {
    margin-left: 5px;
    float: left;
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: 30px;
    background-repeat: no-repeat;
    cursor: pointer;
    background-position-y: 6px;
}

.popapp-overlay .popapp-header .close {
    background-image: url(/img/icon/x-png.png);
}

.popapp-overlay .popapp-header .back {
    background-image: url(/img/icon/keyboard_arrow_left_grey_72x72.png);
}


/* user info */
.popapp-user-info {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 15px 0;
    padding: 0 15px;
}

.popapp-user-info .user-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.popapp-user-info .user-name {
    width: calc(100% - 40px);
}

.popapp-user-info .user-name span {
    display: block;
    overflow : hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.popapp-user-info .user-name span.loc,
.popapp-user-info .user-name span.des {
    font-size: 0.8em;
    color: #999;
    margin-top: 3px;
    line-height: 1.2em;
}


/* carousel */
.popapp-carousel {
	position: relative;
    background: #000;
	max-height: 540px;
	overflow: hidden;
}

.popapp-carousel .carousel-wrapper img {
    display: block !important;
    width: auto!important;
    max-width: 100%;
    max-height: 540px;
    margin: auto;
    -webkit-touch-callout: default;
    -webkit-user-select: default;
    -khtml-user-select: default;
    -moz-user-select: default;
    -ms-user-select: default;
    user-select: default;
}

.popapp-carousel .page {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 16px 16px;
    color: #FFF;
    z-index: 1;
}

.popapp-carousel .slick-arrow {
    position: absolute;
    display: none !important;
    z-index: 1;
    top: 0;
    bottom: 0;
    font-size: 0;
    line-height: 0;
    width: 50px;
}

.popapp-carousel .slick-arrow.slick-prev {
    left: 0;
    background: -webkit-linear-gradient(left, rgba(128, 128, 128, 0.5), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(left, rgba(128, 128, 128, 0.5), rgba(0, 0, 0, 0));
    background: linear-gradient(to right, rgba(128, 128, 128, 0.5), rgba(0, 0, 0, 0));
}

.popapp-carousel .slick-arrow.slick-next {
    right: 0;
    background: -webkit-linear-gradient(right, rgba(128, 128, 128, 0.5), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(right, rgba(128, 128, 128, 0.5), rgba(0, 0, 0, 0));
    background: linear-gradient(to left, rgba(128, 128, 128, 0.5), rgba(0, 0, 0, 0));
}

.popapp-carousel .slick-arrow:after {
    display: block;
    color: #FFF;
    font-size: 2rem;
    line-height: 1;
}

.popapp-carousel .slick-arrow.slick-prev:after {
    content: "❮";
}

.popapp-carousel .slick-arrow.slick-next:after {
    content: "❯";
}

.popapp-carousel .slick-arrow.slick-disabled,
.popapp-carousel:hover .slick-arrow.slick-disabled {
    display: none !important;
}

/* lightbox */
.popapp-lightbox.sl-wrapper * {
    box-sizing: border-box;
}

.popapp-lightbox.sl-wrapper .sl-close, .popapp-lightbox.sl-wrapper .sl-counter, .popapp-lightbox.sl-wrapper .sl-navigation button {
    color: #FFF;
}

.popapp-lightbox.sl-wrapper .sl-image .sl-caption {
    text-align: right;
    background: unset;
    bottom: unset;
    cursor: pointer;
}

.popapp-lightbox.sl-wrapper + .sl-overlay {
    background-color: #000;
    opacity: .5;
}

.popapp-lightbox.sl-wrapper .sl-spinner {
	border-color: #FFF;
    z-index: 1040;
}


/* slide in iframe */
body.slideinFrame {
	overflow: hidden !important;
}

.popapp-slidein-iframe {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0);
	-webkit-transition: background-color .4s;
	-o-transition: background-color .4s;
	transition: background-color .4s;
}


.popapp-slidein-iframe.active {
    background-color: rgba(0, 0, 0, .8);
    cursor: pointer;
}

.popapp-slidein-iframe iframe {
	position: absolute;
	right: 0;
	width: 500px;
	height: 100vh;
	background: #FFF;
	transform: translate3d(500px, 0, 0);

	-webkit-transition: transform .4s;
	-o-transition: transform .4s;
	transition: transform .4s;
}

.popapp-slidein-iframe.active iframe {
	transform: translate3d(0, 0, 0);
}

/* input tags*/
.bootstrap-tagsinput {
    /*position: relative;
    font-size: 1.2rem;
    padding: .5rem;
    margin: 0.5rem 0;*/
}

.bootstrap-tagsinput .tag {
    display: inline-block;
    padding: .5em .6em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    background-color: #7D7AF4;
    margin-bottom: .5em;
}

.bootstrap-tagsinput .tag.error {
    background: red;
}

.popapp-content.radius-block > div .bootstrap-tagsinput {
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: unset;
}

.popapp-content.radius-block > div .bootstrap-tagsinput .tag {
    padding: 5px 10px;
    font-size: 1rem;
}

.popapp-content.radius-block > div .bootstrap-tagsinput input {
    width: auto;
    padding: 0;
}

/* 提示下載app */

.globalAnchoBottom{
	background-color: #000;
	opacity: 0.8;
	bottom: 90px;
	color: #FFF;
	width: 270px;
	padding: 10px 10px;
	border-radius: 30px;
	height: 1em;
	line-height: 1em;
	text-align: center;
	position: fixed;
	left: 50%;
	margin-left: -145px;
	cursor:pointer;
	z-index: 99;
}
.globalAnchoBottom a,
.globalAnchoBottom a:link,
.globalAnchoBottom a:hover{
	color:#fff;
}

.def {
	display: none !important;
}

.like-icon{
	position: relative;
}

.like-post-span-SVG{
	width: 50px;
    height: 50px;
    float: left;
    overflow: hidden;
    margin-left: -17px;
    margin-top: -17px;
}
.like-reply-span-SVG{
	width: 50px;
    height: 50px;
    float: left;
    overflow: hidden;
    margin-left: -17px;
    margin-top: -17px;
}
.like-post-span-SVG svg.svg-heart{
	display: none;
	top: calc(50% - 10px);
	left: calc(50% - 10px);
	transform: scale(3) !important;
}
.like-reply-span-SVG svg.svg-heart{
	display: none;
	position: absolute;
	top: calc(50% - 10px);
	left: calc(50% - 8px);
	transform: scale(10) !important;
}
svg.svg-heart{
	display: none;
	top: calc(50% - 10px);
	left: calc(50% - 10px);
}

/* 文章分類標籤 */
.clas-tag {
    box-sizing: border-box;
    display: inline-block;
    background: #69DAD0;
    padding: 0 1em;
    max-width: 80%;
    color: #FFF;
    font-size: .7em;
    border-radius: 10px;
    line-height: 2em;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 9px;
}

/* 我留著火哥的標籤 改回原本的 */
/***
.clas-tag {
    cursor: pointer;
    float: left;
    margin: 10px 0 13px 20px;
    display: inline-block;
    -moz-border-radius-topright: 2px;
    -moz-border-radius-bottomright: 2px;
    border-bottom-right-radius: 2px;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    color: #fff;
    background-color: #828eff;
    font-size: .7em;
    position: relative;
    -moz-transform-origin: 88% 10%;
    -ms-transform-origin: 88% 10%;
    border-radius: 0 2px 2px 0;
}
***/

/***
.clas-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: -13px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 13px solid #828eff;
}
***/

/***
.clas-tag::after {
    content: "";
    position: absolute;
    top: 10px;
    left: -1px;
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background-color: #cecece;
    box-shadow: inset -1px 1px 0 #8e8e8e;
    border-radius: 2px;
    background: #fff;
    text-shadow: 1px 1px 1px #828eff;
    -moz-box-shadow: -1px -1px 2px #828eff;
    text-shadow: 1px 1px 1px #828eff;
    -webkit-box-shadow: -1px -1px 2px #828eff;
    text-shadow: 1px 1px 1px #828eff;
    box-shadow: -1px -1px 2px #828eff;
}
***/

/*.clas-tag.diary {
    background: #;
}
.clas-tag.life {
    background: #;
}
.clas-tag.food {
    background: #DA3B3C;
}
.clas-tag.travel {
    background: #;
}
.clas-tag.beauty {
    background: #FAA1C3;
}
.clas-tag.style {
    background: #EBC395;
}
.clas-tag.korea {
    background: #EBBCBD;
}
.clas-tag.japan {
    background: #D4BC83;
}
.clas-tag.entertainment {
    background: #;
}
.clas-tag.love {
    background: #;
}
.clas-tag.pet {
    background: #;
}
.clas-tag.sport {
    background: #;
}
.clas-tag.secre {
    background: #;
}

.clas-tag.employee:after {
    content: '波妞專區';
}
.clas-tag.diary:after {
    content: '日記';
}
.clas-tag.life:after {
    content: '生活';
}
.clas-tag.food:after {
    content: '發胖 / 美食';
}
.clas-tag.travel:after {
    content: '打卡';
}
.clas-tag.beauty:after {
    content: '美妝';
}
.clas-tag.style:after {
    content: '穿搭';
}
.clas-tag.korea:after {
    content: '泡菜 / 韓國';
}
.clas-tag.japan:after {
    content: '日本';
}
.clas-tag.entertainment:after {
    content: '娛樂';
}
.clas-tag.love:after {
    content: '戀愛';
}
.clas-tag.pet:after {
    content: '寵物';
}
.clas-tag.sport:after {
    content: '運動';
}
.clas-tag.secre:after {
    content: '匿名聊';
}*/

@media (min-width: 576px) {
    .popapp-container > * {
        max-width: 540px;
    }

    .popapp-content.radius-block {
    	padding: 0;
    }
}

@media (min-width: 768px) {
    .popapp-container > * {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .popapp-container > * {
        max-width: 960px;
    }

    .popapp-carousel:hover .slick-arrow {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .popapp-container > * {
        max-width: 1140px;
    }
}
