/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: 思源黑體 , 微軟正黑體 , 蘋方黑體 , 華康麗黑體 , Helvetica , Arial , sans-serif , serif;
  background-color: #ffffff;
}




/* Footer */
.footer-container{
  display: flex;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 70px;
  margin: 0;
  background-color: #ffffff;
}

.footer-empty{
  background-color: #ffffff;
}

.footer-info {
  display: block;
  padding: 20px;
  width: 25%;
}
.footer-about{
  display: flex;
  flex-direction: row;
  padding: 20px;
  margin-left: 100px;
  width: 75%;
}


#footer .heading{color:black;}
#footer hr, #footer .borderedbox, #footer .linklist li{border-color:rgba(255,255,255,.1);}

#footer input, #footer button{border-color:transparent;}
#footer input{color:black; background-color:#ffffff;}
#footer input:focus{border-color: black;}

.info{
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.info-title{
  font-weight: bold;
  font-size: 26px;
}

.footer-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 26px;
  flex: 1;
  align-items: center;
}

.footer-title ul{
  padding: 0;
}
.footer-title ul li{
  padding-top: 1em;
}
.footer-hr{
  width: 100%;
  border: solid 2px;  
}
.footer-content{
  padding-left: 10%;
}

.footer-content {
font-size: 18px; /* 這裡可以調整字體大小，例如調整為 14px */
font-weight: lighter;
}

@media screen and (max-width: 1100px) {
  .footer-info, .footer-about {
    width: 100%;
  }

  .footer-about {
    display: none;
  }
  
  
  .footer-info iframe {
    display: block;
  }
}


/*body*/
.row {
    display: flex;
  }

  
  
  .container {
    display: flex;
    max-width: 90%; /* 最大寬度 */
    margin: auto; /* 水平置中 */
    padding: 30px ; /* 邊距 */
    background-color: #fff;
    border-radius: 8px;
    text-align: center; /* 文字置中 */
}

.container_logo{
  display: flex;
  max-width: 40%; /* 最大寬度 */
  margin: auto; /* 水平置中 */
  padding: 30px ; /* 邊距 */
  background-color: #fff;
  border-radius: 8px;
  text-align: center; /
}


h1, h2, h3, h4, h5{
  font-weight: bold; /* 將所有 h1 標籤的文字設置為粗體 */
  text-align: center;
  line-height: 42px;
}

h1{
    font-size: 40px;
    letter-spacing: 2px;
    color: #003D79;
    text-align: center;
}

h3{
    font-size: 28px;
    letter-spacing: 2px;
    color: #003D79;
    text-align: center;
}

h4{
    font-size: 26px;
    letter-spacing: 2px;
    color: #003D79;
    text-align: center;
}


h6{
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 2px;
    color: black;
    text-align: center;
}

.card {
  background-color:#ffffff;
  border-radius:3px;
  border: 1px solid #a1a1a1;
  padding:20px;
}

.card .pic img {
  width: 100%;
}

.card .card-header{
  border-bottom:none;
  background-color:transparent;
}

.card .title {
  color:#444444;
}

.card .text {
  color:#444444;
}

.card-footer{
  border-top:none !important;
  background-color:transparent !important;
} 

a {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: none;
  color: black;
  }