﻿@charset "UTF-8";
* {font-family: 'Roboto',Arial,'儷黑 Pro','PingFang TC','LiHei Pro','微軟正黑體', 'Microsoft JhengHei',sans-serif;color: #0d1623;}
body{
	margin: 0px;
	padding: 0px;
	background-color: #fff;
	color: #0d1623;
	font-family: "PingFangTC","Microsoft JhengHei";
}
ul,ol,h1,h2,h3,h4,h5,h6{
	margin: 0px;
	padding: 0px;
}

a{
	text-decoration: none;
	color: #0d1623;
    cursor:pointer;
}

ul{
	list-style: none;
}

a[href^="tel"] {
	color: inherit;
	text-decoration: none;
}

input[type=text],input[type=password]{
	border-radius: 2px;
  	border:1px solid #e6ebf5;
 	background-color: #fff;
 	height: 38px;
 	box-sizing: border-box;
 	font-size: 0.875em;
 	padding: 0 18px;
 	color: #0d1623;
 	transition-duration: 0.5s;
}
::placeholder{
	color: #6c7b94;
}

input:focus{
	outline: none;
}
input[type=checkbox]{
	display: none;
}
label{
	position: relative;
}
input[type=checkbox] + label{
	display: inline-flex;
}
input[type=checkbox] + label span{
	padding-left: 34px;
}
input[type=checkbox] + label:before{
	content: "";
	display: block;
	width: 28px;
  	height: 28px;
  	position: absolute;
  	left: 0;
  	top: 0px;
  	background-image: url(../../../Content/Images/Common/checkbox_off.svg);
    background-size:100%;
}
input[type=checkbox]:checked + label:before{
	background-image: url(../../../Content/Images/Common/checkbox_on.svg);
    background-size:100%;
}


#all-wrap{
	overflow: hidden;
}
.container{
	max-width: 1268px;
	margin: auto;
}

@media screen and (max-width:1332px){
	.container{
	    margin-left: 32px;
	    margin-right: 32px;
    }
    .inner-wrap .container{
		margin: auto;
	}
}

@media screen and (max-width:1268px){
	.inner-wrap .container{
		margin-left: 32px;
	    margin-right: 32px;
	}
}

@media screen and (max-width:992px){
	.inner-wrap .container{
		margin-left: 32px;
	    margin-right: 32px;
	}
}


@media screen and (max-width: 768px){
	.container{
	    margin-left: 0px;
	    margin-right: 0px;
    }
	
}
@media screen and (max-width: 576px){
	.inner-wrap .container{
		margin-left: 0px;
	    margin-right: 0px;
	}
}

/*表頭*/
header{
	height: 70px;
	background-color: #0d1623;
	border-bottom: solid 1px #e6ebf5;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	z-index: 999;
	box-shadow: 0px 1px 15px 0 rgba(0, 0, 0, 0.15);
	transition-duration: 0.5s;
}
header .container{
	display: flex;
	align-items: center;
    justify-content: space-between;
	position: relative;
	background-color:transparent;
}

.logo{
    /*position: absolute;
	left: 32px;
	top: 2px;*/

	/*flex: 157px 0 0;*/
	width: 157px;
	/*margin-right: 10px;*/
    margin-top: 17px;
}
.logo a{
	display: block;
	width: 100%;
	height: 37px;
	background-image: url(../../../Content/Images/Common/light-logo.svg);
	background-size: 157px;
}
.logout{
    /*position: absolute;
	top: 25px;
    right: 60px;*/
	width: 55px;
    margin-top: 15px;
    
}
.logout a{
	display: block;
	width: 100%;
	height: 20px;
	background: url(../../../Content/Images/Common/ic-ic-logout.svg) no-repeat left bottom transparent;
	background-size: 16.7px;
    color: #fff;
    font-size: 16px;
    text-align:right;
    vertical-align:middle;
}

@media screen and (max-width: 1100px){
	header .container{
		margin-left: 30px;
		margin-right: 30px;
	}
}


@media screen and (max-width: 700px){
	header{
	    height: 60px;
    }
    .logo{
        margin-top: 13px;
    }
    .logout{
        margin-top: 13px;
    }
}


@media screen and (max-width: 500px){
    header .container{
		margin-left: 30px;
		margin-right: 20px;
	}

    .logout a {
        background:none;
    }
}




/*內文頁框架*/
main{
	padding-top: 70px;
}
.inner-wrap{
	max-width: 1164px;
	width: 100%;
	margin: 52px auto;
}


@media screen and (max-width:1100px ){
	.inner-wrap{
		margin-top: 40px;
		margin-bottom: 40px;
	}
}


@media screen and (max-width:992px ){
	.inner-wrap{
		max-width: 100%;
		
	}
}


@media screen and (max-width:700px ){
	main{
	    padding-top: 60px;
    }
}

@media screen and (max-width:576px ){
	.inner-wrap{
		margin: 0;
		margin-bottom: 40px;
	}
	
}

/*表尾*/
footer{
	background-color: #0d1623;
	padding: 20px 0;
}


.footer-txt{
	text-align: center;
	color: #6c7b94;
	font-size: 0.75em;
	line-height: 1.83em;
}



@media screen and (max-width: 768px){
	footer .container{
		padding-left: 32px;
		padding-right: 32px;
	}
}
@media screen and (max-width: 720px){
	footer{
	padding: 20px 0;
	}
}


@media screen and (max-width: 576px){
	footer .container{
		padding-left: 0;
		padding-right: 0;
	}
}



 /* 清單 */
.tab {
    position: relative;
	padding: 0px;
	padding-left: 16px;
    margin-top: 1em;
    /*margin-bottom: 1em;*/
	border-bottom: 1px solid #d7e0ef;
}

	.tab-btn {
        position: relative;
        display: inline-flex;
		font-family: PingFangTC;
		font-size: 16px;
        font-weight: 700;
        padding:0 0 13px 0;
		margin-right: 28.5px;
        line-height: 1em;
	    letter-spacing: 0.5px;
		cursor: pointer;
	}

	.tab .action {
		color: #daa360;
		cursor:default;
	}

	.tab-btn:hover {
		color: #daa360;
	}

    .tab #cursor{
	    position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 4px;
        background-color: #daa360;
        transition-duration: 0.5s;
    }


/* 隱藏 */
.hidden {
	display: none;
}

.clear {
	clear: both;
	height: 0px;
	width: 0px;
}

/* 按鈕 */
.btn { 
    display:inline-block;
    width: auto;
    height: auto;
    margin: 0 5px;
    padding: 11px 64px 12px 64px;
    border-radius: 2px;
    border: solid 1px #d7e0ef;
    background-color: #fff;
    font-size: 18px;
    color: #0d1623;
    cursor:pointer;
    transition: 0.3s;
}
.btn:hover { color:#40a9ff;background:#fff;border-color:#40a9ff; }
.btn-red {background-color: #c43826;color: #fff;}
.btn-red:hover { color: #fff; background: #8e1f11; border-color:#d7e0ef; }

/* 內容區塊 */
.block {
    border-radius: 2px;
    border: solid 1px #d7e0ef;
    background-color: #fff;    
    display:flex;
    flex-wrap:wrap;
    align-content: flex-start;
    position:relative;
    width:100%;
}
.block .header {
    border: 0px;
    border-bottom: solid 1px #d7e0ef;
    background-color: #f2f5fa;
    width:100%;

    padding: 8px;
    color: #3f5372;
    text-align:center;
    margin:auto;
}
.block .contain {
    width:100%;

    padding: 15px;
    font-size: 16px;
    color: #0d1623;
    text-align:center;
    margin:auto;
}

/* 日期ICON */
input[data-type=date] {
	background: url(../../../Content/Images/Common/calendar-calendar.png) no-repeat scroll 7px 7px;
	background-position: right 3% top 50%;
	background-color: #FFF;
    text-align:left;
    font-size: 16px;
}


/*-OUT_TABLE-*/
.popupTable * {
	font-family: PingFangTC, Roboto;
	font-size: 16px;
	letter-spacing: 0.4px;
}
.popupTable .box {
	 opacity: 0;
}
.popupTable .AMT_Table {
	margin: 0px 20px 10px 20px;
	color: #0d1623;
}

.popupTable .AMT_Table span {
	font-size: 14px;
	letter-spacing: 0.35px;
	color: #3f5372;
}

.popupTable .note ol, .popupTable .note ul
,.popupTable .i-message ol, .popupTable .i-message ul {
    margin:0px;
    margin-left:1em;
    list-style:initial;
}
.popupTable .note ol
,.popupTable .i-message ol {
    list-style:decimal;
}
.popupTable .note ol *, .popupTable .note ul *
,.popupTable .i-message ol *, .popupTable .i-message ul * {
    font-size: 14px;
	letter-spacing: 0.35px;
	color: #3f5372;
}

.popupTable .warning {
	display: none;
	color: #c43826;
	font-size: 14px;
	letter-spacing: 0.35px;
}

.popupTable .AMT_Table .AMT_INPUT .title {
	float: left;
	padding: 8px 0px 8px 24px;
	border: solid 1px #d7e0ef;
	border-right: 0px;
	background-color: #f3f6fe;
    width:20%;
	height: 25px;
}

.popupTable .AMT_Table .AMT_INPUT .content {
	float: left;
	padding: 8px 8px 8px 8px;
	border: solid 1px #d7e0ef;
	text-align: right;
    width:60%;
	height: 25px;
				
}

.popupTable .AMT_Table .AMT_INPUT .label {
	float: left;
	padding: 8px 8px 5px 8px;
	border: solid 1px #d7e0ef;
    background-color: #e6ebf5;
    color:#3f5372;
	text-align: center;
    width:90%;
	height: 25px;
				
}

.popupTable .AMT_Table .AMT_INPUT .label.bank {
    height:auto;
	min-height: 25px;				
}

.popupTable .AMT_Table .AMT_INPUT .label-red {
	border: solid 1px #eec6c0;
    background-color: #f9ebe9;
    color:#c43826;			
}

.popupTable .AMT_Table .AMT_INPUT .label-yellow {
	border: solid 1px #efd8bf;
    background-color: #f5e8d7;
    color:#c97b1d;			
}

.popupTable .AMT_Table .AMT_INPUT input[type=text] {
	/*font-family: PingFangTC, Roboto;
    font-size: 16px;*/
	border: 0px;
	/*width: 120px;*/
	height: 15px;		
    width:65%		
}

.popupTable table b {
	font-weight: 600;
}

.popupTable table th {
	color: #0d1623;
}

.popupTable table td {
	font-size: 14px;
	letter-spacing: 0.35px;
	color: #3f5372;
}

.AMT_INPUT_Focus .title {
    border-top-color:#6c7b94 !important;
    border-bottom-color:#6c7b94 !important;
    border-left-color:#6c7b94 !important;
}
.AMT_INPUT_Focus .content {
    border-top-color:#6c7b94 !important;
    border-bottom-color:#6c7b94 !important;
    border-right-color:#6c7b94 !important;
}

.popupTable .alertBtn {
    width: 100px!important;
}

 @media screen and (max-height: 700px) {
        
   	.popupTable .alert {
        max-height: calc(100vh - 100px);
        overflow-x: hidden;
	}
        .popupTable .AMT_Table .cls_Options li > div {
            height:40px
        }
}