body{
	font-family: "微軟正黑體", Arial;
	font-size: 1.6vh;
	color: #303030;
	line-height: 4vh;
	background-color: #7abefd;
	background-image: url(images/bg.jpg);
	background-repeat: no-repeat;
	background-position: 50% 0px;
}
.top{
/*	background-image: url(images/top.png);
	background-position: 50% 0%;
	background-repeat: no-repeat;*/
	text-align: center;
	margin-top: 51px;
}
.mt20{
	margin-top: 50px;
}

.mt10{
	margin-top: 25px;
}

.pb20{
	padding-bottom: 50px;
}
.navbar-default{
	background-color: #00240e;
	color: #000; 
	border-bottom-color: #000;
	border-bottom-color: #00240e;
	/*border-bottom-width: 0px;*/
}
.navbar-default .navbar-nav>li>a{
	color: #FFF;
	font-size: 20px;

}
.navbar-default .navbar-nav>li>a:hover{
	background-color: #184183;
	font-size: 20px;
	color: #FFF;

}
.dropdown>ul>li>a{
	color: #4e4e4e;
	font-size: 20px;

}
.dropdown>ul>li>a:hover{
	background-color: #4e4e4e;
	font-size: 20px;
	color: #e8e8e8;

}
.navbar-default .navbar-header>a{
	color: #000;
	font-size: 22px;
}
.navbar-default .navbar-header>a:hover{
	color: #005821;
}
.navbar-default .navbar-toggle .icon-bar{
	background-color: #FFF;
	color: #000;
}
.navbar-default .navbar-toggle{
	color: #000;
}

.copyright{
	font-size: 9px;
	text-align: center;
	color: #646464;
	line-height: 1em;
	margin-top: 20px;
	/*border-top-width: 1px;
	border-top-color: #646464;
	border-top-style: solid;*/
	padding-top: 20px;
}

.txt1{
	font-size: 24px;
	color: #1d428a;
	padding-top: 10px;
	line-height: 25px;
	font-weight: bold
}

.txt3{
	font-size: 21px;
	color: #1d428a;
	padding-top: 10px;
	line-height: 25px;
	font-weight: bold
}

.txt2{
	font-size: 20px;
	color: #191919;
	padding: 7px;
	line-height: 30px;
	padding-bottom: 35px;
	font-weight: bold
}

.txt4{
	font-size: 16px;
	color: #191919;
	padding: 7px;
	line-height: 30px;
	padding-bottom: 35px;
	font-weight: bold
}

.note-1{
	font-size: 13px;
	line-height: 19px;
	color: #000;
	margin-top: 0px;
/*	padding-top: 10px;*/
	padding: 10px;
}

.col-sm-6 img{
	width: 100%;
	padding-top: 17px;
	padding-right: 50px;
	padding-left: 50px;
	margin-bottom: 5px;
	text-align: center;
}
.col-sm-6 p{
	color: #000;
	padding-bottom: 15px;
	text-align: center;
	font-size: 15px;
	line-height: 21px;
}
.col-sm-4 img{
	width: 100%;
	padding-top: 17px;
	margin-bottom: 5px;
	text-align: center;
}
.col-sm-4 p{
	color: #000;
	padding-bottom: 25px;
	text-align: center;
	font-size: 15px;
	line-height: 21px;
}
.col-sm-3 img{
	width: 100%;
	padding-top: 17px;
	margin-bottom: 5px;
	text-align: center;
}
.col-sm-3 p{
	color: #000;
	padding-bottom: 25px;
	text-align: center;
	font-size: 15px;
	line-height: 21px;
}

.winner{
	text-align: center;
	background-color: #FFF;
	border-radius: 15px;
	font-size: 1.75em;
	line-height: 1em;
	padding: 0 40px 0 40px;
}
.tt01{
	border-left: 5px solid #c52c68;
	padding-left: 10px;
	height: 15px;
	padding-top: 2px;
	padding-bottom: 25px;
}




/* --- 電腦版日曆網格 (預設) --- */
:root {
  --vl-blue: #1d4289; /* 緯來標題藍 */
  --vl-red: #c52c68;  /* 緯來裝飾紅 */
  --vl-gray-bg: #c7e3f4; /* 日期灰色背景 */
  --vl-highlight: #ffe699; /* 特殊日黃色背景 */
  --vl-border: #303030;
}

.calendar-container {
  max-width: 100%;
  margin: 20px auto;
  background: #fff;
  border: 1px solid var(--vl-border);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-header {
  background-color: var(--vl-blue); /* 改為深藍色背景 */
  color: #fff; /* 文字改白色 */
  text-align: center;
  padding: 1px 0;
  font-weight: bold;
  font-size: 1.2em;
  border-right: 1px solid #fff; /* 白色分隔線 */
}

.day-header:last-child {
  border-right: none;
}

.cell {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--vl-border);
  border-bottom: 1px solid var(--vl-border);
  background-color: #fff;
}

.cell:nth-child(7n) {
  border-right: none;
}

/* 特殊日樣式：黃色背景 */
.cell.highlight {
  background-color: var(--vl-highlight);
}

.date {
  background-color: var(--vl-gray-bg);
  text-align: center;
  padding: 0px 2px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid var(--vl-border);
}

.prize {
  padding: 10px 5px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.note {
  font-size: 12px;
  color: #d00; /* 提醒文字用紅色 */
  font-weight: normal;
  display: block;
}

/* --- 手機版 RWD 最佳化 --- */
@media (max-width: 768px) {
  .calendar-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    background-color: transparent;
  }
  .calendar-container {
    border: none;
  }
  .day-header {
    display: none;
  }
  .cell {
    flex-direction: row;
    min-height: auto;
    border: 1px solid var(--vl-border);
    border-radius: 4px;
  }
  .cell.empty {
    display: none;
  }
  .date {
    width: 80px;
    border-bottom: none;
    border-right: 1px solid var(--vl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
  }
  .prize {
    text-align: left;
    padding-left: 15px;
  }
}



