@charset "utf-8";
/****************** 基本 ******************/
*{	
    font-family: "微軟正黑體", "Microsoft JhengHei", Arial, Geneva,sans-serif;
}
body {
    font-size: 17px;    
    font-weight: 400;
    line-height: 1.8;
    color: #777777;
    color: #323232;
    background-color: #fff;
    height: 100%;
    position: relative;
    /*padding-top: 70px;*/
}

:root{
    --link-color: rgb(32 123 141);
    --link-color-bright: #1bbbbb;
    --gray-border: #d4d4d4;
    --huku: #fff;
    --bright-background: rgb(186 243 240);
    --accordion-item-borderR: 20px;
}

.titleArea{
    position: relative;
}

h1.title{
    position: absolute;
    bottom: 0;
    color: rgb(0 64 149);
    font-size: 28px;
    font-weight: 800;
    border-bottom: 3px solid var(--bright-background);
    margin-bottom: 0;
    max-width: 750px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--link-color);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

a:hover, a:active, a:focus ,a:visited{
    outline: none;
    text-decoration: none;
}

img, object, embed, video {	
    max-width: 100%;
}


/****************** 導覽列 navbar ******************/
.navbar {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
    padding: 0;    
}
/*
--- 聯邦LOGO navbar-brand ---*/
.navbar-brand {
	padding-right: 0;
}
.navbar .navbar-brand {
    margin-right: 50px;
    margin-left: 20px;
    width: 250px;
    height: 70px;
    background: url(https://www.ubot.com.tw/assets/UBOT_logo.7b6836f1.svg) no-repeat 0 50%;
    background-size: contain;
}
.navbar-header .navbar-brand img {
	width: 90%;
}
.navbar-light .navbar-toggler {
    border: none;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 153, 153, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar-light .navbar-toggle .icon-bar {
    background-color: #009999;
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .9);
}
.navbar-light .navbar-toggle:hover,
.navbar-light .navbar-toggle:focus {
    background-color: #f8f8f8;
}
.navbar-nav > li > a {
    margin-left: 15px;
	margin-top: 10px;
	display: block;
}
.navbar-light .navbar-nav > li > a:hover,
.navbar-light .navbar-nav > li > a:focus {
    color:  #009999;
    background-color: transparent;
}
.navbar-light .navbar-nav > .active > a,
.navbar-light .navbar-nav > .active > a:hover,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav > .active > a:focus {
    color:  #009999;
}
.navbar-toggle {
    margin-top: 13px;

    margin-bottom: 15px;
    border: 0px ;
    border-radius: 0px;
}

.navTopItem{
    display: flex;
    justify-content: end;
    background: linear-gradient(45deg, transparent 35px, var(--bright-background) 0);
    position: absolute;
    top: 0;
    right: 0;
    max-width: 950px;
    width: 100%;
    height: 35px;
    padding-top: 2px;
}

.navTopItem .nav-item .nav-link{
    padding: 0 20px;
    text-align: right;
    font-size: 15px;
}

ul li.nav-item{
    margin-top: 0;
    margin-bottom: 0;
}

.navBtItem{
    display: flex;
    justify-content: start;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}


@media screen and (max-width: 1200px){	
	.navbar .navbar-brand {
	  margin-right: 0px;
	  margin-left: 20px;
	  width: 200px;
	  height: 60px;/* 60 only*/
	  background: url(https://card.ubot.com.tw/eCard/activity/include/images/UBLogo.png) no-repeat 0 50%;
      background-size: contain;
	}
}
@media screen and (max-width: 922px){
    .navbar .navbar-nav{
        display: block;
    }

    .navTopItem{
        display: block;
        background: transparent;
        position: relative;
        height: auto;
        /* top: 0;
        right: 0;
        max-width: 950px;
        width: 100%;
        padding-top: 2px; */
    }

    .navTopItem .nav-item .nav-link{
        text-align: left;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .navBtItem{
        display: block;
        margin-top: 0;
        margin-bottom: 0;
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media screen and (max-width: 576px){
	.navbar .navbar-brand {
	  margin-right: 50px;
	  margin-left: 15px;	  
	  background: url(https://card.ubot.com.tw/eCard/activity/include/images/UBLogo.png) no-repeat 0 50%;
      background-size: contain;
    }
}


/****************** 版面 Container ******************/
.gridContainer {	
	width: 100%;
	clear: none;
	float: none;
    margin-left: auto;
	margin-right: auto;
	background-size: cover;
}

@media only screen and (max-width: 768px) {
	.gridContainer {
		width: 100%;
		margin: auto;
		clear: none;
		float: none;
		margin-left: auto;
		background-size: cover;
	}
}



.mainArea {
    overflow: hidden;
}

.mainArea img{
	margin: 0px auto;
}


/* 分頁籤 */
#myTab{
    border: 2px solid transparent;
    border-radius: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0 0 4px #00000026;
    display: flex;
    justify-content: space-around;
}

#myTab .nav-link{
    display: block;
    
    padding: 0 10px;
    margin-left: 5px;
    margin-right: 5px;
    color: var(--link-color);
    max-width: 300px;
    width: 100%;
    height: 80px;
    border-radius: 25px;
}

#myTab .nav-link:hover{
    border: 0;
    /* border-bottom: 2px solid var(--link-color-bright); */
}

#myTab .active{
    color: var(--link-color-bright);
    background-color: var(--bright-background);
    font-weight: 800;
    border: 0;
    /* border-bottom: 2px solid var(--link-color-bright); */
}

.tab-pane{
    margin-top: 30px;
    margin-bottom: 50px;
}

.accordion-button:focus{
    box-shadow: none;
}

.accordion-button{
    background-color: transparent;
    margin-top: 5px;
    margin-bottom: 5px;
    color: var(--link-color);
    font-weight: 800;
}


.accordion-item:first-of-type{
    border-radius: var(--accordion-item-borderR);
}

.accordion-button:not(.collapsed){
    color: var(--link-color);
}

.accordion-item{
    border-radius: var(--accordion-item-borderR);
    border: 2px solid var(--bright-background);
    margin-top: 10px;
    margin-bottom: 10px;
}

.accordion-item:not(:first-of-type){
    border-radius: var(--accordion-item-borderR);
    border: 2px solid var(--bright-background);
}


.accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
}

/* 清單 */
ul li{
    margin-bottom: 20px;
    margin-top: 20px;
}

ol li{
    margin-bottom: 20px;
    margin-top: 20px;
}

/* 表格 */
table{
    width: 100%;
    display: block;
    overflow-x: auto;
}
table thead{
    background-color: var(--bright-background);
    font-weight: 800;
    text-align: center;
    font-size: 15px;
}
table tr{
    border: solid 1px var(--gray-border);
    padding: 10px;
}

table th, td{
    border: solid 1px var(--gray-border);
    padding: 10px;
}

.downloadReport{
    border: 2px solid var(--bright-background);
    padding: 20px;
    border-radius: 20px;
}

/*
--- 版權宣告footer ---*/
#footer {
	background-color: rgb(227 248 248);
    bottom: 0;
    
}
.contactUs{
    display: flex;
    justify-content: end;
    /* align-items: center; */
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: url(../images/bg-ubot-lg.5714c999.svg);
    background-repeat: no-repeat;
    /* background-position: 25% 0%; */
    background-size: contain;
}
.contactUs .title{
    font-weight: 800;
    margin-right: 20px;
    margin-left: 20px;
}
.copyright{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgb(17 24 39);
    color: #fff;
}
.copyrightBox{
    display: flex;
    justify-content: space-between;
}
.footerMocd img{
    width: 60px;
    border-radius: 5px;
}
.copyright p {
	font-size: 16px;
	margin-top: 5px;
	margin-bottom: 5px;
}
@media screen and (max-width: 992px) {
	.copyright p {
		font-size: 12px;
	}
}
@media only screen and (max-width: 768px) {
    #footer {
        color: #7f7f7f;
        background-color: #eeeeee;
	}
	#footer .copyright {
        margin-bottom: 0px;
        padding-bottom: 10px;
	}
    .copyright h5 {
        text-align: center;
    }
	.copyright a{
		color: #7f7f7f;
		outline: none;
		text-decoration: none;
	}
}

@media screen and (max-width: 576px){
    footer{
        /* padding-bottom: 65px; */
    }
}



/* animate */
.js .to-animate,
.js .to-animate-2,
.js .single-animate 
.js .animate-single {
  opacity: 0;
}

.js .animate-box {
	opacity: 0;
}