﻿:root {
    --r-font-color : #000000;
    --r-font-size : 16px; 
    --r-line-height : 1.5;
    --r-el-border-bottom: solid 1px #dddddd;
    --r-el-padding: 1rem;
    --r-smaller-font : 0.8em;
    --r-container-padding : 1em;
    --r-hori-gap : 2em;
    --r-heading-font-weight : 700;
    --r-heading-font-size : 1em;
}

html, body {
    font-family: 'Outfit', 'Noto Sans HK', '微軟正黑體', sans-serif;
    font-size: var(--r-font-size);
    color: var(--r-font-color);
    line-height: var(--r-line-height);
    overflow-x : hidden;
}

a {
    text-decoration: none;
    color: var(--r-font-color);
}

/* 內頁（非首頁） */
body:has(.isNotIndexPage)
{
  background-image : linear-gradient(135deg, rgba(255,255,255,0.7) 0%,rgba(255,255,255,0.7) 100%), url(/download/Resource/BGImage/BG0009.jpg);
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  background-size: cover, cover;
}

/* Main content in non-index page */
.isNotIndexPage .variableContent {
  padding: 1rem;  
}

.sapHeader
{
  padding : 20px;
}
.sapHeader, .sapFooter
{
  background-image : linear-gradient(135deg, rgba(73,192,240,0.9) 0%,rgba(44,175,227,0.9) 100%), url(/download/Resource/BGImage/marble.jpg);
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  background-size: cover, cover;
}
.sapLogoAndMenuBox
{
  display : flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  
  
}
.sapSchoolLogoAndName
{
  padding-right: 2em;
}
.sapMainMenu
{
  
}
.sapFooter
{
   padding : 2em 1em; 
}

@media (max-width: 480px) {
  .sapHeader
  {
    padding : 10px;
  }
  .sapSchoolLogoAndName {
    padding-right: 0;
  }
  .sapMainMenu {
    width: 100%;
    margin-top: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    overflow-y: scroll;
    max-height: 80vh;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .sapHeader
  {
    padding : 15px;
  }
  .sapSchoolLogoAndName {
    padding-right: 0;
  }
  .sapMainMenu {
    width: 100%;
    margin-top: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    overflow-y: scroll;
    max-height: 80vh;
  }
}

@media (min-width: 768px) and (max-width: 979px) {

}

@media (min-width: 980px) and (max-width:1199px) {

}

@media (min-width: 1200px) and (max-width:1919px) {

}

@media (min-width: 1920px) {

}






















