@charset "UTF-8";
/* CSS Document */

/* ---reset.css--- */
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, 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%;
	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.6;
}
ol, ul {
	list-style: none;
}
li{
	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;
}
/* ---reset.css--- */
	
a:link, a:active, a:visited {
    text-decoration: none;  
}

a:hover {
    opacity: 0.8;
    /*font-weight: bold;*/
}
	
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Noto Sans TC', "Heiti TC", "Microsoft JhengHei", sans-serif; 
}

/* body{
	font-size:16px;
} */

/* --電腦版型------------------------------------- */		

/* .all_content{
	background-color: #ffffff;
}

.page_content_block{
	display: block;
	width: 40%;
	margin: 40px auto 120px auto;
} */


/* --浮動視窗---- */
.user_notes_layer {
	position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.3);
	
    display: block;
    /* z-index: 99999; */
    z-index: 999999;
    line-height: 1.2rem;
}

.user_notes_container {
	width: 40%;
	height: 100%;
	position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-50%, -50%);
	background-color: #FFFFFF;
	box-shadow: 1px 1px 5px #777;
}

/* .user_notes_close_block {
	background-color: #eee;
	height: 35px;
}*/


/* --loading---- */
.notes_loading_block {
	width: 80%;	
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	text-align: center;
}

.notes_loading_block img.loading_gif{
	width: 30px;
	height: auto;	
}

/* --筆記列表---- */
.user_notes_list_block {
	padding-top: 20px;
	width: 100%;
	height: 100%;
	position: relative;
	display: none;
}

.user_notes_list_block.open{
	display: block;
}

.notes_top_row {
	margin: 20px 0px 10px 0px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.notes_top_row .notes_h1 {
	margin: 0px auto;
	padding: 5px 0px;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: #444;
}

.notes_top_row .blank_box {
	width: calc(6% + 30px);
}

.notes_top_row .close_button {
	width: 30px;
	height: 30px;
	margin: 0px 6% 0px 0px;
	background-image: url('/cefcamp/images/sia/user_notes/close.png');
	background-position: center;
    background-size: 30px;
	cursor: pointer;
}


.user_notes_list_block .add_mask {
	position: fixed;
	bottom: 0%;
	left: 0%;
	margin: 0;
	padding: 0px;
	width: 100%;
	height: 25%;
	background: linear-gradient(0deg, #ffffff 80%, transparent);
}

.user_notes_list_block .add_button {
	position: fixed;
	bottom: 8%;
	left: 10%;
	margin: 10px auto;
	padding: 12px 0px;
	width: 80%;
	height: 55px;
	/* box-shadow: 2px 2px 20px 1px rgba(119, 119, 119, .5); */
	border-radius: 20px;
	border: 2px solid #11a8da;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.add_button .add_text {
	height: 30px;
	padding: 5px 0px;
	color: #11a8da;
	font-size: 1rem;
	line-height: 20px;
}

.add_button .add_icon {
	width: 30px;
	height: 30px;
	margin: 0px;
	background-image: url('/cefcamp/images/sia/user_notes/plus_11a8da.png');
	background-position: center;
    background-size: 28px;
}

.notes_list_frame {
	width: 100%;
    height: 75%;
    overflow-y: auto;
	margin-top: 55px;
}

.notes_list {
	margin: 5px auto 60px auto;
	width: 90%;
	padding-left: 5%;
}

.notes_row {
	padding: 10px 0px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
}

.notes_title {
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.7;
	color: #444;
}

.notes_time {
	font-size: 0.9rem;
	color: #aaa;
}

.notes_list .notes_loading_block {
	width: 80%;	
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	text-align: center;
}
.notes_list .notes_loading_block img.loading_gif{
	width: 40px;
	height: auto;	
}

/* --筆記內容---- */
.user_notes_data_block{
	display: none;
	height: 100%;
	width: 100%;
	/* margin-top: 35px; */
	padding-top: 20px;
	position: relative;
    /* left: 50%;
    top: 50%;
	transform: translate(-50%, -50%); */
	background-color: #FFFFFF;
	/* overflow: hidden; */
}

.user_notes_data_block.open{
	display: block;
}

.notes_top_row .ident_img {
	color: #588AB6;
	font-size: 28px;
	padding-top: 2px;
}

.description_open_row .ident_img {
	rotate: 180deg;
}

.notes_top_row .back_button {
	margin-left: 20px;
	cursor: pointer;
}

.notes_top_row .button_box {
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.notes_top_row .save_button, .notes_top_row .delete_button {
	margin: 0px 10px;
	height: 30px;
	width: 75px;
	box-shadow: 2px 2px 10px 1px rgba(119, 119, 119, .5);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.save_button .save_text, .delete_button .delete_text {
	height: 30px;
	color: #588AB6;
	padding: 5px 0px;
	font-size: 1rem;
	line-height: 20px;
	font-weight: 600;
}

.save_button .save_icon {
	width: 30px;
	height: 30px;
	margin: 0px 0px 0px -5px;
	background-image: url('/cefcamp/images/sia/user_notes/save.png');
	background-position: center;
    background-size: 30px;
}

.delete_button .delete_icon {
	width: 30px;
	height: 30px;
	margin: 0px 0px 0px -5px;
	background-image: url('/cefcamp/images/sia/user_notes/delete.png');
	background-position: center;
    background-size: 30px;
}

.notes_data_scroll {
	height: 100%;
	overflow-y: auto;
	padding-bottom: 200px;
	margin-top: 55px;
}

.notes_description {
	width: calc(100% - 60px);
	margin: 10px 30px;
	font-size: .9rem;
    line-height: 1.7;
    color: #555;
}

.notes_description ol {
	margin-left: 2rem;
}

.notes_description ol li {
	list-style-type: upper-alpha;
	list-style-position: outside;
}

.description_open_row {
	width: calc(100% - 60px);
	margin: 10px 30px;
}

.description_open_row .open_button {
	text-align: right;
}

.description_open_row .ident_img {
	color: #588AB6;
	font-size: 24px;
	padding-top: 2px;
	rotate: 270deg;
}

.description_open_row .open .ident_img {
	rotate: 90deg;
}



.input_title {
	border: none;
	outline: none;
	font-size: 1.5rem;
	width: calc(100% - 60px);
	margin: 15px 30px;
	font-weight: 700;
}

.input_content {
	border: none;
	resize: none;
	outline: none;
	font-size: 1rem;
	line-height: 1.7;
	width: calc(100% - 60px);
	height: auto;
	margin: 10px 30px;
	overflow-y: hidden;
}



/* --平板版型------------------------------------- */
@media screen and (max-width: 1280px) {

	*{
		box-sizing :border-box; /* 讓 padding 與 width 解除關係 */
	}

	html,body{
		-webkit-text-size-adjust:none; /* iPhone 旋轉後 文字不要放大 */
	}
	
	
	
	/* .all_content{
		min-width: 320px;
	}
	.page_content_block{
        width: 100%;
        margin: 40px auto 0 auto;
	} */
	
	/*============================================================*/
	
	
	.content_block{
		width: 85%;
	}	

	
	



}




/* --手機版型------------------------------------- */
@media screen and (max-width: 767px) {
	
	*{
		box-sizing :border-box; /* 讓 padding 與 width 解除關係 */
	}

	html,body{
		-webkit-text-size-adjust:none; /* iPhone 旋轉後 文字不要放大 */
	}
	
	
	
	/* .all_content{
		min-width: 320px;
	}
	
	.page_content_block{
		width: 100%;
		margin: 30px auto 130px auto;
	} */
	
	/*============================================================*/
	
	.content_block{
		width: 90%;
	}
	
	.top_menu_blank{
		height: 60px;
	}


	/* --浮動視窗---- */
	.user_notes_container {
        	width: 100%;
	}




}