@charset "utf-8";
/* CSS Document */


a ,a:focus{
	text-decoration:none;
	color:#2f5eaa;
	outline: none ;
}
a:hover {
	text-decoration:none;
    color:#007AFC;
	outline: none ;
}

* {transition: background .2s, color .2s;}
*:hover {transition: background .2s,color .2s;}
* {box-sizing: border-box;}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}

input,textarea,select,label,.form-control{
	font-size: 1rem; 
	font-family: Arial , Helvetica ,'Microsoft JhengHei','微軟正黑體';
	box-shadow: none !important;
}

button,.form-control{
	font-size: 1rem; 
	font-family: Arial , Helvetica ,'Microsoft JhengHei','微軟正黑體';
	box-shadow: none;
}

input[type="submit"],
input[type="button"],
button:focus{
	outline: none !important;
}
input:disabled,textarea:disabled,select:disabled,.form-control:disabled{
	color:#686868;
	background-color: #DFDFDF;
}
input:required,textarea:required,select:required,.form-control:required{
	background-color: #feffe4;
}

/*必填符號*/
.required-mark::before {
    content: '*';
    color: #C30226;
    font-size: 16px;
    margin-right: 3px;
    vertical-align: middle;
}

.form-control[readonly]{
	color:#515151;
	background-color: #DFDFDF;
	cursor:default;
	box-shadow: none;
	outline: none;
}

.datepicker[readonly]{
	background-color: #f0f0f0;
	color:#515151;
	cursor:default;
	box-shadow: none;
	outline: none;
}

.form-control,.form-control.is-valid, .was-validated .form-control:valid {
    display: block;
    padding: 8px 10px 6px 10px;
	height: calc(1rem + 30px);
	margin: 2px;
    font-size: 1rem;
	line-height: 1;
    font-weight:normal;
	color:#515151;
    background-color: #f0f0f0;
    background-clip: padding-box;
    border:1px #e9e9e9 solid;
    border-radius: 0.35rem;
}
/*ie修正*/
@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){
    .form-control,.form-control.is-valid, .was-validated .form-control:valid {
		padding: 7px 10px 8px 10px;
	}
}
/*.form-control:hover,*/
.form-control:focus{
	border-color:#a9cc37;
	background-color: #f0f0f0;
	color:#515151;
}
.form-control[disabled]:hover,
.form-control[readonly]:hover,
.form-control[readonly]:focus{
	border-color:#ced4da;
}

textarea, textarea.form-control {
	resize : none;
	margin-bottom: .188rem;
	line-height: 1.4;
    padding: 7px 10px ;
}
.form-highlight,
.form-highlight[readonly],
.form-highlight[disabled]{
	background-color: #fef0cc ;
	color:#515151;
}
/*custom-select*/
.custom-select, select.form-control,.custom-select.is-valid, .was-validated .custom-select:valid,.custom-select.is-invalid, .was-validated .custom-select:invalid  {
    padding: 8px 20px 6px 10px ;
    background:#f0f0f0 url(../images/select-arrow.svg) no-repeat right .313rem center ;
	background-size: 8px 8px;
}
.custom-select:disabled {
    background:#DFDFDF url(../images/select-arrow-disabled.svg) no-repeat right .313rem center ;
	background-size: 8px 8px;
}

/*button*/
.btn{
	margin: 5px 5px;
	padding: 12px 25px;
	border-radius: .3rem;
	border-width: 1px;
	font-size: 1.1rem;
	line-height: 1;
	display:inline-flex;
	align-items:center;
	justify-content: center;
	white-space: nowrap;
	box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1) !important;
	min-width: 8rem;
}
.downloadBtn{
	margin: 5px 5px;
	border-radius: .3rem;
	border-width: 1px;
	font-size: 0.9rem;
	line-height: 1;
	display:inline-flex;
	align-items:center;
	justify-content: center;
	white-space: nowrap;
	box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1) !important;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary{
	background:#0f9036;
	border-color:#0f9036;
	color: #fff;
	opacity:1;
}
.btn-primary:hover,
.main-wrapper .btn.btn-primary:hover,
.modal .btn.btn-primary:hover,
.btn-primary:active,
.main-wrapper .btn.btn-primary:active,
.modal .btn.btn-primary:active{
	background:#0f9036 ;
	border-color:#0f9036 ;
	opacity:0.9;
}
.btn-secondary{
	background:#489FBC;
	border-color:#489FBC;
	color: #ffffff;
	opacity:1;
}
.btn-secondary:hover,
.main-wrapper .btn.btn-secondary:hover,
.modal .btn.btn-secondary:hover,
.btn-secondary:active,
.main-wrapper .btn.btn-secondary:active,
.modal .btn.btn-secondary:active{
	background:#489FBC;
	border-color:#489FBC;
	
	color: #ffffff;
	opacity:0.9;
}
.btn-gray{
	background:#969696;
	border-color:#969696;
	color: #ffffff;
	opacity:1;
}
.btn-gray:hover,
.main-wrapper .btn.btn-gray:hover,
.modal .btn.btn-gray:hover,
.btn-gray:active,
.main-wrapper .btn.btn-gray:active,
.modal .btn.btn-gray:active{
	background:#969696;
	border-color:#969696;
	color: #ffffff;
	opacity:0.9;
}
.btn-warn{
	background:#E62741;
	border-color:#E62741;
	color: #FFF;
	opacity:0.8;
}
.btn-warn:hover,
.main-wrapper .btn.btn-warn:hover,
.modal .btn.btn-warn:hover,
.btn-warn:active,
.main-wrapper .btn.btn-warn:active,
.modal .btn.btn-warn:active{
	background:#E62741 ;
	border-color:#E62741 ;
	color: #FFF ;
	opacity:1;
}
.custom-table .btn-warn{
	background:#FFFFFF;
	border-color:#E62741;
	color: #E62741;
	opacity:0.8;
}
.custom-table .btn-warn:hover{
	background:#FFFFFF !important;
	border-color:#E62741 ;
	color: #E62741 !important;
	opacity:1;
}

.btn-light{
	background:#ED7D26;
	border-color:#ED7D26;
	color: #FFF;
	opacity:0.8;
}
.btn-light:hover,
.main-wrapper .btn.btn-light:hover,
.modal .btn.btn-light:hover,
.btn-light:active,
.main-wrapper .btn.btn-light:active,
.modal .btn.btn-light:active{
	background:#ED7D26;
	border-color:#ED7D26;
	color: #FFF ;
	opacity:1;
}
.btn-excel{
	background:#FFFFFF;
	border-color:#FFFFFF;
	color: #0A4F2E;
	opacity:0.9;
}
.btn-excel:hover,
.main-wrapper .btn.btn-excel:hover,
.modal .btn.btn-excel:hover,
.btn-excel:active,
.main-wrapper .btn.btn-excel:active,
.modal .btn.btn-excel:active{
	background:#FFFFFF;
	border-color:#FFFFFF;
	color: #0A4F2E;
	opacity:1;
}
.btn-primary.disabled, .btn-primary:disabled, 
.main-wrapper .btn.btn-primary.disabled, .main-wrapper .btn.btn-primary:disabled, 
.modal .btn.btn-primary.disabled, .modal .btn.btn-primary:disabled, 
.btn-secondary.disabled,.btn-secondary:disabled,
.main-wrapper .btn.btn-secondary.disabled,.main-wrapper .btn.btn-secondary:disabled,
.modal .btn.btn-secondary.disabled,.modal .btn.btn-secondary:disabled,
.btn-light.disabled,.btn-light:disabled,
.main-wrapper .btn.btn-light.disabled,.main-wrapper .btn.btn-light:disabled,
.modal .btn.btn-light.disabled,.modal .btn.btn-light:disabled,
.btn-warn.disabled,.btn-warn:disabled,
.main-wrapper .btn.btn-warn.disabled,.main-wrapper .btn.btn-warn:disabled,
.modal .btn.btn-warn.disabled,.modal .btn.btn-warn:disabled,
.btn-login.disabled, .btn-login:disabled,
.login-main .btn.btn-login.disabled, .login-main .btn.btn-login:disabled,
.modal .btn.btn-login.disabled, .modal .btn.btn-login:disabled{
    background:#FFF ;
    border-color:#D2D2D2 ;
	color: #D2D2D2 ;
	opacity:0.7 ;
}

.btn-del-w::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-del-w.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -7px;
}
.btn-del-w.disabled::before,
.btn-del-w:disabled::before{
	background: url(../images/btn-del-w-disabled.svg) center no-repeat;
}
.custom-table .btn-del-w::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-del.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -7px;
}
.custom-table .btn-del-w.disabled::before,
.custom-table .btn-del-w:disabled::before{
	background: url(../images/btn-del-disabled.svg) center no-repeat;
}
.btn-add-w{
	font-size: 1rem;
}
.btn-add-w::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.3rem;
	height: 1.3rem;
	background: url(../images/btn-add-w.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -5px;
	opacity: .6;
}
.btn-add-w.disabled::before,
.btn-add-w:disabled::before{
	background: url(../images/btn-add-w-disabled.svg) center no-repeat;
}
.btn-edit::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background:red url(../images/btn-edit.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 2px -8px -5px;
}
.btn-edit-w::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-edit-w.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 2px -8px -5px;
}
.btn-edit.disabled::before,
.btn-edit:disabled::before,
.btn-edit-w.disabled::before,
.btn-edit-w:disabled::before{
	background: url(../images/btn-edit-w-disabled.svg) center no-repeat;
}
.btn-back::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-back.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 8px -8px -5px;
}
.btn-back.disabled::before,
.btn-back:disabled::before{
	background: url(../images/btn-back-disabled.svg) center no-repeat;
}



.btn-next::after{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-back-w.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px -15px -8px 8px;
	transform: rotateY(180deg);
}
.btn-next.disabled::after,
.btn-next:disabled::after{
	background: url(../images/btn-back-disabled.svg) center no-repeat;
}

.btn-search::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-search.svg) center  no-repeat;
	vertical-align: middle;
	margin: -8px 3px -8px -6px;
}

.btn-search-w::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-search-w.svg) center  no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -8px;
}
.btn-search.disabled::before,
.btn-search:disabled::before,
.btn-search-w.disabled::before,
.btn-search-w:disabled::before{
	background: url(../images/btn-search-disabled.svg) center no-repeat;
}
.btn-search-single{
	padding: 8px 0;
}
.btn-search-single::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 2rem;
	height: 1.3rem;
	background: url(../images/btn-search.svg) center no-repeat;
	vertical-align: middle;
	margin: -5px -8px;
}
.btn-search-single.disabled::before,
.btn-search-single:disabled::before{
	background: url(../images/btn-search-disabled.svg) center no-repeat;
}
.btn-reset::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-reset.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -5px;
}
.btn-reset.disabled::before,
.btn-reset:disabled::before{
	background: url(../images/btn-reset-disabled.svg) center no-repeat;
}
.btn-submit-w::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-submit-w.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -5px;
}
.btn-submit-w.disabled::before,
.btn-submit-w:disabled::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-submit-w-disabled.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -5px;
}
.btn-save-w::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/btn-save-w.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -5px;
}
.btn-save-w.disabled::before,
.btn-save-w:disabled::before{
	background: url(../images/btn-save-w-disabled.svg) center no-repeat;
}
.btn-upload::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.4rem;
	height: 1.4rem;
	background: url(../images/btn-upload.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -5px;
}
.btn-upload.disabled::before,
.btn-upload:disabled::before{
	background: url(../images/btn-upload-disabled.svg) center no-repeat;
}
.btn-download::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.4rem;
	height: 1.4rem;
	background: url(../images/btn-download.svg) center no-repeat;
	vertical-align: middle;
	margin: -8px 5px -8px -5px;
}
.btn-download.disabled::before,
.btn-download:disabled::before{
	background: url(../images/btn-download-disabled.svg) center no-repeat;
}
.btn-excel::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	background: url(../images/icon-excel.png) center no-repeat;
	background-size:contain;
	vertical-align: middle;
	margin: -8px 5px -8px -5px;
}

.btn-map{
	display:inline-block;
	position: relative;
}
.btn-map::after{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.4rem;
	height: 1.4rem;
	background: url(../images/map.svg) center  no-repeat;
	vertical-align: middle;
	margin: -15px -6px -8px 3px;
}


/*custom-radio & checkbox*/
.custom-control {
    position: relative;
    padding-left: 1.7rem;
	margin: 0 10px 0px 5px;
	height: auto;
	min-height: calc(1rem + 30px);
	line-height: 1.6;
	display:inline-flex;
	align-items: center;
}
/*ie修正*/
@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){
	.custom-control {
		padding-top: 10px;
	}
}
.custom-table .custom-checkbox{
	margin: 8px 10px 8px 0;
}
.custom-checkbox .custom-control-label::before,
.custom-checkbox .custom-control-label::after,
.custom-radio .custom-control-label::before,
.custom-radio .custom-control-label::after{
	border-color: #e9e9e9 !important;
	box-shadow: none !important;
	height: 1.4rem;
	width: 1.4rem;
	top:0;
	left: -1.75rem;
	border-radius: 50%;
}

.custom-checkbox .custom-control-label::before,
.custom-radio .custom-control-label::before{
	background:#f0f0f0 url(../images/checked-gray.svg) center no-repeat;
	background-size: 80%;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after,
.custom-radio .custom-control-input:checked~.custom-control-label::after{
	background-image:url(../images/checked.svg);
	background-size: 80%;
}
.custom-control-input.is-valid:checked~.custom-control-label::before, 
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
    border-color: #0f9036;
    background-color: #0f9036;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #0f9036;
    background-color: #0f9036;
}

/*datepicker-group*/
.datepicker-group{
	position: relative;
	width: 100%;
	height: auto;
}
.datepicker-group .form-control{
	padding-right: 1.6rem ;
}

.datepicker-group .btn-date{
	background-image:url("../images/btn-date.svg") !important;
	background-repeat: no-repeat;
	background-position: right center ;
	background-size: 2.25rem 2.25rem !important;
	cursor: pointer;
}
.datepicker-group .btn-date.disabled,
.datepicker-group .btn-date:disabled{
	background-image:url("../images/btn-date-disabled.svg");
}

.datepicker-range-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
	padding: 0;
}
.datepicker-range-group .range-mark {
    width: 50px !important;
    text-align: center !important;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
	display: none !important;
}

/*placeholder*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #858585 !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #858585 !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #858585 !important;
}
input:disabled::-webkit-input-placeholder,
textarea:disabled::-webkit-input-placeholder,
select:disabled::-webkit-input-placeholder{
  color:#C8C8C8;
}
input:disabled:-ms-input-placeholder,
textarea:disabled:-ms-input-placeholder,
select:disabled:-ms-input-placeholder{
    color: #C8C8C8; /*ie*/
}

/*custom-table*/
.custom-table{
	position: relative;
	width: auto;
	overflow-x: auto;
	/*border-radius: 10px;
	border: 8px rgba(255,255,255,.2) solid;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);*/
}
.custom-table table{
	width: 100%;
    max-width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
	border-spacing: 0;
}
.custom-table th{
	padding: 8px 10px;
	color:#3B3520;
	white-space: nowrap;
	text-align: center;
	vertical-align: middle;
	font-size: 0.9rem;
	line-height: 1;
	font-weight: normal;
    background: linear-gradient(0deg, #F3F3F3, #FFF );
	border-top: 1px solid #EBEBEB;
	border-bottom: 1px solid #EBEBEB;
}
.custom-table th:first-child{
	border-left: 1px #EBEBEB solid;
}
.custom-table th:last-child{
	border-right: 1px #EBEBEB solid;
}
.custom-table td{
	padding: 10px;
	vertical-align: middle;
	border: 1px solid #EBEBEB;
	border-top: none;
	font-size: 1rem;
	line-height: 1.2;
	height: 3rem;
	text-align: left;
}
/*.custom-table tr{
   cursor: pointer;
 }*/
.custom-table tr:nth-child(odd) td{
   background-color: #FFF;
 }
.custom-table tr:nth-child(even) td{
   background-color: #FBFBFB;
 }
/*.custom-table tr:hover td{
	background-color:#FFFAE9;
}
.custom-table tr.focus td{
	background-color:#FCE9BF;
}
.custom-table td .btn{
	margin: -5px 5px;
	padding: 9px 15px;
	display: inline;
}
.custom-table td .btn-edit::before{
	margin-top: -10px;
}*/
.custom-table .btn-row {
	border-top: none;
	margin: 0;
	padding: 20px;
}

/*custom-table.vertical*/
.custom-table.vertical td{
	padding: 3px 7px 0 5px ;
}
.custom-table.vertical tr:nth-child(odd) td{
   background-color: #FFF;
 }
.custom-table.vertical tr td:nth-child(odd) {
   background-color: rgba(255,255,255,0.3);
 }
.custom-table.vertical tr td:nth-child(even) {
   background-color: rgba(255,255,255,0.5);
 }
.custom-table.vertical tr:hover td{
	background-color:none;
}
.custom-table .func-row td{
	background-color: rgba(47,94,170,.2) !important;
	border-color: rgba(255,255,255,.2);
}
.custom-table .func-row .btn{
	margin:0 auto;
}
.custom-table .btn{
	margin: 2px 3px;
	padding: 8px 15px;
}
.custom-table hr {
    border-top: 1px #000000 solid;
    margin: 5px 0;
    opacity: .2;
}
.custom-table td span {
	display: block;
    min-height: 1.2rem;
}

@media screen and (max-width: 992px) {
 
  .custom-table table {
    border: 0;
  }
  .custom-table table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .custom-table table tr {
	border: 1px #EBEBEB solid;
    border-bottom: 1px solid #EBEBEB;
    display: block;
    margin-bottom: .625em;
  }
  
  .custom-table table td {
	position: relative;
    border-bottom: 1px solid #EBEBEB;
    display:flex;
	align-items: center;
    font-size: 1rem;
	padding-left: calc(5rem + 10px) !important;
	text-align: left;
	height: auto;
  }
  
  .custom-table table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    font-weight: bold;
    display:flex;
	align-items: center;
    width:5rem;
    height: 100%;
    box-sizing: border-box;
    position:absolute;
    top:0;
    left: 0;
    padding: 12px 8px;
    text-align: left;
	background: linear-gradient(0deg, #F3F3F3, #FFF );
	font-size: 0.9rem;
	  white-space: nowrap;
  }
  /*.custom-table table td:last-child {
    border-bottom: 0;
	text-align: right;
  }*/
	.custom-table table td.text-center{
		text-align: left !important;
	}
}

/*pagination*/
.pagination-row {
	height: auto;
	margin: 15px 0  10px 0;
	padding: 0;
	text-align: center;
}
.pagination{
    display: block;
	margin: 0;
	padding: 0;
}
.pagination .fast,
.pagination .item{
    display: inline-block;
	margin: 0;
	padding: 0;
}
.pagination a {
    color: black;
    float: left;
    padding: 0 10px;
	height: 2rem;
    text-decoration: none;
	margin: 0 2px;
	border: 1px transparent solid;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination a.active {
    background-color: #2f5eaa;
    color: white;
    border-radius: 3px;
	
}
.pagination a:hover:not(.active) {
    background-color: rgba(255,255,255,.3);
    border-radius: 3px;
	
}
.pagination-total{
	margin-top: 10px;
}
.icon-fast-backward::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1rem;
	background: url(../images/icon-fast-backward.svg) center no-repeat;
	background-size:contain;
	margin: 0.3rem 5px 0 -5px;
	padding: 0;
}
.icon-fast-backward.disabled::before,
.icon-fast-backward:disabled::before{
	background: url(../images/icon-fast-backward.svg) center no-repeat;
}
.icon-triangle-left::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1rem;
	background: url(../images/icon-triangle-left.svg) center no-repeat;
	background-size:contain;
	margin: 0.3rem 5px 0 -5px;
	padding: 0;
}
.icon-triangle-left.disabled::before,
.icon-triangle-left:disabled::before{
	background: url(../images/icon-triangle-left-disabled.svg) center no-repeat;
}
.icon-fast-forward::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1rem;
	background: url(../images/icon-fast-forward.svg) center no-repeat;
	background-size:contain;
	margin: 0.3rem -5px 0 5px;
	padding: 0;
}
.icon-fast-forward.disabled::before,
.icon-fast-forward:disabled::before{
	background: url(../images/icon-fast-forward.svg) center no-repeat;
}
.icon-triangle-right::before{
	content: '';
	display: inline-block;
	position: relative;
	width: 1.2rem;
	height: 1rem;
	background:url(../images/icon-triangle-right.svg) center no-repeat;
	background-size:contain;
	margin: 0.3rem -5px 0 5px;
	padding: 0;
}
.icon-triangle-right.disabled::before,
.icon-triangle-right:disabled::before{
	background: url(../images/icon-triangle-right-disabled.svg) center no-repeat;
}

@media (max-width: 750px) { 
	.pagination .fast,
	.pagination .item{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
}

/*tooltip*/
.tooltip{
	font-family:Arial , Helvetica ,'Microsoft JhengHei','微軟正黑體';
	margin-right: -2px;
}
.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{
	top:-1px;border-top-color:#3e8cca;
}
.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{
	right:-1px;border-right-color:#3e8cca;
}
.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{
	bottom:-1px;border-bottom-color:#3e8cca;
}
.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{
	left:-1px !important;border-left-color:#3e8cca;
}
.tooltip-inner{
	max-width:12rem;
	padding: .5rem 1rem;
	color:#fff;
	text-align:left;
	background-color:#3e8cca;
	border-radius:.25rem;
	line-height: 1.3;
	font-size: 1rem;
	box-shadow: 2px 4px 4px 1px rgba(0,0,0,.5);
}
.tooltip.show{
	opacity:1;
}

/*modal*/
/*.modal-backdrop.show{opacity:.5;}*/
.modal-open .modal {
    overflow-x: auto;
    overflow-y: auto;
}

/*modal-form*/
.modal-form .modal-xl{
	width: calc(100vw - 2rem);
	max-width: calc(100vw - 2rem);
}
.modal-form .modal-xl .modal-content{
	height:100vh;
	max-height:100vh;
}
.modal-form .modal-lg{
	width: 96vw ;
	max-width: 1100px ;
}
.modal-form .modal-md{
	width: 96vw ;
	max-width: 800px ;
}
.modal-form .modal-sm{
	width: 96vw ;
	max-width: 25rem ;
}

.modal-form .modal-content{
	border:none;
	border-radius: 0;
	box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.3);
	background: transparent;
}
.modal-form .modal-header{
	position:relative;
	background-color: #2f5eaa;
	border-bottom: none;
	padding:0;
	border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.modal-form .modal-header .func-name{
	position: relative;
	display: block;
	width:60%;
	min-width: 200px;
	max-width: 400px;
	color: #FFF;
	font-size: 1.3rem;
	line-height:1; 
	padding: 10px 0;
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
}
.modal-form .modal-header .modal-close a{
	position: absolute ;
	top:0;
	bottom: 0;
	right:7px;
	width:auto;
}
.modal-form .modal-header .modal-close a::after{
	content: '';
	position: relative;
	display: inline-block;
	width: calc(1.5rem + 20px);
	height: 100%;
	background-image: url(../images/btn-close.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40%;
	margin-left: 10px;
}
.modal-form .modal-header .modal-close a:hover::after{
	opacity: 0.6;
}
.modal-form .modal-body{
	background: #C2DFC9;
	padding: 1rem;
}
.modal-form .modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content:center;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
	background: #C2DFC9;
	border-top: 1px rgba(255,255,255,.3) solid;
}
.modal-form .modal-body > h1{
	margin-bottom: 15px;
}
.modal-form .modal-body > h1::before{
	z-index: 1;
}
.modal-form .modal-body > h1 > span{
	position: relative;
	z-index: 2;
}


/*modal-message*/
.modal-message{
	z-index: 1051;
}
.modal-message .modal-content{
	border:none;
	border-radius: .5rem;
	box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.3);
	background: white;
}
.modal-message .modal-header{
	background-color: #ffffff;
	border-bottom: none;
	padding: 1.5rem 1rem;
	border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}
.modal-message .modal-header h1 {
    font-size: 1rem;
    line-height: 1;
    margin: 0 auto;
	padding: 0;
	color: #515151;
}

.modal-message .modal-header .close{
    position: absolute;
	right:1rem;
	top:1rem;
	opacity: .7 ;
	padding: 0 ;
    margin: 0 ;
	width: 1rem;
	height: 1rem;
}
.modal-message .modal-header .close::before{
	content: '';
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background: url(../images/btn-close.svg) center no-repeat;
	vertical-align: middle;
	margin: 0;
}
.modal-message .modal-body{
	background: #FFF;
	padding: 1rem 1.5rem;
}
.modal-message .modal-body h1{
	margin-top: 0;
	padding-top: 0;
}
.modal-message .modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content:center;
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
	background: #FFF;
	border-top: none;
	padding: 1.5rem 0;
	flex-wrap: wrap;
	margin: 0px;
}

.mg-error,
.mg-notice{
	position: relative;
	padding-left: 4.5rem;
	margin: .5rem 0;
}
.mg-error::before{
	content: '錯誤：';
	position: absolute;
	top:0;
	left:1.5rem;
	display: block;
	width: auto;
	height: auto;
	white-space: nowrap;
	font-weight: 700;
}
.mg-error::after{
	content: '';
	position: absolute;
	top:2px;
	left:0;
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background: url( ../images/icon-mg-error.svg) 0px 0px  no-repeat;
}
.mg-notice::before{
	content: '提醒：';
	position: absolute;
	top:0;
	left:1.5rem;
	display: block;
	width: auto;
	height: auto;
	white-space: nowrap;
	font-weight: 700;
}
.mg-notice::after{
	content: '';
	position: absolute;
	top:2px;
	left:0;
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background: url( ../images/icon-mg-notice.svg) 0px 0px  no-repeat;
}


/* 檢核訊息*/
.has-error .form-control,
.has-error .form-control:hover,
.has-error .custom-checkbox .custom-control-label::before, 
.has-error .custom-checkbox .custom-control-label::after,
.has-error .custom-radio .custom-control-label::before, 
.has-error .custom-radio .custom-control-label::after,
.has-error .input-num .btn-outline-secondary{
	border-color: #dc3545 !important;
}

.help-block {
  margin: .15rem 0 0 0;
  padding: 0;
  color: #dc3545;
  font-size: .95rem;
  line-height: 1.2;
  white-space:pre-wrap;
  word-break:break-all;
  text-align: left;
}

/*zip*/
.zip {
	display: flex;
}
/* .zip .code{
	width: 6rem;
	min-width: 6rem;
	padding-right: 3px;
} */
.zip .city{
	display: flex;
	justify-content:flex-end;
	width: calc(100% - 0rem);
	min-width: 16rem;
}
.zip .city select{
	width: 50%;
	min-width: 6rem;
}
/*.zip .address{
	width:calc(100% - 22rem);
}*/

@media (max-width: 890px){
	.zip {
		display:inline;
	}
	.zip div{
		display: inline-block;
	}
	.zip .code{
		width: 50%;
		min-width: 50%;
	}
	.zip .city{
		width: auto;
		min-width: auto;
	}
	/*.zip .address{
		width:calc(100% - 0rem);
	}*/
	.field-name.zip-title{
		display: flex;
		align-items:flex-start;
		padding-top: 10px;
	}
}
@media (max-width: 767px){
	.zip .address{
		width:calc(100% - 0rem);
	}
}
/*phone*/
.phone{
	display: flex;
	white-space: nowrap;
}
.phone .phone-group{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.phone span{
	margin: 0 5px;
}
.phone .phone-code{
	width: 4rem;
}
.phone .phone-num{
	width: 6rem;
}
.phone .phone-ext{
	width: 5rem;
}
@media (max-width: 480px){
	.phone{
		display: block;
	}
	.phone .phone-num{
		width: 100%;
	}
	.phone .phone-group:last-child{
		justify-content: flex-end;
	}
}

/*pstAccount*/
.pstAccount{
	/* display: flex; */
	white-space: nowrap;
}
.pstAccount .account-group{
	display: inline-block;
	justify-content: flex-start;
	align-items: center;
	width: 80%;
}
.pstAccount .pst-prompt{
	display: inline;
	margin-left: 5px;
}
@media screen and (max-width: 768px){
	.pstAccount .pst-prompt{
		display: flex;
		margin: 10px;
		margin-left: 10px;
	}
}
.pstAccount span{
	margin: 0 5px;
}
@media screen and (max-width: 480px){
	.pstAccount{
		display: block;
	}
	.pstAccount .account-code{
		width: 100%;
	}
	.pstAccount .account-group:last-child{
		justify-content: flex-end;
	}
}

/*switch-field*/
.switch-field {
	width: auto;
	height: calc(1rem + 22px) ;
	padding: 3px;
	overflow: hidden;
	border-radius: 25px;
	background-color: #f0f0f0;
	border: 1px #e9e9e9 solid; 
	margin: 0;
}

.switch-field input {
    position: absolute ;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
}
.switch-field label {
	display: flex;
	align-items: center;
	justify-content: center;
	width:auto;
	height: calc(1rem + 14px) ;
	min-width: 3rem;
	float: left;
	background-color:transparent;
	color:#858585;
	font-size: 1rem;
	line-height: 1;
	text-align: center;
	text-shadow: none;
	padding: 0 10px;
	border: none;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

.switch-field label:hover {
	cursor: pointer;
}
.switch-field input:checked + label {
  background-color: #0f9036;
  color:#FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 25px;
}
.switch-field input:disabled + label {
  cursor:default;
  color: #CCC;
}
.switch-field .checked_disabled input:disabled + label {
  cursor:default;
}
.switch-field .checked_disabled input:checked + label {
  background-color: #CCC;
  color: #FFF;
}

.switch-field input.no:checked + label {
  background-color: #D0333F;
  
}

/*icon*/
.icon-yes::before {
    content: "";
    display: block;
    width: 1.5rem;
	height: 1.5rem;
    text-align: center;
    margin: 0 auto;
    padding: 0;
	background: #2DAA99 url(../images/btn-submit-w.svg) center no-repeat;
	background-size:70% ;
	border-radius: 50%;
}
/*驗證碼*/
.captcha-group{
	position: relative;
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
	width: 100%;
}
.captcha-group input{
	width: 5rem;
}
.captcha-group .captcha-img{
	position: relative;
	display: inline;
	margin-left: 3px;
	height:46px;
	width: 100px;
	flex-shrink: 0;
}
.captcha-group a.captcha-refresh{
    position: relative;
	display: flex;
	align-items: center;
	padding: 0;
    color: #57b172;
	width: calc(3rem + 15px);
	height: calc(1rem + 20px);
    text-align: center;
	margin-left: 3px;
	opacity: 0.9;
	font-size: 0.9rem;
	white-space: nowrap;
}
.captcha-group a.captcha-refresh:hover{
    opacity: 1;

}
.captcha-group a.captcha-refresh::before{
    content: '';
	position: relative;
	width: calc(1rem + 15px);
	height: calc(1rem + 15px);
	display:inline-block;
	background: url(../images/btn-reset.svg) center no-repeat;
	margin-right: 2px;

}

/*密碼顯示icon*/
.toggle-password {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  right: 4rem;
  top: 1px;
  bottom:0;
  color: #000;
  z-index: 2;
	background: red;
}
.toggle-password-uid,.toggle-password-uid-check,
.toggle-password-pawd,.toggle-password-pawd-check,
.toggle-password-dv-pawd,.toggle-password-dv-pawd-check {
	position: absolute;
	display: inline-block;
	cursor: pointer;
	right: calc(20% + 1rem);
	top: 1px;
	bottom:0;
	color: #000;
	z-index: 2;
	background: red;
}

::-ms-reveal {
    display: none;
}

/*fa-eye 顯示*/
.fa-eye{
	display: block;
	width: 1.8rem;
	height: calc(1rem + 30px);
	background: url(../images/fa-eye.svg) center no-repeat;
}
/*fa-eye-slash 不顯示*/
.fa-eye-slash{
	display: block;
	width: 1.8rem;
	height: calc(1rem + 30px);
	background: url(../images/fa-eye-slash.svg) center no-repeat;
}

/*btn-radio*/
.btn-radio {
  width: 100%;
  text-align: center;
}
.btn-radio input[type=radio] {
  display: none;
}
.btn-radio input[type=radio]:checked + .box {
  background: #F483A0;
}
.btn-radio input[type=radio]:checked + .box::before {
  opacity: 0;
}
.btn-radio input[type=radio]:checked + .box span {
  color: white;
  transform: translateY(0);
}
.btn-radio input[type=radio]:checked + .box span::before {
  transform: translateY(-5px);
  opacity: 1;
}

.btn-radio .box {
  width: 200px;
  height: 200px;
  background: #3F93AF ;
  transition: all 250ms ease;
  will-change: transition;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  font-family: "Dax", sans-serif;
  border-radius: 10px;
  margin: 0 10px;
}
.btn-radio .box::before {
  content: '';
  width: 4rem;
  height: 3rem;
  display: block;
  transform: translateY(40px);
  opacity: .4;
  transition: all 300ms ease-in-out;
  margin:  0 auto;
}
.btn-radio .box.type-A::before {
	background: url(../images/card.svg) center no-repeat;
	background-size:85%;
}
.btn-radio .box.type-B::before {
	background: url(../images/shield-lock.svg) center no-repeat;
	background-size:contain;
}
.btn-radio .box span {
  position: absolute;
  transform: translate(0, 0);
  left: 0;
  right: 0;
  transition: all 300ms ease;
  font-size: 1.2em;
  user-select: none;
  color: #ffffff;
  font-weight: 900;
}
.btn-radio .box span::before {
  content: '';
  width: 4rem;
  height: 3rem;
  display: block;
  background: url(../images/checked.svg) center no-repeat;
  background-size:75%;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 300ms ease-in-out;
  margin: 0 auto;
}

/*return-to-top 回上方*/
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index:9999;
    background: rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 10px;
    display: none;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.5);
}
#return-to-top::before{
	content: '';
    position: absolute;
	top:20px;
	left:18px;
    display: block;
    width: 13px;
    height: 13px;
    transform: rotate(-45deg);
	border-top: 4px #FFFFFF solid;
    border-right: 4px #FFFFFF solid;
}
#return-to-top:hover::before{
	top:17px;
}
/*---------------------------------- resultPage Securities Info*/
button.rsSecuritiesBtn{
  margin: 15px auto;
  font-family: "微軟正黑體";
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  border-radius: 20px;
  padding:3% 6%;
  border: 0px solid #000;
  font-weight:600;
  font-size:1.3em;
}

/* Initiate Auto-Pulse animations */
.pulseButton {
  animation: borderPulse 1000ms infinite ease-out,
    colorShift 1000ms infinite ease-in;
}

@keyframes borderPulse {
  0% {
    box-shadow: inset 0px 0px 0px 5px rgba(255, 163, 43, 0.1),
      0px 0px 0px 0px rgba(255, 163, 43, 1);
  }
  100% {
    box-shadow: inset 0px 0px 0px 3px rgba(120, 117, 255, 0.2),
      0px 0px 0px 10px rgba(255, 255, 255, 0);
  }
}

@keyframes colorShift {
  0%,
  100% {
    background: #ffa32b;
  }
  33% {
    background: #feac61;
  }
  66% {
    background: #feac61;
  }
}

@keyframes twinkle{
    from{background: #FFAF60;}
    to{background: #FF9D6F;}
}

.resultPageSecuritiesContentSuccess{
    position: relative;
    display: -ms-flexbox;
    /* display:flex; */
    -ms-flex-direction: column;
    flex-direction: column;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 3px solid rgb(255 208 220 / 0%);
    border-radius: 2rem;
    outline: 0;
    width:60%;
    margin-left:20%;
}
.resultPageSecuritiesContentFail{
    position: relative;
    display: -ms-flexbox;
    /* display:flex; */
    -ms-flex-direction: column;
    flex-direction: column;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 5px solid rgb(227 240 219 / 100%);
    border-radius: 2rem;
    outline: 0;
    width:60%;
    margin-left:20%
}

.resultPageSecuritiesContentMsg{
	margin: 5px; 
	text-align:left; 
	font-size: 1.3em; 
	color: #7B7B7B;
	font-weight: bolder;
	padding: 3% 5% 3% 8%;
}

.finishPageRow{
	display: flex;
	flex-wrap: wrap;
	margin: 20px 15px;
	margin-top: .25rem;
	margin-bottom: .25rem;
}

.finishPageOL{
	line-height: 1.7;margin-bottom: 0;
}

/**申請完成頁_底部浮動視窗_畫面寬度大於900px**/
.finishPageBottomFloatRow{
	display: none;
}

@media screen and (max-width: 900px) {
	#return-to-top {
		position: fixed;
		bottom: -15px;
		right: calc(50vw - 30px);
		width: 60px;
		height: 50px;
	}
	.home-wrapper #return-to-top {
		bottom: calc(50px - 15px);
	}
	#return-to-top{
		background: rgba(0, 70, 55, 0.7);
	}
	#return-to-top:hover{
		background: rgba(0, 70, 55, 0.6);
	}
	#return-to-top::before{
		top:15px;
		left:22px;
		
	}
	#return-to-top:hover::before{
		top:13px;
	}
	.resultPageSecuritiesContentFail{
	    position: relative;
	    display: -ms-flexbox;
	    /* display:flex; */
	    -ms-flex-direction: column;
	    flex-direction: column;
	    pointer-events: auto;
	    background-color: #fff;
	    background-clip: padding-box;
	    border: 5px solid rgb(204 255 220 / 100%);
	    border-radius: 2rem;
	    outline: 0;
	    width:87%;
	    margin-left:6%
	}
	.resultPageSecuritiesContentMsg{
		margin: 5px; 
		text-align:left; 
		font-size: 1.0em; 
		padding-left: 6%;
		padding-right: 3%;
	}
	.finishPageRow{
		display: flex;
		flex-wrap: wrap;
		margin: 20px 15px;
		margin-top: .1rem;
		margin-bottom: .1rem;
	}
	.finishPageOL{
		line-height: 1.4;margin-bottom: 0;
	}
	/**申請完成頁_底部浮動視窗_START**/
	.finishPageBottomFloatRow{
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom:0;
		top:auto;
		height: 125px;
		width: auto;
		background: #ffffff;
		box-shadow: 0 0 8px 0 rgba(0,0,0,.1);
		z-index: 9998;
	}
	.finishPageFloatRowMenu{
		position:relative;
		width: 100%;
		max-width: 550px;
		height: 105%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		background-image: none;
		padding:0;
	}
/* 	.finishPageFloatRowMenu a{ */
/* 		position: relative; */
/* 		height: 100%; */
/* 		display: flex; */
/* 		align-items: center; */
/* 		justify-content: center; */
/* 		font-size: 18px; */
/* 		border-bottom: none; */
/* 	} */
/* 	.finishPageFloatRowMenu a:nth-child(3)::before{ */
/* 		width: 1.5rem; */
/* 		background-size: 150%; */
/* 	} */
/* 	.finishPageFloatRowMenu a:nth-child(1), */
/* 	.finishPageFloatRowMenu a:nth-child(2){width: 50%;} */
/* 	.finishPageFloatRowMenu a:nth-child(2){padding-right: 30px;} */
	.finishPageFloatRowMenuTxt{
		color: #7B7B7B;
	    font-weight: bolder;
		margin: 0px auto;
	    text-align: center;
	    font-size: 1.0em;
	    padding-left: 6%;
	    padding-right: 3%;
	    width:90%;
	}
	button.rsSecuritiesBtn{
	  margin: 5px auto;
	}
	.resultPageSecuritiesContentSuccess{
		display: none;
	}
	.resultPageSecuritiesContentFail{
		display: none;
	}
	/**申請完成頁_底部浮動視窗_END**/
	
/**申請完成頁：「return-to-top-a」20241023_create_START**/
/*return-to-top-a 回上方*/
#return-to-top-a {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index:9999;
    background: rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 10px;
    display: none;
    transition: all 0.3s ease;
}
#return-to-top-a:hover {
    background: rgba(0, 0, 0, 0.5);
}
#return-to-top-a::before{
	content: '';
    position: absolute;
	top:20px;
	left:18px;
    display: block;
    width: 13px;
    height: 13px;
    transform: rotate(-45deg);
	border-top: 4px #FFFFFF solid;
    border-right: 4px #FFFFFF solid;
}
#return-to-top-a:hover::before{
	top:17px;
}


@media screen and (max-width: 900px){
	#return-to-top-a {
		position: fixed;
		bottom: 125px;
		right: calc(50vw - 30px);
		width: 60px;
		height: 30px;
	}
	.home-wrapper #return-to-top-a {
		bottom: calc(50px - 15px);
	}
	#return-to-top-a{
		background: rgba(0, 70, 55, 0.7);
	}
	#return-to-top-a:hover{
		background: rgba(0, 70, 55, 0.6);
	}
	#return-to-top-a::before{
		top:15px;
		left:22px;
		
	}
	#return-to-top-a:hover::before{
		top:13px;
	}
}
/**申請完成頁：「return-to-top-a」20241023_create_END**/


/**申請完成頁：「move-to-end-a」20241023_create_START**/
/*move-to-end-a：前往畫面的底部*/
#move-to-end-a {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index:9999;
    background: rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 10px;
    display: none;
    transition: all 0.3s ease;
}
#move-to-end-a:hover {
    background: rgba(0, 0, 0, 0.5);
}
#move-to-end-a::before{
	content: "";
    position: absolute;
/* 	top:-10px; */
/* 	left:18px; */
/*     display: block; */
    WIDTH: 13PX;
    HEIGHT: 13PX;
    /** 用 border 畫出線條 **/
	border-top: 4px #FFFFFF solid;
    border-right: 4px #FFFFFF solid;
    /** 用 transform 旋轉 border 的線條 **/
    transform: rotate(135deg);
}
#move-to-end-a:hover::before{
	/** 影響 border繪製的箭頭, 點擊之後, 顯示的位置 **/
	top:7px;
}


@media screen and (max-width: 900px){
	#move-to-end-a {
		position: fixed;
		bottom: 125px;
		right: calc(50vw - 30px);
		width: 60px;
		height: 30px;
	}
	.home-wrapper #move-to-end-a {
		bottom: calc(50px - 15px);
	}
	#move-to-end-a{
		background: rgba(0, 70, 55, 0.7);
	}
	#move-to-end-a:hover{
		background: rgba(0, 70, 55, 0.6);
	}
	#move-to-end-a::before{
	/** 影響 border繪製的箭頭, 顯示的位置 **/
		top:7px;
		left:22px;
	}
	#move-to-end-a:hover::before{
	/** 影響 border繪製的箭頭, 點擊之後, 顯示的位置 **/
		top:7px;
	}
}
/**申請完成頁：「move-to-end-a」20241023_create_END**/
	
}